text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<p dir="auto">Displaying Google Maps inside a Bootstrap layout gives some problems.</p>
<p dir="auto">Check out the examples below.</p>
<p dir="auto"><a href="http://jsbin.com/evuduw/" rel="nofollow">http://jsbin.com/evuduw/</a> (master - bad)</p>
<p dir="auto"><a href="http://jsbin.com/evuduw/3" rel="nofollow">http://jsbin.com/evuduw/3</a> (2.0-wip -- looks fixed)</p>
<p dir="auto">The maps look okay, but if you try and switch the view to terrain or enable/disable "show labels" in the first the layout of the dropdown inside Google Maps looks quirky.</p> | <p dir="auto">When a "bare bones" Google Map is embedded on a Bootstrap-styled page inside a grid row & span, the terrain drop-down menu gets pushed off the side of the map:</p>
<p dir="auto"><a href="http://imagebin.org/index.php?mode=image&id=174078" rel="nofollow">http://imagebin.org/index.php?mode=image&id=174078</a></p>
<p dir="auto">The satellite drop-down menu is similarly affected when 2 entries are present, but looks normal when only 1 entry is present:</p>
<p dir="auto"><a href="http://imagebin.org/index.php?mode=image&id=174079" rel="nofollow">http://imagebin.org/index.php?mode=image&id=174079</a></p>
<p dir="auto"><strong>Removing the Bootstrap CSS link from the page</strong> (i.e. displaying the map un-styled) <strong>restores normal behavior.</strong></p>
<p dir="auto">This behavior observed in Chrome 14.0.835.186 and Firefox 3.6.22 on Ubuntu 10.04.</p> | 1 |
<h1 dir="auto">Please, add an ability to take into account the Caps Lock key status when remapping shortcuts and maybe other keys which can be turned on and off.</h1>
<p dir="auto">The reason behind this is the following. Some laptops, for instance Surface Book, doesn't contain a numpad and any special key which turns a part of the keyboard to the numpad.</p>
<p dir="auto">So, I personally had to write an AutoHotKey script to remap the "Shift + u" to 7, "Shift + i" to 8 and so on, but only when Caps Lock key is turned on.</p>
<p dir="auto">Here is the full script code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#Singleinstance force
#If GetKeyState("CapsLock", "T")
<+m::Send,1
<+,::Send,2
<+.::Send,3
<+j::Send,4
<+k::Send,5
<+l::Send,6
<+u::Send,7
<+i::Send,8
<+o::Send,9
<+n::Send,0
<+/::Send,.
<+8::Send,/
<+9::Send,*
<+p::Send,-
<+`;::Send,{+}"><pre class="notranslate"><code class="notranslate">#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#Singleinstance force
#If GetKeyState("CapsLock", "T")
<+m::Send,1
<+,::Send,2
<+.::Send,3
<+j::Send,4
<+k::Send,5
<+l::Send,6
<+u::Send,7
<+i::Send,8
<+o::Send,9
<+n::Send,0
<+/::Send,.
<+8::Send,/
<+9::Send,*
<+p::Send,-
<+`;::Send,{+}
</code></pre></div>
<p dir="auto">It would be nice if the Keyboard Manager would allows us to remap a shortcut to a single key when some key is turned on.<br>
For instance: remap "Shift + u" to 7 only when "Caps Lock" is turned on.</p>
<p dir="auto">Thank you!</p> | <p dir="auto">Dozens of us don't use Caps Lock at all during our normal workflow (dozens!), so it would be nice to be able to use it as an extra modifier when using the Remap Shortcuts functionality.<br>
This is already a thing in macOS world thanks to tools like Karabiner Elements or BetterTouchTool that allow yout to turn Caps Lock into the "Hyper" modifier as it's commonly refered to. I'm sure there's something similar for Linux but I'm not that familiar with it.</p>
<p dir="auto">In terms of implementation, I don't mind if Caps Lock is not recognised as a modifier straight away since maybe other people don't see it that way. I would be fine using Remap keyboard to map Caps Lock to this new virtual "Hyper" modifier so I can start using it for my Remap shortcuts.</p>
<p dir="auto">Thanks for the tool by the way, I'm going to start moving most of my maps from AHK to the PowerToys!</p> | 1 |
<p dir="auto">Hi,</p>
<p dir="auto">Does tensorflow version r1.9 support Intel Xeon E5645 CPU?</p>
<p dir="auto">Thanks !<br>
Alan</p> | <p dir="auto">As announced in release notes, TensorFlow release binaries version 1.6 and higher are prebuilt with AVX instruction sets. This means on any CPU that do not have these instruction sets either CPU or GPU version of TF will fail to load with any of the following errors:</p>
<ul dir="auto">
<li><code class="notranslate">ImportError: DLL load failed:</code></li>
<li>A crash with return code 132</li>
</ul>
<p dir="auto">Our recommendation is to build TF from sources on these systems.</p>
<h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: No</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: ubuntu/windows/macos</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: binary</li>
<li><strong>TensorFlow version (use command below)</strong>: 1.6 and up</li>
<li><strong>Python version</strong>: 2.7, 3.3, 3.4, 3.5, 3.6 and any newer</li>
<li><strong>Bazel version (if compiling from source)</strong>: n/a</li>
<li><strong>GCC/Compiler version (if compiling from source)</strong>: n/a</li>
<li><strong>CUDA/cuDNN version</strong>: any</li>
<li><strong>GPU model and memory</strong>: any</li>
<li><strong>Exact command to reproduce</strong>: python -c "import tensorflow as tf"</li>
</ul> | 1 |
<p dir="auto">On Julia master (so the conditional below evaluates as <code class="notranslate">true</code>).</p>
<p dir="auto">This works:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> module MyMod
"""
A docstring
"""
macro mymac(ex)
return esc(ex)
end
end
Main.MyMod
help?> MyMod.@mymac
A docstring
"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-k">module</span> MyMod
<span class="pl-s"><span class="pl-pds">"""</span></span>
<span class="pl-s"> A docstring</span>
<span class="pl-s"> <span class="pl-pds">"""</span></span>
<span class="pl-k">macro</span> <span class="pl-en">mymac</span>(ex)
<span class="pl-k">return</span> <span class="pl-c1">esc</span>(ex)
<span class="pl-k">end</span>
<span class="pl-k">end</span>
Main<span class="pl-k">.</span>MyMod
help?<span class="pl-k">></span> MyMod<span class="pl-k">.</span><span class="pl-c1">@mymac</span>
A docstring
</pre></div>
<p dir="auto">But it doesn't if we put it inside a conditional expression (e.g., dependent on the Julia version):</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> module MyMod
if VERSION >= v"1.2.0"
"""
A docstring
"""
macro mymac(ex)
return esc(ex)
end
end
end
WARNING: replacing module MyMod.
Main.MyMod
help?> MyMod.@mymac
No documentation found.
Main.MyMod.@mymac is a macro.
# 1 method for macro "@mymac":
[1] @mymac(__source__::LineNumberNode, __module__::Module, ex) in Main.MyMod at REPL[3]:8"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-k">module</span> MyMod
<span class="pl-k">if</span> <span class="pl-c1">VERSION</span> <span class="pl-k">>=</span> <span class="pl-s"><span class="pl-pds"><span class="pl-c1">v</span>"</span>1.2.0<span class="pl-pds">"</span></span>
<span class="pl-s"><span class="pl-pds">"""</span></span>
<span class="pl-s"> A docstring</span>
<span class="pl-s"> <span class="pl-pds">"""</span></span>
<span class="pl-k">macro</span> <span class="pl-en">mymac</span>(ex)
<span class="pl-k">return</span> <span class="pl-c1">esc</span>(ex)
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-k">end</span>
WARNING<span class="pl-k">:</span> replacing <span class="pl-k">module</span> MyMod.
Main<span class="pl-k">.</span>MyMod
help?<span class="pl-k">></span> MyMod<span class="pl-k">.</span><span class="pl-c1">@mymac</span>
No documentation found.
Main<span class="pl-k">.</span>MyMod<span class="pl-k">.</span><span class="pl-c1">@mymac</span> is a <span class="pl-k">macro</span>.
<span class="pl-c"><span class="pl-c">#</span> 1 method for macro "@mymac":</span>
[<span class="pl-c1">1</span>] <span class="pl-c1">@mymac</span>(__source__<span class="pl-k">::</span><span class="pl-c1">LineNumberNode</span>, __module__<span class="pl-k">::</span><span class="pl-c1">Module</span>, ex) <span class="pl-k">in</span> Main<span class="pl-k">.</span>MyMod at REPL[<span class="pl-c1">3</span>]<span class="pl-k">:</span><span class="pl-c1">8</span></pre></div>
<p dir="auto">However we can fix it with the post-hoc <code class="notranslate">@doc</code> mechanism:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> module MyMod
if VERSION >= v"1.2.0"
macro mymac(ex)
return esc(ex)
end
@doc "A docstring" :(MyMod.@mymac)
end
end
WARNING: replacing module MyMod.
Main.MyMod
help?> MyMod.@mymac
A docstring
"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-k">module</span> MyMod
<span class="pl-k">if</span> <span class="pl-c1">VERSION</span> <span class="pl-k">>=</span> <span class="pl-s"><span class="pl-pds"><span class="pl-c1">v</span>"</span>1.2.0<span class="pl-pds">"</span></span>
<span class="pl-k">macro</span> <span class="pl-en">mymac</span>(ex)
<span class="pl-k">return</span> <span class="pl-c1">esc</span>(ex)
<span class="pl-k">end</span>
<span class="pl-c1">@doc</span> <span class="pl-s"><span class="pl-pds">"</span>A docstring<span class="pl-pds">"</span></span> :(MyMod<span class="pl-k">.</span><span class="pl-c1">@mymac</span>)
<span class="pl-k">end</span>
<span class="pl-k">end</span>
WARNING<span class="pl-k">:</span> replacing <span class="pl-k">module</span> MyMod.
Main<span class="pl-k">.</span>MyMod
help?<span class="pl-k">></span> MyMod<span class="pl-k">.</span><span class="pl-c1">@mymac</span>
A docstring
</pre></div> | <p dir="auto">Noted during <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="239772670" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/22631" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/22631/hovercard" href="https://github.com/JuliaLang/julia/pull/22631">#22631</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Meta.@lower begin
if true
"""
hello
"""
h() = 1
end
end
:($(Expr(:thunk, CodeInfo(
2 1 ─ goto #3 if not true │
6 2 ─ $(Expr(:method, :h)) │
│ %3 = (Core.Typeof)(h) │
│ %4 = (Core.svec)(%3) │
│ %5 = (Core.svec)() │
│ %6 = (Core.svec)(%4, %5) │
│ $(Expr(:method, :h, :(%6), CodeInfo(quote │
return 1
end)))
└── return h │
3 ─ return │
))))"><pre class="notranslate"><code class="notranslate">Meta.@lower begin
if true
"""
hello
"""
h() = 1
end
end
:($(Expr(:thunk, CodeInfo(
2 1 ─ goto #3 if not true │
6 2 ─ $(Expr(:method, :h)) │
│ %3 = (Core.Typeof)(h) │
│ %4 = (Core.svec)(%3) │
│ %5 = (Core.svec)() │
│ %6 = (Core.svec)(%4, %5) │
│ $(Expr(:method, :h, :(%6), CodeInfo(quote │
return 1
end)))
└── return h │
3 ─ return │
))))
</code></pre></div>
<p dir="auto">vs</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Meta.@lower begin
"""
hello
"""
h() =1
end
:($(Expr(:thunk, CodeInfo(
2 1 ─ $(Expr(:method, :h)) │
│ %2 = (Core.Typeof)(h) │
│ %3 = (Core.svec)(%2) │
│ %4 = (Core.svec)() │
│ %5 = (Core.svec)(%3, %4) │
│ $(Expr(:method, :h, :(%5), CodeInfo(quote │
return 1
end)))
│ %7 = (Base.Docs.Binding)(Main, :h) │
│ %8 = (Core.svec)(" hello\n") │
│ %9 = (Dict)(:path => "REPL[3]", :linenumber => 2, :module => Main) │
│ %10 = (Base.Docs.docstr)(%8, %9) │
│ %11 = (Core.apply_type)(Tuple) │
│ %12 = (Core.apply_type)(Union, %11) │
│ %13 = (Base.Docs.doc!)(Main, %7, %10, %12) │
└── return %13 │
))))"><pre class="notranslate"><code class="notranslate">Meta.@lower begin
"""
hello
"""
h() =1
end
:($(Expr(:thunk, CodeInfo(
2 1 ─ $(Expr(:method, :h)) │
│ %2 = (Core.Typeof)(h) │
│ %3 = (Core.svec)(%2) │
│ %4 = (Core.svec)() │
│ %5 = (Core.svec)(%3, %4) │
│ $(Expr(:method, :h, :(%5), CodeInfo(quote │
return 1
end)))
│ %7 = (Base.Docs.Binding)(Main, :h) │
│ %8 = (Core.svec)(" hello\n") │
│ %9 = (Dict)(:path => "REPL[3]", :linenumber => 2, :module => Main) │
│ %10 = (Base.Docs.docstr)(%8, %9) │
│ %11 = (Core.apply_type)(Tuple) │
│ %12 = (Core.apply_type)(Union, %11) │
│ %13 = (Base.Docs.doc!)(Main, %7, %10, %12) │
└── return %13 │
))))
</code></pre></div> | 1 |
<p dir="auto">Hi everyone,</p>
<p dir="auto">I found a wrong highlighting in for loop, please have a look below screenshot.<br>
This error can make all below lines go wrong syntax highlight too.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5317864/13532930/a6dec7ec-e260-11e5-8cff-1f0ac4613621.png"><img width="429" alt="screen shot 2016-03-04 at 11 25 13 pm" src="https://cloud.githubusercontent.com/assets/5317864/13532930/a6dec7ec-e260-11e5-8cff-1f0ac4613621.png" style="max-width: 100%;"></a></p> | <p dir="auto">Ported from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="94376232" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/285" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-Sublime-Plugin/issues/285/hovercard" href="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/285">microsoft/TypeScript-Sublime-Plugin#285</a></p>
<p dir="auto">Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="91870539" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/265" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-Sublime-Plugin/issues/265/hovercard" href="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/265">microsoft/TypeScript-Sublime-Plugin#265</a>.</p>
<p dir="auto">Issue:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png"><img src="https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Correct:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff-11e5-8751-7e8576cbd230.png"><img src="https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff-11e5-8751-7e8576cbd230.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">There are a few parts to this ticket:</p>
<p dir="auto"><strong>Functionality</strong><br>
There is this logic (</p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/elastic/elasticsearch/blob/c57951780e0132c50b723d78038ab73e10d176c5/core/src/main/java/org/elasticsearch/cluster/routing/allocation/decider/AwarenessAllocationDecider.java#L222">elasticsearch/core/src/main/java/org/elasticsearch/cluster/routing/allocation/decider/AwarenessAllocationDecider.java</a>
</p>
<p class="mb-0 color-fg-muted">
Line 222
in
<a data-pjax="true" class="commit-tease-sha" href="/elastic/elasticsearch/commit/c57951780e0132c50b723d78038ab73e10d176c5">c579517</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L222" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="222"></td>
<td id="LC222" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-smi">int</span> <span class="pl-s1">averagePerAttribute</span> = <span class="pl-s1">shardCount</span> / <span class="pl-s1">numberOfAttributes</span>; </td>
</tr>
</tbody></table>
</div>
</div>
) which prevents the allocation of shards when the number of shards per unique node attribute used in the awareness (eg. rack_id) is exceeded (<code class="notranslate">if (currentNodeCount > (requiredCountPerAttribute + leftoverPerAttribute)) {</code>).<p></p>
<p dir="auto">In this particular use case, the user has 69 nodes with an index that has 1 primary shard defined with 68 replicas (so 69 copies of the shard). The expectation is that it will put 1 shard on each node. The issue here is that it doesn't and it ends up leaving 2 copies unassigned.</p>
<p dir="auto">For example, one of the rack_id's used in allocation awareness is associated to 5 different nodes in the cluster. It ended up allocating 1 shard on 4 of the 5 nodes. At this point, (currentNodeCount > (requiredCountPerAttribute + leftoverPerAttribute)), so it prevents the 5th node from getting a copy of this shard. In this case averagePerAttribute is 2 (with 28 unique attributes) so requiredCountPerAttribute is 2. totalLeftover is not 0, so leftoverPerAttribute is 1. So 4 > 3 and it prevents the 5th node from getting a shard copy.</p>
<p dir="auto">There is quite an uneven distribution of nodes per rack_id, some rack_ids in this setup has 1 node, others have up to 5 nodes in them. The allocation decider logic is preventing all shards for that index from being allocated and leaving a few unassigned.</p>
<p dir="auto">For this use case, the user is not that concerned about distribution of shards for this particular index across racks. But awareness is currently enabled for the node/cluster and there does not appear to be a way to configure a specific index to be excluded from the awareness logic.</p>
<p dir="auto"><strong>Documentation</strong><br>
Not much available on the above logic.</p>
<p dir="auto"><strong>Logging/Debugging</strong><br>
This may get a bit verbose so I am not sure about the feasibility of it. For troubleshooting purposes, it will be helpful if we can write a trace line with a bit more details than just the current message in the reroute explain ("explanation": "too many shards on nodes for attribute: [rack_id]"). Like it will be useful if it will tell you the problem index, how many shards are allowed, and how many are on there currently, etc.. Doesn't have to be logging either, maybe add to the explanation string that is returned by reroute explain to give some more specific information.</p> | <p dir="auto">Shared 5 will not get assigned after an upgrade from 1.5.0 to 1.6.0.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[root@ls2-es-lb ~]# curl -XGET "http://localhost:9200/_cluster/state/routing_table,routing_nodes/logstash-cdr-2015.05.18" | jq '.'
{
"allocations": [],
"routing_nodes": {
"nodes": {
"Ts0HJNFvSGy2JVd31VlotQ": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 1,
"relocating_node": null,
"node": "Ts0HJNFvSGy2JVd31VlotQ",
"primary": false,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 2,
"relocating_node": null,
"node": "Ts0HJNFvSGy2JVd31VlotQ",
"primary": false,
"state": "STARTED"
}
],
"6AS8BMZKQkivehCUWANRdQ": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 3,
"relocating_node": null,
"node": "6AS8BMZKQkivehCUWANRdQ",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 1,
"relocating_node": null,
"node": "6AS8BMZKQkivehCUWANRdQ",
"primary": true,
"state": "STARTED"
}
],
"6fs0j8RWQ2esU7wgvAPcdg": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 4,
"relocating_node": null,
"node": "6fs0j8RWQ2esU7wgvAPcdg",
"primary": false,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 2,
"relocating_node": null,
"node": "6fs0j8RWQ2esU7wgvAPcdg",
"primary": true,
"state": "STARTED"
}
],
"srLX4NZDTIaHq9qBVsxcZw": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 0,
"relocating_node": null,
"node": "srLX4NZDTIaHq9qBVsxcZw",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 3,
"relocating_node": null,
"node": "srLX4NZDTIaHq9qBVsxcZw",
"primary": false,
"state": "STARTED"
}
],
"DnCwjImuRFOsranelYuOaw": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 5,
"relocating_node": null,
"node": "DnCwjImuRFOsranelYuOaw",
"primary": true,
"state": "STARTED"
}
],
"3ZOu2V5xSX-BxL2Osd5l7A": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 4,
"relocating_node": null,
"node": "3ZOu2V5xSX-BxL2Osd5l7A",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 0,
"relocating_node": null,
"node": "3ZOu2V5xSX-BxL2Osd5l7A",
"primary": false,
"state": "STARTED"
}
]
},
"unassigned": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 5,
"relocating_node": null,
"node": null,
"primary": false,
"state": "UNASSIGNED"
}
]
},
"routing_table": {
"indices": {
"logstash-cdr-2015.05.18": {
"shards": {
"2": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 2,
"relocating_node": null,
"node": "6fs0j8RWQ2esU7wgvAPcdg",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 2,
"relocating_node": null,
"node": "Ts0HJNFvSGy2JVd31VlotQ",
"primary": false,
"state": "STARTED"
}
],
"5": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 5,
"relocating_node": null,
"node": "DnCwjImuRFOsranelYuOaw",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 5,
"relocating_node": null,
"node": null,
"primary": false,
"state": "UNASSIGNED"
}
],
"1": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 1,
"relocating_node": null,
"node": "6AS8BMZKQkivehCUWANRdQ",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 1,
"relocating_node": null,
"node": "Ts0HJNFvSGy2JVd31VlotQ",
"primary": false,
"state": "STARTED"
}
],
"3": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 3,
"relocating_node": null,
"node": "srLX4NZDTIaHq9qBVsxcZw",
"primary": false,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 3,
"relocating_node": null,
"node": "6AS8BMZKQkivehCUWANRdQ",
"primary": true,
"state": "STARTED"
}
],
"0": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 0,
"relocating_node": null,
"node": "3ZOu2V5xSX-BxL2Osd5l7A",
"primary": false,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 0,
"relocating_node": null,
"node": "srLX4NZDTIaHq9qBVsxcZw",
"primary": true,
"state": "STARTED"
}
],
"4": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 4,
"relocating_node": null,
"node": "3ZOu2V5xSX-BxL2Osd5l7A",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 4,
"relocating_node": null,
"node": "6fs0j8RWQ2esU7wgvAPcdg",
"primary": false,
"state": "STARTED"
}
]
}
}
}
},
"cluster_name": "tropo-es"
}"><pre class="notranslate"><code class="notranslate">[root@ls2-es-lb ~]# curl -XGET "http://localhost:9200/_cluster/state/routing_table,routing_nodes/logstash-cdr-2015.05.18" | jq '.'
{
"allocations": [],
"routing_nodes": {
"nodes": {
"Ts0HJNFvSGy2JVd31VlotQ": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 1,
"relocating_node": null,
"node": "Ts0HJNFvSGy2JVd31VlotQ",
"primary": false,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 2,
"relocating_node": null,
"node": "Ts0HJNFvSGy2JVd31VlotQ",
"primary": false,
"state": "STARTED"
}
],
"6AS8BMZKQkivehCUWANRdQ": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 3,
"relocating_node": null,
"node": "6AS8BMZKQkivehCUWANRdQ",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 1,
"relocating_node": null,
"node": "6AS8BMZKQkivehCUWANRdQ",
"primary": true,
"state": "STARTED"
}
],
"6fs0j8RWQ2esU7wgvAPcdg": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 4,
"relocating_node": null,
"node": "6fs0j8RWQ2esU7wgvAPcdg",
"primary": false,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 2,
"relocating_node": null,
"node": "6fs0j8RWQ2esU7wgvAPcdg",
"primary": true,
"state": "STARTED"
}
],
"srLX4NZDTIaHq9qBVsxcZw": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 0,
"relocating_node": null,
"node": "srLX4NZDTIaHq9qBVsxcZw",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 3,
"relocating_node": null,
"node": "srLX4NZDTIaHq9qBVsxcZw",
"primary": false,
"state": "STARTED"
}
],
"DnCwjImuRFOsranelYuOaw": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 5,
"relocating_node": null,
"node": "DnCwjImuRFOsranelYuOaw",
"primary": true,
"state": "STARTED"
}
],
"3ZOu2V5xSX-BxL2Osd5l7A": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 4,
"relocating_node": null,
"node": "3ZOu2V5xSX-BxL2Osd5l7A",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 0,
"relocating_node": null,
"node": "3ZOu2V5xSX-BxL2Osd5l7A",
"primary": false,
"state": "STARTED"
}
]
},
"unassigned": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 5,
"relocating_node": null,
"node": null,
"primary": false,
"state": "UNASSIGNED"
}
]
},
"routing_table": {
"indices": {
"logstash-cdr-2015.05.18": {
"shards": {
"2": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 2,
"relocating_node": null,
"node": "6fs0j8RWQ2esU7wgvAPcdg",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 2,
"relocating_node": null,
"node": "Ts0HJNFvSGy2JVd31VlotQ",
"primary": false,
"state": "STARTED"
}
],
"5": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 5,
"relocating_node": null,
"node": "DnCwjImuRFOsranelYuOaw",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 5,
"relocating_node": null,
"node": null,
"primary": false,
"state": "UNASSIGNED"
}
],
"1": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 1,
"relocating_node": null,
"node": "6AS8BMZKQkivehCUWANRdQ",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 1,
"relocating_node": null,
"node": "Ts0HJNFvSGy2JVd31VlotQ",
"primary": false,
"state": "STARTED"
}
],
"3": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 3,
"relocating_node": null,
"node": "srLX4NZDTIaHq9qBVsxcZw",
"primary": false,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 3,
"relocating_node": null,
"node": "6AS8BMZKQkivehCUWANRdQ",
"primary": true,
"state": "STARTED"
}
],
"0": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 0,
"relocating_node": null,
"node": "3ZOu2V5xSX-BxL2Osd5l7A",
"primary": false,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 0,
"relocating_node": null,
"node": "srLX4NZDTIaHq9qBVsxcZw",
"primary": true,
"state": "STARTED"
}
],
"4": [
{
"index": "logstash-cdr-2015.05.18",
"shard": 4,
"relocating_node": null,
"node": "3ZOu2V5xSX-BxL2Osd5l7A",
"primary": true,
"state": "STARTED"
},
{
"index": "logstash-cdr-2015.05.18",
"shard": 4,
"relocating_node": null,
"node": "6fs0j8RWQ2esU7wgvAPcdg",
"primary": false,
"state": "STARTED"
}
]
}
}
}
},
"cluster_name": "tropo-es"
}
</code></pre></div>
<p dir="auto">I tried to force a re-route w/ the following script but it didnt work</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="for h in 3ZOu2V5xSX-BxL2Osd5l7A srLX4NZDTIaHq9qBVsxcZw 6fs0j8RWQ2esU7wgvAPcdg 6AS8BMZKQkivehCUWANRdQ DnCwjImuRFOsranelYuOaw Ts0HJNFvSGy2JVd31VlotQ; do
curl -sw "%{http_code}" -XPOST -d '{ "commands" : [ { "allocate" : { "shard": 5, "index": "logstash-cdr-2015.05.18", "node" : "'"$h"'" } } ] }' 'http://ls2-es-lb.int.tropo.com:9200/_cluster/reroute?pretty' | jq '.'
# jdyer at JOHNDYE-M-F9G6 in ~/Projects/logstash-input-stomp on git:master o [13:37:32]
$ for h in 3ZOu2V5xSX-BxL2Osd5l7A srLX4NZDTIaHq9qBVsxcZw 6fs0j8RWQ2esU7wgvAPcdg 6AS8BMZKQkivehCUWANRdQ DnCwjImuRFOsranelYuOaw Ts0HJNFvSGy2JVd31VlotQ; do
for> curl -sw "%{http_code}" -XPOST -d '{ "commands" : [ { "allocate" : { "shard": 5, "index": "logstash-cdr-2015.05.18", "node" : "'"$h"'" } } ] }' 'http://ls2-es-lb.int.tropo.com:9200/_cluster/reroute?pretty' | jq '.'
for> done
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es1.int.tropo.com][3ZOu2V5xSX-BxL2Osd5l7A][ls2-es1][inet[/10.1.0.103:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [468.2gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es2.int.tropo.com][srLX4NZDTIaHq9qBVsxcZw][ls2-es2][inet[/10.1.0.102:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [469.7gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es3.int.tropo.com][6fs0j8RWQ2esU7wgvAPcdg][ls2-es3][inet[/10.1.0.101:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [472.2gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es4.int.tropo.com][6AS8BMZKQkivehCUWANRdQ][ls2-es4][inet[/10.1.0.104:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [481gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es5.int.tropo.com][DnCwjImuRFOsranelYuOaw][ls2-es5][inet[/10.1.0.55:9300]]{master=false} is not allowed, reason: [NO(shard cannot be allocated on same node [DnCwjImuRFOsranelYuOaw] it already exists on)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][YES(shard count under limit [2] of total shards per node)][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [466.9gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es6.int.tropo.com][Ts0HJNFvSGy2JVd31VlotQ][ls2-es6.int.tropo.com][inet[/10.1.0.106:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [483.3gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400"><pre class="notranslate"><code class="notranslate">for h in 3ZOu2V5xSX-BxL2Osd5l7A srLX4NZDTIaHq9qBVsxcZw 6fs0j8RWQ2esU7wgvAPcdg 6AS8BMZKQkivehCUWANRdQ DnCwjImuRFOsranelYuOaw Ts0HJNFvSGy2JVd31VlotQ; do
curl -sw "%{http_code}" -XPOST -d '{ "commands" : [ { "allocate" : { "shard": 5, "index": "logstash-cdr-2015.05.18", "node" : "'"$h"'" } } ] }' 'http://ls2-es-lb.int.tropo.com:9200/_cluster/reroute?pretty' | jq '.'
# jdyer at JOHNDYE-M-F9G6 in ~/Projects/logstash-input-stomp on git:master o [13:37:32]
$ for h in 3ZOu2V5xSX-BxL2Osd5l7A srLX4NZDTIaHq9qBVsxcZw 6fs0j8RWQ2esU7wgvAPcdg 6AS8BMZKQkivehCUWANRdQ DnCwjImuRFOsranelYuOaw Ts0HJNFvSGy2JVd31VlotQ; do
for> curl -sw "%{http_code}" -XPOST -d '{ "commands" : [ { "allocate" : { "shard": 5, "index": "logstash-cdr-2015.05.18", "node" : "'"$h"'" } } ] }' 'http://ls2-es-lb.int.tropo.com:9200/_cluster/reroute?pretty' | jq '.'
for> done
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es1.int.tropo.com][3ZOu2V5xSX-BxL2Osd5l7A][ls2-es1][inet[/10.1.0.103:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [468.2gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es2.int.tropo.com][srLX4NZDTIaHq9qBVsxcZw][ls2-es2][inet[/10.1.0.102:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [469.7gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es3.int.tropo.com][6fs0j8RWQ2esU7wgvAPcdg][ls2-es3][inet[/10.1.0.101:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [472.2gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es4.int.tropo.com][6AS8BMZKQkivehCUWANRdQ][ls2-es4][inet[/10.1.0.104:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [481gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es5.int.tropo.com][DnCwjImuRFOsranelYuOaw][ls2-es5][inet[/10.1.0.55:9300]]{master=false} is not allowed, reason: [NO(shard cannot be allocated on same node [DnCwjImuRFOsranelYuOaw] it already exists on)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][YES(shard count under limit [2] of total shards per node)][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [466.9gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
{
"error": "ElasticsearchIllegalArgumentException[[allocate] allocation of [logstash-cdr-2015.05.18][5] on node [ls2-es6.int.tropo.com][Ts0HJNFvSGy2JVd31VlotQ][ls2-es6.int.tropo.com][inet[/10.1.0.106:9300]]{master=false} is not allowed, reason: [YES(shard is not allocated to same node or host)][YES(node passes include/exclude/require filters)][YES(primary is already active)][YES(below shard recovery limit of [2])][YES(allocation disabling is ignored)][YES(allocation disabling is ignored)][YES(no allocation awareness enabled)][NO(too many shards for this index on node [2], limit: [2])][YES(target node version [1.6.0] is same or newer than source node version [1.6.0])][YES(enough disk for shard on node, free: [483.3gb])][YES(shard not primary or relocation disabled)]]",
"status": 400
}
400
</code></pre></div>
<p dir="auto">this is the only unassigned shared since the restart and I am not sure how to get it back to green. Any advice ?</p>
<p dir="auto">Thanks</p> | 1 |
<p dir="auto">Currently, you'll get an unexplained</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: unresolved modulename: std"><pre class="notranslate"><code class="notranslate">error: unresolved modulename: std
</code></pre></div>
<p dir="auto">Which is bound to confuse people.</p> | <p dir="auto">If you write something like <code class="notranslate">#debug["%u", 10]</code>, the type error (unsigned vs signed int) gets reported in <code class="notranslate">core.rs</code>, at the definition of <code class="notranslate">#debug</code>, rather than at the point of use. This is very confusing and makes you think something is fundamentally wrong in the Rust libraries (as in, they don't compile) rather than your own code. I think this ought to be fixed before 0.1 so I associated it with that milestone, but others may disagree.</p> | 1 |
<p dir="auto">details here:<br>
<a href="https://groups.google.com/forum/#!topic/druid-user/K7YmcBJM6T4" rel="nofollow">https://groups.google.com/forum/#!topic/druid-user/K7YmcBJM6T4</a></p>
<p dir="auto">please help!</p> | <p dir="auto">all the tasks keep restarting with this error in the logs:<br>
I tried:</p>
<ul dir="auto">
<li>upgrading node from 0.12.1 to 0.12.2</li>
<li>spinning a whole new server and created a replica.<br>
Completely unrecoverable!</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2018-08-13 15:41:48,555 INFO i.d.i.o.ForkingTaskRunner [forking-task-runner-1] Exception caught during execution
java.io.IOException: Stream closed
at java.io.BufferedInputStream.getBufIfOpen(BufferedInputStream.java:170) ~[?:1.8.0_181]
at java.io.BufferedInputStream.read1(BufferedInputStream.java:291) ~[?:1.8.0_181]
at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_181]
at java.io.FilterInputStream.read(FilterInputStream.java:107) ~[?:1.8.0_181]
at com.google.common.io.ByteStreams.copy(ByteStreams.java:175) ~[guava-16.0.1.jar:?]
at io.druid.indexing.overlord.ForkingTaskRunner$1.call(ForkingTaskRunner.java:452) [druid-indexing-service-0.12.2.jar:0.12.2]
at io.druid.indexing.overlord.ForkingTaskRunner$1.call(ForkingTaskRunner.java:224) [druid-indexing-service-0.12.2.jar:0.12.2]
at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_181]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [?:1.8.0_181]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [?:1.8.0_181]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_181]"><pre class="notranslate"><code class="notranslate">2018-08-13 15:41:48,555 INFO i.d.i.o.ForkingTaskRunner [forking-task-runner-1] Exception caught during execution
java.io.IOException: Stream closed
at java.io.BufferedInputStream.getBufIfOpen(BufferedInputStream.java:170) ~[?:1.8.0_181]
at java.io.BufferedInputStream.read1(BufferedInputStream.java:291) ~[?:1.8.0_181]
at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_181]
at java.io.FilterInputStream.read(FilterInputStream.java:107) ~[?:1.8.0_181]
at com.google.common.io.ByteStreams.copy(ByteStreams.java:175) ~[guava-16.0.1.jar:?]
at io.druid.indexing.overlord.ForkingTaskRunner$1.call(ForkingTaskRunner.java:452) [druid-indexing-service-0.12.2.jar:0.12.2]
at io.druid.indexing.overlord.ForkingTaskRunner$1.call(ForkingTaskRunner.java:224) [druid-indexing-service-0.12.2.jar:0.12.2]
at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_181]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [?:1.8.0_181]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [?:1.8.0_181]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_181]
</code></pre></div>
<p dir="auto">Even posted a thread here:<br>
<a href="https://groups.google.com/forum/#!topic/druid-user/K7YmcBJM6T4" rel="nofollow">https://groups.google.com/forum/#!topic/druid-user/K7YmcBJM6T4</a></p>
<p dir="auto">More details:</p>
<ul dir="auto">
<li>Coord+overlord node is still at 0.12.1 (we havent upgraded it yet, for fear of more damage)</li>
<li>another replica of MM node (we deploy 2) has been running without issue. we are very, very scared that if that replica dies and gets stuck like this, ALL ingestion will stop!</li>
</ul>
<p dir="auto">All help is highly appreciated.</p> | 1 |
<p dir="auto">I just stumbled upon an illegal instruction while redefining a function called with splatting, under some peculiar conditions. Here is a minimal test case:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="b = 1
v = (1,)
# type annotation for A (but not the actual type) is necessary to trigger the bug
# the return value is not important
f(A::Any, I1) = 1
# the splatting is necessary to trigger the bug
# two calls are needed
f(b, v...)
f(b, v...)
f(A::Any, I1) = error()
# the for loop is required to trigger the bug
for i = 1; f(b, v...); end"><pre class="notranslate">b <span class="pl-k">=</span> <span class="pl-c1">1</span>
v <span class="pl-k">=</span> (<span class="pl-c1">1</span>,)
<span class="pl-c"><span class="pl-c">#</span> type annotation for A (but not the actual type) is necessary to trigger the bug</span>
<span class="pl-c"><span class="pl-c">#</span> the return value is not important</span>
<span class="pl-en">f</span>(A<span class="pl-k">::</span><span class="pl-c1">Any</span>, I1) <span class="pl-k">=</span> <span class="pl-c1">1</span>
<span class="pl-c"><span class="pl-c">#</span> the splatting is necessary to trigger the bug</span>
<span class="pl-c"><span class="pl-c">#</span> two calls are needed</span>
<span class="pl-c1">f</span>(b, v<span class="pl-k">...</span>)
<span class="pl-c1">f</span>(b, v<span class="pl-k">...</span>)
<span class="pl-en">f</span>(A<span class="pl-k">::</span><span class="pl-c1">Any</span>, I1) <span class="pl-k">=</span> <span class="pl-c1">error</span>()
<span class="pl-c"><span class="pl-c">#</span> the for loop is required to trigger the bug</span>
<span class="pl-k">for</span> i <span class="pl-k">=</span> <span class="pl-c1">1</span>; <span class="pl-c1">f</span>(b, v<span class="pl-k">...</span>); <span class="pl-k">end</span></pre></div>
<p dir="auto">The output is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="WARNING: Method definition f(Any, Any) in module Main at /home/carlo/Programs/julia/bug.jl:6 overwritten at /home/carlo/Programs/julia/bug.jl:13.
signal (4): Illegal instruction
while loading /home/carlo/Programs/julia/bug.jl, in expression starting on line 16
macro expansion; at /home/carlo/Programs/julia/bug.jl:16
unknown function (ip: 0x7f6df02bc87f)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
jl_parse_eval_all at /home/carlo/Programs/julia/src/ast.c:699
jl_load at /home/carlo/Programs/julia/src/toplevel.c:569
include_from_node1 at ./loading.jl:426
unknown function (ip: 0x7f70070fa13c)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
do_call at /home/carlo/Programs/julia/src/interpreter.c:65
eval at /home/carlo/Programs/julia/src/interpreter.c:188
jl_toplevel_eval_flex at /home/carlo/Programs/julia/src/toplevel.c:529
jl_toplevel_eval_in_warn at /home/carlo/Programs/julia/src/builtins.c:571
eval at ./boot.jl:231
unknown function (ip: 0x7f70070e07d0)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
eval_user_input at ./REPL.jl:62
unknown function (ip: 0x7f6df02bc5b6)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
macro expansion; at ./REPL.jl:92
unknown function (ip: 0x7f6df02b8c8f)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
jl_apply at /home/carlo/Programs/julia/src/julia.h:1388
unknown function (ip: 0xffffffffffffffff)
Allocations: 4248296 (Pool: 4247549; Big: 747); GC: 9
Illegal instruction (core dumped)"><pre class="notranslate"><code class="notranslate">WARNING: Method definition f(Any, Any) in module Main at /home/carlo/Programs/julia/bug.jl:6 overwritten at /home/carlo/Programs/julia/bug.jl:13.
signal (4): Illegal instruction
while loading /home/carlo/Programs/julia/bug.jl, in expression starting on line 16
macro expansion; at /home/carlo/Programs/julia/bug.jl:16
unknown function (ip: 0x7f6df02bc87f)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
jl_parse_eval_all at /home/carlo/Programs/julia/src/ast.c:699
jl_load at /home/carlo/Programs/julia/src/toplevel.c:569
include_from_node1 at ./loading.jl:426
unknown function (ip: 0x7f70070fa13c)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
do_call at /home/carlo/Programs/julia/src/interpreter.c:65
eval at /home/carlo/Programs/julia/src/interpreter.c:188
jl_toplevel_eval_flex at /home/carlo/Programs/julia/src/toplevel.c:529
jl_toplevel_eval_in_warn at /home/carlo/Programs/julia/src/builtins.c:571
eval at ./boot.jl:231
unknown function (ip: 0x7f70070e07d0)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
eval_user_input at ./REPL.jl:62
unknown function (ip: 0x7f6df02bc5b6)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
macro expansion; at ./REPL.jl:92
unknown function (ip: 0x7f6df02b8c8f)
jl_call_method_internal at /home/carlo/Programs/julia/src/julia_internal.h:86
jl_apply at /home/carlo/Programs/julia/src/julia.h:1388
unknown function (ip: 0xffffffffffffffff)
Allocations: 4248296 (Pool: 4247549; Big: 747); GC: 9
Illegal instruction (core dumped)
</code></pre></div>
<p dir="auto">This is on:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Julia Version 0.5.0-dev+4882
Commit 3aafa05* (2016-06-21 12:36 UTC)
Platform Info:
System: Linux (x86_64-linux-gnu)
CPU: Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
LAPACK: libopenblas64_
LIBM: libopenlibm
LLVM: libLLVM-3.7.1 (ORCJIT, haswell)"><pre class="notranslate"><code class="notranslate">Julia Version 0.5.0-dev+4882
Commit 3aafa05* (2016-06-21 12:36 UTC)
Platform Info:
System: Linux (x86_64-linux-gnu)
CPU: Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
LAPACK: libopenblas64_
LIBM: libopenlibm
LLVM: libLLVM-3.7.1 (ORCJIT, haswell)
</code></pre></div> | <p dir="auto">I found that sometimes function overwriting does not work right away. The method redefinition warning gets triggered, but the old function definition is used.<br>
Here is a minimal test case which shows the bug (the last call fails, but calling <code class="notranslate">f()</code> again then produces <code class="notranslate">2</code> as expected):</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="f() = 1
# at least two calls are required to trigger the bug
f()
f()
f() = 2
@assert f() == 2 # fails"><pre class="notranslate"><span class="pl-en">f</span>() <span class="pl-k">=</span> <span class="pl-c1">1</span>
<span class="pl-c"><span class="pl-c">#</span> at least two calls are required to trigger the bug</span>
<span class="pl-c1">f</span>()
<span class="pl-c1">f</span>()
<span class="pl-en">f</span>() <span class="pl-k">=</span> <span class="pl-c1">2</span>
<span class="pl-c1">@assert</span> <span class="pl-c1">f</span>() <span class="pl-k">==</span> <span class="pl-c1">2</span> <span class="pl-c"><span class="pl-c">#</span> fails</span></pre></div>
<p dir="auto">This is on version <code class="notranslate">0.5.0-dev+4882</code>.</p> | 1 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import torch
a = torch.arange(1,17).float().reshape(4,4)
print(a)
cpu_res = torch.mean(a, (0,0))
cuda_res = torch.mean(a.cuda(), (0,0))
print(cpu_res)
print(cuda_res)"><pre class="notranslate"><code class="notranslate">import torch
a = torch.arange(1,17).float().reshape(4,4)
print(a)
cpu_res = torch.mean(a, (0,0))
cuda_res = torch.mean(a.cuda(), (0,0))
print(cpu_res)
print(cuda_res)
</code></pre></div>
<p dir="auto">Result is</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tensor([[ 1., 2., 3., 4.],
[ 5., 6., 7., 8.],
[ 9., 10., 11., 12.],
[13., 14., 15., 16.]])
tensor([1.7500, 2.0000, 2.2500, 2.5000])
tensor([ 7., 8., 9., 10.], device='cuda:0')"><pre class="notranslate"><code class="notranslate">tensor([[ 1., 2., 3., 4.],
[ 5., 6., 7., 8.],
[ 9., 10., 11., 12.],
[13., 14., 15., 16.]])
tensor([1.7500, 2.0000, 2.2500, 2.5000])
tensor([ 7., 8., 9., 10.], device='cuda:0')
</code></pre></div>
<p dir="auto">When transfer a same dim like 0 twice, CUDA and CPU return different result. It seems like CPU calculates mean twice and CUDA not.</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gchanan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gchanan">@gchanan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zou3519/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zou3519">@zou3519</a></p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">I am not sure if this is reproducible for every environment, but I hit the following error when trying to set cuda device in processes. What is weird is that the error disappears if I remove the line <code class="notranslate">x = torch.rand(20, 2).cuda()</code> right after the for loop.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/home/shenli/local/miniconda/lib/python3.7/multiprocessing/process.py", line 297, in _bootstrap
self.run()
File "/home/shenli/local/miniconda/lib/python3.7/multiprocessing/process.py", line 99, in run
self._target(*self._args, **self._kwargs)
File "dist_bug.py", line 5, in run
torch.cuda.set_device(rank)
File "/home/shenli/project/pytorch/torch/cuda/__init__.py", line 265, in set_device
torch._C._cuda_setDevice(device)
RuntimeError: cuda runtime error (3) : initialization error at ../torch/csrc/cuda/Module.cpp:33"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "/home/shenli/local/miniconda/lib/python3.7/multiprocessing/process.py", line 297, in _bootstrap
self.run()
File "/home/shenli/local/miniconda/lib/python3.7/multiprocessing/process.py", line 99, in run
self._target(*self._args, **self._kwargs)
File "dist_bug.py", line 5, in run
torch.cuda.set_device(rank)
File "/home/shenli/project/pytorch/torch/cuda/__init__.py", line 265, in set_device
torch._C._cuda_setDevice(device)
RuntimeError: cuda runtime error (3) : initialization error at ../torch/csrc/cuda/Module.cpp:33
</code></pre></div>
<p dir="auto"><strong>Edit:</strong> based on the discussion below, the solution should be fixing the "bad fork" error detection, which is duplicated with <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="413035669" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/17359" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/17359/hovercard" href="https://github.com/pytorch/pytorch/issues/17359">#17359</a>.</p>
<h2 dir="auto">To Reproduce</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import torch
from torch.multiprocessing import Process
def run(rank):
torch.cuda.set_device(rank)
if __name__ == "__main__":
size = 2
processes = []
for rank in range(size):
# it would work fine without the line below
x = torch.rand(20, 2).cuda()
p = Process(target=run, args=(rank,))
p.start()
processes.append(p)
for p in processes:
p.join()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">torch</span>
<span class="pl-k">from</span> <span class="pl-s1">torch</span>.<span class="pl-s1">multiprocessing</span> <span class="pl-k">import</span> <span class="pl-v">Process</span>
<span class="pl-k">def</span> <span class="pl-en">run</span>(<span class="pl-s1">rank</span>):
<span class="pl-s1">torch</span>.<span class="pl-s1">cuda</span>.<span class="pl-en">set_device</span>(<span class="pl-s1">rank</span>)
<span class="pl-k">if</span> <span class="pl-s1">__name__</span> <span class="pl-c1">==</span> <span class="pl-s">"__main__"</span>:
<span class="pl-s1">size</span> <span class="pl-c1">=</span> <span class="pl-c1">2</span>
<span class="pl-s1">processes</span> <span class="pl-c1">=</span> []
<span class="pl-k">for</span> <span class="pl-s1">rank</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-s1">size</span>):
<span class="pl-c"># it would work fine without the line below</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">rand</span>(<span class="pl-c1">20</span>, <span class="pl-c1">2</span>).<span class="pl-en">cuda</span>()
<span class="pl-s1">p</span> <span class="pl-c1">=</span> <span class="pl-v">Process</span>(<span class="pl-s1">target</span><span class="pl-c1">=</span><span class="pl-s1">run</span>, <span class="pl-s1">args</span><span class="pl-c1">=</span>(<span class="pl-s1">rank</span>,))
<span class="pl-s1">p</span>.<span class="pl-en">start</span>()
<span class="pl-s1">processes</span>.<span class="pl-en">append</span>(<span class="pl-s1">p</span>)
<span class="pl-k">for</span> <span class="pl-s1">p</span> <span class="pl-c1">in</span> <span class="pl-s1">processes</span>:
<span class="pl-s1">p</span>.<span class="pl-en">join</span>()</pre></div>
<h2 dir="auto">Environment</h2>
<p dir="auto">PyTorch version: 1.1.0a0+63214b5<br>
Is debug build: No<br>
CUDA used to build PyTorch: 9.2.88</p>
<p dir="auto">OS: CentOS Linux 7 (Core)<br>
GCC version: (GCC) 4.8.5 20150623 (Red Hat 4.8.5-28)<br>
CMake version: version 3.12.2</p>
<p dir="auto">Python version: 3.7<br>
Is CUDA available: Yes<br>
CUDA runtime version: 9.2.88<br>
GPU models and configuration:<br>
GPU 0: Tesla M40<br>
GPU 1: Tesla M40</p>
<p dir="auto">Nvidia driver version: 396.26<br>
cuDNN version: Could not collect</p>
<p dir="auto">Versions of relevant libraries:<br>
[pip] numpy==1.15.4<br>
[pip] torch==1.1.0a0+63214b5<br>
[conda] blas 1.0 mkl<br>
[conda] mkl 2019.1 144<br>
[conda] mkl-include 2019.1 144<br>
[conda] mkl_fft 1.0.6 py37hd81dba3_0<br>
[conda] mkl_random 1.0.2 py37hd81dba3_0<br>
[conda] torch 1.1.0a0+63214b5 dev_0</p> | 0 |
<p dir="auto">While running an example from recommender system package for movielens data, the performance of multithreaded parallel version does not seem to scale well.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2932535/14580833/f10bfc04-03f8-11e6-84f7-da20a35588a8.png"><img width="528" alt="screen shot 2016-04-16 at 5 30 01 pm" src="https://cloud.githubusercontent.com/assets/2932535/14580833/f10bfc04-03f8-11e6-84f7-da20a35588a8.png" style="max-width: 100%;"></a></p>
<p dir="auto">To run the example download the dataset from <a href="http://files.grouplens.org/datasets/movielens/ml-20m.zip" rel="nofollow">here</a>, unzip the files to any folder. Clone this <a href="https://github.com/abhijithch/RecSys.jl/">repository</a> and run the movielens <a href="url">example</a> in julia built with multithreading,</p>
<ul dir="auto">
<li>have a thread enabled julia build</li>
<li>include the julia <a href="https://github.com/abhijithch/RecSys.jl/tree/master/examples/movielens">file</a></li>
<li>set OPENBLAS_NUM_THREADS to 1</li>
<li>set JULIA_NUM_THREADS to desired number of threads</li>
<li>call the <code class="notranslate">test_thread(dataset_path)</code> method in the example script</li>
</ul> | <p dir="auto">I ran my <a href="https://github.com/ranjanan/MT-Workloads/blob/master/Logistic%20Regression/logreg.jl">Logistic Regression benchmark</a> for threads. Not sure if this is related to earlier issues or not, but I thought I'd post an issue anyway.<br>
Usually the output would be (on a version of master sometime in January)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Warm up run : 25 iterations!
Time taken by serial implementation = 1.508228316
Time taken by parallel implementation = 0.429550363
Speedup over 4 threads : 3.5111792374390336"><pre class="notranslate"><code class="notranslate">Warm up run : 25 iterations!
Time taken by serial implementation = 1.508228316
Time taken by parallel implementation = 0.429550363
Speedup over 4 threads : 3.5111792374390336
</code></pre></div>
<p dir="auto">Now, with the current threaded build of master, it's this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Warm up run : 25 iterations!
Time taken by serial implementation = 1.831504341
Time taken by parallel implementation = 42.974081761
Speedup over 4 threads : 0.04261881268774738"><pre class="notranslate"><code class="notranslate">Warm up run : 25 iterations!
Time taken by serial implementation = 1.831504341
Time taken by parallel implementation = 42.974081761
Speedup over 4 threads : 0.04261881268774738
</code></pre></div> | 1 |
<p dir="auto">This may sound weird but a deno.info api would be really helpful for me. (Exposing the output of the deno info command in some form without having to access the CLI.)</p>
<p dir="auto">My use case is having deno make requests for the module and all imported modules to the webserver it's also running (allowing the server to trigger compiles for said modules.) and caching external modules to the local webserver by making requests. Finally, checking if any of the modules are loading from internet sources as opposed to local cache sources.</p>
<p dir="auto">I'm sure there could be other ways of doing this, but it might be nice to be able to build custom tooling around the deno info command.</p> | <p dir="auto">Currently "deno info <a href="https://deno.land/std/http/file_server.ts" rel="nofollow">https://deno.land/std/http/file_server.ts</a>" will display a dependency graph of the specified module. It would be nice to be able to access this information in a programmatic way.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let depTree = await Deno.deps("https://deno.land/std/http/file_server.ts")"><pre class="notranslate"><code class="notranslate">let depTree = await Deno.deps("https://deno.land/std/http/file_server.ts")
</code></pre></div>
<p dir="auto">Where depTree would be some JSON encodable object similar to the current output.</p>
<p dir="auto">The first step to exposing this would be pure rust functionality of turning a <code class="notranslate">Deps</code> structure into a JSON string: </p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/denoland/deno/blob/960ee5257a7b38c6b3b59a3dca670c7c1771996f/cli/modules.rs#L188">deno/cli/modules.rs</a>
</p>
<p class="mb-0 color-fg-muted">
Line 188
in
<a data-pjax="true" class="commit-tease-sha" href="/denoland/deno/commit/960ee5257a7b38c6b3b59a3dca670c7c1771996f">960ee52</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L188" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="188"></td>
<td id="LC188" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">pub</span> <span class="pl-k">struct</span> <span class="pl-smi">Deps</span> <span class="pl-kos">{</span> </td>
</tr>
</tbody></table>
</div>
</div>
<p></p> | 1 |
<p dir="auto">Challenge <a href="http://freecodecamp.com/challenges/waypoint-delete-properties-from-a-javascript-object" rel="nofollow">Waypoint: Delete Properties from a JavaScript Object</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var ourDog = {
"name": "Camper",
"legs": 4,
"tails": 1,
"friends": ["everything!"],
"bark": "bow-wow"
};
delete ourDog.bark;
var myDog = {
"name": "Happy Coder",
"legs": 4,
"tails": 1,
"friends": ["Free Code Camp Campers"],
"bark": "woof"
};
// Only change code below this line.
delete myDog.bark;
// Only change code above this line.
(function(z){return z;})(myDog);
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">ourDog</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"Camper"</span><span class="pl-kos">,</span>
<span class="pl-s">"legs"</span>: <span class="pl-c1">4</span><span class="pl-kos">,</span>
<span class="pl-s">"tails"</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-s">"friends"</span>: <span class="pl-kos">[</span><span class="pl-s">"everything!"</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"bark"</span>: <span class="pl-s">"bow-wow"</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">delete</span> <span class="pl-s1">ourDog</span><span class="pl-kos">.</span><span class="pl-c1">bark</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">myDog</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"Happy Coder"</span><span class="pl-kos">,</span>
<span class="pl-s">"legs"</span>: <span class="pl-c1">4</span><span class="pl-kos">,</span>
<span class="pl-s">"tails"</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-s">"friends"</span>: <span class="pl-kos">[</span><span class="pl-s">"Free Code Camp Campers"</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"bark"</span>: <span class="pl-s">"woof"</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-c">// Only change code below this line.</span>
<span class="pl-k">delete</span> <span class="pl-s1">myDog</span><span class="pl-kos">.</span><span class="pl-c1">bark</span><span class="pl-kos">;</span>
<span class="pl-c">// Only change code above this line.</span>
<span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">z</span><span class="pl-kos">)</span><span class="pl-kos">{</span><span class="pl-k">return</span> <span class="pl-s1">z</span><span class="pl-kos">;</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-s1">myDog</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> | <p dir="auto">Challenge <a href="http://freecodecamp.com/challenges/waypoint-delete-properties-from-a-javascript-object#?solution=var%20ourDog%20%3D%20%7B%0A%20%20%22name%22%3A%20%22Camper%22%2C%0A%20%20%22legs%22%3A%204%2C%0A%20%20%22tails%22%3A%201%2C%0A%20%20%22friends%22%3A%20%5B%22everything!%22%5D%2C%0A%20%20%22bark%22%3A%20%22bow-wow%22%0A%7D%3B%0A%0Adelete%20ourDog.bark%3B%0A%0Avar%20myDog%20%3D%20%7B%0A%20%20%22name%22%3A%20%22Happy%20Coder%22%2C%0A%20%20%22legs%22%3A%204%2C%0A%20%20%22tails%22%3A%201%2C%0A%20%20%22friends%22%3A%20%5B%22Free%20Code%20Camp%20Campers%22%5D%2C%0A%20%20%22bark%22%3A%20%22woof%22%0A%7D%3B%0A%0A%2F%2F%20Only%20change%20code%20below%20this%20line.%0A%0Adelete%20myDog.bark%3B%0A%0A%2F%2F%20Only%20change%20code%20above%20this%20line.%0A%0A%28function%28z%29%7Breturn%20z%3B%7D%29%28myDog%29%3B%0A" rel="nofollow">Waypoint: Delete Properties from a JavaScript Object</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var ourDog = {
"name": "Camper",
"legs": 4,
"tails": 1,
"friends": ["everything!"],
"bark": "bow-wow"
};
delete ourDog.bark;
var myDog = {
"name": "Happy Coder",
"legs": 4,
"tails": 1,
"friends": ["Free Code Camp Campers"],
"bark": "woof"
};
// Only change code below this line.
delete myDog.bark;
// Only change code above this line.
(function(z){return z;})(myDog);
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">ourDog</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"Camper"</span><span class="pl-kos">,</span>
<span class="pl-s">"legs"</span>: <span class="pl-c1">4</span><span class="pl-kos">,</span>
<span class="pl-s">"tails"</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-s">"friends"</span>: <span class="pl-kos">[</span><span class="pl-s">"everything!"</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"bark"</span>: <span class="pl-s">"bow-wow"</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">delete</span> <span class="pl-s1">ourDog</span><span class="pl-kos">.</span><span class="pl-c1">bark</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">myDog</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"Happy Coder"</span><span class="pl-kos">,</span>
<span class="pl-s">"legs"</span>: <span class="pl-c1">4</span><span class="pl-kos">,</span>
<span class="pl-s">"tails"</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-s">"friends"</span>: <span class="pl-kos">[</span><span class="pl-s">"Free Code Camp Campers"</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"bark"</span>: <span class="pl-s">"woof"</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-c">// Only change code below this line.</span>
<span class="pl-k">delete</span> <span class="pl-s1">myDog</span><span class="pl-kos">.</span><span class="pl-c1">bark</span><span class="pl-kos">;</span>
<span class="pl-c">// Only change code above this line.</span>
<span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">z</span><span class="pl-kos">)</span><span class="pl-kos">{</span><span class="pl-k">return</span> <span class="pl-s1">z</span><span class="pl-kos">;</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-s1">myDog</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Issue:<br>
Properties box says:<br>
"Let's delete the "tails" property from myDog."<br>
Test success statement:<br>
"Delete the property "bark" from myDog."</p>
<p dir="auto">Test succeeds on deleting bark property, not tails.</p> | 1 |
<p dir="auto">Here's my problem.</p>
<p dir="auto">Using react-router 1.0, i'm going to be re-rendering trees that are 90% the same. We use an external lib for an api that produces video mark up. Totally out of our hands. They modify the dom and that's how it has to be.</p>
<p dir="auto">My problem comes in that when the routing changes, it re-renders the tree, and wipes out the custom DOM put in by the third party api.</p>
<p dir="auto">I've tried things like returning false from <code class="notranslate">shouldComponentUpdate</code> always.. using <code class="notranslate">dangerouslySetInnerHtml={{__html: ''}}</code> to a blank string hoping that react would internally not do diff's on it.. nothing seems to work.</p>
<p dir="auto">Is there anything I can do to stop it?</p> | <p dir="auto">When writing a component that contains a set of large subtrees that stay relatively the same, but are simply moved around such that React's virtual DOM diffing can't detect the movement, React will end up recreating huge trees it should simply be moving.</p>
<p dir="auto">For example, pretend <code class="notranslate">blockA</code> and <code class="notranslate">blockB</code> are very large structures. They may be made of several levels of children and components. For example one could be the entire page contents and the other the sidebar, while this <code class="notranslate">render()</code> is the page root.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="render() {
var blockA = <div>AAA</div>,
blockB = <div>BBB</div>;
if ( this.props.layoutA ) {
return <div>
<div className="something">{blockB}</div>
<div className="something">{blockA}</div>
</div>;
} else {
return <div>
{blockA}
{blockB}
</div>;
}
}"><pre class="notranslate"><span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">blockA</span> <span class="pl-c1">=</span> <span class="pl-c1"><</span><span class="pl-ent">div</span><span class="pl-c1">></span>AAA<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span><span class="pl-kos">,</span>
<span class="pl-s1">blockB</span> <span class="pl-c1">=</span> <span class="pl-c1"><</span><span class="pl-ent">div</span><span class="pl-c1">></span>BBB<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">layoutA</span> <span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-c1"><</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-s">"something"</span><span class="pl-c1">></span><span class="pl-kos">{</span><span class="pl-s1">blockB</span><span class="pl-kos">}</span><span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-s">"something"</span><span class="pl-c1">></span><span class="pl-kos">{</span><span class="pl-s1">blockA</span><span class="pl-kos">}</span><span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-c1"><</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-kos">{</span><span class="pl-s1">blockA</span><span class="pl-kos">}</span>
<span class="pl-kos">{</span><span class="pl-s1">blockB</span><span class="pl-kos">}</span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Because the blocks aren't at the same level React cannot see the relation between these blocks and <code class="notranslate">key</code> cannot be used to give React any hints. As a result, when <code class="notranslate">layoutA</code> is changed, instead of the two blocks being moved to their new location the entire page is essentially completely unrendered and then re-rendered from scratch.</p>
<p dir="auto">I understand why this is the case. It would be far to expensive for React to be able to detect movement of nodes like this.</p>
<p dir="auto">But I do believe we need a pattern to hint to React that this component has large blocks that may be moved around at different levels.</p>
<p dir="auto">Note that there may be a component in between the rendering component root and the block. So parent semantics scoped to the nearest component won't work. This'll need owner scoping.</p>
<p dir="auto">I understand that React is trying to eliminate the need for React.createElement to be used and owner scoping within special attributes interferes with that. So instead of a component scoped <code class="notranslate">key=""</code> variant I think a method/object style interface kind of like <code class="notranslate">React.addons.createFragment</code> might work.</p> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Version 10.0.18362.175
Windows Terminal version (if applicable): 0.2.1831.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Version 10.0.18362.175
Windows Terminal version (if applicable): 0.2.1831.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>
<p dir="auto">Set the <code class="notranslate">HKCU\Console\VirtualTerminalLevel</code> registry entry to 1, to enable support for VT escape sequences by default.</p>
</li>
<li>
<p dir="auto">Makes sure the <code class="notranslate">initialCols</code> option in the Windows Terminal profile is set to 120.</p>
</li>
<li>
<p dir="auto">Open a <strong>cmd</strong> shell in the Windows Terminal (this can't be a WSL bash shell - it must be something that would usually not have VT support enabled without the registry setting).</p>
</li>
<li>
<p dir="auto">Run the following Python script:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import sys
sys.stdout.write('X'*(120-10))
sys.stdout.write('\033[1;34;47mHello\033[m\n')"><pre class="notranslate"><code class="notranslate">import sys
sys.stdout.write('X'*(120-10))
sys.stdout.write('\033[1;34;47mHello\033[m\n')
</code></pre></div>
</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">I'd expect this to display 110 X's followed by the word <em>Hello</em>, in blue on white, on the same line. This is what it looks like in a regular console cmd shell.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4181424/61186979-b038db00-a663-11e9-8b49-1abf23aa1b88.png"><img src="https://user-images.githubusercontent.com/4181424/61186979-b038db00-a663-11e9-8b49-1abf23aa1b88.png" alt="image" style="max-width: 100%;"></a></p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">What actually happens in the Windows Terminal is the <em>Hello</em> is displayed on the following line.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4181424/61186985-c34bab00-a663-11e9-8ec8-3c714497d803.png"><img src="https://user-images.githubusercontent.com/4181424/61186985-c34bab00-a663-11e9-8ec8-3c714497d803.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">I don't have a good understanding of how the conpty stuff works, but my theory is that the escape sequences aren't actually being processed initially, and are just written out to the screen as literal characters. As a result the <em>Hello</em> is forced to wrap onto the next line, because there isn't enough space remaining. This screen structure is then passed through conpty somehow, at which point the escape sequences are processed and the text colors changed. But by that stage the wrapping has already taken effect, so the text is in the wrong place.</p>
<p dir="auto">It's easier to see what's going on if you apply PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="467842317" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1964" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1964/hovercard" href="https://github.com/microsoft/terminal/pull/1964">#1964</a> first. In that case, the ESC character gets translated to a ← when it isn't initially interpreted as an escape sequence. The other side of the conpty pipe then doesn't get a second chance to process those values as an escape sequence, so you just see the raw characters being written out.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4181424/61187019-2f2e1380-a664-11e9-85fe-f0a656c47e67.png"><img src="https://user-images.githubusercontent.com/4181424/61187019-2f2e1380-a664-11e9-85fe-f0a656c47e67.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">This may be a good reason to reject PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="467842317" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1964" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1964/hovercard" href="https://github.com/microsoft/terminal/pull/1964">#1964</a> for now, since it's clearly making the situation worse, but I think the real issue is in the conpty code, and if that were fixed then the PR might well be safe to merge.</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.18362.295]
Windows Terminal version (if applicable): Version: 0.4.2382.0
Any other software?"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.18362.295]
Windows Terminal version (if applicable): Version: 0.4.2382.0
Any other software?
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">say we have<br>
"<br>
Line 1<br>
Line 2<br>
Line 3<br>
"<br>
on screen.<br>
use Mouse to select multiple lines in the windows terminal and right click (or ctrl + c). Then paste it into either a text editor such as sublime in windows or paste back into the terminal using right click again.</p>
<p dir="auto">all the lines become one line with lots of spaces adding in between. such as<br>
"Line 1 SPACE SPACE SPACE SPACE SPACE SPACE Line 2 SPACE SPACE SPACE SPACE SPACE SPACE SPACE SPACE SPACE Line 3 "</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">The right output should be<br>
"<br>
Line 1\newline<br>
Line 2\newline<br>
Line 3\newline<br>
"</p>
<p dir="auto">This makes it really really hard to use windows terminal, since we do need to copy and paste multiple lines a lot. Say people ask you send them your stuffs in some linux env, you open the file, then you want to just be able to select lines and copy them, then paste into an email/chat app in windows. Now, all lines are becoming just one line, which is bad..</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">all the lines become one line with lots of spaces adding in between. such as<br>
"Line 1 SPACE SPACE SPACE SPACE SPACE SPACE Line 2 SPACE SPACE SPACE SPACE SPACE SPACE SPACE SPACE SPACE Line 3 "</p> | 0 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br>
Bug</p>
<p dir="auto"><strong>What is the current behavior?</strong><br>
The DOM property <code class="notranslate">dateTime</code> isn't converted to its lowercase attribute counterpart <code class="notranslate">datetime</code> for the <code class="notranslate"><time></code> element when the element is rendered with <code class="notranslate">ReactDOMServer.renderToString()</code>.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via <a href="https://jsfiddle.net" rel="nofollow">https://jsfiddle.net</a> or similar (template for React 16: <a href="https://jsfiddle.net/Luktwrdm/" rel="nofollow">https://jsfiddle.net/Luktwrdm/</a>, template for React 15: <a href="https://jsfiddle.net/hmbg7e9w/" rel="nofollow">https://jsfiddle.net/hmbg7e9w/</a>).</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const React = require('react');
const ReactDOMServer = require('react-dom/server');
const markup = ReactDOMServer.renderToString(React.createElement('time', {
dateTime: "2017-11-02T20:49:25+01:00"
}));
console.log(markup);"><pre class="notranslate"><code class="notranslate">const React = require('react');
const ReactDOMServer = require('react-dom/server');
const markup = ReactDOMServer.renderToString(React.createElement('time', {
dateTime: "2017-11-02T20:49:25+01:00"
}));
console.log(markup);
</code></pre></div>
<p dir="auto">The above will print <code class="notranslate"><time dateTime="2017-11-02T20:49:25+01:00" data-reactroot=""></time></code>.</p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">The above output should be <code class="notranslate"><time datetime="2017-11-02T20:49:25+01:00" data-reactroot=""></time></code>.</p>
<p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong></p>
<p dir="auto">React 16.0.0<br>
React DOM 16.0.0<br>
Node v6.11.5</p> | <p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">Bug</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">ReactDOMServer generates camelCased markup for the <code class="notranslate">cellSpacing</code> and <code class="notranslate">cellPadding</code> attributes:</p>
<p dir="auto"><code class="notranslate"><table cellSpacing="1" cellPadding="2"></table></code></p>
<p dir="auto">(Here's an example pen: <a href="https://codepen.io/anon/pen/jGBLdP" rel="nofollow">https://codepen.io/anon/pen/jGBLdP</a>)</p>
<p dir="auto">I believe these attributes are canonically lowercased. If I lowercase the attributes in JSX, React warns that I'm not using the right names:</p>
<p dir="auto"><code class="notranslate">Warning: Invalid DOM property `cellpadding`. Did you mean `cellPadding`?</code></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">The attribute names would be rendered lowercase:</p>
<p dir="auto"><code class="notranslate"><table cellspacing="1" cellpadding="2"></table></code></p>
<p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong></p>
<p dir="auto">This is in 16.0.0. Prior versions of React stripped these attributes.</p> | 1 |
<p dir="auto">Failed: <a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke-test/13512/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke-test/13512/</a></p>
<p dir="auto">Run so broken it didn't make JUnit output!</p> | <p dir="auto">Failed: <a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke-test/13477/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke-test/13477/</a></p>
<p dir="auto">Run so broken it didn't make JUnit output!</p> | 1 |
<p dir="auto">I went through <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tensorboard/README.md#my-tensorboard-isnt-showing-any-data-whats-wrong">this</a>:</p>
<ol dir="auto">
<li><code class="notranslate">tensorboard --logdir=output/trash --debug</code> showed the expected path</li>
<li><code class="notranslate">find output/trash | grep tfevents</code> showed two event files</li>
<li><code class="notranslate">find output/trash | grep tfevents | xargs ls -lh</code> showed that they are 6.4M and 1.2M big.</li>
</ol>
<p dir="auto">Still, the tensorboard looks like this:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/be5f1db53a737302136f844e9edb9fad876de1859c969d95f2f557d46568cc26/687474703a2f2f692e696d6775722e636f6d2f4a4c6e4c4342362e706e67"><img src="https://camo.githubusercontent.com/be5f1db53a737302136f844e9edb9fad876de1859c969d95f2f557d46568cc26/687474703a2f2f692e696d6775722e636f6d2f4a4c6e4c4342362e706e67" alt="Imgur" data-canonical-src="http://i.imgur.com/JLnLCB6.png" style="max-width: 100%;"></a></p>
<p dir="auto">The console shows:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcublas.so locally
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcudnn.so locally
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcufft.so locally
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcuda.so.1 locally
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcurand.so locally
WARNING:tensorflow:IOError [Errno 2] No such file or directory: '/usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/TAG' on path /usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/TAG
WARNING:tensorflow:Unable to read TensorBoard tag
Starting TensorBoard on port 6006
(You can navigate to http://0.0.0.0:6006)
WARNING:tensorflow:Found new file_version for event.proto. This will affect purging logic for TensorFlow restarts. Old: 1.0 New: 2.0
WARNING:tensorflow:Found more than one graph event per run. Overwriting the graph with the newest event.
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/lodash/lodash.min.js HTTP/1.1" 200 -
WARNING:tensorflow:IOError [Errno 2] No such file or directory: '/usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/lib/css/global.css' on path /usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/lib/css/global.css
127.0.0.1 - - [14/Apr/2016 15:39:12] code 404, message Not Found
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/d3/d3.min.js HTTP/1.1" 200 -
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/plottable/plottable.min.js HTTP/1.1" 200 -
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/plottable/plottable.css HTTP/1.1" 200 -
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/graphlib/dist/graphlib.core.min.js HTTP/1.1" 200 -"><pre class="notranslate"><code class="notranslate">I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcublas.so locally
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcudnn.so locally
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcufft.so locally
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcuda.so.1 locally
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcurand.so locally
WARNING:tensorflow:IOError [Errno 2] No such file or directory: '/usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/TAG' on path /usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/TAG
WARNING:tensorflow:Unable to read TensorBoard tag
Starting TensorBoard on port 6006
(You can navigate to http://0.0.0.0:6006)
WARNING:tensorflow:Found new file_version for event.proto. This will affect purging logic for TensorFlow restarts. Old: 1.0 New: 2.0
WARNING:tensorflow:Found more than one graph event per run. Overwriting the graph with the newest event.
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/lodash/lodash.min.js HTTP/1.1" 200 -
WARNING:tensorflow:IOError [Errno 2] No such file or directory: '/usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/lib/css/global.css' on path /usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/lib/css/global.css
127.0.0.1 - - [14/Apr/2016 15:39:12] code 404, message Not Found
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/d3/d3.min.js HTTP/1.1" 200 -
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/plottable/plottable.min.js HTTP/1.1" 200 -
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/plottable/plottable.css HTTP/1.1" 200 -
127.0.0.1 - - [14/Apr/2016 15:39:12] "GET /external/graphlib/dist/graphlib.core.min.js HTTP/1.1" 200 -
</code></pre></div>
<h3 dir="auto">Environment info</h3>
<p dir="auto">Operating System: Linux Mint 17 Qiana</p>
<p dir="auto">Installed version of CUDA and cuDNN:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ ls -l /usr/local/cuda-7.5/lib64/libcud*
-rw-r--r-- 1 root root 322936 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudadevrt.a
lrwxrwxrwx 1 root root 16 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudart.so -> libcudart.so.7.5
lrwxrwxrwx 1 root root 19 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudart.so.7.5 -> libcudart.so.7.5.18
-rwxr-xr-x 1 root root 383336 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudart.so.7.5.18
-rw-r--r-- 1 root root 720192 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudart_static.a"><pre class="notranslate">$ ls -l /usr/local/cuda-7.5/lib64/libcud<span class="pl-k">*</span>
-rw-r--r-- 1 root root 322936 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudadevrt.a
lrwxrwxrwx 1 root root 16 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudart.so -<span class="pl-k">></span> libcudart.so.7.5
lrwxrwxrwx 1 root root 19 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudart.so.7.5 -<span class="pl-k">></span> libcudart.so.7.5.18
-rwxr-xr-x 1 root root 383336 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudart.so.7.5.18
-rw-r--r-- 1 root root 720192 Aug 15 2015 /usr/local/cuda-7.5/lib64/libcudart_static.a</pre></div>
<ol dir="auto">
<li>Which pip package you installed: pip 8.1.1 from /usr/local/lib/python2.7/dist-packages (python 2.7)</li>
<li>The output from python -c "import tensorflow; print(tensorflow.<strong>version</strong>)".: 0.8.0rc0</li>
</ol>
<h3 dir="auto">Steps to reproduce</h3>
<ol dir="auto">
<li>Execute <code class="notranslate">tensorboard --logdir output/trash</code></li>
<li>Open the browser with <a href="http://0.0.0.0:6006" rel="nofollow">http://0.0.0.0:6006</a></li>
</ol> | <h3 dir="auto">Environment info</h3>
<p dir="auto">Operating System: Mac OS X<br>
Using virtualenv</p>
<p dir="auto">Installed version of CUDA and cuDNN: None<br>
(please attach the output of <code class="notranslate">ls -l /path/to/cuda/lib/libcud*</code>):</p>
<p dir="auto">If installed from binary pip package, provide:</p>
<ol dir="auto">
<li>Which pip package you installed.<br>
sudo pip install --upgrade <a href="https://storage.googleapis.com/tensorflow/mac/tensorflow-0.8.0rc0-py2-none-any.whl" rel="nofollow">https://storage.googleapis.com/tensorflow/mac/tensorflow-0.8.0rc0-py2-none-any.whl</a></li>
<li>The output from python -c "import tensorflow; print(tensorflow.<strong>version</strong>)".<br>
0.8.0rc0</li>
</ol>
<p dir="auto">If installed from sources, provide the commit hash:</p>
<h3 dir="auto">Steps to reproduce</h3>
<ol dir="auto">
<li>git clone --recurse-submodule <a href="https://github.com/tensorflow/tensorflow.git">https://github.com/tensorflow/tensorflow.git</a></li>
<li>cd tensorflow</li>
<li>git checkout r0.8</li>
<li>python tensorflow/examples/tutorials/mnist/mnist_with_summaries.py --summaries_dir=/tmp/summaries_1</li>
<li>tensorboard --logdir /tmp/summaries_1</li>
<li>Open <a href="http://127.0.0.1:6006" rel="nofollow">http://127.0.0.1:6006</a> in Chrome</li>
</ol>
<p dir="auto">Notice that the CSS don't load properly. The graphs and charts don't show either.</p>
<h3 dir="auto">What have you tried?</h3>
<h3 dir="auto">Logs or other output that would be helpful</h3>
<p dir="auto">(If logs are large, please upload as attachment).<br>
If accessed from non-localhost, tensorboard prints messages like the following in console:</p>
<p dir="auto">WARNING:tensorflow:IOError [Errno 2] No such file or directory: '/Users/cais/venv1/lib/python2.7/site-packages/tensorflow/tensorboard/<strong><em>rPc_sWiTcH</em></strong>' on path /Users/cais/venv1/lib/python2.7/site-packages/tensorflow/tensorboard/<strong><em>rPc_sWiTcH</em></strong><br>
10.1.2.3 - - [13/Apr/2016 12:28:20] code 404, message Not Found</p> | 1 |
<p dir="auto">App Component template</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<tabs>
<tab-link>Chat notification component goes here</tab-link>
<tab>Chat display component goes in here</tab>
<tab-link>Other Chat notification component goes here</tab-link>
<tab>Other Chat display component goes in here</tab>
</tabs>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">tabs</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">tab-link</span><span class="pl-kos">></span>Chat notification component goes here<span class="pl-kos"></</span><span class="pl-ent">tab-link</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">tab</span><span class="pl-kos">></span>Chat display component goes in here<span class="pl-kos"></</span><span class="pl-ent">tab</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">tab-link</span><span class="pl-kos">></span>Other Chat notification component goes here<span class="pl-kos"></</span><span class="pl-ent">tab-link</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">tab</span><span class="pl-kos">></span>Other Chat display component goes in here<span class="pl-kos"></</span><span class="pl-ent">tab</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">tabs</span><span class="pl-kos">></span></pre></div>
<p dir="auto">Tabs Component template</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<div (tabSwitch)="setActiveTab($event.target)" class="navigation">
<ng-content select="tab-link"></ng-content>
</div>
<ng-content select="tab"></ng-content>"><pre class="notranslate"><code class="notranslate"><div (tabSwitch)="setActiveTab($event.target)" class="navigation">
<ng-content select="tab-link"></ng-content>
</div>
<ng-content select="tab"></ng-content>
</code></pre></div>
<p dir="auto">UPDATE: This is the tab-link template(I forgot to put it in the first post)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<a (click)="select()" [class.active]="active">
<ng-content></ng-content>
</a>"><pre class="notranslate"><code class="notranslate"><a (click)="select()" [class.active]="active">
<ng-content></ng-content>
</a>
</code></pre></div>
<p dir="auto">Tab-Link Component ts</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export class TabLink {
@Output('tabSwitch') tabSelected: EventEmitter<TabLink> = new EventEmitter();
select(){
this.tabSelected.emit(this);
console.log('click tab link');
}
}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">TabLink</span> <span class="pl-kos">{</span>
@<span class="pl-smi">Output</span><span class="pl-kos">(</span><span class="pl-s">'tabSwitch'</span><span class="pl-kos">)</span> <span class="pl-c1">tabSelected</span>: <span class="pl-smi">EventEmitter</span><span class="pl-kos"><</span><span class="pl-smi">TabLink</span><span class="pl-kos">></span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">EventEmitter</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">select</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">tabSelected</span><span class="pl-kos">.</span><span class="pl-en">emit</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'click tab link'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Tabs Component ts</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export class Tabs {
setActiveTab(link: TabLink):void{
console.log("hello", TabLink);
}
}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">Tabs</span> <span class="pl-kos">{</span>
<span class="pl-en">setActiveTab</span><span class="pl-kos">(</span><span class="pl-s1">link</span>: <span class="pl-smi">TabLink</span><span class="pl-kos">)</span>:<span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"hello"</span><span class="pl-kos">,</span> <span class="pl-smi">TabLink</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">I would expect the setActiveTab method to fire when I click the TabLink, but nothing.<br>
I have tried moving the <code class="notranslate">tabSwitch</code> event listener around, but nothing works.</p>
<p dir="auto">Any thoughts?</p> | <p dir="auto">Previously discussed with <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vsavkin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vsavkin">@vsavkin</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jeffbcross/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jeffbcross">@jeffbcross</a></p>
<p dir="auto">Background - programmatically listening to events propagated by children is difficult currently.</p>
<p dir="auto">Consider:<br>
You have a <code class="notranslate"><accordion></code> component and n <code class="notranslate"><accordion-item></code> components:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<accordion>
<accordion-item></accordion-item>
<accordion-item></accordion-item>
<accordion-item></accordion-item>
</accordion>"><pre class="notranslate"><code class="notranslate"><accordion>
<accordion-item></accordion-item>
<accordion-item></accordion-item>
<accordion-item></accordion-item>
</accordion>
</code></pre></div>
<p dir="auto">An accordion-item component might emit a <code class="notranslate">select</code> event/output, used to set it as the currently active item.</p>
<p dir="auto">Currently the best way to achieve this is the accordion-item component would inject the parent accordion, and have the accordion-item register itself with the parent, and call a method to close the others</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Component({selector: 'accordion' })
class Accordion {
_items: []AccordionItem = [];
register(item: AccordionItem){
this._items.push(item);
}
toggleActive(selectedItem:AccordionItem){
this._items.forEach(item => {
if(item !== selectedItem){
item.active = false;
}
});
selectedItem.active = true;
}
}
@Component({selector: 'accordion-item' , inputs: ['active'] })
class AccordionItem {
active: boolean;
constructor(private accordion: Accordion){
accordion.register(this);
}
setActive(){
this.accordion.toggleActive(this);
}
}"><pre class="notranslate">@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">selector</span>: <span class="pl-s">'accordion'</span> <span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">class</span> <span class="pl-smi">Accordion</span> <span class="pl-kos">{</span>
<span class="pl-c1">_items</span>: <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-smi">AccordionItem</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-en">register</span><span class="pl-kos">(</span><span class="pl-s1">item</span>: <span class="pl-smi">AccordionItem</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_items</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-s1">item</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">toggleActive</span><span class="pl-kos">(</span><span class="pl-s1">selectedItem</span>:<span class="pl-smi">AccordionItem</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_items</span><span class="pl-kos">.</span><span class="pl-en">forEach</span><span class="pl-kos">(</span><span class="pl-s1">item</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">item</span> <span class="pl-c1">!==</span> <span class="pl-s1">selectedItem</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-s1">item</span><span class="pl-kos">.</span><span class="pl-c1">active</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">selectedItem</span><span class="pl-kos">.</span><span class="pl-c1">active</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">selector</span>: <span class="pl-s">'accordion-item'</span> <span class="pl-kos">,</span> <span class="pl-c1">inputs</span>: <span class="pl-kos">[</span><span class="pl-s">'active'</span><span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">class</span> <span class="pl-smi">AccordionItem</span> <span class="pl-kos">{</span>
<span class="pl-c1">active</span>: <span class="pl-smi">boolean</span><span class="pl-kos">;</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-k">private</span> <span class="pl-s1">accordion</span>: <span class="pl-smi">Accordion</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-s1">accordion</span><span class="pl-kos">.</span><span class="pl-en">register</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">setActive</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">accordion</span><span class="pl-kos">.</span><span class="pl-en">toggleActive</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Ideally, a child component would simply expose a 'select' event:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Component({selector: 'accordion-item' })
class AccordionItem {
@Input() active: boolean;
@Output selected:EventEmitter<AccordionItem> = new EventEmitter();
active: boolean;
setActive(){
this.selected.emit(this);
}
}"><pre class="notranslate">@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">selector</span>: <span class="pl-s">'accordion-item'</span> <span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">class</span> <span class="pl-smi">AccordionItem</span> <span class="pl-kos">{</span>
@<span class="pl-smi">Input</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">active</span>: <span class="pl-smi">boolean</span><span class="pl-kos">;</span>
@<span class="pl-smi">Output</span> <span class="pl-c1">selected</span>:<span class="pl-smi">EventEmitter</span><span class="pl-kos"><</span><span class="pl-smi">AccordionItem</span><span class="pl-kos">></span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">EventEmitter</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c1">active</span>: <span class="pl-smi">boolean</span><span class="pl-kos">;</span>
<span class="pl-en">setActive</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">selected</span><span class="pl-kos">.</span><span class="pl-en">emit</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">The parent accordion can currently easily get ahold of the children via <code class="notranslate">@ViewChildren()</code> (or whatever) but there is a not a clean way to listen to events emitted from the children.</p>
<p dir="auto">Proposed Syntax:</p>
<p dir="auto">Implement a <code class="notranslate">@ObserveChildren</code> decorator (or similar) that would enable Observation of events emitted by child components:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Component({selector: 'accordion' })
class Accordion {
//specify type and desired output to Observe.
@ObserveChildren(AccordionItem, 'select') childSelections: Observable<AccordionItem>
@ViewChildren(AccordionItem) children: Observable<AccordionItem>
afterViewInit(){
this.updates = Observable
.combineLatest(this.children, this.childSelections, (children, selected) => ({children, selected}))
.do(({children, selected) => children.map(child => { //update state }))
.subscribe();
}
onDestroy(){
this.updates.unsubscribe();
}
}"><pre class="notranslate">@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">selector</span>: <span class="pl-s">'accordion'</span> <span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">class</span> <span class="pl-smi">Accordion</span> <span class="pl-kos">{</span>
<span class="pl-c">//specify type and desired output to Observe.</span>
@<span class="pl-smi">ObserveChildren</span><span class="pl-kos">(</span><span class="pl-smi">AccordionItem</span><span class="pl-kos">,</span> <span class="pl-s">'select'</span><span class="pl-kos">)</span> <span class="pl-c1">childSelections</span>: <span class="pl-smi">Observable</span><span class="pl-kos"><</span><span class="pl-smi">AccordionItem</span><span class="pl-kos">></span>
@<span class="pl-smi">ViewChildren</span><span class="pl-kos">(</span><span class="pl-smi">AccordionItem</span><span class="pl-kos">)</span> <span class="pl-c1">children</span>: <span class="pl-smi">Observable</span><span class="pl-kos"><</span><span class="pl-smi">AccordionItem</span><span class="pl-kos">></span>
<span class="pl-en">afterViewInit</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">updates</span> <span class="pl-c1">=</span> <span class="pl-smi">Observable</span>
<span class="pl-kos">.</span><span class="pl-en">combineLatest</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">children</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">childSelections</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">children</span><span class="pl-kos">,</span> <span class="pl-s1">selected</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">(</span><span class="pl-kos">{</span>children<span class="pl-kos">,</span> selected<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-c1">do</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-s1">children</span><span class="pl-kos">,</span> <span class="pl-s1">selected</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-s1">children</span><span class="pl-kos">.</span><span class="pl-c1">map</span><span class="pl-kos">(</span><span class="pl-s1">child</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span> <span class="pl-c">//update state }))</span><span class="pl-s1"></span>
<span class="pl-kos">.</span><span class="pl-en">subscribe</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-s1">onDestroy</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">updates</span><span class="pl-kos">.</span><span class="pl-en">unsubscribe</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pkozlowski-opensource/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pkozlowski-opensource">@pkozlowski-opensource</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Foxandxss/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Foxandxss">@Foxandxss</a></p> | 1 |
<p dir="auto">This is on scipy 0.13.0:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scipy.signal import lti
import matplotlib.pyplot as plt
for zeta in [0.99999, 1.00000, 1.00001]:
H = lti([1],[1,2*zeta,1])
t,y = H.step()
plt.figure()
plt.plot(t,y)"><pre class="notranslate"><code class="notranslate">from scipy.signal import lti
import matplotlib.pyplot as plt
for zeta in [0.99999, 1.00000, 1.00001]:
H = lti([1],[1,2*zeta,1])
t,y = H.step()
plt.figure()
plt.plot(t,y)
</code></pre></div>
<p dir="auto">The zeta = 0.99999 and 1.00001 cases give expected results, but with zeta = 1.00000 the output zooms off to infinity.</p> | <p dir="auto">A 6th order analog filter appears very distorted in scipy.signal.step compared to Octave:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="z = array([], dtype=float64)
p = array([-2.8576, -2.8576, -2.8576, -2.8576, -2.8576, -2.8576])
k = 544.49693870986994
t_s, y_s = step((z, p, k), T=t)
plot(t_s, y_s)"><pre class="notranslate"><code class="notranslate">z = array([], dtype=float64)
p = array([-2.8576, -2.8576, -2.8576, -2.8576, -2.8576, -2.8576])
k = 544.49693870986994
t_s, y_s = step((z, p, k), T=t)
plot(t_s, y_s)
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/ea9028439e65210f5e02b6c8be9a974834a241bbcf92c292768785d819512af1/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f35383631312f3834363331362f35383539376330632d663430622d313165322d386537612d3761356337393263366233312e706e67"><img src="https://camo.githubusercontent.com/ea9028439e65210f5e02b6c8be9a974834a241bbcf92c292768785d819512af1/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f35383631312f3834363331362f35383539376330632d663430622d313165322d386537612d3761356337393263366233312e706e67" alt="scipy 6th order step response screwed up" data-canonical-src="https://f.cloud.github.com/assets/58611/846316/58597c0c-f40b-11e2-8e7a-7a5c792c6b31.png" style="max-width: 100%;"></a></p>
<p dir="auto">vs Octave:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="z = []
p = [-2.8576 -2.8576 -2.8576 -2.8576 -2.8576 -2.8576]
k = 544.49693870986994
step(zpk(z, p, k), 8)"><pre class="notranslate"><code class="notranslate">z = []
p = [-2.8576 -2.8576 -2.8576 -2.8576 -2.8576 -2.8576]
k = 544.49693870986994
step(zpk(z, p, k), 8)
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/b5a54696c614fab49409e13555fef1bf03ec226d34fa0b2ad1cb6c8e774d0682/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f35383631312f3834363331312f33303537323164322d663430622d313165322d396632632d6634646534393832646338332e706e67"><img src="https://camo.githubusercontent.com/b5a54696c614fab49409e13555fef1bf03ec226d34fa0b2ad1cb6c8e774d0682/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f35383631312f3834363331312f33303537323164322d663430622d313165322d396632632d6634646534393832646338332e706e67" alt="octave step response" data-canonical-src="https://f.cloud.github.com/assets/58611/846311/305721d2-f40b-11e2-9f2c-f4de4982dc83.png" style="max-width: 100%;"></a></p>
<p dir="auto">Even 4th order filters are visibly inaccurate, settling at 1.02 instead of 1.00, which is not a very high-order filter</p> | 1 |
<h1 dir="auto">Description of the new feature/enhancement</h1>
when typing "shift + insert",wsl should insert the content in clipboard into command line
<h1 dir="auto">Proposed technical implementation details (optional)</h1> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ctrl+c for copy
ctrl+v for past"><pre class="notranslate"><code class="notranslate">ctrl+c for copy
ctrl+v for past
</code></pre></div>
<p dir="auto">why we can't use <code class="notranslate">ctrl+c</code> and <code class="notranslate">ctrl+v</code> in window console? this confuses me for years. the copy and paste are very painful comparing with Mac and Linux, which is the primary reason why I give up development in Windows.</p>
<p dir="auto">also , I'd like to add some global keyboard shortcuts that works for console and for the whole Windows system. can we do this?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ctrl+a for jump to line head
ctrl+e for jump to line end"><pre class="notranslate"><code class="notranslate">ctrl+a for jump to line head
ctrl+e for jump to line end
</code></pre></div> | 0 |
<p dir="auto">Using your latest version, turns out webpack is producing broken JS code<br>
<a href="https://gist.githubusercontent.com/binarykitchen/a1899291fc3b470ba83cb9a245317775/raw/60de0910ca0a6bef87d96a202de8faa0ffb785ce/gistfile1.txt" rel="nofollow">https://gist.githubusercontent.com/binarykitchen/a1899291fc3b470ba83cb9a245317775/raw/60de0910ca0a6bef87d96a202de8faa0ffb785ce/gistfile1.txt</a></p>
<p dir="auto">Chrome complains with</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="index.coffee:2 Uncaught SyntaxError: missing ) after argument list
at Object../lib/jquery/index.coffee (lib.js:851)
at __webpack_require__ (lib.js:710)
at fn (lib.js:95)
at eval (multi_jquery_goog_ext:1)
at Object.1 (lib.js:1060)
at __webpack_require__ (lib.js:710)
at lib.js:762
at lib.js:765"><pre class="notranslate"><code class="notranslate">index.coffee:2 Uncaught SyntaxError: missing ) after argument list
at Object../lib/jquery/index.coffee (lib.js:851)
at __webpack_require__ (lib.js:710)
at fn (lib.js:95)
at eval (multi_jquery_goog_ext:1)
at Object.1 (lib.js:1060)
at __webpack_require__ (lib.js:710)
at lib.js:762
at lib.js:765
</code></pre></div>
<p dir="auto">Tried to find this out by eliminating each option one after one but no luck. Any clues what this could be? I have this error three times for all my three entry points in development mode.</p> | <h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong><br>
React app doesn't load and throws this console error.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/23143990/46099049-a4cefe80-c17a-11e8-9317-65a1e5c923db.png"><img src="https://user-images.githubusercontent.com/23143990/46099049-a4cefe80-c17a-11e8-9317-65a1e5c923db.png" alt="screen shot 2018-09-26 at 10 43 28 am" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/23143990/46099316-50784e80-c17b-11e8-8f78-74a6d14a607e.png"><img src="https://user-images.githubusercontent.com/23143990/46099316-50784e80-c17b-11e8-8f78-74a6d14a607e.png" alt="screen shot 2018-09-26 at 10 48 48 am" style="max-width: 100%;"></a></p>
<p dir="auto">Temporary fixable by disabling the hard-source-webpack-plugin from your Webpack config. Your react app will take a lot longer to build since its not reading from a cache anymore</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br>
Run an npm start, load your page, kill npm, run npm start again so webpack reads from the hard-source cache, load your page, and inspect to see the console error</p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
I can run webpack and kill it any number of times, and when reading from the hard-source cache, the react app still builds and doesn't throw an unknown error</p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: 4.20.2<br>
Node.js version: 10.11.0<br>
Operating System: MacOS High Sierra 10.13.6<br>
Additional tools:</p> | 0 |
<h4 dir="auto">Describe the bug</h4>
<p dir="auto">I observe a memory leak when I request a file and pipe to another request and I get the error "Request body larger than maxBodyLength limit"</p>
<h4 dir="auto">To Reproduce</h4>
<p dir="auto">To reproduce the problem, I request a file of 20MB and pipe to another request.<br>
Bellow there a sample code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const optsGetFile = {
method: "get",
url: "http://localhost:7001/download",
responseType: "stream",
};
const optsUploadFile = {
method: "post",
url: "http://localhost:7001/upload",
};
axios(optsGetFile)
.then(({ headers, data }) => {
return axios(_.assign(optsUploadFile, { data, headers }));
})
"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">optsGetFile</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">method</span>: <span class="pl-s">"get"</span><span class="pl-kos">,</span>
<span class="pl-c1">url</span>: <span class="pl-s">"http://localhost:7001/download"</span><span class="pl-kos">,</span>
<span class="pl-c1">responseType</span>: <span class="pl-s">"stream"</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">optsUploadFile</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">method</span>: <span class="pl-s">"post"</span><span class="pl-kos">,</span>
<span class="pl-c1">url</span>: <span class="pl-s">"http://localhost:7001/upload"</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-en">axios</span><span class="pl-kos">(</span><span class="pl-s1">optsGetFile</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">{</span> headers<span class="pl-kos">,</span> data <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-en">axios</span><span class="pl-kos">(</span><span class="pl-s1">_</span><span class="pl-kos">.</span><span class="pl-en">assign</span><span class="pl-kos">(</span><span class="pl-s1">optsUploadFile</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> data<span class="pl-kos">,</span> headers <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">The entire test code is present at <a href="https://github.com/jose-lopes/test_axios">https://github.com/jose-lopes/test_axios</a> .<br>
Next I will describe the environment that I setup to reproduce the problem.</p>
<ul dir="auto">
<li>Start fake server. (This program serve /upload and /download (20MB) requests)</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="node test_fakeserver.js"><pre class="notranslate"><code class="notranslate">node test_fakeserver.js
</code></pre></div>
<ul dir="auto">
<li>Start test server and monitor memory with <a href="https://pypi.org/project/memory-profiler/" rel="nofollow">memory-profiler</a>. (This program serve /record request, which it get /download and post to /upload)</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="mprof run node test.js"><pre class="notranslate"><code class="notranslate">mprof run node test.js
</code></pre></div>
<ul dir="auto">
<li>execute 20 /record requests with interval of 30 seconds</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="for test in $(seq 1 20); do curl -X POST localhost:7000/record; sleep 30; done"><pre class="notranslate"><code class="notranslate">for test in $(seq 1 20); do curl -X POST localhost:7000/record; sleep 30; done
</code></pre></div>
<ul dir="auto">
<li>Stop test server and execute mprof plot to check memory behavior.</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="mprof plot"><pre class="notranslate"><code class="notranslate">mprof plot
</code></pre></div>
<h4 dir="auto">Expected behavior</h4>
<p dir="auto">I expected no memory leak even when we got the error "Request body larger than maxBodyLength limit".<br>
I executed again the test server with option maxBodyLength: 30<em>1024</em>1024 and I got no memory leak.</p>
<h4 dir="auto">Environment</h4>
<ul dir="auto">
<li>Axios Version: 0.21.0</li>
<li>Node.js Version: v14.15.0</li>
<li>OS: Arch Linux</li>
</ul>
<h4 dir="auto">Additional context/Screenshots</h4>
<p dir="auto">Graph when I execute to reproduce:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://raw.githubusercontent.com/jose-lopes/test_axios/master/images/test.png"><img src="https://raw.githubusercontent.com/jose-lopes/test_axios/master/images/test.png" alt="Test Result" style="max-width: 100%;"></a></p> | <h4 dir="auto">Describe the bug</h4>
<p dir="auto">I observe a memory leak when I pipe two requests with a file and I get the error "Request body larger than maxBodyLength limit"</p>
<h4 dir="auto">To Reproduce</h4>
<p dir="auto">To reproduce the problem, I request a file of 20MB and pipe to another request.<br>
Bellow there a sample code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const optsGetFile = {
method: "get",
url: "http://localhost:7001/download",
responseType: "stream",
};
const optsUploadFile = {
method: "post",
url: "http://localhost:7001/upload",
};
axios(optsGetFile)
.then(({ headers, data }) => {
return axios(_.assign(optsUploadFile, { data, headers }));
})
"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">optsGetFile</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">method</span>: <span class="pl-s">"get"</span><span class="pl-kos">,</span>
<span class="pl-c1">url</span>: <span class="pl-s">"http://localhost:7001/download"</span><span class="pl-kos">,</span>
<span class="pl-c1">responseType</span>: <span class="pl-s">"stream"</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">optsUploadFile</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">method</span>: <span class="pl-s">"post"</span><span class="pl-kos">,</span>
<span class="pl-c1">url</span>: <span class="pl-s">"http://localhost:7001/upload"</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-en">axios</span><span class="pl-kos">(</span><span class="pl-s1">optsGetFile</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">{</span> headers<span class="pl-kos">,</span> data <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-en">axios</span><span class="pl-kos">(</span><span class="pl-s1">_</span><span class="pl-kos">.</span><span class="pl-en">assign</span><span class="pl-kos">(</span><span class="pl-s1">optsUploadFile</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> data<span class="pl-kos">,</span> headers <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">The entire test code is present at <a href="https://github.com/jose-lopes/test_axios">https://github.com/jose-lopes/test_axios</a> .<br>
Next I will describe the environment that I setup to reproduce the problem.</p>
<ul dir="auto">
<li>Start fake server. (This program serve /upload and /download (20MB) requests)</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="node test_fakeserver.js"><pre class="notranslate"><code class="notranslate">node test_fakeserver.js
</code></pre></div>
<ul dir="auto">
<li>Start test server and monitor memory with <a href="https://pypi.org/project/memory-profiler/" rel="nofollow">memory-profiler</a>. (This program serve /record request, which it get /download and post to /upload)</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="mprof run node test.js"><pre class="notranslate"><code class="notranslate">mprof run node test.js
</code></pre></div>
<ul dir="auto">
<li>execute 20 /record requests with interval of 30 seconds</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="for test in $(seq 1 20); do curl -X POST localhost:7000/record; sleep 30; done"><pre class="notranslate"><code class="notranslate">for test in $(seq 1 20); do curl -X POST localhost:7000/record; sleep 30; done
</code></pre></div>
<p dir="auto">The execution produces the next graph:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://raw.githubusercontent.com/jose-lopes/test_axios/master/images/test.png"><img src="https://raw.githubusercontent.com/jose-lopes/test_axios/master/images/test.png" alt="Test Result" style="max-width: 100%;"></a></p>
<h4 dir="auto">Expected behavior</h4>
<p dir="auto">I expected no memory leak even we got the error "Request body larger than maxBodyLength limit".<br>
I executed again the test with option maxBodyLength: 30<em>1024</em>1024 and got the next graph without memory leak.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://raw.githubusercontent.com/jose-lopes/test_axios/master/images/testExpected.png"><img src="https://raw.githubusercontent.com/jose-lopes/test_axios/master/images/testExpected.png" alt="Test Result" style="max-width: 100%;"></a></p>
<h4 dir="auto">Environment</h4>
<ul dir="auto">
<li>Axios Version: 0.21.0</li>
<li>Node.js Version: v14.15.0</li>
<li>OS: Arch Linux</li>
</ul>
<h4 dir="auto">Additional context/Screenshots</h4> | 1 |
<p dir="auto">tsc version 1.7.5<br>
target == es6</p>
<p dir="auto">Notice how the import of 'routes' changes to 'routes_1' in the compiled version (<em>var routes_1 = require('../common/routes');</em>), but the object literal for 'routes' (<em>react_router_1.match({ routes, location: req.url }</em>...) does not.</p>
<h1 dir="auto">INPUT</h1>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// server.tsx
const express = require('express');
const app = express();
import { renderToString } from 'react-dom/server';
import {
Route,
Router,
match,
RoutingContext } from 'react-router';
import React = require('react');
import invariant = require('invariant');
import {
routes,
} from '../common/routes';
import {
HttpMethods,
RequestStates
} from '../common/utils/http';
app.get('*', (req: any, res: any) => {
match({ routes, location: req.url }, (error: any, redirectLocation: any, renderProps: any) => {
if (error) {
res.status(500).send(error.message)
} else if (redirectLocation) {
res.redirect(302, redirectLocation.pathname + redirectLocation.search)
} else if (renderProps) {
console.log('renderProps', renderProps);
res.status(200).send(renderToString(<RoutingContext {...renderProps} />))
} else {
res.status(404).send('Not found')
}
})
});
const server = app.listen(3000, function () {
const host = server.address().address;
const port = server.address().port;
console.log('Example app listening at http://%s:%s', host, port);
});"><pre class="notranslate"><span class="pl-c">// server.tsx</span>
<span class="pl-k">const</span> <span class="pl-s1">express</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'express'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-en">express</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">renderToString</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'react-dom/server'</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span>
<span class="pl-smi">Route</span><span class="pl-kos">,</span>
<span class="pl-smi">Router</span><span class="pl-kos">,</span>
<span class="pl-s1">match</span><span class="pl-kos">,</span>
<span class="pl-smi">RoutingContext</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'react-router'</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-smi">React</span> <span class="pl-c1">=</span> require<span class="pl-kos">(</span><span class="pl-s">'react'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-s1">invariant</span> <span class="pl-c1">=</span> require<span class="pl-kos">(</span><span class="pl-s">'invariant'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span>
<span class="pl-s1">routes</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'../common/routes'</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span>
<span class="pl-smi">HttpMethods</span><span class="pl-kos">,</span>
<span class="pl-smi">RequestStates</span>
<span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'../common/utils/http'</span><span class="pl-kos">;</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'*'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">req</span>: <span class="pl-smi">any</span><span class="pl-kos">,</span> <span class="pl-s1">res</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-en">match</span><span class="pl-kos">(</span><span class="pl-kos">{</span> routes<span class="pl-kos">,</span> <span class="pl-c1">location</span>: <span class="pl-s1">req</span><span class="pl-kos">.</span><span class="pl-c1">url</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">error</span>: <span class="pl-smi">any</span><span class="pl-kos">,</span> <span class="pl-s1">redirectLocation</span>: <span class="pl-smi">any</span><span class="pl-kos">,</span> <span class="pl-s1">renderProps</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">status</span><span class="pl-kos">(</span><span class="pl-c1">500</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">send</span><span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">.</span><span class="pl-c1">message</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">redirectLocation</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">redirect</span><span class="pl-kos">(</span><span class="pl-c1">302</span><span class="pl-kos">,</span> <span class="pl-s1">redirectLocation</span><span class="pl-kos">.</span><span class="pl-c1">pathname</span> <span class="pl-c1">+</span> <span class="pl-s1">redirectLocation</span><span class="pl-kos">.</span><span class="pl-c1">search</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">renderProps</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'renderProps'</span><span class="pl-kos">,</span> <span class="pl-s1">renderProps</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">status</span><span class="pl-kos">(</span><span class="pl-c1">200</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">send</span><span class="pl-kos">(</span><span class="pl-en">renderToString</span><span class="pl-kos">(</span><span class="pl-kos"><</span><span class="pl-smi">RoutingContext</span><span class="pl-kos"></span> <span class="pl-kos">{</span>...<span class="pl-s1">renderProps</span><span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">></span><span class="pl-kos">)</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">status</span><span class="pl-kos">(</span><span class="pl-c1">404</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">send</span><span class="pl-kos">(</span><span class="pl-s">'Not found'</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">server</span> <span class="pl-c1">=</span> <span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">listen</span><span class="pl-kos">(</span><span class="pl-c1">3000</span><span class="pl-kos">,</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">host</span> <span class="pl-c1">=</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">address</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">address</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">port</span> <span class="pl-c1">=</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">address</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">port</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'Example app listening at http://%s:%s'</span><span class="pl-kos">,</span> <span class="pl-s1">host</span><span class="pl-kos">,</span> <span class="pl-s1">port</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h1 dir="auto">OUTPUT</h1>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const express = require('express');
const app = express();
var server_1 = require('react-dom/server');
var react_router_1 = require('react-router');
var React = require('react');
var routes_1 = require('../common/routes');
app.get('*', (req, res) => {
react_router_1.match({ routes, location: req.url }, (error, redirectLocation, renderProps) => {
if (error) {
res.status(500).send(error.message);
}
else if (redirectLocation) {
res.redirect(302, redirectLocation.pathname + redirectLocation.search);
}
else if (renderProps) {
console.log('renderProps', renderProps);
res.status(200).send(server_1.renderToString(React.createElement(react_router_1.RoutingContext, React.__spread({}, renderProps))));
}
else {
res.status(404).send('Not found');
}
});
});
const server = app.listen(3000, function () {
const host = server.address().address;
const port = server.address().port;
console.log('Example app listening at http://%s:%s', host, port);
});```"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">express</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'express'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-s1">express</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">server_1</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'react-dom/server'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">react_router_1</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'react-router'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">React</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'react'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">routes_1</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'../common/routes'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'*'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">req</span><span class="pl-kos">,</span> <span class="pl-s1">res</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">react_router_1</span><span class="pl-kos">.</span><span class="pl-en">match</span><span class="pl-kos">(</span><span class="pl-kos">{</span> routes<span class="pl-kos">,</span> <span class="pl-c1">location</span>: <span class="pl-s1">req</span><span class="pl-kos">.</span><span class="pl-c1">url</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">,</span> <span class="pl-s1">redirectLocation</span><span class="pl-kos">,</span> <span class="pl-s1">renderProps</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">status</span><span class="pl-kos">(</span><span class="pl-c1">500</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">send</span><span class="pl-kos">(</span><span class="pl-s1">error</span><span class="pl-kos">.</span><span class="pl-c1">message</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">redirectLocation</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">redirect</span><span class="pl-kos">(</span><span class="pl-c1">302</span><span class="pl-kos">,</span> <span class="pl-s1">redirectLocation</span><span class="pl-kos">.</span><span class="pl-c1">pathname</span> <span class="pl-c1">+</span> <span class="pl-s1">redirectLocation</span><span class="pl-kos">.</span><span class="pl-c1">search</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">renderProps</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'renderProps'</span><span class="pl-kos">,</span> <span class="pl-s1">renderProps</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">status</span><span class="pl-kos">(</span><span class="pl-c1">200</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">send</span><span class="pl-kos">(</span><span class="pl-s1">server_1</span><span class="pl-kos">.</span><span class="pl-en">renderToString</span><span class="pl-kos">(</span><span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-s1">react_router_1</span><span class="pl-kos">.</span><span class="pl-c1">RoutingContext</span><span class="pl-kos">,</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">__spread</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">renderProps</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">status</span><span class="pl-kos">(</span><span class="pl-c1">404</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">send</span><span class="pl-kos">(</span><span class="pl-s">'Not found'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">server</span> <span class="pl-c1">=</span> <span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">listen</span><span class="pl-kos">(</span><span class="pl-c1">3000</span><span class="pl-kos">,</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">host</span> <span class="pl-c1">=</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">address</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">address</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">port</span> <span class="pl-c1">=</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">address</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">port</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'Example app listening at http://%s:%s'</span><span class="pl-kos">,</span> <span class="pl-s1">host</span><span class="pl-kos">,</span> <span class="pl-s1">port</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span><span class="pl-s">``</span>`</pre></div> | <p dir="auto">Using typescript@next (1.8.0-dev.20151109) and the following compilerOptions:</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""compilerOptions": {
"target": "ES6",
"module": "commonjs"
}"><pre class="notranslate"><span class="pl-ent">"compilerOptions"</span>: {
<span class="pl-ent">"target"</span>: <span class="pl-s"><span class="pl-pds">"</span>ES6<span class="pl-pds">"</span></span>,
<span class="pl-ent">"module"</span>: <span class="pl-s"><span class="pl-pds">"</span>commonjs<span class="pl-pds">"</span></span>
}</pre></div>
<p dir="auto">Any code using named import as a shorthand property will result in invalid code being generated.</p>
<p dir="auto">Example:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import {foo} from './foo';
const test = {
foo
};"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-s1">foo</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'./foo'</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">test</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
foo
<span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">generates</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var foo_1 = require('./foo');
const test = {
foo
};"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">foo_1</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'./foo'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">test</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
foo
<span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ReferenceError: foo is not defined"><pre class="notranslate"><code class="notranslate">ReferenceError: foo is not defined
</code></pre></div> | 1 |
<p dir="auto">Proxy <code class="notranslate">CONNECT</code> support is required for https urls to work.</p>
<p dir="auto">When proxy support was added to Scrapy, urllib still didn't supported CONNECT, but that has been fixed now:<br>
<a href="http://bugs.python.org/issue1424152" rel="nofollow">http://bugs.python.org/issue1424152</a></p>
<p dir="auto">Now we need to add support to Scrapy (which doesn't use urllib at all).</p>
<p dir="auto">This link contains useful tips on how to add CONNECT support with Twisted:<br>
<a href="http://twistedmatrix.com/pipermail/twisted-web/2008-August/003878.html" rel="nofollow">http://twistedmatrix.com/pipermail/twisted-web/2008-August/003878.html</a></p>
<p dir="auto">See originally reported ticket on Trac for more comments: <a href="http://dev.scrapy.org/ticket/159" rel="nofollow">http://dev.scrapy.org/ticket/159</a></p> | <p dir="auto">I have a spider that's throwing the following error when trying to crawl this URL.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> fetch('https://vconnections.org/resources')
2015-08-12 10:07:28 [scrapy] INFO: Spider opened
2015-08-12 10:07:28 [scrapy] DEBUG: Retrying <GET https://vconnections.org/resources> (failed 1 times): [<twisted.python.failure.Failure <class 'OpenSSL.SSL.Error'>>]
2015-08-12 10:07:33 [scrapy] DEBUG: Gave up retrying <GET https://vconnections.org/resources> (failed 2 times): [<twisted.python.failure.Failure <class 'OpenSSL.SSL.Error'>>]
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/Users/gmeans/.virtualenvs/backlink/lib/python2.7/site-packages/scrapy/shell.py", line 87, in fetch
reactor, self._schedule, request, spider)
File "/Users/gmeans/.virtualenvs/backlink/lib/python2.7/site-packages/twisted/internet/threads.py", line 122, in blockingCallFromThread
result.raiseException()
File "<string>", line 2, in raiseException
ResponseNeverReceived: [<twisted.python.failure.Failure <class 'OpenSSL.SSL.Error'>>]"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-en">fetch</span>(<span class="pl-s">'https://vconnections.org/resources'</span>)
<span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">12</span> <span class="pl-c1">10</span>:<span class="pl-c1">07</span>:<span class="pl-c1">28</span> [<span class="pl-s1">scrapy</span>] <span class="pl-v">INFO</span>: <span class="pl-v">Spider</span> <span class="pl-s1">opened</span>
<span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">12</span> <span class="pl-c1">10</span>:<span class="pl-c1">07</span>:<span class="pl-c1">28</span> [<span class="pl-s1">scrapy</span>] <span class="pl-v">DEBUG</span>: <span class="pl-v">Retrying</span> <span class="pl-c1"><</span><span class="pl-v">GET</span> <span class="pl-s1">https</span>:<span class="pl-c1">//</span><span class="pl-s1">vconnections</span>.<span class="pl-s1">org</span><span class="pl-c1">/</span><span class="pl-s1">resources</span><span class="pl-c1">></span> (<span class="pl-s1">failed</span> <span class="pl-c1">1</span> <span class="pl-s1">times</span>): [<span class="pl-c1"><</span><span class="pl-s1">twisted</span>.<span class="pl-s1">python</span>.<span class="pl-s1">failure</span>.<span class="pl-v">Failure</span> <span class="pl-c1"><</span><span class="pl-s1">class</span> <span class="pl-s">'OpenSSL.SSL.Error'</span><span class="pl-c1">>></span>]
<span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">12</span> <span class="pl-c1">10</span>:<span class="pl-c1">07</span>:<span class="pl-c1">33</span> [<span class="pl-s1">scrapy</span>] <span class="pl-v">DEBUG</span>: <span class="pl-v">Gave</span> <span class="pl-s1">up</span> <span class="pl-s1">retrying</span> <span class="pl-c1"><</span><span class="pl-v">GET</span> <span class="pl-s1">https</span>:<span class="pl-c1">//</span><span class="pl-s1">vconnections</span>.<span class="pl-s1">org</span><span class="pl-c1">/</span><span class="pl-s1">resources</span><span class="pl-c1">></span> (<span class="pl-s1">failed</span> <span class="pl-c1">2</span> <span class="pl-s1">times</span>): [<span class="pl-c1"><</span><span class="pl-s1">twisted</span>.<span class="pl-s1">python</span>.<span class="pl-s1">failure</span>.<span class="pl-v">Failure</span> <span class="pl-c1"><</span><span class="pl-s1">class</span> <span class="pl-s">'OpenSSL.SSL.Error'</span><span class="pl-c1">>></span>]
<span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>):
<span class="pl-v">File</span> <span class="pl-s">"<console>"</span>, <span class="pl-s1">line</span> <span class="pl-c1">1</span>, <span class="pl-s1">in</span> <span class="pl-c1"><</span><span class="pl-s1">module</span><span class="pl-c1">></span>
<span class="pl-v">File</span> <span class="pl-s">"/Users/gmeans/.virtualenvs/backlink/lib/python2.7/site-packages/scrapy/shell.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">87</span>, <span class="pl-s1">in</span> <span class="pl-s1">fetch</span>
<span class="pl-s1">reactor</span>, <span class="pl-s1">self</span>.<span class="pl-s1">_schedule</span>, <span class="pl-s1">request</span>, <span class="pl-s1">spider</span>)
<span class="pl-v">File</span> <span class="pl-s">"/Users/gmeans/.virtualenvs/backlink/lib/python2.7/site-packages/twisted/internet/threads.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">122</span>, <span class="pl-s1">in</span> <span class="pl-s1">blockingCallFromThread</span>
<span class="pl-s1">result</span>.<span class="pl-en">raiseException</span>()
<span class="pl-v">File</span> <span class="pl-s">"<string>"</span>, <span class="pl-s1">line</span> <span class="pl-c1">2</span>, <span class="pl-s1">in</span> <span class="pl-s1">raiseException</span>
<span class="pl-v">ResponseNeverReceived</span>: [<span class="pl-c1"><</span><span class="pl-s1">twisted</span>.<span class="pl-s1">python</span>.<span class="pl-s1">failure</span>.<span class="pl-v">Failure</span> <span class="pl-c1"><</span><span class="pl-s1">class</span> <span class="pl-s">'OpenSSL.SSL.Error'</span><span class="pl-c1">>></span>]</pre></div>
<p dir="auto">Other SSL urls work fine, and I tried implementing the solution from this previous issue:</p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="51783745" data-permission-text="Title is private" data-url="https://github.com/scrapy/scrapy/issues/981" data-hovercard-type="issue" data-hovercard-url="/scrapy/scrapy/issues/981/hovercard" href="https://github.com/scrapy/scrapy/issues/981">#981</a></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class CustomContextFactory(ScrapyClientContextFactory):
def getContext(self, hostname=None, port=None):
ctx = ClientContextFactory.getContext(self)
# Enable all workarounds to SSL bugs as documented by
# http://www.openssl.org/docs/ssl/SSL_CTX_set_options.html
ctx.set_options(SSL.OP_ALL)
if hostname:
ClientTLSOptions(hostname, ctx)
return ctx"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">CustomContextFactory</span>(<span class="pl-v">ScrapyClientContextFactory</span>):
<span class="pl-k">def</span> <span class="pl-en">getContext</span>(<span class="pl-s1">self</span>, <span class="pl-s1">hostname</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">port</span><span class="pl-c1">=</span><span class="pl-c1">None</span>):
<span class="pl-s1">ctx</span> <span class="pl-c1">=</span> <span class="pl-v">ClientContextFactory</span>.<span class="pl-en">getContext</span>(<span class="pl-s1">self</span>)
<span class="pl-c"># Enable all workarounds to SSL bugs as documented by</span>
<span class="pl-c"># http://www.openssl.org/docs/ssl/SSL_CTX_set_options.html</span>
<span class="pl-s1">ctx</span>.<span class="pl-en">set_options</span>(<span class="pl-v">SSL</span>.<span class="pl-v">OP_ALL</span>)
<span class="pl-k">if</span> <span class="pl-s1">hostname</span>:
<span class="pl-v">ClientTLSOptions</span>(<span class="pl-s1">hostname</span>, <span class="pl-s1">ctx</span>)
<span class="pl-k">return</span> <span class="pl-s1">ctx</span></pre></div>
<p dir="auto">Scrapy==1.0.3<br>
Twisted==15.3.0<br>
pyOpenSSL==0.15.1</p>
<p dir="auto">OpenSSL 1.0.1k 8 Jan 2015</p>
<p dir="auto">Any ideas on what else I could try? Thanks!</p> | 0 |
<p dir="auto">This is a feature request.</p>
<p dir="auto">I suggest that we can assign DOM <code class="notranslate">Node</code> to the member of <code class="notranslate">vm.$data</code> like following example.</p>
<p dir="auto">Template:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<div id="bar">
<div>{{content}}</div>
</div>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">id</span>="<span class="pl-s">bar</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span><span class="pl-kos">></span>{{content}}<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div>
<p dir="auto">Vue:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var node = ...; // `DOM::Node` or `DOM::DocumentFragment`
new Vue({
el: "#bar",
data: {
content: node // This DOM Node will replace `{{content}}` in the above template.
}
});"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">node</span> <span class="pl-c1">=</span> ...<span class="pl-kos">;</span> <span class="pl-c">// `DOM::Node` or `DOM::DocumentFragment`</span>
<span class="pl-k">new</span> <span class="pl-v">Vue</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">el</span>: <span class="pl-s">"#bar"</span><span class="pl-kos">,</span>
<span class="pl-c1">data</span>: <span class="pl-kos">{</span>
<span class="pl-c1">content</span>: <span class="pl-s1">node</span> <span class="pl-c">// This DOM Node will replace `{{content}}` in the above template.</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h2 dir="auto">This use-case</h2>
<p dir="auto">This proposal's use-case is when we need to insert DOM Node directly. In some case, we append the content sanitized with using <code class="notranslate">DOM::DOMParser</code> and traversing it.</p> | <p dir="auto">I've already mentioned it in issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="39429551" data-permission-text="Title is private" data-url="https://github.com/vuejs/vue/issues/384" data-hovercard-type="issue" data-hovercard-url="/vuejs/vue/issues/384/hovercard" href="https://github.com/vuejs/vue/issues/384">#384</a>, but I'd like to gain access to a specific dom node without creating a child VM when not needed, very close to what <code class="notranslate">v-ref</code> do.</p>
<p dir="auto">So i've thought of something like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<canvas v-el="myCanvas"></canvas>"><pre class="notranslate"><code class="notranslate"><canvas v-el="myCanvas"></canvas>
</code></pre></div>
<p dir="auto">Then using it in parent VM like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var ctx = this.$$.myCanvas.getContext('2d');"><pre class="notranslate"><code class="notranslate">var ctx = this.$$.myCanvas.getContext('2d');
</code></pre></div>
<p dir="auto">What would be your approach in this use case? Is <code class="notranslate">$$</code> appropriated?</p>
<p dir="auto">Here is a <a href="https://github.com/rayfranco/vue-el">directive I made</a> that do the trick. Please tell me what you think.</p> | 1 |
<p dir="auto">This is magical:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> (1:4) .+ (1:4)
2:2:8"><pre lang="juilia" class="notranslate"><code class="notranslate">julia> (1:4) .+ (1:4)
2:2:8
</code></pre></div>
<p dir="auto">I love that we can be so clever. Unfortunately, it can come back and bite us sometimes:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> (1:4) .+ (4:-1:1)
ERROR: ArgumentError: step cannot be zero
Stacktrace:
[1] steprange_last(::Int64, ::Int64, ::Int64) at ./range.jl:137
[2] Type at ./range.jl:127 [inlined]
[3] _rangestyle at ./range.jl:90 [inlined]
[4] _range at ./range.jl:88 [inlined]
[5] #range#29 at ./range.jl:73 [inlined]
[6] #range at ./none:0 [inlined]
[7] + at ./range.jl:890 [inlined]
[8] broadcasted at ./broadcast.jl:969 [inlined]
[9] broadcasted(::Function, ::UnitRange{Int64}, ::StepRange{Int64,Int64}) at ./broadcast.jl:1146
[10] top-level scope at none:0
"><pre class="notranslate">julia<span class="pl-k">></span> (<span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">4</span>) <span class="pl-k">.+</span> (<span class="pl-c1">4</span><span class="pl-k">:</span><span class="pl-k">-</span><span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">1</span>)
ERROR<span class="pl-k">:</span> ArgumentError<span class="pl-k">:</span> step cannot be zero
Stacktrace<span class="pl-k">:</span>
[<span class="pl-c1">1</span>] <span class="pl-c1">steprange_last</span>(<span class="pl-k">::</span><span class="pl-c1">Int64</span>, <span class="pl-k">::</span><span class="pl-c1">Int64</span>, <span class="pl-k">::</span><span class="pl-c1">Int64</span>) at <span class="pl-k">./</span>range<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">137</span>
[<span class="pl-c1">2</span>] Type at <span class="pl-k">./</span>range<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">127</span> [inlined]
[<span class="pl-c1">3</span>] _rangestyle at <span class="pl-k">./</span>range<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">90</span> [inlined]
[<span class="pl-c1">4</span>] _range at <span class="pl-k">./</span>range<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">88</span> [inlined]
[<span class="pl-c1">5</span>] <span class="pl-c"><span class="pl-c">#</span>range#29 at ./range.jl:73 [inlined]</span>
[<span class="pl-c1">6</span>] <span class="pl-c"><span class="pl-c">#</span>range at ./none:0 [inlined]</span>
[<span class="pl-c1">7</span>] <span class="pl-k">+</span> at <span class="pl-k">./</span>range<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">890</span> [inlined]
[<span class="pl-c1">8</span>] broadcasted at <span class="pl-k">./</span>broadcast<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">969</span> [inlined]
[<span class="pl-c1">9</span>] <span class="pl-c1">broadcasted</span>(<span class="pl-k">::</span><span class="pl-c1">Function</span>, <span class="pl-k">::</span><span class="pl-c1">UnitRange{Int64}</span>, <span class="pl-k">::</span><span class="pl-c1">StepRange{Int64,Int64}</span>) at <span class="pl-k">./</span>broadcast<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">1146</span>
[<span class="pl-c1">10</span>] top<span class="pl-k">-</span>level scope at none<span class="pl-k">:</span><span class="pl-c1">0</span>
</pre></div>
<p dir="auto">This is very clearly due to us trying to construct the range <code class="notranslate">[5:0:5]</code> that is supposed to be 4 elements long, but unfortunately we lose that information since it's supposed to be implicit in <code class="notranslate">start</code>, <code class="notranslate">stop</code> and <code class="notranslate">step</code>. The range abstraction doesn't know what to do here, and so we fail out.</p>
<p dir="auto">Likely we should have a fallback for this cleverness that simply constructs an array, but I don't like the idea that <code class="notranslate">Range</code> + <code class="notranslate">Range</code> = <code class="notranslate">Union{Range,Vector}</code>. I would rather that we had a different abstraction similar to <code class="notranslate">UnitRange</code>, perhaps called <code class="notranslate">ConstantRange</code> or something, that takes in a value and an explicit length so that we don't have some poor fool who is doing something like:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="for stepA in 1:3
for stepB in -3:-1
x = (1:stepA:stepA*1000000000) .+ (stepB*-1000000000:stepB:1)
println(sum(x))
end
end"><pre class="notranslate"><span class="pl-k">for</span> stepA <span class="pl-k">in</span> <span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">3</span>
<span class="pl-k">for</span> stepB <span class="pl-k">in</span> <span class="pl-k">-</span><span class="pl-c1">3</span><span class="pl-k">:</span><span class="pl-k">-</span><span class="pl-c1">1</span>
x <span class="pl-k">=</span> (<span class="pl-c1">1</span><span class="pl-k">:</span>stepA<span class="pl-k">:</span>stepA<span class="pl-k">*</span><span class="pl-c1">1000000000</span>) <span class="pl-k">.+</span> (stepB<span class="pl-k">*-</span><span class="pl-c1">1000000000</span><span class="pl-k">:</span>stepB<span class="pl-k">:</span><span class="pl-c1">1</span>)
<span class="pl-c1">println</span>(<span class="pl-c1">sum</span>(x))
<span class="pl-k">end</span>
<span class="pl-k">end</span></pre></div>
<p dir="auto">and have his memory blow up for very particular values of <code class="notranslate">stepA</code> and <code class="notranslate">stepB</code>. (Note that the code sample above, fanciful as it is, fails on current versions of Julia because it cannot finish the summation of the two ranges)</p> | <p dir="auto">Julia 1.0:</p>
<p dir="auto">I observed that when starting up Julia with the <code class="notranslate">--math-mode=fast</code> option, I get incorrect results for sinpi and cospi functions.</p>
<p dir="auto">With the default math mode:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> a = rand(5)
5-element Array{Float64,1}:
0.5897641978923696
0.2459464145866952
0.06373272357797632
0.26244049804714087
0.7254898186800567
julia> cospi.(a)
5-element Array{Float64,1}:
-0.27827964958957724
0.7160540045153001
0.9800223981473272
0.6789380012385138
-0.650617399829044
julia> sinpi.(a)
5-element Array{Float64,1}:
0.9605000971495538
0.6980448858186719
0.19888715174581242
0.7341956077737403
0.7594056880480248"><pre class="notranslate"><code class="notranslate">julia> a = rand(5)
5-element Array{Float64,1}:
0.5897641978923696
0.2459464145866952
0.06373272357797632
0.26244049804714087
0.7254898186800567
julia> cospi.(a)
5-element Array{Float64,1}:
-0.27827964958957724
0.7160540045153001
0.9800223981473272
0.6789380012385138
-0.650617399829044
julia> sinpi.(a)
5-element Array{Float64,1}:
0.9605000971495538
0.6980448858186719
0.19888715174581242
0.7341956077737403
0.7594056880480248
</code></pre></div>
<p dir="auto">while with <code class="notranslate">--math-mode=fast</code> option:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> cospi.(a)
5-element Array{Float64,1}:
1.0
1.0
1.0
1.0
1.0
julia> sinpi.(a)
5-element Array{Float64,1}:
0.0
0.0
0.0
0.0
0.0"><pre class="notranslate"><code class="notranslate">julia> cospi.(a)
5-element Array{Float64,1}:
1.0
1.0
1.0
1.0
1.0
julia> sinpi.(a)
5-element Array{Float64,1}:
0.0
0.0
0.0
0.0
0.0
</code></pre></div> | 0 |
<h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">The ability to create a new tab with 'Run as a different user' option would be nice. I often need to run shells as different users.</p> | <h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">Add ability to open new tabs that run one (or more) custom command before the opening</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">In the profile.json add add a new field, for example <code class="notranslate">commands</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"acrylicOpacity" : 0.5,
"background" : "#012456",
"closeOnExit" : true,
"colorScheme" : "Campbell",
"commandline" : "powershell.exe",
"cursorColor" : "#FFFFFF",
"cursorShape" : "bar",
"fontFace" : "Consolas",
"fontSize" : 10,
"guid" : "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"historySize" : 9001,
"icon" : "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png",
"name" : "Conda",
"padding" : "0, 0, 0, 0",
"snapOnInput" : true,
"startingDirectory" : "%USERPROFILE%",
"useAcrylic" : true,
"commands": ["$env:Path += ";PathToConda""]
}"><pre class="notranslate"><code class="notranslate">{
"acrylicOpacity" : 0.5,
"background" : "#012456",
"closeOnExit" : true,
"colorScheme" : "Campbell",
"commandline" : "powershell.exe",
"cursorColor" : "#FFFFFF",
"cursorShape" : "bar",
"fontFace" : "Consolas",
"fontSize" : 10,
"guid" : "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"historySize" : 9001,
"icon" : "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png",
"name" : "Conda",
"padding" : "0, 0, 0, 0",
"snapOnInput" : true,
"startingDirectory" : "%USERPROFILE%",
"useAcrylic" : true,
"commands": ["$env:Path += ";PathToConda""]
}
</code></pre></div>
<p dir="auto">where <code class="notranslate">commands</code> are the commands that the terminal will execute before opening the new tab, in the example it will add the path to conda to the environmental path for the session</p>
<p dir="auto">a dirty image of what i am talking about</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/21184718/65813366-a9d2ed80-e1d4-11e9-822f-1200adc100ed.png"><img src="https://user-images.githubusercontent.com/21184718/65813366-a9d2ed80-e1d4-11e9-822f-1200adc100ed.png" alt="terminal" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">Possibly related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="114612516" data-permission-text="Title is private" data-url="https://github.com/babel/babel/issues/2751" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/2751/hovercard" href="https://github.com/babel/babel/issues/2751">#2751</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="114491529" data-permission-text="Title is private" data-url="https://github.com/babel/babel/issues/2725" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/2725/hovercard" href="https://github.com/babel/babel/issues/2725">#2725</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="114304486" data-permission-text="Title is private" data-url="https://github.com/babel/babel/issues/2686" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/2686/hovercard" href="https://github.com/babel/babel/issues/2686">#2686</a>, but I do not think it's a duplicate, since this bug only appears when default parameters are used. Also, I tried asking in slack, but didn't recieve an answer and I think the question got burried now.</p>
<p dir="auto">I'm using a fresh setup with <code class="notranslate">node v5.0.0</code>, <code class="notranslate">npm v3.3.11</code>, <code class="notranslate">babel-cli 6.0.15</code> (with <code class="notranslate">babel-core 6.0.20</code>), <code class="notranslate">babel-preset-es2015</code> (which includes <code class="notranslate">babel-plugin-transform-regenerator</code> and <code class="notranslate">babel-plugin-transform-es2015-parameters</code>).</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ babel --version
6.0.15 (babel-core 6.0.20)"><pre class="notranslate"><span class="pl-s1">$</span> <span class="pl-s1">babel</span> <span class="pl-c1">--</span><span class="pl-s1">version</span>
<span class="pl-c1">6.0</span><span class="pl-c1">.15</span> <span class="pl-kos">(</span><span class="pl-s1">babel</span><span class="pl-c1">-</span><span class="pl-s1">core</span> <span class="pl-c1">6.0</span><span class="pl-c1">.20</span><span class="pl-kos">)</span></pre></div>
<p dir="auto"><strong>.babelrc</strong> (I've tried manually specifying the above-mentioned <code class="notranslate">plugins</code> as well)</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"presets": ["es2015"]
}"><pre class="notranslate"><span class="pl-kos">{</span>
<span class="pl-s">"presets"</span>: <span class="pl-kos">[</span><span class="pl-s">"es2015"</span><span class="pl-kos">]</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><strong>index.js</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export class Test {
*memberGenerator(arg = 0) {
console.log(arg);
}
start() {
this.memberGenerator(1).next();
}
}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-v">Test</span> <span class="pl-kos">{</span>
<span class="pl-c1">*</span><span class="pl-en">memberGenerator</span><span class="pl-kos">(</span><span class="pl-s1">arg</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">arg</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">start</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">memberGenerator</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">next</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><strong><code class="notranslate">babel index.js --module-id Test -o out.js</code></strong></p>
<p dir="auto"><strong>out.js</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""use strict";
(function (global, factory) {
if (typeof define === "function" && define.amd) {
define("Test", ["exports"], factory);
} else if (typeof exports !== "undefined") {
factory(exports);
} else {
var mod = {
exports: {}
};
factory(mod.exports);
global.Test = mod.exports;
}
})(this, function (exports) {
Object.defineProperty(exports, "__esModule", {
value: true
});
var _arguments = arguments;
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
var Test = exports.Test = (function () {
function Test() {
_classCallCheck(this, Test);
}
_createClass(Test, [{
key: "memberGenerator",
value: regeneratorRuntime.mark(function memberGenerator() {
var arg = _arguments.length <= 0 || _arguments[0] === undefined ? 0 : _arguments[0];
return regeneratorRuntime.wrap(function memberGenerator$(_context) {
while (1) switch (_context.prev = _context.next) {
case 0:
console.log(arg);
case 1:
case "end":
return _context.stop();
}
}, memberGenerator, this);
})
}, {
key: "start",
value: function start() {
var gen = this.memberGenerator(1);
gen.next();
}
}]);
return Test;
})();
});
"><pre class="notranslate"><span class="pl-s">"use strict"</span><span class="pl-kos">;</span>
<span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">global</span><span class="pl-kos">,</span> <span class="pl-s1">factory</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">define</span> <span class="pl-c1">===</span> <span class="pl-s">"function"</span> <span class="pl-c1">&&</span> <span class="pl-s1">define</span><span class="pl-kos">.</span><span class="pl-c1">amd</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">define</span><span class="pl-kos">(</span><span class="pl-s">"Test"</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"exports"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-s1">factory</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">exports</span> <span class="pl-c1">!==</span> <span class="pl-s">"undefined"</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">factory</span><span class="pl-kos">(</span><span class="pl-s1">exports</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">mod</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">exports</span>: <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-s1">factory</span><span class="pl-kos">(</span><span class="pl-s1">mod</span><span class="pl-kos">.</span><span class="pl-c1">exports</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">global</span><span class="pl-kos">.</span><span class="pl-c1">Test</span> <span class="pl-c1">=</span> <span class="pl-s1">mod</span><span class="pl-kos">.</span><span class="pl-c1">exports</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">,</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">exports</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">defineProperty</span><span class="pl-kos">(</span><span class="pl-s1">exports</span><span class="pl-kos">,</span> <span class="pl-s">"__esModule"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">value</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">_arguments</span> <span class="pl-c1">=</span> <span class="pl-smi">arguments</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">_classCallCheck</span><span class="pl-kos">(</span><span class="pl-s1">instance</span><span class="pl-kos">,</span> <span class="pl-v">Constructor</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-kos">(</span><span class="pl-s1">instance</span> <span class="pl-k">instanceof</span> <span class="pl-v">Constructor</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-v">TypeError</span><span class="pl-kos">(</span><span class="pl-s">"Cannot call a class as a function"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-s1">_createClass</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">function</span> <span class="pl-en">defineProperties</span><span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">i</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span> <span class="pl-s1">i</span> <span class="pl-c1"><</span> <span class="pl-s1">props</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span> <span class="pl-s1">i</span><span class="pl-c1">++</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">descriptor</span> <span class="pl-c1">=</span> <span class="pl-s1">props</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">enumerable</span> <span class="pl-c1">=</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">enumerable</span> <span class="pl-c1">||</span> <span class="pl-c1">false</span><span class="pl-kos">;</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">configurable</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s">"value"</span> <span class="pl-k">in</span> <span class="pl-s1">descriptor</span><span class="pl-kos">)</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">writable</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">defineProperty</span><span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">key</span><span class="pl-kos">,</span> <span class="pl-s1">descriptor</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">return</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-v">Constructor</span><span class="pl-kos">,</span> <span class="pl-s1">protoProps</span><span class="pl-kos">,</span> <span class="pl-s1">staticProps</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">protoProps</span><span class="pl-kos">)</span> <span class="pl-en">defineProperties</span><span class="pl-kos">(</span><span class="pl-v">Constructor</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">,</span> <span class="pl-s1">protoProps</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">staticProps</span><span class="pl-kos">)</span> <span class="pl-en">defineProperties</span><span class="pl-kos">(</span><span class="pl-v">Constructor</span><span class="pl-kos">,</span> <span class="pl-s1">staticProps</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-v">Constructor</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">Test</span> <span class="pl-c1">=</span> <span class="pl-s1">exports</span><span class="pl-kos">.</span><span class="pl-c1">Test</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">function</span> <span class="pl-v">Test</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">_classCallCheck</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">,</span> <span class="pl-v">Test</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-s1">_createClass</span><span class="pl-kos">(</span><span class="pl-v">Test</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-kos">{</span>
<span class="pl-c1">key</span>: <span class="pl-s">"memberGenerator"</span><span class="pl-kos">,</span>
<span class="pl-c1">value</span>: <span class="pl-s1">regeneratorRuntime</span><span class="pl-kos">.</span><span class="pl-en">mark</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-en">memberGenerator</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">arg</span> <span class="pl-c1">=</span> <span class="pl-s1">_arguments</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1"><=</span> <span class="pl-c1">0</span> <span class="pl-c1">||</span> <span class="pl-s1">_arguments</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span> <span class="pl-c1">===</span> <span class="pl-c1">undefined</span> ? <span class="pl-c1">0</span> : <span class="pl-s1">_arguments</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">regeneratorRuntime</span><span class="pl-kos">.</span><span class="pl-en">wrap</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-en">memberGenerator$</span><span class="pl-kos">(</span><span class="pl-s1">_context</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">while</span> <span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span> <span class="pl-k">switch</span> <span class="pl-kos">(</span><span class="pl-s1">_context</span><span class="pl-kos">.</span><span class="pl-c1">prev</span> <span class="pl-c1">=</span> <span class="pl-s1">_context</span><span class="pl-kos">.</span><span class="pl-c1">next</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">case</span> <span class="pl-c1">0</span>:
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">arg</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">case</span> <span class="pl-c1">1</span>:
<span class="pl-k">case</span> <span class="pl-s">"end"</span>:
<span class="pl-k">return</span> <span class="pl-s1">_context</span><span class="pl-kos">.</span><span class="pl-en">stop</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">memberGenerator</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">key</span>: <span class="pl-s">"start"</span><span class="pl-kos">,</span>
<span class="pl-en">value</span>: <span class="pl-k">function</span> <span class="pl-en">start</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">gen</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">memberGenerator</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">gen</span><span class="pl-kos">.</span><span class="pl-en">next</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-v">Test</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>test.js</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="require('babel-polyfill');
var Test = require('./out').Test;
var test = new Test();
test.start();"><pre class="notranslate"><span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'babel-polyfill'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">Test</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'./out'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">Test</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">test</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Test</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">test</span><span class="pl-kos">.</span><span class="pl-en">start</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>expected result</strong><br>
<code class="notranslate">1</code></p>
<p dir="auto"><strong>actual result</strong><br>
<code class="notranslate">{ Test: [Function: Test] }</code></p>
<p dir="auto">From what I can tell, it is the combination of exporting a class with the use of default parameters that causes this. If i <code class="notranslate">export Test { ... }</code> as an object instead of a class, or remove the default parameter, <code class="notranslate">*memberGenerator(arg)</code> it works as expected. Also, if i run this in the online babel editor, <a href="http://goo.gl/koJrnZ" rel="nofollow">http://goo.gl/koJrnZ</a>, (no export) it works as expected.</p>
<p dir="auto">Thanks for your help.</p> | 0 |
|
<p dir="auto">Fancy Zones does not work on applications which have their own sub-windows ?</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.17763.1039]
PowerToys version: 0.14 - 0.15
PowerToy module for which you are reporting the bug (if applicable): FancyZones"><pre class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.17763.1039]
PowerToys version: 0.14 - 0.15
PowerToy module for which you are reporting the bug (if applicable): FancyZones
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Create FancyZone layout, use mouse to drag-and-drop "Solution Explorer" or any other window from Visual Studio (except main window) into a zone.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">The window resizes to the zone accordingly, works in v0.13 of PowerToys.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">The window does not resize to the zone.</p>
<p dir="auto">In version 0.14 it is still possible to arrange the window by activating the "Override Windows snap hotkeys..."-option and using hotkeys to arrange it into place. Drag-and-drop does not work.</p>
<p dir="auto">In version 0.15+ there is no option to arrange these windows into a zone.</p> | 1 |
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">If I use react hooks inside a page or component<br>
<code class="notranslate">import Comp from '../../comp</code><br>
in nextjs everything work fine, if I use react hooks inside a component in an external library<br>
<code class="notranslate">import { Comp } from 'my-components</code><br>
I get this error:<br>
<code class="notranslate">Hooks can only be called inside the body of a function component</code></p>
<p dir="auto">this is my nextjs.config:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// next.config.js
const path = require('path');
const withTM = require('next-transpile-modules');
module.exports = withTM({
useFileSystemPublicRoutes: false,
transpileModules: ['ui-components'],
webpack: (config, options) => {
config.resolve.alias = {
...config.resolve.alias,
'styled-components': path.resolve(__dirname, '.', 'node_modules', 'styled-components'),
'react-dom': path.resolve(__dirname, '.', 'node_modules', 'react-dom'),
'react': path.resolve(__dirname, '.', 'node_modules', 'react'),
};
return config;
},
});
"><pre class="notranslate"><code class="notranslate">// next.config.js
const path = require('path');
const withTM = require('next-transpile-modules');
module.exports = withTM({
useFileSystemPublicRoutes: false,
transpileModules: ['ui-components'],
webpack: (config, options) => {
config.resolve.alias = {
...config.resolve.alias,
'styled-components': path.resolve(__dirname, '.', 'node_modules', 'styled-components'),
'react-dom': path.resolve(__dirname, '.', 'node_modules', 'react-dom'),
'react': path.resolve(__dirname, '.', 'node_modules', 'react'),
};
return config;
},
});
</code></pre></div>
<p dir="auto">thie is the babelrc in my app:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
}"><pre class="notranslate"><code class="notranslate">{
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
}
</code></pre></div>
<p dir="auto">this is the babelrc of my library:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"babel-plugin-styled-components",
{
"ssr": true,
"displayName": true
}
],
"@babel/proposal-object-rest-spread"
],
"env": {
"module": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-react"
]
}
}
}"><pre class="notranslate"><code class="notranslate">{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"babel-plugin-styled-components",
{
"ssr": true,
"displayName": true
}
],
"@babel/proposal-object-rest-spread"
],
"env": {
"module": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-react"
]
}
}
}
</code></pre></div>
<p dir="auto">and this is how I build the library:<br>
<code class="notranslate">babel src --out-dir lib --extensions '.js,.jsx' --source-maps inline --watch</code></p>
<p dir="auto">in my library I also have peerdep in my package.json</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" "peerDependency": {
"styled-components": "4.4.1",
"react-dom": "16.8.3",
"react": "16.8.3"
}"><pre class="notranslate"><code class="notranslate"> "peerDependency": {
"styled-components": "4.4.1",
"react-dom": "16.8.3",
"react": "16.8.3"
}
</code></pre></div>
<p dir="auto">Also, if I comment the imported component and I reload I don't see any error, if I remove the comment the page is reloaded with hot reload and I can see the component without error and it works fine....if I reload the page I get the error again</p>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: macOS,</li>
<li>Version of Next.js: 9.1.3</li>
</ul> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<p dir="auto">Would it be possible to have an example that uses uses Rematch (2500+ stars) as the state management / store?</p>
<p dir="auto">Just a random request haha</p>
<p dir="auto"><a href="https://github.com/rematch/rematch/blob/master/docs/purpose.md">https://github.com/rematch/rematch/blob/master/docs/purpose.md</a></p> | 0 |
<p dir="auto">When import external module, we should have a completion list for names of external modules.</p> | <p dir="auto">Hi,</p>
<p dir="auto">Visual Studio (2013 Ultimate) provides intellisense for the src attribute for script elements, by reading the file system and displaying available files or folders.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/d806f3a8fc96af8601bdd892a447e3da24eb8c05ac2760edbfd31ee39bf1419e/687474703a2f2f7777772e696d61676575726c686f73742e636f6d2f696d616765732f69676934657964677130347037346c6c707537652e706e67"><img src="https://camo.githubusercontent.com/d806f3a8fc96af8601bdd892a447e3da24eb8c05ac2760edbfd31ee39bf1419e/687474703a2f2f7777772e696d61676575726c686f73742e636f6d2f696d616765732f69676934657964677130347037346c6c707537652e706e67" alt="Image" data-canonical-src="http://www.imageurlhost.com/images/igi4eydgq04p74llpu7e.png" style="max-width: 100%;"></a></p>
<p dir="auto">It will be quite useful if similar functionality can be provided for <code class="notranslate"><reference></code> and import statements:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
<reference path="foo/ <--- here
import foo = require('foo/ <--- and here
"><pre class="notranslate"> <span class="pl-c1"><</span><span class="pl-s1">reference</span> <span class="pl-s1">path</span><span class="pl-c1">=</span>"foo/ <--- here
import foo = require('foo/ <--- and here</pre></div> | 1 |
<p dir="auto">On a fresh Julia 0.3 install on windows 8.1, I get this odd behaviour, where size(A) indicates that the 3rd and 4th dimensions are of size 0, when A is an array of dimension 3 or 4. This is illustrated below:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> size(ones(2))
(2,)
julia> size(ones(2,3))
(2,3)
julia> size(ones(2,3,4))
(2,3,0)
julia> size(ones(2,3,4,5))
(2,3,0,0)
julia> size(ones(2,3,4,5, 6))
(2,3,4,5,6)"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-c1">size</span>(<span class="pl-c1">ones</span>(<span class="pl-c1">2</span>))
(<span class="pl-c1">2</span>,)
julia<span class="pl-k">></span> <span class="pl-c1">size</span>(<span class="pl-c1">ones</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>))
(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>)
julia<span class="pl-k">></span> <span class="pl-c1">size</span>(<span class="pl-c1">ones</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">4</span>))
(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">0</span>)
julia<span class="pl-k">></span> <span class="pl-c1">size</span>(<span class="pl-c1">ones</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">4</span>,<span class="pl-c1">5</span>))
(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">0</span>,<span class="pl-c1">0</span>)
julia<span class="pl-k">></span> <span class="pl-c1">size</span>(<span class="pl-c1">ones</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">4</span>,<span class="pl-c1">5</span>, <span class="pl-c1">6</span>))
(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">4</span>,<span class="pl-c1">5</span>,<span class="pl-c1">6</span>)</pre></div>
<p dir="auto">Interestingly, the correct result is returned when an axis is specified:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> size(ones(2,3,4))
(2,3,0)
julia> size(ones(2,3,4), 3)
4"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-c1">size</span>(<span class="pl-c1">ones</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">4</span>))
(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">0</span>)
julia<span class="pl-k">></span> <span class="pl-c1">size</span>(<span class="pl-c1">ones</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">4</span>), <span class="pl-c1">3</span>)
<span class="pl-c1">4</span></pre></div> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ julia
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "help()" to list help topics
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.3.0-prerelease+3908 (2014-06-26 23:41 UTC)
_/ |\__'_|_|_|\__'_| | Commit 8f99257 (0 days old master)
|__/ | x86_64-w64-mingw32
julia> x = tuple(1,2,3)
(1,2,0)
julia> x
(1,2,0)
julia> x[3]
3
julia>
julia> versioninfo()
Julia Version 0.3.0-prerelease+3908
Commit 8f99257 (2014-06-26 23:41 UTC)
Platform Info:
System: Windows (x86_64-w64-mingw32)
CPU: Intel(R) Core(TM) i7-4600M CPU @ 2.90GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY)
LAPACK: libopenblas
LIBM: libopenlibm
julia>"><pre class="notranslate"><code class="notranslate">$ julia
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "help()" to list help topics
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.3.0-prerelease+3908 (2014-06-26 23:41 UTC)
_/ |\__'_|_|_|\__'_| | Commit 8f99257 (0 days old master)
|__/ | x86_64-w64-mingw32
julia> x = tuple(1,2,3)
(1,2,0)
julia> x
(1,2,0)
julia> x[3]
3
julia>
julia> versioninfo()
Julia Version 0.3.0-prerelease+3908
Commit 8f99257 (2014-06-26 23:41 UTC)
Platform Info:
System: Windows (x86_64-w64-mingw32)
CPU: Intel(R) Core(TM) i7-4600M CPU @ 2.90GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY)
LAPACK: libopenblas
LIBM: libopenlibm
julia>
</code></pre></div> | 1 |
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/10984/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/10984/</a></p>
<p dir="auto">Failed: [k8s.io] Job should fail a job {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133
Jul 11 05:31:16.288: Couldn't delete ns "e2e-tests-job-0hlz2": namespace e2e-tests-job-0hlz2 was not deleted within limit: timed out waiting for the condition, pods remaining: []"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133
Jul 11 05:31:16.288: Couldn't delete ns "e2e-tests-job-0hlz2": namespace e2e-tests-job-0hlz2 was not deleted within limit: timed out waiting for the condition, pods remaining: []
</code></pre></div> | <p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/9800/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/9800/</a></p>
<p dir="auto">Failed: [k8s.io] Job should delete a job {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133
Jun 23 22:05:43.977: Couldn't delete ns "e2e-tests-job-vueky": namespace e2e-tests-job-vueky was not deleted within limit: timed out waiting for the condition, pods remaining: []"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133
Jun 23 22:05:43.977: Couldn't delete ns "e2e-tests-job-vueky": namespace e2e-tests-job-vueky was not deleted within limit: timed out waiting for the condition, pods remaining: []
</code></pre></div> | 1 |
<p dir="auto">After the configuration is completed, there is basically no need to modify the configuration. This is a low-frequency operation. The tray icon has only one setting option, which is a waste of tray space. I hope to provide the option to hide the tray icon.</p> | <p dir="auto">Hello,</p>
<p dir="auto">could FancyZones have such possibility to alt-tab over windows snapped to the same zone?</p>
<p dir="auto">Let's say I have 3 zones on my monitor and for example each zone has three different applications snapped into it. Could for example shortcut alt+tab+1 switch just between apps snapped into zone 1 and alt+tab+2 into zone 2 etc? With many monitor setup and lots of apps open at once it's hard to do normal 'alt+tab' - but I always keep the same apps snapped to the same zones so just cycling through apps of the same zone would get me quicker to what I need.<br>
Or maybe there's another way of doing it?</p>
<p dir="auto">Thanks in advance</p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">Hi there! I'd love the ability to fuzzy search for Control Panel tasks like I can in the Start Menu. For instance, if I search for "partition", I see <strong>Create and format hard disk partitions</strong> which takes me to <strong>Disk Management</strong>, or if I type "users", I get <strong>Add, edit, or remove other users</strong>.</p> | <p dir="auto">Sometimes the usual way of pasting from clipboard doesn't work (I'm looking at you, vSphere client..).<br>
A perfect addon would be to paste Clipboard content as keystrokes with a special keyboard shortcut - CTRL+SHIFT+V for example.</p> | 0 |
<pre class="notranslate">GOARCH=386
$ hg identify
b950f00ad6f1 tip
changeset: 7774:b950f00ad6f1
tag: tip
user: Russ Cox <rsc@golang.org>
date: Tue Mar 15 22:33:57 2011 -0400
summary: gofix: procattr
unexpected fault address 0xb8002000
throw: fault
[signal 0xb code=0x1 addr=0xb8002000 pc=0x80525c0]
runtime.throw+0x43 /home/bradfitz/go/src/pkg/runtime/runtime.c:102
runtime.throw(0x829d90e, 0xb8002000)
runtime.sigpanic+0xc7 /home/bradfitz/go/src/pkg/runtime/linux/thread.c:294
runtime.sigpanic()
scanblock+0xe2 /home/bradfitz/go/src/pkg/runtime/mgc0.c:119
scanblock(0xb7f8b0ec, 0xffffffbc, 0xffffffff)
scanstack+0x5c /home/bradfitz/go/src/pkg/runtime/mgc0.c:337
scanstack(0x186b5cc0, 0x0)
mark+0x10a /home/bradfitz/go/src/pkg/runtime/mgc0.c:386
mark()
runtime.gc+0x1db /home/bradfitz/go/src/pkg/runtime/mgc0.c:569
runtime.gc(0x1, 0x186eac50)
runfinq+0xea /home/bradfitz/go/src/pkg/runtime/mgc0.c:653
runfinq()
runtime.goexit /home/bradfitz/go/src/pkg/runtime/proc.c:180
runtime.goexit()
----- goroutine created by -----
runtime.gc /home/bradfitz/go/src/pkg/runtime/mgc0.c:515
goroutine 77 [4]:
runtime.gosched+0x6d /home/bradfitz/go/src/pkg/runtime/proc.c:594
runtime.gosched()
runtime.chanrecv+0x147 /home/bradfitz/go/src/pkg/runtime/chan.c:359
runtime.chanrecv(0x19be8900, 0xb7f8639c, 0x0, 0x0, 0x400, ...)
runtime.chanrecv1+0x3f /home/bradfitz/go/src/pkg/runtime/chan.c:421
runtime.chanrecv1(0x19be8900, 0x19eee580)
net.*pollServer·WaitRead+0x50 /home/bradfitz/go/src/pkg/net/fd.go:252
net.*pollServer·WaitRead(0x186ec800, 0x19eee580, 0x400)
net.*netFD·Read+0x1c1 /home/bradfitz/go/src/pkg/net/fd.go:359
net.*netFD·Read(0x19eee580, 0x187bf400, 0x400, 0x400, 0x0, ...)
net.*TCPConn·Read+0x6f /home/bradfitz/go/src/pkg/net/tcpsock.go:94
net.*TCPConn·Read(0x18740188, 0x187bf400, 0x400, 0x400, 0x64, ...)
crypto/tls.*block·readFromUntil+0xc5 /home/bradfitz/go/src/pkg/crypto/tls/conn.go:368
crypto/tls.*block·readFromUntil(0x18838d40, 0x186ecb80, 0x18740188, 0x5, 0x18740188, ...)
crypto/tls.*Conn·readRecord+0xf0 /home/bradfitz/go/src/pkg/crypto/tls/conn.go:448
crypto/tls.*Conn·readRecord(0x1921c140, 0x17, 0x0, 0x6000008)
crypto/tls.*Conn·Read+0xca /home/bradfitz/go/src/pkg/crypto/tls/conn.go:712
crypto/tls.*Conn·Read(0x1921c140, 0x19209000, 0x1000, 0x1000, 0x0, ...)
bufio.*Reader·fill+0x152 /home/bradfitz/go/src/pkg/bufio/bufio.go:97
bufio.*Reader·fill(0x19be6720, 0x0)
bufio.*Reader·ReadSlice+0x25a /home/bradfitz/go/src/pkg/bufio/bufio.go:267
bufio.*Reader·ReadSlice(0x19be6720, 0x186b2a0a, 0x0, 0x0, 0x0, ...)
bufio.*Reader·ReadBytes+0x86 /home/bradfitz/go/src/pkg/bufio/bufio.go:300
bufio.*Reader·ReadBytes(0x19be6720, 0x82ad40a, 0x0, 0x0, 0x0, ...)
net/textproto.*Reader·ReadLineBytes+0x3c
/home/bradfitz/go/src/pkg/net/textproto/reader.go:43
net/textproto.*Reader·ReadLineBytes(0x186b2bf0, 0x80, 0x0)
net/textproto.*Reader·ReadLine+0x29 /home/bradfitz/go/src/pkg/net/textproto/reader.go:36
net/textproto.*Reader·ReadLine(0x186b2bf0, 0x189e2200, 0x0)
http.ReadRequest+0x7f /home/bradfitz/go/src/pkg/http/request.go:431
http.ReadRequest(0x19be6720, 0x189e2200, 0x0, 0x0)
http.*conn·readRequest+0x6e /home/bradfitz/go/src/pkg/http/server.go:171
http.*conn·readRequest(0x19be66f0, 0x188897e0, 0x0, 0x0)
http.*conn·serve+0x29 /home/bradfitz/go/src/pkg/http/server.go:447
http.*conn·serve(0x19be66f0, 0x8055d3f)
runtime.goexit /home/bradfitz/go/src/pkg/runtime/proc.c:180
runtime.goexit()
----- goroutine created by -----
http.*Server·Serve+0x1cf /home/bradfitz/go/src/pkg/http/server.go:777
goroutine 81 [3]:
runtime.entersyscall+0x18 /home/bradfitz/go/src/pkg/runtime/proc.c:614
runtime.entersyscall()
syscall.Syscall+0x5 /home/bradfitz/go/src/pkg/syscall/asm_linux_386.s:21
syscall.Syscall()
syscall.Write+0x5c /home/bradfitz/go/src/pkg/syscall/zsyscall_linux_386.go:734
syscall.Write(0x5, 0x829ef10, 0x1, 0x1, 0x86aff48, ...)
os.*File·Write+0x7a /home/bradfitz/go/src/pkg/os/file.go:126
os.*File·Write(0x186ec840, 0x829ef10, 0x1, 0x1, 0x0, ...)
net.*pollServer·Wakeup+0x8a /home/bradfitz/go/src/pkg/net/fd.go:247
net.*pollServer·Wakeup(0x186ec800, 0x18d82f80)
net.*pollServer·WaitRead+0x3f /home/bradfitz/go/src/pkg/net/fd.go:251
net.*pollServer·WaitRead(0x186ec800, 0x18d82f80, 0x400)
net.*netFD·Read+0x1c1 /home/bradfitz/go/src/pkg/net/fd.go:359
net.*netFD·Read(0x18d82f80, 0x18a37000, 0x400, 0x400, 0x0, ...)
net.*TCPConn·Read+0x6f /home/bradfitz/go/src/pkg/net/tcpsock.go:94
net.*TCPConn·Read(0x187400b0, 0x18a37000, 0x400, 0x400, 0x189060f0, ...)
crypto/tls.*block·readFromUntil+0xc5 /home/bradfitz/go/src/pkg/crypto/tls/conn.go:368
crypto/tls.*block·readFromUntil(0x187a4f40, 0x186ecb80, 0x187400b0, 0x5, 0x187400b0, ...)
crypto/tls.*Conn·readRecord+0xf0 /home/bradfitz/go/src/pkg/crypto/tls/conn.go:448
crypto/tls.*Conn·readRecord(0x1921c000, 0x813a914, 0x18906300, 0x1898a960)
crypto/tls.*Conn·serverHandshake+0x1aec
/home/bradfitz/go/src/pkg/crypto/tls/handshake_server.go:239
crypto/tls.*Conn·serverHandshake(0x1921c000, 0x0, 0x0)
----- stack segment boundary -----
syscall.Syscall+0x53 /home/bradfitz/go/src/pkg/syscall/asm_linux_386.s:33
syscall.Syscall()
syscall.Write+0x5c /home/bradfitz/go/src/pkg/syscall/zsyscall_linux_386.go:734
syscall.Write(0x5, 0x829ef10, 0x1, 0x1, 0x86aff48, ...)
os.*File·Write+0x7a /home/bradfitz/go/src/pkg/os/file.go:126
os.*File·Write(0x186ec840, 0x829ef10, 0x1, 0x1, 0x0, ...)
net.*pollServer·Wakeup+0x8a /home/bradfitz/go/src/pkg/net/fd.go:247
net.*pollServer·Wakeup(0x186ec800, 0x18d82f80)
net.*pollServer·WaitRead+0x3f /home/bradfitz/go/src/pkg/net/fd.go:251
net.*pollServer·WaitRead(0x186ec800, 0x18d82f80, 0x400)
net.*netFD·Read+0x1c1 /home/bradfitz/go/src/pkg/net/fd.go:359
net.*netFD·Read(0x18d82f80, 0x18a37000, 0x400, 0x400, 0x0, ...)
net.*TCPConn·Read+0x6f /home/bradfitz/go/src/pkg/net/tcpsock.go:94
net.*TCPConn·Read(0x187400b0, 0x18a37000, 0x400, 0x400, 0x189060f0, ...)
crypto/tls.*block·readFromUntil+0xc5 /home/bradfitz/go/src/pkg/crypto/tls/conn.go:368
crypto/tls.*block·readFromUntil(0x187a4f40, 0x186ecb80, 0x187400b0, 0x5, 0x187400b0, ...)
crypto/tls.*Conn·readRecord+0xf0 /home/bradfitz/go/src/pkg/crypto/tls/conn.go:448
crypto/tls.*Conn·readRecord(0x1921c000, 0x813a914, 0x18906300, 0x1898a960)
crypto/tls.*Conn·serverHandshake+0x1aec
/home/bradfitz/go/src/pkg/crypto/tls/handshake_server.go:239
crypto/tls.*Conn·serverHandshake(0x1921c000, 0x0, 0x0)
----- stack segment boundary -----
crypto/tls.*Conn·Handshake+0xcd /home/bradfitz/go/src/pkg/crypto/tls/conn.go:752
crypto/tls.*Conn·Handshake(0x1921c000, 0x0, 0x0)
crypto/tls.*Conn·Read+0x43 /home/bradfitz/go/src/pkg/crypto/tls/conn.go:704
crypto/tls.*Conn·Read(0x1921c000, 0x18a35000, 0x1000, 0x1000, 0x0, ...)
bufio.*Reader·fill+0x152 /home/bradfitz/go/src/pkg/bufio/bufio.go:97
bufio.*Reader·fill(0x19ec13c0, 0x0)
bufio.*Reader·ReadSlice+0x25a /home/bradfitz/go/src/pkg/bufio/bufio.go:267
bufio.*Reader·ReadSlice(0x19ec13c0, 0xa, 0x0, 0x0, 0x0, ...)
bufio.*Reader·ReadBytes+0x86 /home/bradfitz/go/src/pkg/bufio/bufio.go:300
bufio.*Reader·ReadBytes(0x19ec13c0, 0x86afd0a, 0x0, 0x0, 0x0, ...)
net/textproto.*Reader·ReadLineBytes+0x3c
/home/bradfitz/go/src/pkg/net/textproto/reader.go:43
net/textproto.*Reader·ReadLineBytes(0x18740e50, 0x80, 0x0)
net/textproto.*Reader·ReadLine+0x29 /home/bradfitz/go/src/pkg/net/textproto/reader.go:36
net/textproto.*Reader·ReadLine(0x18740e50, 0x18c18300, 0x186ce4c0)
http.ReadRequest+0x7f /home/bradfitz/go/src/pkg/http/request.go:431
http.ReadRequest(0x19ec13c0, 0x18c18300, 0x0, 0x0)
http.*conn·readRequest+0x6e /home/bradfitz/go/src/pkg/http/server.go:171
http.*conn·readRequest(0x19ec1390, 0x0, 0x0, 0x0)
http.*conn·serve+0x29 /home/bradfitz/go/src/pkg/http/server.go:447
http.*conn·serve(0x19ec1390, 0x187620d0)
runtime.goexit /home/bradfitz/go/src/pkg/runtime/proc.c:180
runtime.goexit()
----- goroutine created by -----
http.*Server·Serve+0x1cf /home/bradfitz/go/src/pkg/http/server.go:777
goroutine 2 [1]:
runtime.gosched+0x6d /home/bradfitz/go/src/pkg/runtime/proc.c:594
runtime.gosched()
runtime.exitsyscall+0x6e /home/bradfitz/go/src/pkg/runtime/proc.c:659
runtime.exitsyscall()
syscall.Syscall6+0x57 /home/bradfitz/go/src/pkg/syscall/asm_linux_386.s:60
syscall.Syscall6()
syscall.EpollWait+0x74 /home/bradfitz/go/src/pkg/syscall/zsyscall_linux_386.go:200
syscall.EpollWait(0x6, 0x1879ca20, 0x1, 0x1, 0xffffffff, ...)
net.*pollster·WaitFD+0x134 /home/bradfitz/go/src/pkg/net/fd_linux.go:116
net.*pollster·WaitFD(0x186b25b0, 0x0, 0x0, 0x18d82f80, 0x72, ...)
net.*pollServer·Run+0xc8 /home/bradfitz/go/src/pkg/net/fd.go:207
net.*pollServer·Run(0x186ec800, 0x0)
runtime.goexit /home/bradfitz/go/src/pkg/runtime/proc.c:180
runtime.goexit()
----- goroutine created by -----
net.newPollServer+0x346 /home/bradfitz/go/src/pkg/net/newpollserver.go:39
goroutine 1 [4]:
runtime.gosched+0x6d /home/bradfitz/go/src/pkg/runtime/proc.c:594
runtime.gosched()
runtime.chanrecv+0x147 /home/bradfitz/go/src/pkg/runtime/chan.c:359
runtime.chanrecv(0x186ccd80, 0xb7f8386c, 0x0, 0x0, 0x82a081c, ...)
runtime.chanrecv1+0x3f /home/bradfitz/go/src/pkg/runtime/chan.c:421
runtime.chanrecv1(0x186ccd80, 0x186e7300)
net.*pollServer·WaitRead+0x50 /home/bradfitz/go/src/pkg/net/fd.go:252
net.*pollServer·WaitRead(0x186ec800, 0x186e7300, 0x0)
net.*netFD·accept+0x2fe /home/bradfitz/go/src/pkg/net/fd.go:584
net.*netFD·accept(0x186e7300, 0x80d3b33, 0x0, 0x0, 0x0, ...)
net.*TCPListener·AcceptTCP+0x56 /home/bradfitz/go/src/pkg/net/tcpsock.go:261
net.*TCPListener·AcceptTCP(0x186b2900, 0x1, 0x0, 0x0)
net.*TCPListener·Accept+0x39 /home/bradfitz/go/src/pkg/net/tcpsock.go:271
net.*TCPListener·Accept(0x186b2900, 0x0, 0x0, 0x0, 0x0, ...)
crypto/tls.*Listener·Accept+0x49 /home/bradfitz/go/src/pkg/crypto/tls/tls.go:44
crypto/tls.*Listener·Accept(0x187620d0, 0x0, 0x0, 0x0, 0x0, ...)
http.*Server·Serve+0xb5 /home/bradfitz/go/src/pkg/http/server.go:763
http.*Server·Serve(0x186ec980, 0x186ec900, 0x187620d0, 0x0, 0x0, ...)
http.Serve+0x57 /home/bradfitz/go/src/pkg/http/server.go:727
http.Serve(0x186ec900, 0x187620d0, 0x186ec920, 0x186ebf80, 0x186ebf80, ...)
camli/webserver.*Server·Serve+0x41f
/home/bradfitz/hack/camlistore/server/go/webserver/webserver.go:117
camli/webserver.*Server·Serve(0x186ebf80, 0x8192e1c)
main.main+0x412 /home/bradfitz/hack/camlistore/server/go/blobserver/camlistored.go:279
main.main()
runtime.mainstart+0xf /home/bradfitz/go/src/pkg/runtime/386/asm.s:93
runtime.mainstart()
runtime.goexit /home/bradfitz/go/src/pkg/runtime/proc.c:180
runtime.goexit()
----- goroutine created by -----
_rt0_386+0xc1 /home/bradfitz/go/src/pkg/runtime/386/asm.s:80</pre> | <pre class="notranslate">[as mentioned by manveru in #golang-nuts]
Run the following piece of code through gofmt.
The text inside the comment is indented.
Run that text through gofmt again.
The text inside the comment is indented one more time.
At the least, gofmt should be idempotent.
I think it should also preserve indentation inside comments,
but that's more arguable.
package main
func main() {
/*
something like this.
*/
}</pre> | 0 |
<h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong><br>
When I use webpack to bundle code that includes a Web Worker which contains a dynamic import, the resulting code erroneously duplicates the file path of the chunk that it's trying to load. Instead of requesting something like <code class="notranslate">foo/bar/abc.[a1b2c3d4].chunk.js</code>, it requests <code class="notranslate">foo/bar/foo/bar/abc.[a1b2c3d4].chunk.js</code>.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<p dir="auto">I encountered this in the context of <code class="notranslate">create-react-app</code>, so that's how I reproduce it. I don't know enough about webpack config to be able to distill it down to the absolute minimum. The issue may be with <code class="notranslate">create-react-app</code> or <code class="notranslate">webpack</code>.</p>
<p dir="auto">My steps to reproduce are described in this bug report:</p>
<p dir="auto"><a href="https://github.com/facebook/create-react-app/issues/12503" data-hovercard-type="issue" data-hovercard-url="/facebook/create-react-app/issues/12503/hovercard">Duplicate path segment error in dynamic imports in Web Worker (react-scripts 5, webpack 5)</a></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">The path to the dynamically imported chunk should not have the duplicated path in front of the file name.</p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: 5.74.0<br>
Node.js version: 16.15.0<br>
Operating System: Windows 10<br>
Additional tools:</p> | <h1 dir="auto">Bug report</h1>
<p dir="auto">I have import some of my modules dynamically based on button click, i have used like below"</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { Button } from '@syncfusion/ej2-buttons';
// Initialize Button component.
let button: Button = new Button({ content: 'Button' });
// Render initialized Button.
button.appendTo('#element');
document.getElementById('element').addEventListener("click", function(){
check();
});
async function check() {
import("@syncfusion/ej2-grids").then((Grid) => {
debugger
console.log(Grid);
});
}"><pre class="notranslate"><code class="notranslate">import { Button } from '@syncfusion/ej2-buttons';
// Initialize Button component.
let button: Button = new Button({ content: 'Button' });
// Render initialized Button.
button.appendTo('#element');
document.getElementById('element').addEventListener("click", function(){
check();
});
async function check() {
import("@syncfusion/ej2-grids").then((Grid) => {
debugger
console.log(Grid);
});
}
</code></pre></div>
<p dir="auto">my webpack config file:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const path = require("path");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
module.exports = {
mode: "development",
entry: {
"src/app/bundle": "./src/app/index.ts"
},
output: {
publicPath: "/js/",
filename: "src/app/bundle.js"
},
devtool: "none",
module: {
rules: [
{
loader: "ts-loader",
exclude: /node_modules/
}
]
},
resolve: {
extensions: [".ts", ".js"]
}
};"><pre class="notranslate"><code class="notranslate">const path = require("path");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
module.exports = {
mode: "development",
entry: {
"src/app/bundle": "./src/app/index.ts"
},
output: {
publicPath: "/js/",
filename: "src/app/bundle.js"
},
devtool: "none",
module: {
rules: [
{
loader: "ts-loader",
exclude: /node_modules/
}
]
},
resolve: {
extensions: [".ts", ".js"]
}
};
</code></pre></div>
<p dir="auto">when i compile and ru my application it throws below error</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/36756050/73812752-edcda300-4803-11ea-9feb-8b3dc07998c0.png"><img src="https://user-images.githubusercontent.com/36756050/73812752-edcda300-4803-11ea-9feb-8b3dc07998c0.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>What is the current behavior?</strong><br>
Throws error</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<ul dir="auto">
<li>clone sample - <a href="https://github.com/kumaresan-subramani/dynamic-import/blob/master/webpack.config.js">https://github.com/kumaresan-subramani/dynamic-import/blob/master/webpack.config.js</a></li>
<li>run <code class="notranslate">npm i</code></li>
<li>gulp compile</li>
<li>gulp start</li>
</ul>
<p dir="auto">Then click button in browser, you will see reported error in my console.</p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">Dynamic module should load properly</p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version:</p>
<blockquote>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""typescript": "3.7.5",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.29.6",
"webpack-cli": "*",
"webpack-stream": "^5.2.1""><pre class="notranslate"><code class="notranslate">"typescript": "3.7.5",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.29.6",
"webpack-cli": "*",
"webpack-stream": "^5.2.1"
</code></pre></div>
</blockquote>
<p dir="auto">Node.js version: 10.15.1<br>
Operating System: windows 10<br>
Additional tools:</p> | 0 |
<table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>maybe</td>
</tr>
<tr>
<td>Feature request?</td>
<td>yes/no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>3.3.8</td>
</tr>
</tbody>
</table>
<p dir="auto">I have an issue with validator component. I have a base class and a child. Base class defines a property and a set of constaints. Child must redefine one of the constraints - it must modify its options.I am using StaticMethodLoader for both classes because I am in control and I can work with constraints. The problem is that I get two violations instead of one when validating child object. Constraint is validated twice - with child options first and then with base class options. I tried to investigate why but I still don't know why its happening. And I am a bit lost in all the loaders and caching.</p>
<p dir="auto">However, the result is quite unexpected for me. I thought that validator honors inheritance.</p>
<p dir="auto">Thanks for any help.</p> | <p dir="auto">A simple example—</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\Validator\Validation;
use Doctrine\Common\Annotations\AnnotationRegistry;
AnnotationRegistry::registerAutoloadNamespace('Symfony\Component\Validator\Constraints', __DIR__);
class Parent
{
/**
* @Assert\EqualTo(0)
*/
public $example = 0;
}
class Child extends Parent
{
/**
* @Assert\EqualTo(1)
*/
public $example = 1; // overrides parent property of same name
}
echo Validation::createValidatorBuilder()
->enableAnnotationMapping()
->getValidator()
->validate(new Child());"><pre class="notranslate"><span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Component</span>\<span class="pl-v">Validator</span>\<span class="pl-v">Constraints</span> <span class="pl-k">as</span> <span class="pl-v">Assert</span>;
<span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Component</span>\<span class="pl-v">Validator</span>\<span class="pl-v">Validation</span>;
<span class="pl-k">use</span> <span class="pl-v">Doctrine</span>\<span class="pl-v">Common</span>\<span class="pl-v">Annotations</span>\<span class="pl-v">AnnotationRegistry</span>;
<span class="pl-v">AnnotationRegistry</span>::<span class="pl-en">registerAutoloadNamespace</span>(<span class="pl-s">'Symfony\Component\Validator\Constraints'</span>, __DIR__);
<span class="pl-k">class</span> <span class="pl-v">Parent</span>
{
<span class="pl-c">/**</span>
<span class="pl-c"> * @Assert\EqualTo(0)</span>
<span class="pl-c"> */</span>
<span class="pl-k">public</span> <span class="pl-c1"><span class="pl-c1">$</span>example</span> = <span class="pl-c1">0</span>;
}
<span class="pl-k">class</span> <span class="pl-v">Child</span> <span class="pl-k">extends</span> <span class="pl-v">Parent</span>
{
<span class="pl-c">/**</span>
<span class="pl-c"> * @Assert\EqualTo(1)</span>
<span class="pl-c"> */</span>
<span class="pl-k">public</span> <span class="pl-c1"><span class="pl-c1">$</span>example</span> = <span class="pl-c1">1</span>; <span class="pl-c">// overrides parent property of same name</span>
}
<span class="pl-k">echo</span> <span class="pl-v">Validation</span>::<span class="pl-en">createValidatorBuilder</span>()
-><span class="pl-en">enableAnnotationMapping</span>()
-><span class="pl-en">getValidator</span>()
-><span class="pl-en">validate</span>(<span class="pl-k">new</span> <span class="pl-v">Child</span>());</pre></div>
<p dir="auto">The validation fails because the constraint that was defined on <code class="notranslate">Parent::$example</code> has been merged with that for <code class="notranslate">Child::$example</code> (and, in this case, they are mutually exclusive).</p>
<p dir="auto">This cannot be right—the child property has completely replaced that of the parent and all of the latter's metadata (including validation constraints) should be discarded.</p>
<p dir="auto">For the time being, I have added the following two lines after <a href="https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Validator/Mapping/Loader/AnnotationLoader.php#L61"><code class="notranslate">AnnotationLoader.php:61</code></a>:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" unset($metadata->members[$property->name]);
unset($metadata->properties[$property->name]);"><pre class="notranslate"> unset(<span class="pl-s1"><span class="pl-c1">$</span>metadata</span>-><span class="pl-c1">members</span>[<span class="pl-s1"><span class="pl-c1">$</span>property</span>-><span class="pl-c1">name</span>]);
unset(<span class="pl-s1"><span class="pl-c1">$</span>metadata</span>-><span class="pl-c1">properties</span>[<span class="pl-s1"><span class="pl-c1">$</span>property</span>-><span class="pl-c1">name</span>]);</pre></div>
<p dir="auto">However, I acknowledge that this is horrible—at very least, <code class="notranslate">ClassMetadata</code> should provide a method for resetting a property, but even if one could use that I'm not familiar enough with the code to be certain that this approach doesn't break something else. Grateful for your thoughts!</p> | 1 |
<h3 dir="auto">Bug report</h3>
<p dir="auto">The <code class="notranslate">direction="column"</code> setting appears to break the <code class="notranslate">label_mode="L"</code> option for <code class="notranslate">AxesGrid</code>.</p>
<p dir="auto"><strong>Code for reproduction</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
import mpl_toolkits
fig = plt.figure()
grid = mpl_toolkits.axes_grid1.AxesGrid(fig, 111, nrows_ncols=(2,3),
axes_pad=.3, direction="column", label_mode="L")
plt.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-k">import</span> <span class="pl-s1">mpl_toolkits</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">grid</span> <span class="pl-c1">=</span> <span class="pl-s1">mpl_toolkits</span>.<span class="pl-s1">axes_grid1</span>.<span class="pl-v">AxesGrid</span>(<span class="pl-s1">fig</span>, <span class="pl-c1">111</span>, <span class="pl-s1">nrows_ncols</span><span class="pl-c1">=</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>),
<span class="pl-s1">axes_pad</span><span class="pl-c1">=</span><span class="pl-c1">.3</span>, <span class="pl-s1">direction</span><span class="pl-c1">=</span><span class="pl-s">"column"</span>, <span class="pl-s1">label_mode</span><span class="pl-c1">=</span><span class="pl-s">"L"</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3267619/125389727-053f9100-e3e5-11eb-865f-dd7140093dcc.png"><img src="https://user-images.githubusercontent.com/3267619/125389727-053f9100-e3e5-11eb-865f-dd7140093dcc.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Expected outcome</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3267619/125389873-3cae3d80-e3e5-11eb-9af4-6522189ed7db.png"><img src="https://user-images.githubusercontent.com/3267619/125389873-3cae3d80-e3e5-11eb-9af4-6522189ed7db.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: MacOS 10.15.7</li>
<li>Matplotlib version (<code class="notranslate">import matplotlib; print(matplotlib.__version__)</code>): 3.3.3</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): module://ipykernel.pylab.backend_inline</li>
<li>Python version: 3.8.6</li>
<li>Jupyter version (if applicable): 6.1.5</li>
<li>Other libraries:</li>
</ul>
<p dir="auto">Installed with conda</p> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">Axes of <code class="notranslate">mpl_toolkits.axes_grid1.axes_grid.Grid</code> (and <code class="notranslate">ImageGrid</code>) are not positioned correctly when <code class="notranslate">direction='column'</code>. This affects, e.g., the tick labels (see figures).</p>
<p dir="auto"><strong>Code for reproduction</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
import mpl_toolkits.axes_grid1 as axg1
fig = plt.figure()
g = axg1.Grid(fig, 111, (2, 3), direction='column', axes_pad=0.5)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-k">import</span> <span class="pl-s1">mpl_toolkits</span>.<span class="pl-s1">axes_grid1</span> <span class="pl-k">as</span> <span class="pl-s1">axg1</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">g</span> <span class="pl-c1">=</span> <span class="pl-s1">axg1</span>.<span class="pl-v">Grid</span>(<span class="pl-s1">fig</span>, <span class="pl-c1">111</span>, (<span class="pl-c1">2</span>, <span class="pl-c1">3</span>), <span class="pl-s1">direction</span><span class="pl-c1">=</span><span class="pl-s">'column'</span>, <span class="pl-s1">axes_pad</span><span class="pl-c1">=</span><span class="pl-c1">0.5</span>)</pre></div>
<p dir="auto"><strong>Actual outcome</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33603991/120899379-b9543c00-c62f-11eb-89f8-0142d2a375dc.png"><img src="https://user-images.githubusercontent.com/33603991/120899379-b9543c00-c62f-11eb-89f8-0142d2a375dc.png" alt="grid_bug" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Expected outcome</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33603991/120899398-d557dd80-c62f-11eb-8f68-b24e39296be9.png"><img src="https://user-images.githubusercontent.com/33603991/120899398-d557dd80-c62f-11eb-8f68-b24e39296be9.png" alt="grid_bug_fix" style="max-width: 100%;"></a></p>
<p dir="auto">Obtained appending</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
g.axes_all = np.reshape(g.axes_all, g.get_geometry()).ravel(order='F')
g._init_locators()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-s1">g</span>.<span class="pl-s1">axes_all</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">reshape</span>(<span class="pl-s1">g</span>.<span class="pl-s1">axes_all</span>, <span class="pl-s1">g</span>.<span class="pl-en">get_geometry</span>()).<span class="pl-en">ravel</span>(<span class="pl-s1">order</span><span class="pl-c1">=</span><span class="pl-s">'F'</span>)
<span class="pl-s1">g</span>.<span class="pl-en">_init_locators</span>()</pre></div>
<p dir="auto">I believe the culprit is<br>
</p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/matplotlib/matplotlib/blob/89ce4fbdd10694520bd0727f5818e04b75ca96e7/lib/mpl_toolkits/axes_grid1/axes_grid.py#L169">matplotlib/lib/mpl_toolkits/axes_grid1/axes_grid.py</a>
</p>
<p class="mb-0 color-fg-muted">
Line 169
in
<a data-pjax="true" class="commit-tease-sha" href="/matplotlib/matplotlib/commit/89ce4fbdd10694520bd0727f5818e04b75ca96e7">89ce4fb</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L169" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="169"></td>
<td id="LC169" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">self</span>.<span class="pl-s1">axes_all</span> <span class="pl-c1">=</span> <span class="pl-s1">axes_array</span>.<span class="pl-en">ravel</span>().<span class="pl-en">tolist</span>() </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">When <code class="notranslate">direction='column'</code>, <code class="notranslate">axes_all</code> are not sorted by creation order; as I think is expected by <code class="notranslate">_init_locators</code> and as likely indicated by the sentence "This also affects the order in which axes are accessed using indexing" in the description of <code class="notranslate">direction</code> in the <code class="notranslate">ImageGrid</code> (but not <code class="notranslate">Grid</code>) documentation.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: Debian 10 (on WSL2)</li>
<li>Matplotlib version: 3.4.2 (conda-forge)</li>
<li>Matplotlib backend: any</li>
<li>Python version: 3.9.2 (conda-forge)</li>
</ul> | 1 |
<p dir="auto">Hi<br>
I am currently writing a pretty simple implementation of a binary tree and appear to have stumbled upon an internal compiler error that only occurs when compiling with the debugInfo (-g) flag the compiler insisted i report it. :)<br>
p.s. I am running under windows 7 on a 32 bit machine</p>
<p dir="auto">heres the compiler output</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="task 'rustc' failed at 'Box<Any>', C:\bot\slave\nightly-win\build\src\libsyntax\diagnostic.rs:162
2.rs:19 let tree = Branch(20,box Branch(5,box Leaf(2),box Leaf(9)),box Branch(40, box Leaf(35),box Null));
^~~~
hello2.rs:46:1: 53:2 warning: code is never used: `areListsEqual`, #[warn(dead_code)] on by default
hello2.rs:46 fn areListsEqual<T: PartialEq>(xs: &List<T>, ys: &List<T>) -> bool{
hello2.rs:47 match (xs,ys) {
hello2.rs:48 (&Nil,&Nil) => true,
hello2.rs:49 (&Cons(ref x,box ref nextXs),&Cons(ref y,box ref nextYs)) if x == y =>
hello2.rs:50 areListsEqual(nextXs,nextYs),
hello2.rs:51 _ => false
...
hello2.rs:46:1: 53:2 warning: function `areListsEqual` should have a snake case name such as `are_lists_equal`, #[warn(non_snake_case_functions)] on by default
hello2.rs:46 fn areListsEqual<T: PartialEq>(xs: &List<T>, ys: &List<T>) -> bool{
hello2.rs:47 match (xs,ys) {
hello2.rs:48 (&Nil,&Nil) => true,
hello2.rs:49 (&Cons(ref x,box ref nextXs),&Cons(ref y,box ref nextYs)) if x == y =>
hello2.rs:50 areListsEqual(nextXs,nextYs),
hello2.rs:51 _ => false
...
hello2.rs:55:1: 57:2 warning: code is never used: `prependList`, #[warn(dead_code)] on by default
hello2.rs:55 fn prependList<T> (xs: List<T>, v: T) -> List<T>{
hello2.rs:56 Cons(v, box xs)
hello2.rs:57 }
hello2.rs:55:1: 57:2 warning: function `prependList` should have a snake case name such as `prepend_list`, #[warn(non_snake_case_functions)] on by default
hello2.rs:55 fn prependList<T> (xs: List<T>, v: T) -> List<T>{
hello2.rs:56 Cons(v, box xs)
hello2.rs:57 }
hello2.rs:59:1: 61:2 warning: code is never used: `scaleVector`, #[warn(dead_code)] on by default
hello2.rs:59 fn scaleVector(scale: int,xs: Vec<int>) -> Vec<int> {
hello2.rs:60 xs.move_iter().map(|i| i + scale).collect()
hello2.rs:61 }
hello2.rs:59:1: 61:2 warning: function `scaleVector` should have a snake case name such as `scale_vector`, #[warn(non_snake_case_functions)] on by default
hello2.rs:59 fn scaleVector(scale: int,xs: Vec<int>) -> Vec<int> {
hello2.rs:60 xs.move_iter().map(|i| i + scale).collect()
hello2.rs:61 }
hello2.rs:63:1: 85:2 warning: function `createBinarySearchTree` should have a snake case name such as `create_binary_search_tree`, #[warn(non_snake_case_functions)] on by default
hello2.rs:63 fn createBinarySearchTree(vector : Vec<int>) -> BinaryTree<int>{
hello2.rs:64
hello2.rs:65 fn placeNode(val: int, btree: &mut BinaryTree<int>) -> BinaryTree<int> {
hello2.rs:66 match btree {
hello2.rs:67 &Leaf(tval) if val > tval => Branch(tval,box Null,box Leaf(val)),
hello2.rs:68 &Leaf(tval) if val < tval => Branch(tval,box Leaf(val),box Null),
...
hello2.rs:69:21: 69:29 warning: unused variable: `left`, #[warn(unused_variable)] on by default
hello2.rs:69 &Branch(tval,box ref left,box ref mut right) if val > tval => placeNode(val,right) ,
^~~~~~~~
hello2.rs:70:38: 70:47 warning: unused variable: `right`, #[warn(unused_variable)] on by default
hello2.rs:70 &Branch(tval,box ref mut left,box ref right) if val < tval => placeNode(val,left),
^~~~~~~~~
hello2.rs:73:21: 73:29 warning: unused variable: `left`, #[warn(unused_variable)] on by default
hello2.rs:73 &Branch(lval,box ref left,box ref right) if val == lval => fail!("already has a node with {}",lval),
^~~~~~~~
hello2.rs:73:34: 73:43 warning: unused variable: `right`, #[warn(unused_variable)] on by default
hello2.rs:73 &Branch(lval,box ref left,box ref right) if val == lval => fail!("already has a node with {}",lval),
^~~~~~~~~
hello2.rs:65:2: 76:3 warning: function `placeNode` should have a snake case name such as `place_node`, #[warn(non_snake_case_functions)] on by default
hello2.rs:65 fn placeNode(val: int, btree: &mut BinaryTree<int>) -> BinaryTree<int> {
hello2.rs:66 match btree {
hello2.rs:67 &Leaf(tval) if val > tval => Branch(tval,box Null,box Leaf(val)),
hello2.rs:68 &Leaf(tval) if val < tval => Branch(tval,box Leaf(val),box Null),
hello2.rs:69 &Branch(tval,box ref left,box ref mut right) if val > tval => placeNode(val,right) ,
hello2.rs:70 &Branch(tval,box ref mut left,box ref right) if val < tval => placeNode(val,left),
...
hello2.rs:87:1: 101:2 warning: function `printTree` should have a snake case name such as `print_tree`, #[warn(non_snake_case_functions)] on by default
hello2.rs:87 fn printTree(tree : &BinaryTree<int>){
hello2.rs:88 fn innerPrint(foreword : &str,tree : &BinaryTree<int>, level : int) {
hello2.rs:89 let lvDesc = format!("lv {}",level);
hello2.rs:90 match tree{
hello2.rs:91 &Leaf(val) => println!("{}-{} leaf: {}",lvDesc,foreword,val),
hello2.rs:92 &Branch(val,box ref left, box ref right) => {
...
hello2.rs:88:2: 99:3 warning: function `innerPrint` should have a snake case name such as `inner_print`, #[warn(non_snake_case_functions)] on by default
hello2.rs:88 fn innerPrint(foreword : &str,tree : &BinaryTree<int>, level : int) {
hello2.rs:89 let lvDesc = format!("lv {}",level);
hello2.rs:90 match tree{
hello2.rs:91 &Leaf(val) => println!("{}-{} leaf: {}",lvDesc,foreword,val),
hello2.rs:92 &Branch(val,box ref left, box ref right) => {
hello2.rs:93 println!("{}-{} node: {}",lvDesc,foreword,val);
...
hello2.rs:103:1: 107:2 warning: code is never used: `displayVector`, #[warn(dead_code)] on by default
hello2.rs:103 fn displayVector(vector: Vec<int>){
hello2.rs:104 for v in vector.iter() {
hello2.rs:105 println!("{}",v)
hello2.rs:106 }
hello2.rs:107 }
hello2.rs:103:1: 107:2 warning: function `displayVector` should have a snake case name such as `display_vector`, #[warn(non_snake_case_functions)] on by default
hello2.rs:103 fn displayVector(vector: Vec<int>){
hello2.rs:104 for v in vector.iter() {
hello2.rs:105 println!("{}",v)
hello2.rs:106 }
hello2.rs:107 }
hello2.rs:109:1: 117:2 warning: code is never used: `displayList`, #[warn(dead_code)] on by default
hello2.rs:109 fn displayList<int> (xs: &List<int>){
hello2.rs:110 match xs{
hello2.rs:111 &Cons(v,box ref rest) => {
hello2.rs:112 println!("{}",v);
hello2.rs:113 displayList::<int>(rest)
hello2.rs:114 },
...
hello2.rs:109:1: 117:2 warning: function `displayList` should have a snake case name such as `display_list`, #[warn(non_snake_case_functions)] on by default
hello2.rs:109 fn displayList<int> (xs: &List<int>){
hello2.rs:110 match xs{
hello2.rs:111 &Cons(v,box ref rest) => {
hello2.rs:112 println!("{}",v);
hello2.rs:113 displayList::<int>(rest)
hello2.rs:114 },
...
error: internal compiler error: Type metadata for unique id '{&{&[]{struct d517309cb671f9ac/2157e}}}' is already in the TypeMap!
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace"><pre class="notranslate"><code class="notranslate">task 'rustc' failed at 'Box<Any>', C:\bot\slave\nightly-win\build\src\libsyntax\diagnostic.rs:162
2.rs:19 let tree = Branch(20,box Branch(5,box Leaf(2),box Leaf(9)),box Branch(40, box Leaf(35),box Null));
^~~~
hello2.rs:46:1: 53:2 warning: code is never used: `areListsEqual`, #[warn(dead_code)] on by default
hello2.rs:46 fn areListsEqual<T: PartialEq>(xs: &List<T>, ys: &List<T>) -> bool{
hello2.rs:47 match (xs,ys) {
hello2.rs:48 (&Nil,&Nil) => true,
hello2.rs:49 (&Cons(ref x,box ref nextXs),&Cons(ref y,box ref nextYs)) if x == y =>
hello2.rs:50 areListsEqual(nextXs,nextYs),
hello2.rs:51 _ => false
...
hello2.rs:46:1: 53:2 warning: function `areListsEqual` should have a snake case name such as `are_lists_equal`, #[warn(non_snake_case_functions)] on by default
hello2.rs:46 fn areListsEqual<T: PartialEq>(xs: &List<T>, ys: &List<T>) -> bool{
hello2.rs:47 match (xs,ys) {
hello2.rs:48 (&Nil,&Nil) => true,
hello2.rs:49 (&Cons(ref x,box ref nextXs),&Cons(ref y,box ref nextYs)) if x == y =>
hello2.rs:50 areListsEqual(nextXs,nextYs),
hello2.rs:51 _ => false
...
hello2.rs:55:1: 57:2 warning: code is never used: `prependList`, #[warn(dead_code)] on by default
hello2.rs:55 fn prependList<T> (xs: List<T>, v: T) -> List<T>{
hello2.rs:56 Cons(v, box xs)
hello2.rs:57 }
hello2.rs:55:1: 57:2 warning: function `prependList` should have a snake case name such as `prepend_list`, #[warn(non_snake_case_functions)] on by default
hello2.rs:55 fn prependList<T> (xs: List<T>, v: T) -> List<T>{
hello2.rs:56 Cons(v, box xs)
hello2.rs:57 }
hello2.rs:59:1: 61:2 warning: code is never used: `scaleVector`, #[warn(dead_code)] on by default
hello2.rs:59 fn scaleVector(scale: int,xs: Vec<int>) -> Vec<int> {
hello2.rs:60 xs.move_iter().map(|i| i + scale).collect()
hello2.rs:61 }
hello2.rs:59:1: 61:2 warning: function `scaleVector` should have a snake case name such as `scale_vector`, #[warn(non_snake_case_functions)] on by default
hello2.rs:59 fn scaleVector(scale: int,xs: Vec<int>) -> Vec<int> {
hello2.rs:60 xs.move_iter().map(|i| i + scale).collect()
hello2.rs:61 }
hello2.rs:63:1: 85:2 warning: function `createBinarySearchTree` should have a snake case name such as `create_binary_search_tree`, #[warn(non_snake_case_functions)] on by default
hello2.rs:63 fn createBinarySearchTree(vector : Vec<int>) -> BinaryTree<int>{
hello2.rs:64
hello2.rs:65 fn placeNode(val: int, btree: &mut BinaryTree<int>) -> BinaryTree<int> {
hello2.rs:66 match btree {
hello2.rs:67 &Leaf(tval) if val > tval => Branch(tval,box Null,box Leaf(val)),
hello2.rs:68 &Leaf(tval) if val < tval => Branch(tval,box Leaf(val),box Null),
...
hello2.rs:69:21: 69:29 warning: unused variable: `left`, #[warn(unused_variable)] on by default
hello2.rs:69 &Branch(tval,box ref left,box ref mut right) if val > tval => placeNode(val,right) ,
^~~~~~~~
hello2.rs:70:38: 70:47 warning: unused variable: `right`, #[warn(unused_variable)] on by default
hello2.rs:70 &Branch(tval,box ref mut left,box ref right) if val < tval => placeNode(val,left),
^~~~~~~~~
hello2.rs:73:21: 73:29 warning: unused variable: `left`, #[warn(unused_variable)] on by default
hello2.rs:73 &Branch(lval,box ref left,box ref right) if val == lval => fail!("already has a node with {}",lval),
^~~~~~~~
hello2.rs:73:34: 73:43 warning: unused variable: `right`, #[warn(unused_variable)] on by default
hello2.rs:73 &Branch(lval,box ref left,box ref right) if val == lval => fail!("already has a node with {}",lval),
^~~~~~~~~
hello2.rs:65:2: 76:3 warning: function `placeNode` should have a snake case name such as `place_node`, #[warn(non_snake_case_functions)] on by default
hello2.rs:65 fn placeNode(val: int, btree: &mut BinaryTree<int>) -> BinaryTree<int> {
hello2.rs:66 match btree {
hello2.rs:67 &Leaf(tval) if val > tval => Branch(tval,box Null,box Leaf(val)),
hello2.rs:68 &Leaf(tval) if val < tval => Branch(tval,box Leaf(val),box Null),
hello2.rs:69 &Branch(tval,box ref left,box ref mut right) if val > tval => placeNode(val,right) ,
hello2.rs:70 &Branch(tval,box ref mut left,box ref right) if val < tval => placeNode(val,left),
...
hello2.rs:87:1: 101:2 warning: function `printTree` should have a snake case name such as `print_tree`, #[warn(non_snake_case_functions)] on by default
hello2.rs:87 fn printTree(tree : &BinaryTree<int>){
hello2.rs:88 fn innerPrint(foreword : &str,tree : &BinaryTree<int>, level : int) {
hello2.rs:89 let lvDesc = format!("lv {}",level);
hello2.rs:90 match tree{
hello2.rs:91 &Leaf(val) => println!("{}-{} leaf: {}",lvDesc,foreword,val),
hello2.rs:92 &Branch(val,box ref left, box ref right) => {
...
hello2.rs:88:2: 99:3 warning: function `innerPrint` should have a snake case name such as `inner_print`, #[warn(non_snake_case_functions)] on by default
hello2.rs:88 fn innerPrint(foreword : &str,tree : &BinaryTree<int>, level : int) {
hello2.rs:89 let lvDesc = format!("lv {}",level);
hello2.rs:90 match tree{
hello2.rs:91 &Leaf(val) => println!("{}-{} leaf: {}",lvDesc,foreword,val),
hello2.rs:92 &Branch(val,box ref left, box ref right) => {
hello2.rs:93 println!("{}-{} node: {}",lvDesc,foreword,val);
...
hello2.rs:103:1: 107:2 warning: code is never used: `displayVector`, #[warn(dead_code)] on by default
hello2.rs:103 fn displayVector(vector: Vec<int>){
hello2.rs:104 for v in vector.iter() {
hello2.rs:105 println!("{}",v)
hello2.rs:106 }
hello2.rs:107 }
hello2.rs:103:1: 107:2 warning: function `displayVector` should have a snake case name such as `display_vector`, #[warn(non_snake_case_functions)] on by default
hello2.rs:103 fn displayVector(vector: Vec<int>){
hello2.rs:104 for v in vector.iter() {
hello2.rs:105 println!("{}",v)
hello2.rs:106 }
hello2.rs:107 }
hello2.rs:109:1: 117:2 warning: code is never used: `displayList`, #[warn(dead_code)] on by default
hello2.rs:109 fn displayList<int> (xs: &List<int>){
hello2.rs:110 match xs{
hello2.rs:111 &Cons(v,box ref rest) => {
hello2.rs:112 println!("{}",v);
hello2.rs:113 displayList::<int>(rest)
hello2.rs:114 },
...
hello2.rs:109:1: 117:2 warning: function `displayList` should have a snake case name such as `display_list`, #[warn(non_snake_case_functions)] on by default
hello2.rs:109 fn displayList<int> (xs: &List<int>){
hello2.rs:110 match xs{
hello2.rs:111 &Cons(v,box ref rest) => {
hello2.rs:112 println!("{}",v);
hello2.rs:113 displayList::<int>(rest)
hello2.rs:114 },
...
error: internal compiler error: Type metadata for unique id '{&{&[]{struct d517309cb671f9ac/2157e}}}' is already in the TypeMap!
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
</code></pre></div> | <p dir="auto">Compiling libcore with -g leads to the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: internal compiler error: Type metadata for ty::t '&[core::fmt::rt::Piece<>]' is already in the TypeMap!"><pre class="notranslate"><code class="notranslate">error: internal compiler error: Type metadata for ty::t '&[core::fmt::rt::Piece<>]' is already in the TypeMap!
</code></pre></div>
<p dir="auto">This is due to the vec slice in question occurring multiple times along a type reference chain and the code path for vec slices doesn't take that possibility into account. This is also a potential problem for other kinds of types, e.g. fixed length vector types or function types. For regular pointer types this is already handled correctly.</p> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="plt.plot([1,2,3,8,6,4,3,1],'o-',label='राष्ट्र')
plt.xlabel('निवृत्ति प्रतिशत')
plt.ylabel('चक्रीय ब्याज')
plt.legend()"><pre class="notranslate"><code class="notranslate">plt.plot([1,2,3,8,6,4,3,1],'o-',label='राष्ट्र')
plt.xlabel('निवृत्ति प्रतिशत')
plt.ylabel('चक्रीय ब्याज')
plt.legend()
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/10902216/68080742-c8ca2e00-fdd7-11e9-91d3-c1006da1df62.png"><img src="https://user-images.githubusercontent.com/10902216/68080742-c8ca2e00-fdd7-11e9-91d3-c1006da1df62.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Devanagari font rendering is incorrect. For example: निवृत्ती प्रतिशत should be displayed as<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/10902216/68080730-9caead00-fdd7-11e9-95ca-31a280667128.png"><img src="https://user-images.githubusercontent.com/10902216/68080730-9caead00-fdd7-11e9-95ca-31a280667128.png" alt="image" style="max-width: 100%;"></a> but is instead displayed as: <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/10902216/68080736-ba7c1200-fdd7-11e9-86e9-dd13a234e155.png"><img src="https://user-images.githubusercontent.com/10902216/68080736-ba7c1200-fdd7-11e9-86e9-dd13a234e155.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">In matplotlibrc I have specified</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="font.family : sans-serif
font.sans-serif : Lohit Devanagari"><pre class="notranslate"><code class="notranslate">font.family : sans-serif
font.sans-serif : Lohit Devanagari
</code></pre></div>
<p dir="auto"><a href="https://www.fontsc.com/font/lohit-devanagari" rel="nofollow"><code class="notranslate">Lohit devanagari</code></a> has the required glyphs, in fact the correct rendering example is using <code class="notranslate">Lohit Devanagari</code> font.</p> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">Title sums it up all I guess.<br>
Related:</p>
<ul dir="auto">
<li>Issue <a href="https://github.com/matplotlib/matplotlib/issues/3517" data-hovercard-type="issue" data-hovercard-url="/matplotlib/matplotlib/issues/3517/hovercard">#3517</a> on Github</li>
<li><a href="https://stackoverflow.com/questions/10960463/non-ascii-characters-in-matplotlib" rel="nofollow">This</a> and <a href="https://stackoverflow.com/questions/40956636/missing-polish-characters-in-matplotlib-pyplot-labels-regardless-of-using-utf-8?noredirect=1&lq=1" rel="nofollow">this</a> on stack exchange</li>
</ul>
<p dir="auto">Here I used sinhala as <a href="http://unicode.org/faq/indic.html" rel="nofollow">Indic Script</a> instance.<br>
I think the font family has to do something with this issue since output to different font families are different. I'm not an expert in these stuff. Help appreciated to to get this work even with a different font family.<br>
An example is given below for which I've tried with 3 different font families.<br>
<strong>Code for reproduction</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from matplotlib import rc
families = ['WARNA','LKLUG','Arial']
for familyname in families:
rc('font', family=familyname)
from matplotlib import pyplot as plt
import numpy as np
r = np.linspace(0.1,5,100)
A = 3*2/(r*2)+np.pi*r**2
fig = plt.figure()
axes = fig.add_axes([.1,.1,.8,.8])
axes.plot(r,A)
axes.set_ylabel(u'වර්ගඵලය')
axes.set_xlabel(u'අරය')
axes.set_title(familyname)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">import</span> <span class="pl-s1">rc</span>
<span class="pl-s1">families</span> <span class="pl-c1">=</span> [<span class="pl-s">'WARNA'</span>,<span class="pl-s">'LKLUG'</span>,<span class="pl-s">'Arial'</span>]
<span class="pl-k">for</span> <span class="pl-s1">familyname</span> <span class="pl-c1">in</span> <span class="pl-s1">families</span>:
<span class="pl-en">rc</span>(<span class="pl-s">'font'</span>, <span class="pl-s1">family</span><span class="pl-c1">=</span><span class="pl-s1">familyname</span>)
<span class="pl-k">from</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">import</span> <span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-s1">r</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">0.1</span>,<span class="pl-c1">5</span>,<span class="pl-c1">100</span>)
<span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-c1">3</span><span class="pl-c1">*</span><span class="pl-c1">2</span><span class="pl-c1">/</span>(<span class="pl-s1">r</span><span class="pl-c1">*</span><span class="pl-c1">2</span>)<span class="pl-c1">+</span><span class="pl-s1">np</span>.<span class="pl-s1">pi</span><span class="pl-c1">*</span><span class="pl-s1">r</span><span class="pl-c1">**</span><span class="pl-c1">2</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">axes</span> <span class="pl-c1">=</span> <span class="pl-s1">fig</span>.<span class="pl-en">add_axes</span>([<span class="pl-c1">.1</span>,<span class="pl-c1">.1</span>,<span class="pl-c1">.8</span>,<span class="pl-c1">.8</span>])
<span class="pl-s1">axes</span>.<span class="pl-en">plot</span>(<span class="pl-s1">r</span>,<span class="pl-v">A</span>)
<span class="pl-s1">axes</span>.<span class="pl-en">set_ylabel</span>(<span class="pl-s">u'වර්ගඵලය'</span>)
<span class="pl-s1">axes</span>.<span class="pl-en">set_xlabel</span>(<span class="pl-s">u'අරය'</span>)
<span class="pl-s1">axes</span>.<span class="pl-en">set_title</span>(<span class="pl-s1">familyname</span>)</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/5713d323f515f4277b2596293f4e37abf56a631112b1fb3d433b44dd7099ec67/687474703a2f2f692e696d6775722e636f6d2f4b754864456d6b2e706e67"><img src="https://camo.githubusercontent.com/5713d323f515f4277b2596293f4e37abf56a631112b1fb3d433b44dd7099ec67/687474703a2f2f692e696d6775722e636f6d2f4b754864456d6b2e706e67" alt="Result 1" data-canonical-src="http://i.imgur.com/KuHdEmk.png" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/5898965bc1f3e4f94ce9b1fda309bc139da144e4589eee05ba463d64affaef5d/687474703a2f2f692e696d6775722e636f6d2f33646f7a6d66302e706e67"><img src="https://camo.githubusercontent.com/5898965bc1f3e4f94ce9b1fda309bc139da144e4589eee05ba463d64affaef5d/687474703a2f2f692e696d6775722e636f6d2f33646f7a6d66302e706e67" alt="Result 2" data-canonical-src="http://i.imgur.com/3dozmf0.png" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/b2d033549dc2f5708c5319a904c203c2966f918b91e56e0b2903ad45a718b319/687474703a2f2f692e696d6775722e636f6d2f57573230694e6c2e706e67"><img src="https://camo.githubusercontent.com/b2d033549dc2f5708c5319a904c203c2966f918b91e56e0b2903ad45a718b319/687474703a2f2f692e696d6775722e636f6d2f57573230694e6c2e706e67" alt="Result 3" data-canonical-src="http://i.imgur.com/WW20iNl.png" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">Result 1 looks fine but it has 2 problems:</p>
<ul dir="auto">
<li>Accents not been placed in the correct location. ("්" in "වර්ගඵලය" is placed after "ර" not before)</li>
<li>Letter "A" is not renderd in the title "WARNA"</li>
</ul>
<p dir="auto">Issues in result 2:</p>
<ul dir="auto">
<li>Same previous accent issue</li>
<li>Axis values or title not shown at all</li>
</ul>
<p dir="auto">Issues in result 3:</p>
<ul dir="auto">
<li>No Sinhala script shown.</li>
</ul>
<p dir="auto"><strong>Versions</strong></p>
<table role="table">
<thead>
<tr>
<th>Software</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Python</td>
<td>2.7.13 64bit [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]</td>
</tr>
<tr>
<td>IPython</td>
<td>5.1.0</td>
</tr>
<tr>
<td>OS</td>
<td>Linux 4.4.0 78 generic x86_64 with debian jessie sid</td>
</tr>
<tr>
<td>matplotlib</td>
<td>1.5.1</td>
</tr>
</tbody>
</table>
<p dir="auto">(Matplotlib from anaconda bundle)</p>
<p dir="auto">Wed Jun 14 22:54:11 2017 +0530</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.4.2</li>
<li>Operating System / Platform => Ubuntu 18.04</li>
<li>Compiler => cmake3.10.2</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">It caused an error following after <code class="notranslate"> import cv2</code> under <code class="notranslate">python3</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Python 3.6.8 (default, Oct 7 2019, 12:59:55)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: libopencv_ml.so.4.1: cannot open shared object file: No such file or directory
>>>
"><pre class="notranslate"><code class="notranslate">Python 3.6.8 (default, Oct 7 2019, 12:59:55)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: libopencv_ml.so.4.1: cannot open shared object file: No such file or directory
>>>
</code></pre></div>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">compile with</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-D OPENCV_EXTRA_MODULES_PATH=<path>/opencv_3.4.2_build/opencv_contrib/modules/ .."><pre class="notranslate"><code class="notranslate">cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-D OPENCV_EXTRA_MODULES_PATH=<path>/opencv_3.4.2_build/opencv_contrib/modules/ ..
</code></pre></div> | <p dir="auto"><a href="http://pullrequest.opencv.org/buildbot/builders/3_4_coverage-lin64-debug/builds/112/steps/test_core/logs/stdio" rel="nofollow">Build</a>:</p>
<details>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ RUN ] hal_intrin256.uint8x16_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint8()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\t' (9)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\n' (10, 0xA)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
With diff:
@@ -1,2 +1,1 @@
-'
-' (10, 0xA)
+'\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\v' (11, 0xB)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\f' (12, 0xC)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\r' (13, 0xD)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\xE' (14)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\xF' (15)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\x10' (16)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x19' (25)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1A' (26)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1B' (27)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1C' (28)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1D' (29)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1E' (30)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1F' (31)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: ' ' (32, 0x20)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 }
To be equal to: res
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\t' (9)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\n' (10, 0xA)
To be equal to: resB[i]
Which is: 0
With diff:
@@ -1,2 +1,1 @@
-'
-' (10, 0xA)
+0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\v' (11, 0xB)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\f' (12, 0xC)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\r' (13, 0xD)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\xE' (14)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\xF' (15)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\x10' (16)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\x5' (5)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\x6' (6)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\a' (7)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\b' (8)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=7
[ FAILED ] hal_intrin256.uint8x16_AVX2 (5 ms)
[ RUN ] hal_intrin256.int8x16_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_int8()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\t' (9)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\n' (10, 0xA)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
With diff:
@@ -1,2 +1,1 @@
-'
-' (10, 0xA)
+'\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\v' (11, 0xB)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\f' (12, 0xC)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\r' (13, 0xD)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\xE' (14)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\xF' (15)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\x10' (16)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x19' (25)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1A' (26)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1B' (27)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1C' (28)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1D' (29)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1E' (30)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1F' (31)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: ' ' (32, 0x20)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 }
To be equal to: res
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\t' (9)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\n' (10, 0xA)
To be equal to: resB[i]
Which is: 0
With diff:
@@ -1,2 +1,1 @@
-'
-' (10, 0xA)
+0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\v' (11, 0xB)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\f' (12, 0xC)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\r' (13, 0xD)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\xE' (14)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\xF' (15)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\x10' (16)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\x5' (5)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\x6' (6)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\a' (7)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\b' (8)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=7
[ FAILED ] hal_intrin256.int8x16_AVX2 (3 ms)
[ RUN ] hal_intrin256.uint16x8_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint16()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 5
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 6
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=7
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 13
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 14
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 15
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 16
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=7
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }
To be equal to: res
Which is: { 1, 2, 3, 4, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 5
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 6
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 7
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 8
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=7
[ FAILED ] hal_intrin256.uint16x8_AVX2 (1 ms)
[ RUN ] hal_intrin256.int16x8_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_int16()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 5
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 6
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=7
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 13
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 14
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 15
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 16
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=7
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }
To be equal to: res
Which is: { 1, 2, 3, 4, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 5
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 6
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 7
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 8
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=7
[ FAILED ] hal_intrin256.int16x8_AVX2 (2 ms)
[ RUN ] hal_intrin256.int32x4_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_int32()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 3
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: res
Which is: { 1, 2, 5, 6, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 3
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 4
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=3
[ FAILED ] hal_intrin256.int32x4_AVX2 (1 ms)
[ RUN ] hal_intrin256.uint32x4_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint32()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 3
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: res
Which is: { 1, 2, 5, 6, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 3
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 4
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=3
[ FAILED ] hal_intrin256.uint32x4_AVX2 (0 ms)
[ RUN ] hal_intrin256.uint64x2_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint64()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 2
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4 }
To be equal to: out.a
Which is: { 1, 2, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4 }
To be equal to: res
Which is: { 1, 3, 0, 0 }
[ FAILED ] hal_intrin256.uint64x2_AVX2 (1 ms)
[ RUN ] hal_intrin256.int64x2_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_int64()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 2
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4 }
To be equal to: out.a
Which is: { 1, 2, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4 }
To be equal to: res
Which is: { 1, 3, 0, 0 }
[ FAILED ] hal_intrin256.int64x2_AVX2 (0 ms)
[ RUN ] hal_intrin256.float32x4_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_float32()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 3
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: res
Which is: { 1, 2, 5, 6, 0, 0, 0, 0 }
[ FAILED ] hal_intrin256.float32x4_AVX2 (1 ms)
[ RUN ] hal_intrin256.float64x2_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_float64()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 2
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4 }
To be equal to: out.a
Which is: { 1, 2, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4 }
To be equal to: res
Which is: { 1, 3, 0, 0 }
[ FAILED ] hal_intrin256.float64x2_AVX2 (0 ms)"><pre class="notranslate"><code class="notranslate">[ RUN ] hal_intrin256.uint8x16_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint8()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\t' (9)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\n' (10, 0xA)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
With diff:
@@ -1,2 +1,1 @@
-'
-' (10, 0xA)
+'\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\v' (11, 0xB)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\f' (12, 0xC)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\r' (13, 0xD)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\xE' (14)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\xF' (15)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\x10' (16)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x19' (25)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1A' (26)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1B' (27)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1C' (28)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1D' (29)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1E' (30)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1F' (31)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: ' ' (32, 0x20)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 }
To be equal to: res
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\t' (9)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\n' (10, 0xA)
To be equal to: resB[i]
Which is: 0
With diff:
@@ -1,2 +1,1 @@
-'
-' (10, 0xA)
+0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\v' (11, 0xB)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\f' (12, 0xC)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\r' (13, 0xD)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\xE' (14)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\xF' (15)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\x10' (16)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\x5' (5)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\x6' (6)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\a' (7)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\b' (8)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=7
[ FAILED ] hal_intrin256.uint8x16_AVX2 (5 ms)
[ RUN ] hal_intrin256.int8x16_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_int8()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\t' (9)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\n' (10, 0xA)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
With diff:
@@ -1,2 +1,1 @@
-'
-' (10, 0xA)
+'\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\v' (11, 0xB)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\f' (12, 0xC)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\r' (13, 0xD)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\xE' (14)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\xF' (15)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\x10' (16)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x19' (25)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1A' (26)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1B' (27)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1C' (28)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1D' (29)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1E' (30)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: '\x1F' (31)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: ' ' (32, 0x20)
To be equal to: (LaneType)out.u[i]
Which is: '\0'
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 }
To be equal to: res
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\t' (9)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=8
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\n' (10, 0xA)
To be equal to: resB[i]
Which is: 0
With diff:
@@ -1,2 +1,1 @@
-'
-' (10, 0xA)
+0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=9
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\v' (11, 0xB)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=10
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\f' (12, 0xC)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=11
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\r' (13, 0xD)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=12
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\xE' (14)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=13
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\xF' (15)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=14
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: '\x10' (16)
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=15
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\x5' (5)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\x6' (6)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\a' (7)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:435: Failure
Expected: data[i]
Which is: '\b' (8)
To be equal to: out[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:434: i=7
[ FAILED ] hal_intrin256.int8x16_AVX2 (3 ms)
[ RUN ] hal_intrin256.uint16x8_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint16()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 5
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 6
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=7
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 13
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 14
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 15
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 16
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=7
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }
To be equal to: res
Which is: { 1, 2, 3, 4, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 5
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 6
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 7
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 8
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=7
[ FAILED ] hal_intrin256.uint16x8_AVX2 (1 ms)
[ RUN ] hal_intrin256.int16x8_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_int16()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 5
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 6
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=7
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 13
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 14
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 15
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 16
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=7
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }
To be equal to: res
Which is: { 1, 2, 3, 4, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 5
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=4
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 6
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=5
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 7
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=6
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 8
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=7
[ FAILED ] hal_intrin256.int16x8_AVX2 (2 ms)
[ RUN ] hal_intrin256.int32x4_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_int32()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 3
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: res
Which is: { 1, 2, 5, 6, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 3
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 4
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=3
[ FAILED ] hal_intrin256.int32x4_AVX2 (1 ms)
[ RUN ] hal_intrin256.uint32x4_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint32()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 3
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: res
Which is: { 1, 2, 5, 6, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 3
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:418: Failure
Expected: dataA[i]
Which is: 4
To be equal to: resB[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:417: i=3
[ FAILED ] hal_intrin256.uint32x4_AVX2 (0 ms)
[ RUN ] hal_intrin256.uint64x2_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint64()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 2
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4 }
To be equal to: out.a
Which is: { 1, 2, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4 }
To be equal to: res
Which is: { 1, 3, 0, 0 }
[ FAILED ] hal_intrin256.uint64x2_AVX2 (1 ms)
[ RUN ] hal_intrin256.int64x2_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_int64()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 2
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4 }
To be equal to: out.a
Which is: { 1, 2, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4 }
To be equal to: res
Which is: { 1, 3, 0, 0 }
[ FAILED ] hal_intrin256.int64x2_AVX2 (0 ms)
[ RUN ] hal_intrin256.float32x4_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_float32()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 3
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 7
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=2
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 8
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=3
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: out.a
Which is: { 1, 2, 3, 4, 0, 0, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4, 5, 6, 7, 8 }
To be equal to: res
Which is: { 1, 2, 5, 6, 0, 0, 0, 0 }
[ FAILED ] hal_intrin256.float32x4_AVX2 (1 ms)
[ RUN ] hal_intrin256.float64x2_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_float64()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: 2
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:273: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:283: Failure
Expected: (LaneType)data.u[i + R::nlanes/2]
Which is: 4
To be equal to: (LaneType)out.u[i]
Which is: 0
Google Test trace:
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:282: i=1
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:291: Failure
Expected: data.a
Which is: { 1, 2, 3, 4 }
To be equal to: out.a
Which is: { 1, 2, 0, 0 }
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:305: Failure
Expected: d
Which is: { 1, 2, 3, 4 }
To be equal to: res
Which is: { 1, 3, 0, 0 }
[ FAILED ] hal_intrin256.float64x2_AVX2 (0 ms)
</code></pre></div>
</details>
<p dir="auto">related <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="346272576" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/12120" data-hovercard-type="pull_request" data-hovercard-url="/opencv/opencv/pull/12120/hovercard" href="https://github.com/opencv/opencv/pull/12120">#12120</a></p> | 0 |
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<div><span>Get</span> the Best Price</div> // Text in one lineline"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">div</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">span</span><span class="pl-kos">></span>Get<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span> the Best Price<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span> // Text in one lineline</pre></div>
<p dir="auto">In case i want to make the word hidden on xs it brakes the text with display:block !important and span loose its inline behavior.</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<div><span class="hidden-xs">Get</span> the Best Price</div> "><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">div</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">hidden-xs</span>"<span class="pl-kos">></span>Get<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span> the Best Price<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span> </pre></div>
<p dir="auto">Even bootstrap at first mobile I dodo</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<div><span class="visible-sm visible-md visible-lg">Get</span> the Best Price</div>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">div</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">visible-sm visible-md visible-lg</span>"<span class="pl-kos">></span>Get<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span> the Best Price<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div>
<p dir="auto">the same result.</p> | <p dir="auto">related to issues <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="16856611" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/8500" data-hovercard-type="pull_request" data-hovercard-url="/twbs/bootstrap/pull/8500/hovercard" href="https://github.com/twbs/bootstrap/pull/8500">#8500</a> , <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="14075731" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/7808" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/7808/hovercard" href="https://github.com/twbs/bootstrap/issues/7808">#7808</a> , <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="6609454" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/4929" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/4929/hovercard" href="https://github.com/twbs/bootstrap/issues/4929">#4929</a> ; using <code class="notranslate">.hidden-sm</code> to hide span within <code class="notranslate">.nav > li > a</code> . Because class is <code class="notranslate">display: block</code> above -sm then text wraps to new line. Would you consider <code class="notranslate">.hidden-*</code> classes to be <code class="notranslate">display: inline-block</code> instead ?</p>
<p dir="auto">Here's a jsfiddle of the two cases - but the repercussions could be greater outside of this situation so probably needs more consideration... <a href="http://jsfiddle.net/jholl/P86yf/" rel="nofollow">http://jsfiddle.net/jholl/P86yf/</a></p> | 1 |
<p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: 1.12.3</li>
<li>Operating System: Windows</li>
<li>Node.js version: 14.17</li>
<li>Browser: Chromium, Firefox</li>
<li>Extra:</li>
</ul>
<p dir="auto"><strong>Code Snippet</strong></p>
<p dir="auto">The code sample generates full page screenshots for both headful and headless modes.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { chromium, firefox, Browser } from "playwright";
async function takeScreenshot(browser: Browser, screenshotPath: string) {
const test_website = "https://playwright.dev/docs/screenshots#full-page-screenshots"
const page = await browser.newPage()
await page.goto(test_website)
await page.screenshot({ path: screenshotPath, fullPage: true })
await page.close()
await browser.close()
}
(async () => {
const headfullBrowser = await chromium.launch({
headless: false,
slowMo: 1000,
})
await takeScreenshot(headfullBrowser, 'output/headfull-screenshot.png')
const headlessBrowser = await chromium.launch({
headless: true,
slowMo: 1000,
})
await takeScreenshot(headlessBrowser, 'output/headless-screenshot.png')
})();"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">chromium</span><span class="pl-kos">,</span> <span class="pl-s1">firefox</span><span class="pl-kos">,</span> <span class="pl-v">Browser</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"playwright"</span><span class="pl-kos">;</span>
<span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">takeScreenshot</span><span class="pl-kos">(</span><span class="pl-s1">browser</span>: <span class="pl-v">Browser</span><span class="pl-kos">,</span> <span class="pl-s1">screenshotPath</span>: <span class="pl-s1">string</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">test_website</span> <span class="pl-c1">=</span> <span class="pl-s">"https://playwright.dev/docs/screenshots#full-page-screenshots"</span>
<span class="pl-k">const</span> <span class="pl-s1">page</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">newPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s1">test_website</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">screenshot</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s1">screenshotPath</span><span class="pl-kos">,</span> <span class="pl-c1">fullPage</span>: <span class="pl-c1">true</span> <span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">headfullBrowser</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">chromium</span><span class="pl-kos">.</span><span class="pl-en">launch</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">headless</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c1">slowMo</span>: <span class="pl-c1">1000</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-en">takeScreenshot</span><span class="pl-kos">(</span><span class="pl-s1">headfullBrowser</span><span class="pl-kos">,</span> <span class="pl-s">'output/headfull-screenshot.png'</span><span class="pl-kos">)</span>
<span class="pl-k">const</span> <span class="pl-s1">headlessBrowser</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">chromium</span><span class="pl-kos">.</span><span class="pl-en">launch</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">headless</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">slowMo</span>: <span class="pl-c1">1000</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-en">takeScreenshot</span><span class="pl-kos">(</span><span class="pl-s1">headlessBrowser</span><span class="pl-kos">,</span> <span class="pl-s">'output/headless-screenshot.png'</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Additional info: tsconfig.json</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./build",
"rootDir": "./src",
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"tests"
]
}"><pre class="notranslate">{
<span class="pl-ent">"compilerOptions"</span>: {
<span class="pl-ent">"target"</span>: <span class="pl-s"><span class="pl-pds">"</span>es6<span class="pl-pds">"</span></span>,
<span class="pl-ent">"module"</span>: <span class="pl-s"><span class="pl-pds">"</span>commonjs<span class="pl-pds">"</span></span>,
<span class="pl-ent">"outDir"</span>: <span class="pl-s"><span class="pl-pds">"</span>./build<span class="pl-pds">"</span></span>,
<span class="pl-ent">"rootDir"</span>: <span class="pl-s"><span class="pl-pds">"</span>./src<span class="pl-pds">"</span></span>,
<span class="pl-ent">"strict"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"moduleResolution"</span>: <span class="pl-s"><span class="pl-pds">"</span>node<span class="pl-pds">"</span></span>,
<span class="pl-ent">"esModuleInterop"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"skipLibCheck"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"forceConsistentCasingInFileNames"</span>: <span class="pl-c1">true</span>
},
<span class="pl-ent">"exclude"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>tests<span class="pl-pds">"</span></span>
]
}</pre></div>
<p dir="auto"><strong>Describe the bug</strong></p>
<p dir="auto">The screenshot generated in headful mode does not cover the full page like in headless mode. As you can see, the first screenshot ( the one generated in headful mode), is cropped compared to the second one.</p>
<table role="table">
<thead>
<tr>
<th align="center">Headful mode</th>
<th align="center">Headless mode</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32799668/124476866-07359e80-ddac-11eb-9fcb-357db8d99a27.png"><img src="https://user-images.githubusercontent.com/32799668/124476866-07359e80-ddac-11eb-9fcb-357db8d99a27.png" alt="" style="max-width: 100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32799668/124476882-0ac92580-ddac-11eb-82b3-c00b00703c92.png"><img src="https://user-images.githubusercontent.com/32799668/124476882-0ac92580-ddac-11eb-82b3-c00b00703c92.png" alt="" style="max-width: 100%;"></a></td>
</tr>
</tbody>
</table> | <p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: 1.10.0</li>
<li>Operating System: Mac</li>
<li>Node.js version: 12</li>
<li>Browser: Chromium</li>
<li>Extra:<br>
Base Docker image: mcr.microsoft.com/playwright:v1.10.0-focal</li>
</ul>
<p dir="auto"><strong>Code Snippet</strong></p>
<p dir="auto">Help us help you! Put down a short code snippet that illustrates your bug and<br>
that we can run and debug locally. For example:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const path = require('path');
const Playwright = require('playwright');
(async () => {
const DEVICE = Playwright.devices['Pixel 2'];
const browser = await Playwright.chromium.launch({
args: ['--disable-dev-shm-usage', '--no-sandbox'],
});
const context = await browser.newContext(DEVICE);
await context.addInitScript({
path: path.resolve(__dirname, 'initScript.js'),
});
const page = await context.newPage();
await page.goto(`https://getbootstrap.com/docs/3.4/examples/non-responsive/`);
await page.screenshot({ path: './screenshot.png' });
await browser.close();
})();
"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">path</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'path'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">Playwright</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'playwright'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-c1">DEVICE</span> <span class="pl-c1">=</span> <span class="pl-v">Playwright</span><span class="pl-kos">.</span><span class="pl-c1">devices</span><span class="pl-kos">[</span><span class="pl-s">'Pixel 2'</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">browser</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-v">Playwright</span><span class="pl-kos">.</span><span class="pl-c1">chromium</span><span class="pl-kos">.</span><span class="pl-en">launch</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">args</span>: <span class="pl-kos">[</span><span class="pl-s">'--disable-dev-shm-usage'</span><span class="pl-kos">,</span> <span class="pl-s">'--no-sandbox'</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">newContext</span><span class="pl-kos">(</span><span class="pl-c1">DEVICE</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">addInitScript</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">path</span>: <span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-s">'initScript.js'</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">page</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">newPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">`https://getbootstrap.com/docs/3.4/examples/non-responsive/`</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">screenshot</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">'./screenshot.png'</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Describe the bug</strong><br>
You can see the screenshot has been cropped:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7234480/114496489-eb6b9380-9bd4-11eb-8269-c4033b075066.png"><img src="https://user-images.githubusercontent.com/7234480/114496489-eb6b9380-9bd4-11eb-8269-c4033b075066.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">If I manually set <code class="notranslate">deviceScaleFactor</code> to 1, it then works fine:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const path = require('path');
const Playwright = require('playwright');
(async () => {
const DEVICE = Playwright.devices['Pixel 2'];
const browser = await Playwright.chromium.launch({
args: ['--disable-dev-shm-usage', '--no-sandbox'],
});
const context = await browser.newContext({
...DEVICE,
viewport: {
width: Math.round(411 * 2.625),
height: Math.round(731 * 2.625),
},
deviceScaleFactor: 1,
});
await context.addInitScript({
path: path.resolve(__dirname, 'initScript.js'),
});
const page = await context.newPage();
await page.goto(`https://getbootstrap.com/docs/3.4/examples/non-responsive/`);
await page.screenshot({ path: './screenshot.png' });
await browser.close();
})();
"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">path</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'path'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">Playwright</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'playwright'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-c1">DEVICE</span> <span class="pl-c1">=</span> <span class="pl-v">Playwright</span><span class="pl-kos">.</span><span class="pl-c1">devices</span><span class="pl-kos">[</span><span class="pl-s">'Pixel 2'</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">browser</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-v">Playwright</span><span class="pl-kos">.</span><span class="pl-c1">chromium</span><span class="pl-kos">.</span><span class="pl-en">launch</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">args</span>: <span class="pl-kos">[</span><span class="pl-s">'--disable-dev-shm-usage'</span><span class="pl-kos">,</span> <span class="pl-s">'--no-sandbox'</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">newContext</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
...<span class="pl-c1">DEVICE</span><span class="pl-kos">,</span>
<span class="pl-c1">viewport</span>: <span class="pl-kos">{</span>
<span class="pl-c1">width</span>: <span class="pl-v">Math</span><span class="pl-kos">.</span><span class="pl-en">round</span><span class="pl-kos">(</span><span class="pl-c1">411</span> <span class="pl-c1">*</span> <span class="pl-c1">2.625</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">height</span>: <span class="pl-v">Math</span><span class="pl-kos">.</span><span class="pl-en">round</span><span class="pl-kos">(</span><span class="pl-c1">731</span> <span class="pl-c1">*</span> <span class="pl-c1">2.625</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">deviceScaleFactor</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">addInitScript</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">path</span>: <span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-s">'initScript.js'</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">page</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">newPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">`https://getbootstrap.com/docs/3.4/examples/non-responsive/`</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">screenshot</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">'./screenshot.png'</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7234480/114602591-a171c480-9c4b-11eb-8ea2-6e49fbc4f3e8.png"><img src="https://user-images.githubusercontent.com/7234480/114602591-a171c480-9c4b-11eb-8ea2-6e49fbc4f3e8.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<pre class="notranslate">What steps will reproduce the problem?
This simple code reveals an infinite print loop:
package main
import "fmt"
import "log"
import "runtime/debug"
var count = 0
type foo struct {
i int
}
func (f foo) String() string {
count++
if count > 10 {
debug.PrintStack()
panic("call stack too large")
}
return fmt.Sprintf("foo@%p value: %d", f, f.i)
}
func main() {
f := foo{i: 3}
// ok
log.Println(fmt.Sprintf("foo@%p value: %d", &f, f.i))
// inf loop
log.Printf("foo@%p, value: %d\n", f, f.i)
}
If you take out the loop protection in the code, you will end up crashing with no system
memory left.
What is the expected output?
There should be a callstack protection so that the program wouldn't chew up all the
system memories.
What do you see instead?
hang and eat up all the memories.
Which compiler are you using (5g, 6g, 8g, gccgo)?
6g, 8g
Which operating system are you using?
Linux 386/amd64
Which revision are you using? (hg identify)
tip
Please provide any additional information below.
Ian's comment:
I think we should use the depth we are already passing down to catch
this kind of loop before we eat all of memory.</pre> | <p dir="auto">by <strong>mddkpp</strong>:</p>
<pre class="notranslate">1. What is a short input program that triggers the error?
package main
import "fmt"
type A [10]int
var a A
func main() {
a.pp()
b := &a
c := &b
c.pp() // or just use (&(&a)).pp()
}
func (a A) pp() { fmt.Printf("%#v \n", a) }
2. What is the full compiler output?
bb.go:15: internal compiler error: method mismatch: A for **A
Please file a bug report including a short program that triggers the error.
<a href="http://code.google.com/p/go/issues/entry?template=compilerbug" rel="nofollow">http://code.google.com/p/go/issues/entry?template=compilerbug</a>
3. What version of the compiler are you using? (Run it with the -V flag.)
8g version release.r60.3 9516
(Note the program should return an error)</pre> | 0 |
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report => search github for a similar issue or PR before submitting
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ ] bug report => search github for a similar issue or PR before submitting
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
When navigating forward and then back, the scroll position is lost.</p>
<p dir="auto"><strong>Expected/desired behavior</strong><br>
When navigating on an extensive list of items, the user scrolls down the list and click on some item. The app activates the next route/component which shows the product details. If the user decides do navigate back, the page does not scroll to the previous point.</p>
<p dir="auto"><strong>Reproduction of the problem</strong></p>
<p dir="auto">Live example: <a href="http://plnkr.co/edit/vUROPirs5tjklyBw6t4H?p=preview" rel="nofollow">http://plnkr.co/edit/vUROPirs5tjklyBw6t4H?p=preview</a><br>
step 1 - first, adjust browser zoom until heroes from the hero list disappear<br>
step 2 - scroll down to the end of the page<br>
step 3 - click on "RubberMan"<br>
step 4 - click on the back button either on the browser or the component<br>
step 5 - the page is not scrolled to the same position of stop 2</p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
The browser should scroll to the previous position like it happens in any non-single page application.</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
It should be considered a bug that can reduce the level of the user experience.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.0-rc.4</li>
<li><strong>Browser:</strong> [all]</li>
<li><strong>Language:</strong> [TypeScript 1.8 | ES5]</li>
</ul> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
Right now if you set a the Content-Type header in the request and you leave the body of the request empty angular2 is throwing 'ORIGINAL EXCEPTION: TypeError: Cannot read property 'toString' of null' before even try to make the request.</p>
<p dir="auto"><strong>Expected/desired behavior</strong><br>
As far as I know if you have an Content-Type header and an empty request body it is a perfectly valid request. I suppose the correct behaviour is to execute the request.</p>
<p dir="auto"><strong>Reproduction of the problem</strong><br>
You can see the wrong behaviour in this plnkr.<br>
<a href="https://plnkr.co/edit/9J1hTVC8W65vLTU3ByhO?p=preview" rel="nofollow">https://plnkr.co/edit/9J1hTVC8W65vLTU3ByhO?p=preview</a></p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
I expect to be able to load the application if I made a request with Content-Type and without a body with angular2 http module</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
I think it is perfectly valid http request and don't see any value in make them impossible with angular2 http library</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.0-rc.5</li>
<li><strong>Browser:</strong> [all]<br>
I have tried with chrome/firefox/safari.</li>
<li><strong>Language:</strong> [TypeScript]<br>
I have just used what plnkr provides for their default angular2 typescript plunk.</li>
</ul> | 0 |
<p dir="auto">TestDualStackUDPListener still fails on Dragonfly sometimes.</p>
<p dir="auto">From <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/golang/go/commit/f6d1009431c4d4677a292be5a78f57c239929d4b/hovercard" href="https://github.com/golang/go/commit/f6d1009431c4d4677a292be5a78f57c239929d4b"><tt>f6d1009</tt></a></p>
<p dir="auto"><a href="http://build.golang.org/log/f4bc3bb1b42e2afb646e754f6f2d36ec6a665daf" rel="nofollow">http://build.golang.org/log/f4bc3bb1b42e2afb646e754f6f2d36ec6a665daf</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--- FAIL: TestDualStackUDPListener (0.02s)
listen_test.go:319: skipping udp test
listen_test.go:319: skipping udp test
listen_test.go:319: skipping udp 0.0.0.0 test
listen_test.go:319: skipping udp test
listen_test.go:319: skipping udp :: test
listen_test.go:319: skipping udp 0.0.0.0 test
listen_test.go:319: skipping udp :: test
listen_test.go:319: skipping udp ::ffff:0.0.0.0 test
listen_test.go:319: skipping udp :: test
listen_test.go:319: skipping udp4 test
listen_test.go:319: skipping udp6 test
listen_test.go:319: skipping udp4 0.0.0.0 test
listen_test.go:319: skipping udp6 :: test
listen_test.go:357: listen udp4 127.0.0.1:50813: bind: address already in use
FAIL
FAIL net 8.282s"><pre class="notranslate"><code class="notranslate">--- FAIL: TestDualStackUDPListener (0.02s)
listen_test.go:319: skipping udp test
listen_test.go:319: skipping udp test
listen_test.go:319: skipping udp 0.0.0.0 test
listen_test.go:319: skipping udp test
listen_test.go:319: skipping udp :: test
listen_test.go:319: skipping udp 0.0.0.0 test
listen_test.go:319: skipping udp :: test
listen_test.go:319: skipping udp ::ffff:0.0.0.0 test
listen_test.go:319: skipping udp :: test
listen_test.go:319: skipping udp4 test
listen_test.go:319: skipping udp6 test
listen_test.go:319: skipping udp4 0.0.0.0 test
listen_test.go:319: skipping udp6 :: test
listen_test.go:357: listen udp4 127.0.0.1:50813: bind: address already in use
FAIL
FAIL net 8.282s
</code></pre></div> | <p dir="auto">Not sure the version of dragonfly builder but the root cause of test flakiness comes from the kernel changes like the following:<br>
<a href="http://gitweb.dragonflybsd.org/dragonfly.git/commit/727ccde8cce813911d885b7f6ed749dcea68a886" rel="nofollow">http://gitweb.dragonflybsd.org/dragonfly.git/commit/727ccde8cce813911d885b7f6ed749dcea68a886</a></p>
<p dir="auto">Simply dragonfly is dropping support for ipv6 ipv4-mapped address for some reason.</p> | 1 |
<p dir="auto">pandas 0.14 <a href="http://pandas.pydata.org/pandas-docs/version/0.15.0/whatsnew.html#whatsnew-0140-api" rel="nofollow">changed <code class="notranslate">.iloc</code></a> to accept out-of-bounds indexers for slices. I think we should do the same for <code class="notranslate">.loc</code>, for similar reasons of consistency and efficiency.</p>
<p dir="auto">Note that this is already currently inconsistent for int and float indexes (not entirely sure why):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> pd.Series(range(5), np.arange(5)).loc[-1:]
KeyError
>>> pd.Series(range(5), np.arange(5.0)).loc[-1:]
0 0
1 1
2 2
3 3
4 4
dtype: int64"><pre class="notranslate"><code class="notranslate">>>> pd.Series(range(5), np.arange(5)).loc[-1:]
KeyError
>>> pd.Series(range(5), np.arange(5.0)).loc[-1:]
0 0
1 1
2 2
3 3
4 4
dtype: int64
</code></pre></div> | <p dir="auto">I didn't directly find an issue about it, or an explanation in the docs, but I stumbled today on the following, which did surprise me a bit:</p>
<p dir="auto">Considering the following dataframe:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [18]: df = pd.DataFrame(np.random.randn(5,2), index=pd.date_range('2012-01-01', periods=5))
In [19]: df
Out[19]:
0 1
2012-01-01 2.511337 -0.776326
2012-01-02 0.133589 0.441911
2012-01-03 0.348167 1.285188
2012-01-04 1.075843 1.282131
2012-01-05 0.683006 0.558459"><pre class="notranslate"><code class="notranslate">In [18]: df = pd.DataFrame(np.random.randn(5,2), index=pd.date_range('2012-01-01', periods=5))
In [19]: df
Out[19]:
0 1
2012-01-01 2.511337 -0.776326
2012-01-02 0.133589 0.441911
2012-01-03 0.348167 1.285188
2012-01-04 1.075843 1.282131
2012-01-05 0.683006 0.558459
</code></pre></div>
<p dir="auto">Slicing with a label that is not included in the index works with <code class="notranslate">.ix</code>, but not with <code class="notranslate">.loc</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [20]: df.ix['2012-01-03':'2012-01-31']
Out[20]:
0 1
2012-01-03 0.348167 1.285188
2012-01-04 1.075843 1.282131
2012-01-05 0.683006 0.558459
In [21]: df.loc['2012-01-03':'2012-01-31']
...
KeyError: 'stop bound [2012-01-31] is not in the [index]'"><pre class="notranslate"><code class="notranslate">In [20]: df.ix['2012-01-03':'2012-01-31']
Out[20]:
0 1
2012-01-03 0.348167 1.285188
2012-01-04 1.075843 1.282131
2012-01-05 0.683006 0.558459
In [21]: df.loc['2012-01-03':'2012-01-31']
...
KeyError: 'stop bound [2012-01-31] is not in the [index]'
</code></pre></div>
<p dir="auto">Context: I was updating some older code, and I wanted to replace <code class="notranslate">.ix</code> with <code class="notranslate">.loc</code> (as this is what we recommend if it is purely label based to prevent confusion).</p>
<p dir="auto">Some things:</p>
<ul dir="auto">
<li>If this is intended, I don't find this stated somewhere in the docs. So the docs are at least lacking at this point.</li>
<li>the inconsistency between <code class="notranslate">[]</code>, <code class="notranslate">.ix[]</code> and <code class="notranslate">.loc[]</code> is a bit surprising here</li>
<li>it is also inconsistent with <code class="notranslate">iloc</code> -> that behaviour was changed in 0.14 to allow out of bound slicing (<a href="http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#whatsnew-0140-api" rel="nofollow">http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#whatsnew-0140-api</a>)</li>
<li>Specifically for datetime-line indexing, it is also inconsistent with the feature of partial string indexing: <code class="notranslate">df.loc['2012-01-03':'2012-01']</code> will work and do the expected while <code class="notranslate">df.loc['2012-01-03':'2012-01-31']</code> fails</li>
</ul> | 1 |
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/passing-values-to-functions-with-arguments#?solution=%2F%2F%20Example%0Afunction%20ourFunction%28a%2C%20b%29%20%7B%0A%20%20console.log%28a%20-%20b%29%3B%0A%7D%0AourFunction%2810%2C%205%29%3B%20%2F%2F%20Outputs%205%0A%0A%2F%2F%20Only%20change%20code%20below%20this%20line.%0Afunction%20myFunction%28a%2Cb%29%7B%0A%20%20console.log%28a%2Bb%29%3B%0A%7D%0AmyFunction%281%2C2%29%3B%0A" rel="nofollow">Passing Values to Functions with Arguments</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Example
function ourFunction(a, b) {
console.log(a - b);
}
ourFunction(10, 5); // Outputs 5
// Only change code below this line.
function myFunction(a,b){
console.log(a+b);
}
myFunction(1,2);
"><pre class="notranslate"><span class="pl-c">// Example</span>
<span class="pl-k">function</span> <span class="pl-en">ourFunction</span><span class="pl-kos">(</span><span class="pl-s1">a</span><span class="pl-kos">,</span> <span class="pl-s1">b</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">a</span> <span class="pl-c1">-</span> <span class="pl-s1">b</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">ourFunction</span><span class="pl-kos">(</span><span class="pl-c1">10</span><span class="pl-kos">,</span> <span class="pl-c1">5</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Outputs 5</span>
<span class="pl-c">// Only change code below this line.</span>
<span class="pl-k">function</span> <span class="pl-en">myFunction</span><span class="pl-kos">(</span><span class="pl-s1">a</span><span class="pl-kos">,</span><span class="pl-s1">b</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">a</span><span class="pl-c1">+</span><span class="pl-s1">b</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">myFunction</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">,</span><span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> | <p dir="auto">I am trying the exercise given for the above lesson. The link is given below:<br>
<a href="http://www.freecodecamp.com/challenges/passing-values-to-functions-with-arguments#?solution=%2F%2F%20Example%0Afunction%20ourFunction(a%2C%20b)%20%7B%0A%20%20console.log(a%20-%20b)%3B%0A%7D%0AourFunction(10%2C%205)%3B%20%2F%2F%20Outputs%205%0A%0A%2F%2F%20Only%20change%20code%20below%20this%20line.%0Afunction%20myFunction(a%2C%20b)%20%7B%0A%20%20console.log(a%20%2B%20b)%3B%0A%7D%0A%0AmyFunction(1%2C%202)%3B" rel="nofollow">http://www.freecodecamp.com/challenges/passing-values-to-functions-with-arguments#?solution=%2F%2F%20Example%0Afunction%20ourFunction(a%2C%20b)%20%7B%0A%20%20console.log(a%20-%20b)%3B%0A%7D%0AourFunction(10%2C%205)%3B%20%2F%2F%20Outputs%205%0A%0A%2F%2F%20Only%20change%20code%20below%20this%20line.%0Afunction%20myFunction(a%2C%20b)%20%7B%0A%20%20console.log(a%20%2B%20b)%3B%0A%7D%0A%0AmyFunction(1%2C%202)%3B</a></p>
<p dir="auto">My solution looks to be correct but still the when the tests are run I get the error: "RangeError: Maximum call stack size exceeded"</p>
<p dir="auto">I have googled this error and does not look to be possible for the below code which I have written in solution:<br>
function myFunction(c, d){<br>
console.log(c + d);<br>
}<br>
myFunction(1, 2);</p> | 1 |
<p dir="auto">Helllo,<br>
I'm very love material-ui and react.<br>
I need to use these components. Is it possible to support these components.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/14047941/29375934-0465b61a-82e1-11e7-800c-23b40d5a42b8.png"><img src="https://user-images.githubusercontent.com/14047941/29375934-0465b61a-82e1-11e7-800c-23b40d5a42b8.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Components</h3>
<ul dir="auto">
<li>DatePicker</li>
<li>TimePicker</li>
</ul>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>Material-UI: v1.0.0-beta5</li>
<li>React: 15.6.1</li>
</ul> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Component</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Tests (at least unit tests)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Docs</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Demo</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Keyboard accesibility <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1380563928" data-permission-text="Title is private" data-url="https://github.com/mui/mui-x/issues/6232" data-hovercard-type="issue" data-hovercard-url="/mui/mui-x/issues/6232/hovercard" href="https://github.com/mui/mui-x/issues/6232">mui/mui-x#6232</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Composable, so users can build something like <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="246144163" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/7574" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/7574/hovercard" href="https://github.com/mui/material-ui/issues/7574">#7574</a> for instance</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Fixes old issues <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="251939206" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/7866" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/7866/hovercard" href="https://github.com/mui/material-ui/issues/7866">#7866</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="250629993" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/7783" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/7783/hovercard" href="https://github.com/mui/material-ui/issues/7783">#7783</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="250577321" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/7781" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/7781/hovercard" href="https://github.com/mui/material-ui/issues/7781">#7781</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="250392072" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/7767" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/7767/hovercard" href="https://github.com/mui/material-ui/issues/7767">#7767</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="231792216" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6970" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6970/hovercard" href="https://github.com/mui/material-ui/issues/6970">#6970</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="231131713" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6944" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6944/hovercard" href="https://github.com/mui/material-ui/issues/6944">#6944</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="230362329" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6918" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6918/hovercard" href="https://github.com/mui/material-ui/issues/6918">#6918</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="230318095" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6916" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6916/hovercard" href="https://github.com/mui/material-ui/issues/6916">#6916</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="229361304" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6886" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6886/hovercard" href="https://github.com/mui/material-ui/issues/6886">#6886</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="224763092" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6718" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6718/hovercard" href="https://github.com/mui/material-ui/issues/6718">#6718</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="221365008" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6594" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6594/hovercard" href="https://github.com/mui/material-ui/issues/6594">#6594</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="217056140" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6439" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6439/hovercard" href="https://github.com/mui/material-ui/issues/6439">#6439</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="214872317" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6358" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6358/hovercard" href="https://github.com/mui/material-ui/issues/6358">#6358</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="212842667" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6312" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6312/hovercard" href="https://github.com/mui/material-ui/issues/6312">#6312</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="207417550" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6134" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6134/hovercard" href="https://github.com/mui/material-ui/issues/6134">#6134</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="199464119" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5897" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5897/hovercard" href="https://github.com/mui/material-ui/issues/5897">#5897</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="196126492" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5800" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5800/hovercard" href="https://github.com/mui/material-ui/issues/5800">#5800</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="194533256" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5743" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5743/hovercard" href="https://github.com/mui/material-ui/issues/5743">#5743</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="194026403" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5726" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5726/hovercard" href="https://github.com/mui/material-ui/issues/5726">#5726</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="192778673" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5696" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5696/hovercard" href="https://github.com/mui/material-ui/issues/5696">#5696</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="191862729" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5664" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5664/hovercard" href="https://github.com/mui/material-ui/issues/5664">#5664</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="191373740" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5633" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5633/hovercard" href="https://github.com/mui/material-ui/issues/5633">#5633</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="183224499" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5400" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5400/hovercard" href="https://github.com/mui/material-ui/issues/5400">#5400</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="181023267" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5329" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5329/hovercard" href="https://github.com/mui/material-ui/issues/5329">#5329</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177413834" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5198" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5198/hovercard" href="https://github.com/mui/material-ui/issues/5198">#5198</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177404393" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5197" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5197/hovercard" href="https://github.com/mui/material-ui/issues/5197">#5197</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177272878" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5188" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5188/hovercard" href="https://github.com/mui/material-ui/issues/5188">#5188</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="172293530" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5037" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5037/hovercard" href="https://github.com/mui/material-ui/issues/5037">#5037</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="169348952" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/4900" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/4900/hovercard" href="https://github.com/mui/material-ui/issues/4900">#4900</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="166871842" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/4765" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/4765/hovercard" href="https://github.com/mui/material-ui/issues/4765">#4765</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="165440166" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/4707" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/4707/hovercard" href="https://github.com/mui/material-ui/issues/4707">#4707</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="163087815" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/4587" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/4587/hovercard" href="https://github.com/mui/material-ui/issues/4587">#4587</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="157851987" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/4401" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/4401/hovercard" href="https://github.com/mui/material-ui/issues/4401">#4401</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="153795278" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/4219" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/4219/hovercard" href="https://github.com/mui/material-ui/issues/4219">#4219</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="143238498" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/3794" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/3794/hovercard" href="https://github.com/mui/material-ui/issues/3794">#3794</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="141238531" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/3710" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/3710/hovercard" href="https://github.com/mui/material-ui/issues/3710">#3710</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="126545142" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/2930" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/2930/hovercard" href="https://github.com/mui/material-ui/issues/2930">#2930</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="117480795" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/2203" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/2203/hovercard" href="https://github.com/mui/material-ui/issues/2203">#2203</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="114404418" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/2023" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/2023/hovercard" href="https://github.com/mui/material-ui/issues/2023">#2023</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="104160252" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/1566" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/1566/hovercard" href="https://github.com/mui/material-ui/issues/1566">#1566</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="97108101" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/1261" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/1261/hovercard" href="https://github.com/mui/material-ui/issues/1261">#1261</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="96025539" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/1207" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/1207/hovercard" href="https://github.com/mui/material-ui/issues/1207">#1207</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="161519185" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/4538" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/4538/hovercard" href="https://github.com/mui/material-ui/issues/4538">#4538</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="175374069" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5144" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5144/hovercard" href="https://github.com/mui/material-ui/issues/5144">#5144</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="241725260" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/7399" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/7399/hovercard" href="https://github.com/mui/material-ui/issues/7399">#7399</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="190922371" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/5612" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/5612/hovercard" href="https://github.com/mui/material-ui/issues/5612">#5612</a></li>
</ul> | 1 |
<p dir="auto">I hope I'm not reporting an issue that's already known. Starting with matplotlib==2.0.0b1, pyplot.bar does not cycle through colors anymore. Instead, if I pass list of colors, it only uses color 'C0'.</p>
<p dir="auto">Minimum code to reproduce bug:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
x_pos = [0, 1, 2]
heights = [1, 2, 3]
colors = ['0.2', '0.5', '0.8']
print('Works properly:')
[plt.bar(left=x_pos[ii], height=heights[ii], color=colors[ii]) for ii in range(len(x_pos))]
plt.show()
print('Does not work aynmore:')
plt.bar(left=x_pos, height=heights, color=colors)
plt.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">x_pos</span> <span class="pl-c1">=</span> [<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>]
<span class="pl-s1">heights</span> <span class="pl-c1">=</span> [<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>]
<span class="pl-s1">colors</span> <span class="pl-c1">=</span> [<span class="pl-s">'0.2'</span>, <span class="pl-s">'0.5'</span>, <span class="pl-s">'0.8'</span>]
<span class="pl-en">print</span>(<span class="pl-s">'Works properly:'</span>)
[<span class="pl-s1">plt</span>.<span class="pl-en">bar</span>(<span class="pl-s1">left</span><span class="pl-c1">=</span><span class="pl-s1">x_pos</span>[<span class="pl-s1">ii</span>], <span class="pl-s1">height</span><span class="pl-c1">=</span><span class="pl-s1">heights</span>[<span class="pl-s1">ii</span>], <span class="pl-s1">color</span><span class="pl-c1">=</span><span class="pl-s1">colors</span>[<span class="pl-s1">ii</span>]) <span class="pl-k">for</span> <span class="pl-s1">ii</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-en">len</span>(<span class="pl-s1">x_pos</span>))]
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()
<span class="pl-en">print</span>(<span class="pl-s">'Does not work aynmore:'</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">bar</span>(<span class="pl-s1">left</span><span class="pl-c1">=</span><span class="pl-s1">x_pos</span>, <span class="pl-s1">height</span><span class="pl-c1">=</span><span class="pl-s1">heights</span>, <span class="pl-s1">color</span><span class="pl-c1">=</span><span class="pl-s1">colors</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto">Output:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/20988354/22149638/2e2c2d96-df15-11e6-8759-8e95506a2ac8.png"><img width="382" alt="img" src="https://cloud.githubusercontent.com/assets/20988354/22149638/2e2c2d96-df15-11e6-8759-8e95506a2ac8.png" style="max-width: 100%;"></a></p>
<p dir="auto">Here's the output using the same code with matplotlib==1.5.3</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/20988354/22149823/42868696-df16-11e6-9641-57a29968a766.png"><img width="446" alt="img2" src="https://cloud.githubusercontent.com/assets/20988354/22149823/42868696-df16-11e6-9641-57a29968a766.png" style="max-width: 100%;"></a></p> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">pyplot.plot worked fine (including version 2.0.0) with the Qt4/PySide backend specified in matplotlibrc. With version 2.0.1, it seems to try to use Qt5 instead and fails.</p>
<p dir="auto"><strong>Code for reproduction</strong></p>
<p dir="auto">Any code</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
plt.plot([1, 2, 3])
plt.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">plt</span>.<span class="pl-en">plot</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>])
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="c:\python34\lib\site-packages\matplotlib\pyplot.py in plot(*args, **kwargs)
3304 @_autogen_docstring(Axes.plot)
3305 def plot(*args, **kwargs):
-> 3306 ax = gca()
3307 # Deprecated: allow callers to override the hold state
3308 # by passing hold=True|False
c:\python34\lib\site-packages\matplotlib\pyplot.py in gca(**kwargs)
948 matplotlib.figure.Figure.gca : The figure's gca method.
949 """
--> 950 return gcf().gca(**kwargs)
951
952 # More ways of creating axes:
c:\python34\lib\site-packages\matplotlib\pyplot.py in gcf()
584 return figManager.canvas.figure
585 else:
--> 586 return figure()
587
588
c:\python34\lib\site-packages\matplotlib\pyplot.py in figure(num, figsize, dpi, facecolor, edgecolor, frameon, FigureClass, **kwargs)
533 frameon=frameon,
534 FigureClass=FigureClass,
--> 535 **kwargs)
536
537 if figLabel:
c:\python34\lib\site-packages\matplotlib\backends\backend_qt4agg.py in new_figure_manager(num, *args, **kwargs)
44 FigureClass = kwargs.pop('FigureClass', Figure)
45 thisFig = FigureClass(*args, **kwargs)
---> 46 return new_figure_manager_given_figure(num, thisFig)
47
48
c:\python34\lib\site-packages\matplotlib\backends\backend_qt4agg.py in new_figure_manager_given_figure(num, figure)
52 """
53 canvas = FigureCanvasQTAgg(figure)
---> 54 return FigureManagerQT(canvas, num)
55
56
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in __init__(self, canvas, num)
486 self.window.statusBar().addWidget(self.statusbar_label)
487
--> 488 self.toolbar = self._get_toolbar(self.canvas, self.window)
489 if self.toolbar is not None:
490 self.window.addToolBar(self.toolbar)
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in _get_toolbar(self, canvas, parent)
537 # attrs are set
538 if matplotlib.rcParams['toolbar'] == 'toolbar2':
--> 539 toolbar = NavigationToolbar2QT(canvas, parent, False)
540 else:
541 toolbar = None
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in __init__(self, canvas, parent, coordinates)
583
584 QtWidgets.QToolBar.__init__(self, parent)
--> 585 NavigationToolbar2.__init__(self, canvas)
586
587 def _icon(self, name):
c:\python34\lib\site-packages\matplotlib\backend_bases.py in __init__(self, canvas)
2758 self._active = None
2759 self._lastCursor = None
-> 2760 self._init_toolbar()
2761 self._idDrag = self.canvas.mpl_connect(
2762 'motion_notify_event', self.mouse_move)
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in _init_toolbar(self)
599 self.addSeparator()
600 else:
--> 601 a = self.addAction(self._icon(image_file + '.png'),
602 text, getattr(self, callback))
603 self._actions[callback] = a
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in _icon(self,name)
589 name = name.replace('.png', '_large.png')
590 pm = QtGui.QPixmap(os.path.join(self.basedir, name))
--> 591 pm.setDevicePixelRatio(self.canvas._dpi_ratio)
592 return QtGui.QIcon(pm)
593
AttributeError: 'PySide.QtGui.QPixmap' object has no attribute 'setDevicePixelRatio'"><pre class="notranslate"><code class="notranslate">c:\python34\lib\site-packages\matplotlib\pyplot.py in plot(*args, **kwargs)
3304 @_autogen_docstring(Axes.plot)
3305 def plot(*args, **kwargs):
-> 3306 ax = gca()
3307 # Deprecated: allow callers to override the hold state
3308 # by passing hold=True|False
c:\python34\lib\site-packages\matplotlib\pyplot.py in gca(**kwargs)
948 matplotlib.figure.Figure.gca : The figure's gca method.
949 """
--> 950 return gcf().gca(**kwargs)
951
952 # More ways of creating axes:
c:\python34\lib\site-packages\matplotlib\pyplot.py in gcf()
584 return figManager.canvas.figure
585 else:
--> 586 return figure()
587
588
c:\python34\lib\site-packages\matplotlib\pyplot.py in figure(num, figsize, dpi, facecolor, edgecolor, frameon, FigureClass, **kwargs)
533 frameon=frameon,
534 FigureClass=FigureClass,
--> 535 **kwargs)
536
537 if figLabel:
c:\python34\lib\site-packages\matplotlib\backends\backend_qt4agg.py in new_figure_manager(num, *args, **kwargs)
44 FigureClass = kwargs.pop('FigureClass', Figure)
45 thisFig = FigureClass(*args, **kwargs)
---> 46 return new_figure_manager_given_figure(num, thisFig)
47
48
c:\python34\lib\site-packages\matplotlib\backends\backend_qt4agg.py in new_figure_manager_given_figure(num, figure)
52 """
53 canvas = FigureCanvasQTAgg(figure)
---> 54 return FigureManagerQT(canvas, num)
55
56
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in __init__(self, canvas, num)
486 self.window.statusBar().addWidget(self.statusbar_label)
487
--> 488 self.toolbar = self._get_toolbar(self.canvas, self.window)
489 if self.toolbar is not None:
490 self.window.addToolBar(self.toolbar)
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in _get_toolbar(self, canvas, parent)
537 # attrs are set
538 if matplotlib.rcParams['toolbar'] == 'toolbar2':
--> 539 toolbar = NavigationToolbar2QT(canvas, parent, False)
540 else:
541 toolbar = None
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in __init__(self, canvas, parent, coordinates)
583
584 QtWidgets.QToolBar.__init__(self, parent)
--> 585 NavigationToolbar2.__init__(self, canvas)
586
587 def _icon(self, name):
c:\python34\lib\site-packages\matplotlib\backend_bases.py in __init__(self, canvas)
2758 self._active = None
2759 self._lastCursor = None
-> 2760 self._init_toolbar()
2761 self._idDrag = self.canvas.mpl_connect(
2762 'motion_notify_event', self.mouse_move)
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in _init_toolbar(self)
599 self.addSeparator()
600 else:
--> 601 a = self.addAction(self._icon(image_file + '.png'),
602 text, getattr(self, callback))
603 self._actions[callback] = a
c:\python34\lib\site-packages\matplotlib\backends\backend_qt5.py in _icon(self,name)
589 name = name.replace('.png', '_large.png')
590 pm = QtGui.QPixmap(os.path.join(self.basedir, name))
--> 591 pm.setDevicePixelRatio(self.canvas._dpi_ratio)
592 return QtGui.QIcon(pm)
593
AttributeError: 'PySide.QtGui.QPixmap' object has no attribute 'setDevicePixelRatio'
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">Show the plot.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating System: Windows 7</li>
<li>Matplotlib Version: 2.0.1</li>
<li>Python Version: 3.4.3</li>
<li>Jupyter Version (if applicable): -</li>
<li>Other Libraries: PySide 1.2.4</li>
</ul>
<p dir="auto">Installed via pip</p> | 0 |
<p dir="auto">Hi, I faced a problem unable to cast an object as a method. While this is handled automatically using an if / else block (and congratulation to the guys who implemented this), this is not working yet into a switch case nor manually. Here is <a href="http://www.typescriptlang.org/Playground#src=%0Ainterface%20MethodInterface%7B%0A%20%20%28%29%3A%20string%3B%0A%7D%0A%0Ainterface%20FocusRule%0A%7B%0A%09surprise%3F%3AMethodInterface%7Cstring%0A%7D%0A%0Afunction%20test%28anObject%3AFocusRule%29%0A%7B%0A%09var%20actionOrString%3AMethodInterface%7Cstring%20%3D%20anObject.surprise%3B%0A%09%0A%09%20%20%20%20%20%20%20%20%20%20switch%28typeof%20actionOrString%29%0A%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F**%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20*%20There%20is%20no%20way%20to%20prevent%20the%20compilation%20error%20here%20%28even%20casting%20the%20actionOrString%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20*%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20case%20%22function%22%20%3A%20%3CMethodInterface%3EactionOrString%28%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F**%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20*%20If%20a%20string%2C%20maybe%20we%20are%20using%20a%20helper%20or%20a%20query%20selector%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20*%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20case%20%22string%22%20%20%20%3A%20return%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%09%0A%09%0A%09%2F%2F%20Using%20a%20if%20%2F%20else%20is%20however%20ok%0A%09%0A%09if%20%28typeof%20actionOrString%20%3D%3D%3D%20%22function%22%29%0A%09%7B%0A%09%09actionOrString%28%29%3B%0A%09%7D%0A%09else%0A%09%7B%0A%09%09%2F%2F%20Here%20this%20is%20normal%20to%20fail%E2%80%A6%0A%09%09actionOrString%28%29%3B%0A%09%7D%0A%7D%0A%0A%0A" rel="nofollow">my code</a> to reproduce the error:</p> | <p dir="auto">I have the following code:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function logNumber(v: number) { console.log("number:", v); }
function logString(v: string) { console.log("string:", v); }
function foo1(v: number|string) {
switch (typeof v) {
case 'number':
logNumber(v);
break;
case 'string':
logString(v);
break;
default:
throw new Error("unsupported type");
}
}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">logNumber</span><span class="pl-kos">(</span><span class="pl-s1">v</span>: <span class="pl-smi">number</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"number:"</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">logString</span><span class="pl-kos">(</span><span class="pl-s1">v</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"string:"</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">foo1</span><span class="pl-kos">(</span><span class="pl-s1">v</span>: <span class="pl-smi">number</span><span class="pl-c1">|</span><span class="pl-smi">string</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">switch</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">v</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">case</span> <span class="pl-s">'number'</span>:
<span class="pl-en">logNumber</span><span class="pl-kos">(</span><span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">break</span><span class="pl-kos">;</span>
<span class="pl-k">case</span> <span class="pl-s">'string'</span>:
<span class="pl-en">logString</span><span class="pl-kos">(</span><span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">break</span><span class="pl-kos">;</span>
<span class="pl-k">default</span>:
<span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-smi">Error</span><span class="pl-kos">(</span><span class="pl-s">"unsupported type"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Argument of type 'string | number' is not assignable to parameter of type 'number'.
Type 'string' is not assignable to type 'number'."><pre class="notranslate"><code class="notranslate">Argument of type 'string | number' is not assignable to parameter of type 'number'.
Type 'string' is not assignable to type 'number'.
</code></pre></div>
<p dir="auto">I was forced to rewrite this using <code class="notranslate">if</code> statements.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function foo2(v: number|string) {
if (typeof v === 'number') {
logNumber(v);
} else if (typeof v === 'string') {
logString(v);
} else {
throw new Error("unsupported type");
}
}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">foo2</span><span class="pl-kos">(</span><span class="pl-s1">v</span>: <span class="pl-smi">number</span><span class="pl-c1">|</span><span class="pl-smi">string</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">v</span> <span class="pl-c1">===</span> <span class="pl-s">'number'</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">logNumber</span><span class="pl-kos">(</span><span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">v</span> <span class="pl-c1">===</span> <span class="pl-s">'string'</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">logString</span><span class="pl-kos">(</span><span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-smi">Error</span><span class="pl-kos">(</span><span class="pl-s">"unsupported type"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Please allow using switch statements as type guards.</p> | 1 |
<p dir="auto">sys.getsizeof() uses the <code class="notranslate">__sizeof__</code> method, if defined, to return a Python object's full memory footprint (including owned data areas that lay outside of the basic object structure).</p>
<p dir="auto">Currently:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> x = np.zeros((20000,))
>>> x.nbytes
160000
>>> sys.getsizeof(x)
80"><pre class="notranslate"><code class="notranslate">>>> x = np.zeros((20000,))
>>> x.nbytes
160000
>>> sys.getsizeof(x)
80
</code></pre></div>
<p dir="auto">On the other hand, since the underlying buffer can be shared by several objects, it's not obvious how non-misleading the answer would be.</p> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/1683" rel="nofollow">http://projects.scipy.org/numpy/ticket/1683</a> on 2010-11-22 by trac user ghazel, assigned to unknown.</em></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> sys.getsizeof(numpy.array([]))
80
>>> sys.getsizeof(numpy.array(range(100000)))
80"><pre class="notranslate"><code class="notranslate">>>> sys.getsizeof(numpy.array([]))
80
>>> sys.getsizeof(numpy.array(range(100000)))
80
</code></pre></div> | 1 |
<p dir="auto">I've got a numpy.ndarray of shape (24569,) (also tried with (24569,1)) with samples of random variables (not the distribution)</p>
<p dir="auto"><code class="notranslate">fit_alpha, fit_loc, fit_beta=stats.gamma.fit(data)</code></p>
<p dir="auto">results in fit_alpha and fit_loc being nans, while fit_beta = 1</p>
<p dir="auto"><code class="notranslate">I've tried to suggest starting parameters by using stats.gamma.fit(data,a=k,loc=0,scale=theta)</code><br>
where k = 4/skew^2, theta=variance/mean are the shape and scale parameters respectively.</p>
<p dir="auto">But I got the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
/usr/local/lib/python2.7/dist-packages/scipy/stats/_continuous_distns.pyc in fit(self, data, *args, **kwds)
1916 if floc is None:
1917 # loc is not fixed. Use the default fit method.
-> 1918 return super(gamma_gen, self).fit(data, *args, **kwds)
1919
1920 # Special case: loc is fixed.
/usr/local/lib/python2.7/dist-packages/scipy/stats/_distn_infrastructure.pyc in fit(self, data, *args, **kwds)
2126 # by now kwds must be empty, since everybody took what they needed
2127 if kwds:
-> 2128 raise TypeError("Unknown arguments: %s." % kwds)
2129
2130 vals = optimizer(func, x0, args=(ravel(data),), disp=0)
TypeError: Unknown arguments: {'a': 0.14115690248522836}.
"><pre class="notranslate"><code class="notranslate">
/usr/local/lib/python2.7/dist-packages/scipy/stats/_continuous_distns.pyc in fit(self, data, *args, **kwds)
1916 if floc is None:
1917 # loc is not fixed. Use the default fit method.
-> 1918 return super(gamma_gen, self).fit(data, *args, **kwds)
1919
1920 # Special case: loc is fixed.
/usr/local/lib/python2.7/dist-packages/scipy/stats/_distn_infrastructure.pyc in fit(self, data, *args, **kwds)
2126 # by now kwds must be empty, since everybody took what they needed
2127 if kwds:
-> 2128 raise TypeError("Unknown arguments: %s." % kwds)
2129
2130 vals = optimizer(func, x0, args=(ravel(data),), disp=0)
TypeError: Unknown arguments: {'a': 0.14115690248522836}.
</code></pre></div>
<p dir="auto">after using floc=0 as a parameter (which is not documented anywhere as far as I can tell) I got an exception pointing out that negative values are not allowed in data (I got one negative "error" value in the data) - after fixing this, I got results which made sense...</p>
<p dir="auto">The documentation on that fit function is lacking - it also does not mention that the parameters returned are shape, loc, scale, as well as that fa, floc and fscale are not suggestions of initial fit, but are constraints on the fit to keep these values fixed. There appears to be no way to suggest initial parameters.</p> | <p dir="auto">When fitting a distribution, it would be useful to be able to specify shape parameter starting values with keywords instead of args- eg</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="scipy.stats.gamma.fit(mydata, floc=0, a=2)"><pre class="notranslate"><code class="notranslate">scipy.stats.gamma.fit(mydata, floc=0, a=2)
</code></pre></div>
<p dir="auto">This is already allowed for scale and loc, but not for the shape params. It's easy to change, such as</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if self.shapes:
shapes = self.shapes.replace(',', ' ').split()
for i, s in enumerate(shapes):
args[i]=kwds.pop(s, args[i])"><pre class="notranslate"><code class="notranslate">if self.shapes:
shapes = self.shapes.replace(',', ' ').split()
for i, s in enumerate(shapes):
args[i]=kwds.pop(s, args[i])
</code></pre></div>
<p dir="auto">in either the rv_continuous.fit or rv_continuous._reduce_func</p> | 1 |
<p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Yes</li>
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Google Colab</li>
<li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: No</li>
<li>TensorFlow installed from (source or binary): binary</li>
<li>TensorFlow version (use command below): v2.0.0-beta1-5101-gc75bb66 2.0.0-rc0</li>
<li>Python version: 3</li>
<li>Bazel version (if compiling from source): No</li>
<li>GCC/Compiler version (if compiling from source): No</li>
<li>CUDA/cuDNN version: Unknown, from Colab</li>
<li>GPU model and memory: Unknown, from Colab</li>
</ul>
<p dir="auto"><strong>Describe the current behavior</strong><br>
When i rewrote my estimator-based model (Dataset + Feature columns) to keras i was able to run (train) it.</p>
<p dir="auto">But when i converted it to estimator as shown in migration guide <a href="https://www.tensorflow.org/beta/guide/migration_guide#estimators" rel="nofollow">https://www.tensorflow.org/beta/guide/migration_guide#estimators</a> it fails with error</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-7-6538390f0054> in <module>()
1 estimator = tf.keras.estimator.model_to_estimator(
----> 2 keras_model = model
3 )
9 frames
/usr/local/lib/python3.6/dist-packages/tensorflow_core/python/autograph/impl/api.py in wrapper(*args, **kwargs)
235 except Exception as e: # pylint:disable=broad-except
236 if hasattr(e, 'ag_error_metadata'):
--> 237 raise e.ag_error_metadata.to_exception(e)
238 else:
239 raise
ValueError: in converted code:
relative to /usr/local/lib/python3.6/dist-packages/tensorflow_core/python/feature_column:
sequence_feature_column.py:140 call
transformation_cache, self._state_manager)
feature_column_v2.py:3205 get_sequence_dense_tensor
self.categorical_column))
ValueError: In embedding_column: words_embedding. categorical_column must be of type SequenceCategoricalColumn to use SequenceFeatures. Suggested fix: Use one of sequence_categorical_column_with_*. Given (type <class 'tensorflow.python.feature_column.feature_column_v2.HashedCategoricalColumn'>): HashedCategoricalColumn(key='words', hash_bucket_size=1000, dtype=tf.string)"><pre class="notranslate"><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span>
<span class="pl-v">ValueError</span> <span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>)
<span class="pl-c1"><</span><span class="pl-s1">ipython</span><span class="pl-c1">-</span><span class="pl-s1">input</span><span class="pl-c1">-</span><span class="pl-c1">7</span><span class="pl-c1">-</span><span class="pl-c1">6538390</span><span class="pl-s1">f0054</span><span class="pl-c1">></span> <span class="pl-s1">in</span> <span class="pl-c1"><</span><span class="pl-s1">module</span><span class="pl-c1">></span>()
<span class="pl-c1">1</span> <span class="pl-s1">estimator</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">keras</span>.<span class="pl-s1">estimator</span>.<span class="pl-en">model_to_estimator</span>(
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">2</span> <span class="pl-s1">keras_model</span> <span class="pl-c1">=</span> <span class="pl-s1">model</span>
<span class="pl-c1">3</span> )
<span class="pl-c1">9</span> <span class="pl-s1">frames</span>
<span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">local</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">dist</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">tensorflow_core</span><span class="pl-c1">/</span><span class="pl-s1">python</span><span class="pl-c1">/</span><span class="pl-s1">autograph</span><span class="pl-c1">/</span><span class="pl-s1">impl</span><span class="pl-c1">/</span><span class="pl-s1">api</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">wrapper</span>(<span class="pl-c1">*</span><span class="pl-s1">args</span>, <span class="pl-c1">**</span><span class="pl-s1">kwargs</span>)
<span class="pl-c1">235</span> <span class="pl-s1">except</span> <span class="pl-v">Exception</span> <span class="pl-k">as</span> <span class="pl-s1">e</span>: <span class="pl-c"># pylint:disable=broad-except</span>
<span class="pl-c1">236</span> <span class="pl-k">if</span> <span class="pl-en">hasattr</span>(<span class="pl-s1">e</span>, <span class="pl-s">'ag_error_metadata'</span>):
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">237</span> <span class="pl-s1">raise</span> <span class="pl-s1">e</span>.<span class="pl-s1">ag_error_metadata</span>.<span class="pl-en">to_exception</span>(<span class="pl-s1">e</span>)
<span class="pl-c1">238</span> <span class="pl-k">else</span>:
<span class="pl-c1">239</span> <span class="pl-s1">raise</span>
<span class="pl-v">ValueError</span>: <span class="pl-s1">in</span> <span class="pl-s1">converted</span> <span class="pl-s1">code</span>:
<span class="pl-s1">relative</span> <span class="pl-s1">to</span> <span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">local</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">dist</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">tensorflow_core</span><span class="pl-c1">/</span><span class="pl-s1">python</span><span class="pl-c1">/</span><span class="pl-s1">feature_column</span>:
<span class="pl-s1">sequence_feature_column</span>.<span class="pl-s1">py</span>:<span class="pl-c1">140</span> <span class="pl-s1">call</span>
<span class="pl-s1">transformation_cache</span>, <span class="pl-s1">self</span>.<span class="pl-s1">_state_manager</span>)
<span class="pl-s1">feature_column_v2</span>.<span class="pl-s1">py</span>:<span class="pl-c1">3205</span> <span class="pl-s1">get_sequence_dense_tensor</span>
<span class="pl-s1">self</span>.<span class="pl-s1">categorical_column</span>))
<span class="pl-v">ValueError</span>: <span class="pl-v">In</span> <span class="pl-s1">embedding_column</span>: <span class="pl-s1">words_embedding</span>. <span class="pl-s1">categorical_column</span> <span class="pl-s1">must</span> <span class="pl-s1">be</span> <span class="pl-s1">of</span> <span class="pl-s1">type</span> <span class="pl-v">SequenceCategoricalColumn</span> <span class="pl-s1">to</span> <span class="pl-s1">use</span> <span class="pl-v">SequenceFeatures</span>. <span class="pl-v">Suggested</span> <span class="pl-s1">fix</span>: <span class="pl-v">Use</span> <span class="pl-s1">one</span> <span class="pl-s1">of</span> <span class="pl-s1">sequence_categorical_column_with_</span><span class="pl-c1">*</span>. <span class="pl-v">Given</span> (<span class="pl-s1">type</span> <span class="pl-c1"><</span><span class="pl-s1">class</span> <span class="pl-s">'tensorflow.python.feature_column.feature_column_v2.HashedCategoricalColumn'</span><span class="pl-c1">></span>): <span class="pl-v">HashedCategoricalColumn</span>(<span class="pl-s1">key</span><span class="pl-c1">=</span><span class="pl-s">'words'</span>, <span class="pl-s1">hash_bucket_size</span><span class="pl-c1">=</span><span class="pl-c1">1000</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">tf</span>.<span class="pl-s1">string</span>)</pre></div>
<p dir="auto"><strong>Describe the expected behavior</strong><br>
Working keras model should always be convertable to estimator.</p>
<p dir="auto"><strong>Code to reproduce the issue</strong><br>
Here is an example <a href="https://colab.research.google.com/drive/11pWyltRzvQPPvM2dWQ8EqxafB9ByCxNn" rel="nofollow">https://colab.research.google.com/drive/11pWyltRzvQPPvM2dWQ8EqxafB9ByCxNn</a><br>
There are 2 cases shown. First i show that keras model with sequence features is working. See <code class="notranslate">model.fit_generator</code>.<br>
And then i show that conversion to estimator fails.</p> | <hr>
<h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: Yes</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Ubuntu 16.04</li>
<li><strong>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device</strong>: N/A</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: Source</li>
<li><strong>TensorFlow version (use command below)</strong>: 1.8</li>
<li><strong>Python version</strong>: 2.7</li>
<li><strong>Bazel version (if compiling from source)</strong>: 0.11.1</li>
<li><strong>GCC/Compiler version (if compiling from source)</strong>: gcc4.8</li>
<li><strong>CUDA/cuDNN version</strong>: N/A</li>
<li><strong>GPU model and memory</strong>: AMD R9 Nano</li>
<li><strong>Exact command to reproduce</strong>: N/A</li>
</ul>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">Describe the problem clearly here. Be sure to convey here why it's a bug in TensorFlow or a feature request.</p>
<p dir="auto">Hi,<br>
We are working on a SYCL implementation of TensorFlow. When implementing the backend for the scatter_nd operation we were wondering what is the behavior of concurrent updates.<br>
The test in <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/kernel_tests/scatter_nd_ops_test.py#L231">scatter_nd_ops_test.py</a> assumes that the operations are applied in a non-deterministic order, which matches what the <a href="https://www.tensorflow.org/api_docs/python/tf/scatter_nd" rel="nofollow">documentation</a> says. This corner case is costly to handle on the GPU and it seems that the <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/kernels/scatter_nd_op_gpu.cu.cc#L81">CUDA</a> implementation does not handle it, neither does ours.</p>
<p dir="auto">The documentation says:</p>
<blockquote>
<p dir="auto">The order in which updates are applied is nondeterministic, so the output will be nondeterministic if indices contains duplicates.</p>
</blockquote>
<p dir="auto">The test checks for Add and Sub of two concurrent indices to result in the total summation (or subtraction) of both updates to apply (order of additions is nondeterministic but the result is). On a replace operation the output would be nondeterministic (hence the test not checking for it).<br>
With a non blocking GPU implementation the second update applied to an index may (and will probably) overwrite the first update from a different thread.</p>
<p dir="auto">Our question then is:<br>
Is the test wrong to test that concurrent summation & subtraction is deterministic (in which case we would be happy to write a PR to correct that)?<br>
Otherwise, is the CUDA implementation wrong? In which case the documentation should probably be more descriptive on what happens with concurrent add/sub compared to replace.</p>
<p dir="auto">Thanks,</p> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/fluent-ffmpeg</code> package and had problems.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I understand that <code class="notranslate">@types</code> package versions <a href="https://github.com/DefinitelyTyped/DefinitelyTyped#how-do-definitely-typed-package-versions-relate-to-versions-of-the-corresponding-library">do not follow SemVer</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have a question that is inappropriate for <a href="https://stackoverflow.com/" rel="nofollow">StackOverflow</a>. (Please ask any appropriate questions there).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond.
<ul dir="auto">
<li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tcaesvk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tcaesvk">@tcaesvk</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/DingWeizhe/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DingWeizhe">@DingWeizhe</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mabidina/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mabidina">@mabidina</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/hados99/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/hados99">@hados99</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Buzzertech/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Buzzertech">@Buzzertech</a>.</li>
</ul>
</li>
</ul>
<p dir="auto">In the <code class="notranslate">fluent-ffmpeg</code> <a href="https://github.com/fluent-ffmpeg/node-fluent-ffmpeg#presetpreset-use-fluent-ffmpeg-preset">documentation</a> it is said:</p>
<blockquote>
<p dir="auto">The second kind of preset is preset functions. To use those, pass a function which takes an FfmpegCommand as a parameter.</p>
</blockquote>
<p dir="auto">And a code example:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function myPreset(command) {
command.format('avi').size('720x?');
}
ffmpeg('/path/to/file.avi').preset(myPreset);"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">myPreset</span><span class="pl-kos">(</span><span class="pl-s1">command</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">command</span><span class="pl-kos">.</span><span class="pl-en">format</span><span class="pl-kos">(</span><span class="pl-s">'avi'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">size</span><span class="pl-kos">(</span><span class="pl-s">'720x?'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">ffmpeg</span><span class="pl-kos">(</span><span class="pl-s">'/path/to/file.avi'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">preset</span><span class="pl-kos">(</span><span class="pl-s1">myPreset</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">According to the example code, the preset function should return <code class="notranslate">void</code>.</p>
<p dir="auto">We have the following type<br>
</p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/DefinitelyTyped/DefinitelyTyped/blob/e7e4e74d63eb242a0c0bdee70f914fc8d6c0178e/types/fluent-ffmpeg/index.d.ts#L42">DefinitelyTyped/types/fluent-ffmpeg/index.d.ts</a>
</p>
<p class="mb-0 color-fg-muted">
Line 42
in
<a data-pjax="true" class="commit-tease-sha" href="/DefinitelyTyped/DefinitelyTyped/commit/e7e4e74d63eb242a0c0bdee70f914fc8d6c0178e">e7e4e74</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L42" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="42"></td>
<td id="LC42" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">type</span> <span class="pl-smi">GetPreset</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">command</span>: <span class="pl-smi">FfmpegCommand</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">string</span><span class="pl-kos">;</span> </td>
</tr>
</tbody></table>
</div>
</div>
which does not match the expected signature of the preset function. I believe it should be<p></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="type GetPreset = (command: FfmpegCommand) => void;"><pre class="notranslate"><span class="pl-s1">type</span> <span class="pl-v">GetPreset</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">command</span>: <span class="pl-v">FfmpegCommand</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-k">void</span><span class="pl-s1"></span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Also, in this case the type name itself is not very much suitable, it should be something like <code class="notranslate">PresetFunction</code>.</p>
<p dir="auto">Besides that, I guess there are two typos here (pr<strong>o</strong>set and p<strong>n</strong>reset):<br>
</p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/DefinitelyTyped/DefinitelyTyped/blob/e7e4e74d63eb242a0c0bdee70f914fc8d6c0178e/types/fluent-ffmpeg/index.d.ts#L362-L363">DefinitelyTyped/types/fluent-ffmpeg/index.d.ts</a>
</p>
<p class="mb-0 color-fg-muted">
Lines 362 to 363
in
<a data-pjax="true" class="commit-tease-sha" href="/DefinitelyTyped/DefinitelyTyped/commit/e7e4e74d63eb242a0c0bdee70f914fc8d6c0178e">e7e4e74</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L362" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="362"></td>
<td id="LC362" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">usingPreset</span><span class="pl-kos">(</span><span class="pl-s1">proset</span>: <span class="pl-smi">string</span> <span class="pl-c1">|</span> <span class="pl-smi">GetPreset</span><span class="pl-kos">)</span>: <span class="pl-smi">FfmpegCommand</span><span class="pl-kos">;</span> </td>
</tr>
<tr class="border-0">
<td id="L363" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="363"></td>
<td id="LC363" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">pnreset</span><span class="pl-kos">(</span><span class="pl-s1">proset</span>: <span class="pl-smi">string</span> <span class="pl-c1">|</span> <span class="pl-smi">GetPreset</span><span class="pl-kos">)</span>: <span class="pl-smi">FfmpegCommand</span><span class="pl-kos">;</span> </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">There is another method spelled properly which seems to be a duplicate of the misspelled one mentioned above:<br>
</p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/DefinitelyTyped/DefinitelyTyped/blob/e7e4e74d63eb242a0c0bdee70f914fc8d6c0178e/types/fluent-ffmpeg/index.d.ts#L323">DefinitelyTyped/types/fluent-ffmpeg/index.d.ts</a>
</p>
<p class="mb-0 color-fg-muted">
Line 323
in
<a data-pjax="true" class="commit-tease-sha" href="/DefinitelyTyped/DefinitelyTyped/commit/e7e4e74d63eb242a0c0bdee70f914fc8d6c0178e">e7e4e74</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L323" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="323"></td>
<td id="LC323" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">preset</span><span class="pl-kos">(</span><span class="pl-s1">format</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span>: <span class="pl-smi">FfmpegCommand</span><span class="pl-kos">;</span> </td>
</tr>
</tbody></table>
</div>
</div>
<p></p> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond.
<ul dir="auto">
<li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Flarna/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Flarna">@Flarna</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/SimonSchick/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/SimonSchick">@SimonSchick</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Semigradsky/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Semigradsky">@Semigradsky</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rbuckton/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rbuckton">@rbuckton</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mjbvz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mjbvz">@mjbvz</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/G-Rath/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/G-Rath">@G-Rath</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sandersn/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sandersn">@sandersn</a></li>
</ul>
</li>
</ul>
<ul dir="auto">
<li><code class="notranslate">assert.strict.equal</code> should not be deprecated: <a href="https://nodejs.org/dist/latest-v14.x/docs/api/assert.html#assert_assert_equal_actual_expected_message" rel="nofollow">https://nodejs.org/dist/latest-v14.x/docs/api/assert.html#assert_assert_equal_actual_expected_message</a></li>
<li>The problem is that <code class="notranslate">assert.strict</code> uses <code class="notranslate">typeof assert</code> here: <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/assert.d.ts">https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/assert.d.ts</a></li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/526114/94362580-a5c5fe00-00bc-11eb-971c-1146a22755b8.png"><img width="568" alt="definitely typed assert bug" src="https://user-images.githubusercontent.com/526114/94362580-a5c5fe00-00bc-11eb-971c-1146a22755b8.png" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">Regarding <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="48718782" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/9556" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/9556/hovercard" href="https://github.com/ansible/ansible/issues/9556">#9556</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="44085865" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/9172" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/9172/hovercard" href="https://github.com/ansible/ansible/issues/9172">#9172</a>, I would like to suggest the following feature request:<br>
In ansible-playbooks support decrypting files on copy:<br>
<code class="notranslate">copy: src=somefile.key dest=/etc/apache2/ssl/ decrypt=yes</code><br>
Where somefile.key is encrypted with ansible-vault. That would be better usability.</p> | <h5 dir="auto">Issue Type:</h5>
<p dir="auto">Bug Report</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto"><code class="notranslate">ansible 1.8.2</code></p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">Mac OSX 10.9 running against Ubuntu 14.04.</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">When defining a string, trailing <code class="notranslate">0</code>s get removed.</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">In my inventory:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="server apples="1.20""><pre class="notranslate"><code class="notranslate">server apples="1.20"
</code></pre></div>
<p dir="auto">In my playbook:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="debug msg="{{ apples }}""><pre class="notranslate"><code class="notranslate">debug msg="{{ apples }}"
</code></pre></div>
<p dir="auto">Output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK: [playbook | debug msg="{{ apples }}"] **************************
ok: [server] => {
"msg": "1.2"
}"><pre class="notranslate"><code class="notranslate">TASK: [playbook | debug msg="{{ apples }}"] **************************
ok: [server] => {
"msg": "1.2"
}
</code></pre></div>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">1.20</p>
<h5 dir="auto">Actual Results:</h5>
<p dir="auto">1.2</p> | 0 |
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="56927930" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/22063" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/22063/hovercard" href="https://github.com/rust-lang/rust/issues/22063">#22063</a> suggested adding a banner stating "this version is really old" but modifying rust after the fact wasn't well liked. A better way would be to add a conditional banner which checks rust-lang or something similar to see if something new has been released. It should only appear if it's too old or something similar.</p>
<p dir="auto">It could even have grades:</p>
<ul dir="auto">
<li>Yellow: soon to be out of date</li>
<li>Orange: is out of date</li>
<li>Red: way out of date</li>
</ul>
<p dir="auto">Recently it came up on <a href="http://www.reddit.com/r/rust/comments/3672gy/is_the_documentation_for_strsliceslice_wrong/" rel="nofollow">reddit</a>.</p> | <p dir="auto">Quick over: the <code class="notranslate">cfg()</code> attribute can't be used to do multiple-declaration of rust types/fns/mods along multiple-dimensions of consideration (OS, arch) without signifigant hurdle-jumping-through'ing. I spoke with <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/graydon/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/graydon">@graydon</a> about this, briefly, on IRC and he was under the impression that commas in a list passed to <code class="notranslate">cfg()</code> would behave like an <code class="notranslate">&&</code>, but it seems, from my observation, that they act more like <code class="notranslate">||</code>.</p>
<p dir="auto">Here's a test case:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="use std;
import io;
fn main() {
io::println("#[cfg()] failure test case");
let inst = new_foo_inst();
}
#[cfg(target_os="linux", target_arch="x86_64")]
type foo = {
a: int, b: int
};
#[cfg(target_os="linux", target_arch="x86")]
type foo = {
a: int, b: int, c: int
};
fn new_foo_inst() -> foo {
ret new_foo_arch();
#[cfg(target_arch="x86_64")]
fn new_foo_arch() -> foo {
ret { a: 0, b: 0 };
}
#[cfg(target_arch="x86")]
fn new_foo_arch() -> foo {
ret { a: 0, b: 0, c: 0};
}
}"><pre class="notranslate"><code class="notranslate">use std;
import io;
fn main() {
io::println("#[cfg()] failure test case");
let inst = new_foo_inst();
}
#[cfg(target_os="linux", target_arch="x86_64")]
type foo = {
a: int, b: int
};
#[cfg(target_os="linux", target_arch="x86")]
type foo = {
a: int, b: int, c: int
};
fn new_foo_inst() -> foo {
ret new_foo_arch();
#[cfg(target_arch="x86_64")]
fn new_foo_arch() -> foo {
ret { a: 0, b: 0 };
}
#[cfg(target_arch="x86")]
fn new_foo_arch() -> foo {
ret { a: 0, b: 0, c: 0};
}
}
</code></pre></div>
<p dir="auto">Will produce this compiler output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="./cfg.rs:10:0: 12:2 error: duplicate definition of type foo
./cfg.rs:10 type foo = {
./cfg.rs:11 a: int, b: int
./cfg.rs:12 };"><pre class="notranslate"><code class="notranslate">./cfg.rs:10:0: 12:2 error: duplicate definition of type foo
./cfg.rs:10 type foo = {
./cfg.rs:11 a: int, b: int
./cfg.rs:12 };
</code></pre></div>
<p dir="auto">There are workarounds, of course (As my <code class="notranslate">new_foo_inst()</code> impl shows, can acheive similar with nested branches of <code class="notranslate">os::arch</code> modules). But I think we can do better.</p>
<p dir="auto">I know this isn't high-priority (as I mentioned, I've already worked around the problem... and I'm not after a turing-completeness for <code class="notranslate">cfg()</code> :) , but it would propose changes the <code class="notranslate">cfg()</code> impl to:</p>
<ol dir="auto">
<li>Change the <code class="notranslate">,</code> in <code class="notranslate">cfg()</code> to be <code class="notranslate">||</code>.</li>
<li>Add <code class="notranslate">&&</code> as a supported separator, with all that it implies</li>
<li>Support arbitrary, if-like predicate nesting within <code class="notranslate">cfg()</code> using parenthesis</li>
</ol>
<p dir="auto">Also, interesting that a single <code class="notranslate">=</code> is used for "equals", here. Trying hard to avoid the impulse to not be pedantic about consistency across the language (<code class="notranslate">==</code> is used for such things in the main grammar).</p>
<p dir="auto">This is totally outside the level of my experience with the language internals so far, and I gather would involve syntax changes. I'm interested in getting my feet wet, gently, with this. Assuming that such a change would be accepted, where would I (or anyone else interested in this work) start?</p> | 0 |
<p dir="auto">Re-opening <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="12592940" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/2526" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/2526/hovercard" href="https://github.com/ansible/ansible/issues/2526">#2526</a> as it was closed as duplicate. It is still reproducible in 1.9.01</p> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">docker_container module</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.2.1.0
config file = /Users/alebedev/projects/ansible/ansible.cfg
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.2.1.0
config file = /Users/alebedev/projects/ansible/ansible.cfg
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">port_published: 'all' is not working in docker_container module and return the following error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [pool : Starting a container] *************************
fatal: [pool]: FAILED! => {
"changed": false,
"failed": true
}
MSG:
Error starting container 8ccea4c73191b608575d78c2a6ecb03024ae4e5f5430ac6f292b5b6fe2106f70: 500 Server Error: Internal Server Error ("{"message":"driver failed programming external connectivity on endpoint pool (485e1d86db8c7d7d1bcc3ecd645a8a899801ec44cb3bc9c3b45d3b9c8734172d): (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 32789 -j DNAT --to-destination 172.17.0.2:0 ! -i docker0: iptables v1.4.21: Port `0' not valid\n\nTry `iptables -h' or 'iptables --help' for more information.\n (exit status 2))"}")"><pre class="notranslate"><code class="notranslate">TASK [pool : Starting a container] *************************
fatal: [pool]: FAILED! => {
"changed": false,
"failed": true
}
MSG:
Error starting container 8ccea4c73191b608575d78c2a6ecb03024ae4e5f5430ac6f292b5b6fe2106f70: 500 Server Error: Internal Server Error ("{"message":"driver failed programming external connectivity on endpoint pool (485e1d86db8c7d7d1bcc3ecd645a8a899801ec44cb3bc9c3b45d3b9c8734172d): (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 32789 -j DNAT --to-destination 172.17.0.2:0 ! -i docker0: iptables v1.4.21: Port `0' not valid\n\nTry `iptables -h' or 'iptables --help' for more information.\n (exit status 2))"}")
</code></pre></div>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
- name: Starting a container
docker_container:
name: pool
image: pool
privileged: true
network_mode: bridge
exposed_ports: "{{ ports }}"
published_ports: 'all'
detach: true
volumes:
restart_policy: on-failure
interactive: true
state: started"><pre class="notranslate">- <span class="pl-ent">name</span>: <span class="pl-s">Starting a container</span>
<span class="pl-ent">docker_container</span>:
<span class="pl-ent">name</span>: <span class="pl-s">pool</span>
<span class="pl-ent">image</span>: <span class="pl-s">pool</span>
<span class="pl-ent">privileged</span>: <span class="pl-c1">true</span>
<span class="pl-ent">network_mode</span>: <span class="pl-s">bridge</span>
<span class="pl-ent">exposed_ports</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ ports }}<span class="pl-pds">"</span></span>
<span class="pl-ent">published_ports</span>: <span class="pl-s"><span class="pl-pds">'</span>all<span class="pl-pds">'</span></span>
<span class="pl-ent">detach</span>: <span class="pl-c1">true</span>
<span class="pl-ent">volumes</span>:
<span class="pl-ent">restart_policy</span>: <span class="pl-s">on-failure</span>
<span class="pl-ent">interactive</span>: <span class="pl-c1">true</span>
<span class="pl-ent">state</span>: <span class="pl-s">started</span></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">Container successfully up and running with all the exposed port - published</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fatal: [pool]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_args": {
"api_version": null,
"blkio_weight": null,
"cacert_path": null,
"capabilities": null,
"cert_path": null,
"cleanup": false,
"command": null,
"cpu_period": null,
"cpu_quota": null,
"cpu_shares": null,
"cpuset_cpus": null,
"cpuset_mems": null,
"debug": false,
"detach": true,
"devices": null,
"dns_opts": null,
"dns_search_domains": null,
"dns_servers": null,
"docker_host": null,
"entrypoint": null,
"env": null,
"env_file": null,
"etc_hosts": null,
"exposed_ports": [
"8080:8080",
"5000-5040:5000-5040",
"7100-7140:7100-7140",
"7700-7740:7700-7740"
],
"filter_logger": false,
"force_kill": false,
"groups": null,
"hostname": null,
"ignore_image": false,
"image": "pool",
"interactive": true,
"ipc_mode": null,
"keep_volumes": true,
"kernel_memory": null,
"key_path": null,
"kill_signal": null,
"labels": null,
"links": null,
"log_driver": null,
"log_options": null,
"mac_address": null,
"memory": "0",
"memory_reservation": null,
"memory_swap": null,
"memory_swappiness": null,
"name": "pool",
"network_mode": "bridge",
"networks": null,
"oom_killer": null,
"oom_score_adj": null,
"paused": false,
"pid_mode": null,
"privileged": true,
"published_ports": [
"all"
],
"pull": false,
"purge_networks": false,
"read_only": false,
"recreate": false,
"restart": false,
"restart_policy": "on-failure",
"restart_retries": null,
"security_opts": null,
"shm_size": null,
"ssl_version": null,
"state": "started",
"stop_signal": null,
"stop_timeout": null,
"timeout": null,
"tls": null,
"tls_hostname": null,
"tls_verify": null,
"trust_image_content": false,
"tty": false,
"ulimits": null,
"user": null,
"uts": null,
"volume_driver": null
},
"module_name": "docker_container"
}
}
MSG:
Error starting container 8ccea4c73191b608575d78c2a6ecb03024ae4e5f5430ac6f292b5b6fe2106f70: 500 Server Error: Internal Server Error ("{"message":"driver failed programming external connectivity on endpoint pool (ed49422f76e5f1421e07c790586776b8ea14b4db7191aa04953719a2a95e52e7): (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 32800 -j DNAT --to-destination 172.17.0.2:0 ! -i docker0: iptables v1.4.21: Port `0' not valid\n\nTry `iptables -h' or 'iptables --help' for more information.\n (exit status 2))"}")"><pre class="notranslate"><code class="notranslate">fatal: [pool]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_args": {
"api_version": null,
"blkio_weight": null,
"cacert_path": null,
"capabilities": null,
"cert_path": null,
"cleanup": false,
"command": null,
"cpu_period": null,
"cpu_quota": null,
"cpu_shares": null,
"cpuset_cpus": null,
"cpuset_mems": null,
"debug": false,
"detach": true,
"devices": null,
"dns_opts": null,
"dns_search_domains": null,
"dns_servers": null,
"docker_host": null,
"entrypoint": null,
"env": null,
"env_file": null,
"etc_hosts": null,
"exposed_ports": [
"8080:8080",
"5000-5040:5000-5040",
"7100-7140:7100-7140",
"7700-7740:7700-7740"
],
"filter_logger": false,
"force_kill": false,
"groups": null,
"hostname": null,
"ignore_image": false,
"image": "pool",
"interactive": true,
"ipc_mode": null,
"keep_volumes": true,
"kernel_memory": null,
"key_path": null,
"kill_signal": null,
"labels": null,
"links": null,
"log_driver": null,
"log_options": null,
"mac_address": null,
"memory": "0",
"memory_reservation": null,
"memory_swap": null,
"memory_swappiness": null,
"name": "pool",
"network_mode": "bridge",
"networks": null,
"oom_killer": null,
"oom_score_adj": null,
"paused": false,
"pid_mode": null,
"privileged": true,
"published_ports": [
"all"
],
"pull": false,
"purge_networks": false,
"read_only": false,
"recreate": false,
"restart": false,
"restart_policy": "on-failure",
"restart_retries": null,
"security_opts": null,
"shm_size": null,
"ssl_version": null,
"state": "started",
"stop_signal": null,
"stop_timeout": null,
"timeout": null,
"tls": null,
"tls_hostname": null,
"tls_verify": null,
"trust_image_content": false,
"tty": false,
"ulimits": null,
"user": null,
"uts": null,
"volume_driver": null
},
"module_name": "docker_container"
}
}
MSG:
Error starting container 8ccea4c73191b608575d78c2a6ecb03024ae4e5f5430ac6f292b5b6fe2106f70: 500 Server Error: Internal Server Error ("{"message":"driver failed programming external connectivity on endpoint pool (ed49422f76e5f1421e07c790586776b8ea14b4db7191aa04953719a2a95e52e7): (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 32800 -j DNAT --to-destination 172.17.0.2:0 ! -i docker0: iptables v1.4.21: Port `0' not valid\n\nTry `iptables -h' or 'iptables --help' for more information.\n (exit status 2))"}")
</code></pre></div> | 0 |
<h3 dir="auto">Description</h3>
<p dir="auto">Hey Team Airflow!<br>
Can you please add support for v4.1.0 of flask-appbuilder?<br>
I keep getting vulnerabilities issues that got fixed -<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1203358094" data-permission-text="Title is private" data-url="https://github.com/dpgaspar/Flask-AppBuilder/issues/1831" data-hovercard-type="pull_request" data-hovercard-url="/dpgaspar/Flask-AppBuilder/pull/1831/hovercard" href="https://github.com/dpgaspar/Flask-AppBuilder/pull/1831">dpgaspar/Flask-AppBuilder#1831</a></p>
<h3 dir="auto">Use case/motivation</h3>
<p dir="auto">After executing safety <a href="https://pypi.org/project/safety/" rel="nofollow">https://pypi.org/project/safety/</a> we get that there are vulnerability issues with all versions under v4.1.0</p>
<h3 dir="auto">Related issues</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit a PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <h3 dir="auto">Body</h3>
<p dir="auto">FAB 4.0.0 keeps a lot of our imporant dependencies from upgrading - including some with CVEs. We should make the effort to upgrade FAB to 4.0.0 soon to make sure we have it in 2.4.0 (or if possible even in 2.3.* line.</p>
<p dir="auto">It has a number of UI dependencies though - including breaking changes in some libraries like PyJWT especially around authentication, so rather serious testing is needed I think.</p>
<h3 dir="auto">Committer</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I acknowledge that I am a maintainer/committer of the Apache Airflow project.</li>
</ul> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">There is no need for the children prop type to be required. One can set the content with <code class="notranslate">dangerouslySetInnerHTML</code>.<br>
Anyways, it was not required with <code class="notranslate">flow-types</code> implementation.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">A warning is logged if Typography is an empty tag</p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>1.0.0-beta.25</td>
</tr>
<tr>
<td>React</td>
<td>16.2.0</td>
</tr>
</tbody>
</table> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">When overriding the class name <code class="notranslate">imgFullHeight </code> via <code class="notranslate">classes </code> property injection (according to the docs <a href="https://material-ui-next.com/api/grid-list-tile/" rel="nofollow">here</a>) an error occurs:</p>
<blockquote>
<p dir="auto">InvalidCharacterError<br>
Failed to execute 'add' on 'DOMTokenList': The token provided ('MuiGridListTile-imgFullHeight-558 TitlebarGridList-buggyClass-554') contains HTML space characters, which are not valid in tokens.</p>
</blockquote>
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">The sandbox is a copy-pasta from the <a href="https://github.com/mui-org/material-ui/blob/v1-beta/docs/src/pages/demos/grid-list/TitlebarGridList.js">demo of the docs</a>, with an added class called <code class="notranslate">buggyClass</code></p>
<p dir="auto"><a href="https://codesandbox.io/s/72mv0nz90q" rel="nofollow"><img src="https://camo.githubusercontent.com/90808661433696bc57dce8d4ad732307b5cec6270e6b846f114dcd7ee7f9458a/68747470733a2f2f636f646573616e64626f782e696f2f7374617469632f696d672f706c61792d636f646573616e64626f782e737667" alt="Edit Bug report material-ui imgFullHeight" data-canonical-src="https://codesandbox.io/static/img/play-codesandbox.svg" style="max-width: 100%;"></a></p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>1.0.0-beta.26</td>
</tr>
<tr>
<td>React</td>
<td>16.2.0</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome 63.0.3239.132</td>
</tr>
</tbody>
</table> | 0 |
<h3 dir="auto">Problem</h3>
<p dir="auto">I'd like to display equations using matplotlib in realtime. However, matrix and array require usetex=true and slows down rendering significantly.</p>
<h3 dir="auto">Proposed solution</h3>
<p dir="auto">It is very helpful if you could implement the matrix or array to work without usetex=true.</p> | <p dir="auto"><a href="https://sourceforge.net/tracker/?func=detail&aid=2766156&group_id=80706&atid=560723" rel="nofollow">Original report at SourceForge, opened Wed Apr 15 14:40:54 2009</a></p>
<p dir="auto">MPL currently has great math support for single line equations, but not for multiple line ones. We ran into this problem when generating docs using sphinx. The following snippet:</p>
<h3 dir="auto">/begin</h3>
<p dir="auto">.. math::</p>
<p dir="auto">E(t) = x + \delta(t)</p>
<p dir="auto">This type of experiment can be represented by two counting processes<br>
:math:<code class="notranslate">(E_a, E_b)</code> defined as</p>
<p dir="auto">.. math::</p>
<p dir="auto">\begin{aligned}<br>
E_a(t) &= a + \delta(t) <br>
E_b(t) &= b + \delta(t)<br>
\end{aligned}</p>
<h3 dir="auto">/end</h3>
<p dir="auto">has one single-line displayed equation, one inline and one multiline chunk. The first two are rendered fine by MPL, but the latter fails. It would be great to have MPL support this.</p>
<p dir="auto">While multiline equations are not too common in plots, they could be very useful in certain cases, if this feature was supported.</p> | 1 |
<p dir="auto">Steps to reproduce:</p>
<ol dir="auto">
<li>Create new empty ASP.NET project in Visual Studio</li>
<li>Add TypeScript file to project</li>
<li>Accept prompt to add TypeScript functionality to project</li>
<li>From command-line, build the solution:</li>
</ol>
<p dir="auto"><code class="notranslate">msbuild /p:DeployOnBuild=true /p:EnablePackageProcessLoggingAndAssert=true</code></p>
<p dir="auto">The following error is logged:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(PipelineCollectFilesPhase target) ->
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\Microsoft.Web.Publishing.targets(1289,5): error : The following two items have duplicate item metadata %(DestinationRelativePath). The two items data are <Item Name="MyScript.js"><DestinationRelativePath>MyScript.js</DestinationRelativePath><Exclude>False</Exclude><FromTarget>Unknown</FromTarget><Category>Run</Category><ProjectFileType>Default</ProjectFileType><OriginalItemSpec>MyScript.js</OriginalItemSpec><TargetPath>MyScript.js</TargetPath><FullPath>C:\dev\Sandbox\WebApplication8\WebApplication8\MyScript.js</FullPath><RootDir>C:\</RootDir><Filename>MyScript</Filename><Extension>.js</Extension><RelativeDir></RelativeDir><Directory>dev\Sandbox\WebApplication8\WebApplication8\</Directory><RecursiveDir></RecursiveDir><Identity>MyScript.js</Identity><ModifiedTime>2015-06-25 19:50:36.0037913</ModifiedTime><CreatedTime>2015-06-25 19:50:35.7134134</CreatedTime><AccessedTime>2015-06-25 19:50:35.7134134</AccessedTime><DefiningProjectFullPath>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\Microsoft.TypeScript.targets</DefiningProjectFullPath><DefiningProjectDirectory>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\</DefiningProjectDirectory><DefiningProjectName>Microsoft.TypeScript</DefiningProjectName><DefiningProjectExtension>.targets</DefiningProjectExtension></Item> and <Item Name="MyScript.js"><DestinationRelativePath>MyScript.js</DestinationRelativePath><Exclude>False</Exclude><FromTarget>CollectFilesFromContent</FromTarget><Category>Run</Category><ProjectFileType>Default</ProjectFileType><FullPath>C:\dev\Sandbox\WebApplication8\WebApplication8\MyScript.js</FullPath><RootDir>C:\</RootDir><Filename>MyScript</Filename><Extension>.js</Extension><RelativeDir></RelativeDir><Directory>dev\Sandbox\WebApplication8\WebApplication8\</Directory><RecursiveDir></RecursiveDir><Identity>MyScript.js</Identity><ModifiedTime>2015-06-25 19:50:36.0037913</ModifiedTime><CreatedTime>2015-06-25 19:50:35.7134134</CreatedTime><AccessedTime>2015-06-25 19:50:35.7134134</AccessedTime><DefiningProjectFullPath>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\CollectFiles\Microsoft.Web.Publishing.OnlyFilesToRunTheApp.targets</DefiningProjectFullPath><DefiningProjectDirectory>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\CollectFiles\</DefiningProjectDirectory><DefiningProjectName>Microsoft.Web.Publishing.OnlyFilesToRunTheApp</DefiningProjectName><DefiningProjectExtension>.targets</DefiningProjectExtension></Item>. [C:\dev\Sandbox\WebApplication8\WebApplication8\WebApplication8.csproj]
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\Microsoft.Web.Publishing.targets(1289,5): error : The following two items have duplicate item metadata %(DestinationRelativePath). The two items data are <Item Name="MyScript.js.map"><DestinationRelativePath>MyScript.js.map</DestinationRelativePath><Exclude>False</Exclude><FromTarget>Unknown</FromTarget><Category>Run</Category><ProjectFileType>Default</ProjectFileType><OriginalItemSpec>MyScript.js.map</OriginalItemSpec><TargetPath>MyScript.js.map</TargetPath><FullPath>C:\dev\Sandbox\WebApplication8\WebApplication8\MyScript.js.map</FullPath><RootDir>C:\</RootDir><Filename>MyScript.js</Filename><Extension>.map</Extension><RelativeDir></RelativeDir><Directory>dev\Sandbox\WebApplication8\WebApplication8\</Directory><RecursiveDir></RecursiveDir><Identity>MyScript.js.map</Identity><ModifiedTime>2015-06-25 19:50:35.7124176</ModifiedTime><CreatedTime>2015-06-25 19:50:35.7124176</CreatedTime><AccessedTime>2015-06-25 19:50:35.7124176</AccessedTime><DefiningProjectFullPath>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\Microsoft.TypeScript.targets</DefiningProjectFullPath><DefiningProjectDirectory>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\</DefiningProjectDirectory><DefiningProjectName>Microsoft.TypeScript</DefiningProjectName><DefiningProjectExtension>.targets</DefiningProjectExtension></Item> and <Item Name="MyScript.js.map"><DestinationRelativePath>MyScript.js.map</DestinationRelativePath><Exclude>False</Exclude><FromTarget>CollectFilesFromContent</FromTarget><Category>Run</Category><ProjectFileType>Default</ProjectFileType><FullPath>C:\dev\Sandbox\WebApplication8\WebApplication8\MyScript.js.map</FullPath><RootDir>C:\</RootDir><Filename>MyScript.js</Filename><Extension>.map</Extension><RelativeDir></RelativeDir><Directory>dev\Sandbox\WebApplication8\WebApplication8\</Directory><RecursiveDir></RecursiveDir><Identity>MyScript.js.map</Identity><ModifiedTime>2015-06-25 19:50:35.7124176</ModifiedTime><CreatedTime>2015-06-25 19:50:35.7124176</CreatedTime><AccessedTime>2015-06-25 19:50:35.7124176</AccessedTime><DefiningProjectFullPath>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\CollectFiles\Microsoft.Web.Publishing.OnlyFilesToRunTheApp.targets</DefiningProjectFullPath><DefiningProjectDirectory>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\CollectFiles\</DefiningProjectDirectory><DefiningProjectName>Microsoft.Web.Publishing.OnlyFilesToRunTheApp</DefiningProjectName><DefiningProjectExtension>.targets</DefiningProjectExtension></Item>. [C:\dev\Sandbox\WebApplication8\WebApplication8\WebApplication8.csproj]"><pre class="notranslate"><code class="notranslate">(PipelineCollectFilesPhase target) ->
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\Microsoft.Web.Publishing.targets(1289,5): error : The following two items have duplicate item metadata %(DestinationRelativePath). The two items data are <Item Name="MyScript.js"><DestinationRelativePath>MyScript.js</DestinationRelativePath><Exclude>False</Exclude><FromTarget>Unknown</FromTarget><Category>Run</Category><ProjectFileType>Default</ProjectFileType><OriginalItemSpec>MyScript.js</OriginalItemSpec><TargetPath>MyScript.js</TargetPath><FullPath>C:\dev\Sandbox\WebApplication8\WebApplication8\MyScript.js</FullPath><RootDir>C:\</RootDir><Filename>MyScript</Filename><Extension>.js</Extension><RelativeDir></RelativeDir><Directory>dev\Sandbox\WebApplication8\WebApplication8\</Directory><RecursiveDir></RecursiveDir><Identity>MyScript.js</Identity><ModifiedTime>2015-06-25 19:50:36.0037913</ModifiedTime><CreatedTime>2015-06-25 19:50:35.7134134</CreatedTime><AccessedTime>2015-06-25 19:50:35.7134134</AccessedTime><DefiningProjectFullPath>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\Microsoft.TypeScript.targets</DefiningProjectFullPath><DefiningProjectDirectory>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\</DefiningProjectDirectory><DefiningProjectName>Microsoft.TypeScript</DefiningProjectName><DefiningProjectExtension>.targets</DefiningProjectExtension></Item> and <Item Name="MyScript.js"><DestinationRelativePath>MyScript.js</DestinationRelativePath><Exclude>False</Exclude><FromTarget>CollectFilesFromContent</FromTarget><Category>Run</Category><ProjectFileType>Default</ProjectFileType><FullPath>C:\dev\Sandbox\WebApplication8\WebApplication8\MyScript.js</FullPath><RootDir>C:\</RootDir><Filename>MyScript</Filename><Extension>.js</Extension><RelativeDir></RelativeDir><Directory>dev\Sandbox\WebApplication8\WebApplication8\</Directory><RecursiveDir></RecursiveDir><Identity>MyScript.js</Identity><ModifiedTime>2015-06-25 19:50:36.0037913</ModifiedTime><CreatedTime>2015-06-25 19:50:35.7134134</CreatedTime><AccessedTime>2015-06-25 19:50:35.7134134</AccessedTime><DefiningProjectFullPath>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\CollectFiles\Microsoft.Web.Publishing.OnlyFilesToRunTheApp.targets</DefiningProjectFullPath><DefiningProjectDirectory>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\CollectFiles\</DefiningProjectDirectory><DefiningProjectName>Microsoft.Web.Publishing.OnlyFilesToRunTheApp</DefiningProjectName><DefiningProjectExtension>.targets</DefiningProjectExtension></Item>. [C:\dev\Sandbox\WebApplication8\WebApplication8\WebApplication8.csproj]
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\Microsoft.Web.Publishing.targets(1289,5): error : The following two items have duplicate item metadata %(DestinationRelativePath). The two items data are <Item Name="MyScript.js.map"><DestinationRelativePath>MyScript.js.map</DestinationRelativePath><Exclude>False</Exclude><FromTarget>Unknown</FromTarget><Category>Run</Category><ProjectFileType>Default</ProjectFileType><OriginalItemSpec>MyScript.js.map</OriginalItemSpec><TargetPath>MyScript.js.map</TargetPath><FullPath>C:\dev\Sandbox\WebApplication8\WebApplication8\MyScript.js.map</FullPath><RootDir>C:\</RootDir><Filename>MyScript.js</Filename><Extension>.map</Extension><RelativeDir></RelativeDir><Directory>dev\Sandbox\WebApplication8\WebApplication8\</Directory><RecursiveDir></RecursiveDir><Identity>MyScript.js.map</Identity><ModifiedTime>2015-06-25 19:50:35.7124176</ModifiedTime><CreatedTime>2015-06-25 19:50:35.7124176</CreatedTime><AccessedTime>2015-06-25 19:50:35.7124176</AccessedTime><DefiningProjectFullPath>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\Microsoft.TypeScript.targets</DefiningProjectFullPath><DefiningProjectDirectory>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\</DefiningProjectDirectory><DefiningProjectName>Microsoft.TypeScript</DefiningProjectName><DefiningProjectExtension>.targets</DefiningProjectExtension></Item> and <Item Name="MyScript.js.map"><DestinationRelativePath>MyScript.js.map</DestinationRelativePath><Exclude>False</Exclude><FromTarget>CollectFilesFromContent</FromTarget><Category>Run</Category><ProjectFileType>Default</ProjectFileType><FullPath>C:\dev\Sandbox\WebApplication8\WebApplication8\MyScript.js.map</FullPath><RootDir>C:\</RootDir><Filename>MyScript.js</Filename><Extension>.map</Extension><RelativeDir></RelativeDir><Directory>dev\Sandbox\WebApplication8\WebApplication8\</Directory><RecursiveDir></RecursiveDir><Identity>MyScript.js.map</Identity><ModifiedTime>2015-06-25 19:50:35.7124176</ModifiedTime><CreatedTime>2015-06-25 19:50:35.7124176</CreatedTime><AccessedTime>2015-06-25 19:50:35.7124176</AccessedTime><DefiningProjectFullPath>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\CollectFiles\Microsoft.Web.Publishing.OnlyFilesToRunTheApp.targets</DefiningProjectFullPath><DefiningProjectDirectory>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\CollectFiles\</DefiningProjectDirectory><DefiningProjectName>Microsoft.Web.Publishing.OnlyFilesToRunTheApp</DefiningProjectName><DefiningProjectExtension>.targets</DefiningProjectExtension></Item>. [C:\dev\Sandbox\WebApplication8\WebApplication8\WebApplication8.csproj]
</code></pre></div>
<p dir="auto">I think the problem is that the file is being added twice. Once by TypeScript\Microsoft.TypeScript.targets and also by Microsoft.Web.Publishing.OnlyFilesToRunTheApp.targets</p> | <p dir="auto">Typescript compiler lacks a native way of maintaining compilation options and source files for a given compilation unit like a project or a module. Using /// can help ease the problem, but there is still a tax of adding and managing the references and it does not handle the compilation options issue. Moreover, different editors have different ways of representing project or module structure and compilation options which make cross-editor collaboration tricky.</p>
<p dir="auto">The proposal is to introduce a new file <code class="notranslate">.tsconfig</code> that marks a compilation unit (aka project or module). The .tsconfig follows the footsteps of the .git* file family. Calling tsc in a directory with a .tsconfig will use the contents of the file and all .ts files in the directory as inputs without the need to specify them on the command line again.</p>
<h3 dir="auto">.tsconfig in detail</h3>
<ul dir="auto">
<li>.tsconfig is a json file</li>
<li>The presence of a .tsconfig in a directory indicate that all .ts file in this directory and its sub directories recursively are part of the compilation unit
<ul dir="auto">
<li>.d.ts files generated from the compilation but live within the directory are not included in the compilation unit identified by .tsconfig</li>
</ul>
</li>
<li>.tsconfig can specify additional compilation settings for the compilation</li>
<li>Calling tsc in a folder containing .tsconfig will trigger compilation using the config file</li>
<li>Since .tsconfig is a json file, it can be leveraged by other tools (linters, editors, build tools etc..) to store TS related project configuration</li>
<li>Example .tsconfig</li>
</ul>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"compilerOptions": ["-t ES5", "--out myoutput.js", "--noImplicitAny"],
"linterOptions": {
"suppressWarnnings": [234, 3363]
}
}"><pre class="notranslate">{
<span class="pl-ent">"compilerOptions"</span>: [<span class="pl-s"><span class="pl-pds">"</span>-t ES5<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>--out myoutput.js<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>--noImplicitAny<span class="pl-pds">"</span></span>],
<span class="pl-ent">"linterOptions"</span>: {
<span class="pl-ent">"suppressWarnnings"</span>: [<span class="pl-c1">234</span>, <span class="pl-c1">3363</span>]
}
}</pre></div>
<h3 dir="auto">Module example</h3>
<p dir="auto">Consider the following directory structure:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="shared/
node.d.ts
tools.ts
foo/
.tsconfig
a.ts // adds a ///<reference> to node.d.ts
b.ts
bar/
.tsconfig
c,ts // adds a /// <references> to tools.ts
d.ts
baz/
e.ts"><pre class="notranslate"><code class="notranslate">shared/
node.d.ts
tools.ts
foo/
.tsconfig
a.ts // adds a ///<reference> to node.d.ts
b.ts
bar/
.tsconfig
c,ts // adds a /// <references> to tools.ts
d.ts
baz/
e.ts
</code></pre></div>
<p dir="auto">Calling tsc in "foo" is equivalent to<code class="notranslate">tsc a.ts b.ts</code><br>
Calling tsc in "bar" is equivalent to <code class="notranslate">tsc c.ts d.ts baz/e.ts</code></p>
<h3 dir="auto">Using .tsconfig with tsc</h3>
<ul dir="auto">
<li>When calling tsc with no input files, the following steps are taken:
<ol dir="auto">
<li>Find the owning .tsconfig file by walking up the directory structure until a .tsconfig file is found, or the drive root is reached</li>
<li>If a .tsconfig was found, compilation will be triggered with all .ts files in the directory containing the .tsconfig and all its sub directories</li>
<li>The command line switch are compiled with the configuration options from the .tsconfig defining the compilation command line flags (e.g.: <code class="notranslate">tsc --watch</code> will cause a tsc to compile the contents of the current project in watch mode)</li>
</ol>
</li>
<li>When calling tsc with input a single directory name (e.g.: <code class="notranslate">tsc compiler</code>), If the directory contains a .tsconfig at the root, steps 2 and 3 from above are followed.</li>
</ul>
<h3 dir="auto">Specifying output order with --out and .tsconfig</h3>
<p dir="auto">when using --out, the compiler relies on the order of the files passed on the command line to order the emitted JavaScript code. If using .tsconfig, the compiler will look for a special file <code class="notranslate">_references.ts</code> at the root (next to the .tsconfig file), and will ensure that this file is the first file in the list of input files. this implies that /// tags in _references.ts will specify order of the emitted files.</p>
<h3 dir="auto">Open issues:</h3>
<ol dir="auto">
<li>Should the tsconfig file have a <code class="notranslate">.json</code> extension to indicate intended content, and allow editors to correctly colorize it, format it, etc..</li>
<li>In a VS project context (say .csproj), should .tsconfig be honored, or ignored in favor of the project.</li>
</ol> | 0 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.2.3 (latest released)</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">I followed all the instructions to set up Breeze for the first time but when I run <code class="notranslate">./breeze</code> I get the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#10 9.605
#10 9.605 Installing mysql client version 8.0
#10 9.605
#10 9.613 gpg: keybox '/tmp/tmp.u3jwOIxYZN/pubring.kbx' created
#10 12.79 gpg: keyserver receive failed: No keyserver available
#10 22.83 gpg: keyserver receive failed: Server indicated a failure
#10 58.88 gpg: keyserver receive failed: No name
#10 58.88 gpg: keyserver receive failed: No keyserver available
#10 58.89 gpg: WARNING: nothing exported
#10 58.90 deb http://repo.mysql.com/apt/debian/ buster mysql-8.0
#10 59.04 Get:1 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB]
#10 59.04 Get:2 http://deb.debian.org/debian buster InRelease [122 kB]
#10 59.06 Get:3 http://repo.mysql.com/apt/debian buster InRelease [22.1 kB]
#10 59.15 Get:4 https://dl.yarnpkg.com/debian stable InRelease [17.1 kB]
#10 59.15 Get:5 https://deb.nodesource.com/node_14.x buster InRelease [4584 B]
#10 59.18 Get:6 http://deb.debian.org/debian buster-updates InRelease [51.9 kB]
#10 59.29 Err:3 http://repo.mysql.com/apt/debian buster InRelease
#10 59.29 The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 467B942D3A79BD29
#10 59.47 Get:7 http://security.debian.org/debian-security buster/updates/main amd64 Packages [313 kB]
#10 59.56 Get:8 https://deb.nodesource.com/node_14.x buster/main amd64 Packages [770 B]
#10 59.71 Get:9 http://deb.debian.org/debian buster/main amd64 Packages [7906 kB]
#10 59.95 Get:10 https://dl.yarnpkg.com/debian stable/main amd64 Packages [10.5 kB]
#10 60.00 Get:11 https://dl.yarnpkg.com/debian stable/main all Packages [10.5 kB]
#10 60.20 Get:12 http://deb.debian.org/debian buster-updates/main amd64 Packages [8792 B]
#10 61.30 Reading package lists...
#10 62.13 W: GPG error: http://repo.mysql.com/apt/debian buster InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 467B942D3A79BD29
#10 62.13 E: The repository 'http://repo.mysql.com/apt/debian buster InRelease' is not signed.
#10 62.13 W: Target Packages (mysql-8.0/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/mysql.list:1 and /etc/apt/sources.list.d/mysql.list:2
#10 62.13 W: Target Packages (mysql-8.0/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/mysql.list:1 and /etc/apt/sources.list.d/mysql.list:2
------
error: failed to solve: executor failed running [/bin/bash -o pipefail -o errexit -o nounset -o nolog -c chmod a+x /scripts/docker/install_mysql.sh /scripts/docker/install_mssql.sh && sync && /scripts/docker/install_mysql.sh prod && /scripts/docker/install_mysql.sh dev && /scripts/docker/install_mssql.sh && adduser --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password --quiet "airflow" --home "/home/airflow" && echo -e "airflow\nairflow" | passwd airflow 2>&1 && echo "airflow ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/airflow && chmod 0440 /etc/sudoers.d/airflow]: exit code: 100"><pre class="notranslate"><code class="notranslate">#10 9.605
#10 9.605 Installing mysql client version 8.0
#10 9.605
#10 9.613 gpg: keybox '/tmp/tmp.u3jwOIxYZN/pubring.kbx' created
#10 12.79 gpg: keyserver receive failed: No keyserver available
#10 22.83 gpg: keyserver receive failed: Server indicated a failure
#10 58.88 gpg: keyserver receive failed: No name
#10 58.88 gpg: keyserver receive failed: No keyserver available
#10 58.89 gpg: WARNING: nothing exported
#10 58.90 deb http://repo.mysql.com/apt/debian/ buster mysql-8.0
#10 59.04 Get:1 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB]
#10 59.04 Get:2 http://deb.debian.org/debian buster InRelease [122 kB]
#10 59.06 Get:3 http://repo.mysql.com/apt/debian buster InRelease [22.1 kB]
#10 59.15 Get:4 https://dl.yarnpkg.com/debian stable InRelease [17.1 kB]
#10 59.15 Get:5 https://deb.nodesource.com/node_14.x buster InRelease [4584 B]
#10 59.18 Get:6 http://deb.debian.org/debian buster-updates InRelease [51.9 kB]
#10 59.29 Err:3 http://repo.mysql.com/apt/debian buster InRelease
#10 59.29 The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 467B942D3A79BD29
#10 59.47 Get:7 http://security.debian.org/debian-security buster/updates/main amd64 Packages [313 kB]
#10 59.56 Get:8 https://deb.nodesource.com/node_14.x buster/main amd64 Packages [770 B]
#10 59.71 Get:9 http://deb.debian.org/debian buster/main amd64 Packages [7906 kB]
#10 59.95 Get:10 https://dl.yarnpkg.com/debian stable/main amd64 Packages [10.5 kB]
#10 60.00 Get:11 https://dl.yarnpkg.com/debian stable/main all Packages [10.5 kB]
#10 60.20 Get:12 http://deb.debian.org/debian buster-updates/main amd64 Packages [8792 B]
#10 61.30 Reading package lists...
#10 62.13 W: GPG error: http://repo.mysql.com/apt/debian buster InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 467B942D3A79BD29
#10 62.13 E: The repository 'http://repo.mysql.com/apt/debian buster InRelease' is not signed.
#10 62.13 W: Target Packages (mysql-8.0/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/mysql.list:1 and /etc/apt/sources.list.d/mysql.list:2
#10 62.13 W: Target Packages (mysql-8.0/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/mysql.list:1 and /etc/apt/sources.list.d/mysql.list:2
------
error: failed to solve: executor failed running [/bin/bash -o pipefail -o errexit -o nounset -o nolog -c chmod a+x /scripts/docker/install_mysql.sh /scripts/docker/install_mssql.sh && sync && /scripts/docker/install_mysql.sh prod && /scripts/docker/install_mysql.sh dev && /scripts/docker/install_mssql.sh && adduser --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password --quiet "airflow" --home "/home/airflow" && echo -e "airflow\nairflow" | passwd airflow 2>&1 && echo "airflow ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/airflow && chmod 0440 /etc/sudoers.d/airflow]: exit code: 100
</code></pre></div>
<p dir="auto">I am not sure what steps to take to resolve this for Breeze.</p>
<p dir="auto">It seems related to <a href="https://github.com/apache/airflow/issues/20911" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/20911/hovercard">20911</a> but the install script appears to have the new key</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
set -euo pipefail
declare -a packages
MYSQL_VERSION="8.0"
readonly MYSQL_VERSION
COLOR_BLUE=$'\e[34m'
readonly COLOR_BLUE
COLOR_RESET=$'\e[0m'
readonly COLOR_RESET
: "${INSTALL_MYSQL_CLIENT:?Should be true or false}"
install_mysql_client() {
echo
echo "${COLOR_BLUE}Installing mysql client version ${MYSQL_VERSION}${COLOR_RESET}"
echo
if [[ "${1}" == "dev" ]]; then
packages=("libmysqlclient-dev" "mysql-client")
elif [[ "${1}" == "prod" ]]; then
packages=("libmysqlclient21" "mysql-client")
else
echo
echo "Specify either prod or dev"
echo
exit 1
fi
local key="467B942D3A79BD29"
readonly key
GNUPGHOME="$(mktemp -d)"
export GNUPGHOME
set +e
for keyserver in $(shuf -e ha.pool.sks-keyservers.net hkp://p80.pool.sks-keyservers.net:80 \
keyserver.ubuntu.com hkp://keyserver.ubuntu.com:80)
do
gpg --keyserver "${keyserver}" --recv-keys "${key}" 2>&1 && break
done
set -e
gpg --export "${key}" > /etc/apt/trusted.gpg.d/mysql.gpg
gpgconf --kill all
rm -rf "${GNUPGHOME}"
unset GNUPGHOME
echo "deb http://repo.mysql.com/apt/debian/ buster mysql-${MYSQL_VERSION}" | tee -a /etc/apt/sources.list.d/mysql.list
apt-get update
apt-get install --no-install-recommends -y "${packages[@]}"
apt-get autoremove -yqq --purge
apt-get clean && rm -rf /var/lib/apt/lists/*
}
# Install MySQL client from Oracle repositories (Debian installs mariadb)
# But only if it is not disabled
if [[ ${INSTALL_MYSQL_CLIENT:="true"} == "true" ]]; then
install_mysql_client "${@}"
fi
"><pre class="notranslate"><code class="notranslate">#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
set -euo pipefail
declare -a packages
MYSQL_VERSION="8.0"
readonly MYSQL_VERSION
COLOR_BLUE=$'\e[34m'
readonly COLOR_BLUE
COLOR_RESET=$'\e[0m'
readonly COLOR_RESET
: "${INSTALL_MYSQL_CLIENT:?Should be true or false}"
install_mysql_client() {
echo
echo "${COLOR_BLUE}Installing mysql client version ${MYSQL_VERSION}${COLOR_RESET}"
echo
if [[ "${1}" == "dev" ]]; then
packages=("libmysqlclient-dev" "mysql-client")
elif [[ "${1}" == "prod" ]]; then
packages=("libmysqlclient21" "mysql-client")
else
echo
echo "Specify either prod or dev"
echo
exit 1
fi
local key="467B942D3A79BD29"
readonly key
GNUPGHOME="$(mktemp -d)"
export GNUPGHOME
set +e
for keyserver in $(shuf -e ha.pool.sks-keyservers.net hkp://p80.pool.sks-keyservers.net:80 \
keyserver.ubuntu.com hkp://keyserver.ubuntu.com:80)
do
gpg --keyserver "${keyserver}" --recv-keys "${key}" 2>&1 && break
done
set -e
gpg --export "${key}" > /etc/apt/trusted.gpg.d/mysql.gpg
gpgconf --kill all
rm -rf "${GNUPGHOME}"
unset GNUPGHOME
echo "deb http://repo.mysql.com/apt/debian/ buster mysql-${MYSQL_VERSION}" | tee -a /etc/apt/sources.list.d/mysql.list
apt-get update
apt-get install --no-install-recommends -y "${packages[@]}"
apt-get autoremove -yqq --purge
apt-get clean && rm -rf /var/lib/apt/lists/*
}
# Install MySQL client from Oracle repositories (Debian installs mariadb)
# But only if it is not disabled
if [[ ${INSTALL_MYSQL_CLIENT:="true"} == "true" ]]; then
install_mysql_client "${@}"
fi
</code></pre></div>
<h3 dir="auto">What you expected to happen</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">MacOS version 10.15.7</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Docker-Compose</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Anything else</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <p dir="auto"><strong>Apache Airflow version</strong>: 2.1.3</p>
<p dir="auto"><strong>Apache Airflow Provider versions</strong> (please include all providers that are relevant to your bug):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apache-airflow-providers-amazon==2.0.0
apache-airflow-providers-celery==2.0.0
apache-airflow-providers-cncf-kubernetes==2.0.0
apache-airflow-providers-docker==2.0.0
apache-airflow-providers-elasticsearch==2.0.2
apache-airflow-providers-ftp==2.0.0
apache-airflow-providers-google==4.0.0
apache-airflow-providers-grpc==2.0.0
apache-airflow-providers-hashicorp==2.0.0
apache-airflow-providers-http==2.0.0
apache-airflow-providers-imap==2.0.0
apache-airflow-providers-microsoft-azure==3.0.0
apache-airflow-providers-mysql==2.0.0
apache-airflow-providers-postgres==2.0.0
apache-airflow-providers-redis==2.0.0
apache-airflow-providers-sendgrid==2.0.0
apache-airflow-providers-sftp==2.0.0
apache-airflow-providers-slack==4.0.0
apache-airflow-providers-sqlite==2.0.0
apache-airflow-providers-ssh==2.0.0"><pre class="notranslate"><code class="notranslate">apache-airflow-providers-amazon==2.0.0
apache-airflow-providers-celery==2.0.0
apache-airflow-providers-cncf-kubernetes==2.0.0
apache-airflow-providers-docker==2.0.0
apache-airflow-providers-elasticsearch==2.0.2
apache-airflow-providers-ftp==2.0.0
apache-airflow-providers-google==4.0.0
apache-airflow-providers-grpc==2.0.0
apache-airflow-providers-hashicorp==2.0.0
apache-airflow-providers-http==2.0.0
apache-airflow-providers-imap==2.0.0
apache-airflow-providers-microsoft-azure==3.0.0
apache-airflow-providers-mysql==2.0.0
apache-airflow-providers-postgres==2.0.0
apache-airflow-providers-redis==2.0.0
apache-airflow-providers-sendgrid==2.0.0
apache-airflow-providers-sftp==2.0.0
apache-airflow-providers-slack==4.0.0
apache-airflow-providers-sqlite==2.0.0
apache-airflow-providers-ssh==2.0.0
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<p dir="auto">I'm using the <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-2">airflow-2</a>.1.2 container from dockerhub.</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: AWS</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): <code class="notranslate">Debian GNU/Linux 10 (buster)</code></li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): <code class="notranslate">Linux fe52079d9ade 5.12.13-200.fc33.x86_64 #1 SMP Wed Jun 23 16:20:26 UTC 2021 x86_64 GNU/Linux</code></li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto">When using the EMRStepSensor (set to reschedule mode) to monitor EMR steps, the task will sometimes fail while the EMR step sucessfully ran. Most of the time the sensor will work fine, but every so often this issue occurs (on the same DAG, without modifications).</p>
<details>
<summary>EMRStepSensor task instance debug log</summary>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="*** Reading local file: /opt/airflow/logs/derived.adobe_target_catalog_sporza/watch_adobe_target_catalog_sporza_job_emr_step/2021-08-07T05:28:00+00:00/1.log
[2021-08-08 05:29:20,367] {__init__.py:51} DEBUG - Loading core task runner: StandardTaskRunner
[2021-08-08 05:29:21,594] {base_task_runner.py:62} DEBUG - Planning to run as the user
[2021-08-08 05:29:21,597] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> from DB
[2021-08-08 05:29:22,086] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:29:22,086] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:29:22,086] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance State' PASSED: True, Task state queued was valid.
[2021-08-08 05:29:22,128] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:29:22,128] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:29:22,129] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance Not Running' PASSED: True, Task is not in running state.
[2021-08-08 05:29:22,130] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:29:22,130] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:29:22,165] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:29:22,206] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:29:22,327] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Pool Slots Available' PASSED: True, ('There are enough open slots in %s to execute the task', 'default_pool')
[2021-08-08 05:29:22,327] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Concurrency' PASSED: True, Task concurrency is not set.
[2021-08-08 05:29:22,327] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:29:22,327] {taskinstance.py:1087} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:29:22,327] {taskinstance.py:1088} INFO - Starting attempt 1 of 1
[2021-08-08 05:29:22,327] {taskinstance.py:1089} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:29:24,417] {taskinstance.py:1107} INFO - Executing <Task(EmrStepSensor): watch_adobe_target_catalog_sporza_job_emr_step> on 2021-08-07T05:28:00+00:00
[2021-08-08 05:29:24,421] {standard_task_runner.py:52} INFO - Started process 7426 to run task
[2021-08-08 05:29:24,427] {standard_task_runner.py:76} INFO - Running: ['airflow', 'tasks', 'run', 'derived.adobe_target_catalog_sporza', 'watch_adobe_target_catalog_sporza_job_emr_step', '2021-08-07T05:28:00+00:00', '--job-id', '98940', '--pool', 'default_pool', '--raw', '--subdir', 'DAGS_FOLDER/adobe_target_catalog_sporza_wf.py', '--cfg-path', '/tmp/tmpucsqr5ep', '--error-file', '/tmp/tmpi1wh32jz']
[2021-08-08 05:29:24,427] {standard_task_runner.py:77} INFO - Job 98940: Subtask watch_adobe_target_catalog_sporza_job_emr_step
[2021-08-08 05:29:24,428] {cli_action_loggers.py:66} DEBUG - Calling callbacks: [<function default_action_log at 0x7fc8dfbe5d90>]
[2021-08-08 05:29:26,223] {settings.py:208} DEBUG - Setting up DB connection pool (PID 7426)
[2021-08-08 05:29:26,223] {settings.py:244} DEBUG - settings.prepare_engine_args(): Using NullPool
[2021-08-08 05:29:26,226] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [None]> from DB
[2021-08-08 05:29:27,030] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:29:27,523] {logging_mixin.py:104} INFO - Running <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> on host ip-172-31-58-121.eu-west-1.compute.internal
[2021-08-08 05:29:27,523] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:29:28,218] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:29:28,871] {taskinstance.py:677} DEBUG - Clearing XCom data
[2021-08-08 05:29:29,515] {taskinstance.py:684} DEBUG - XCom data cleared
[2021-08-08 05:29:32,916] {taskinstance.py:1302} INFO - Exporting the following env vars:
AIRFLOW_CTX_DAG_OWNER=vrt
AIRFLOW_CTX_DAG_ID=derived.adobe_target_catalog_sporza
AIRFLOW_CTX_TASK_ID=watch_adobe_target_catalog_sporza_job_emr_step
AIRFLOW_CTX_EXECUTION_DATE=2021-08-07T05:28:00+00:00
AIRFLOW_CTX_DAG_RUN_ID=scheduled__2021-08-07T05:28:00+00:00
[2021-08-08 05:29:32,916] {__init__.py:146} DEBUG - Preparing lineage inlets and outlets
[2021-08-08 05:29:32,916] {__init__.py:190} DEBUG - inlets: [], outlets: []
[2021-08-08 05:29:33,486] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:29:36,437] {base_aws.py:368} INFO - Airflow Connection: aws_conn_id=aws_default
[2021-08-08 05:29:36,521] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:29:36,562] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:29:38,654] {base_aws.py:179} INFO - No credentials retrieved from Connection
[2021-08-08 05:29:38,654] {base_aws.py:87} INFO - Creating session with aws_access_key_id=None region_name=None
[2021-08-08 05:29:38,655] {hooks.py:417} DEBUG - Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
[2021-08-08 05:29:38,656] {hooks.py:417} DEBUG - Changing event name from before-call.apigateway to before-call.api-gateway
[2021-08-08 05:29:38,657] {hooks.py:417} DEBUG - Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
[2021-08-08 05:29:38,659] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
[2021-08-08 05:29:38,659] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
[2021-08-08 05:29:38,659] {hooks.py:417} DEBUG - Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
[2021-08-08 05:29:38,660] {hooks.py:417} DEBUG - Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
[2021-08-08 05:29:38,663] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
[2021-08-08 05:29:38,663] {hooks.py:417} DEBUG - Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
[2021-08-08 05:29:38,663] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
[2021-08-08 05:29:38,663] {hooks.py:417} DEBUG - Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
[2021-08-08 05:29:38,664] {base_aws.py:157} INFO - role_arn is None
[2021-08-08 05:29:38,667] {utils.py:364} DEBUG - IMDS ENDPOINT: http://169.254.169.254/
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: env
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: assume-role
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: assume-role-with-web-identity
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: sso
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: shared-credentials-file
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: custom-process
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: config-file
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: ec2-credentials-file
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: boto-config
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: container-role
[2021-08-08 05:29:38,671] {connectionpool.py:230} DEBUG - Starting new HTTP connection (1): 169.254.170.2:80
[2021-08-08 05:29:38,673] {connectionpool.py:442} DEBUG - http://169.254.170.2:80 "GET /v2/credentials/c5f7099a-d46e-4472-a48f-6c137db9e75d HTTP/1.1" 200 1307
[2021-08-08 05:29:38,674] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/endpoints.json
[2021-08-08 05:29:38,683] {hooks.py:210} DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x7fc8dbee8bf8>
[2021-08-08 05:29:38,691] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/emr/2009-03-31/service-2.json
[2021-08-08 05:29:38,695] {hooks.py:210} DEBUG - Event creating-client-class.emr: calling handler <function add_generate_presigned_url at 0x7fc8dbf947b8>
[2021-08-08 05:29:38,697] {endpoint.py:292} DEBUG - Setting elasticmapreduce timeout as (60, 60)
[2021-08-08 05:29:38,698] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/_retry.json
[2021-08-08 05:29:38,698] {client.py:166} DEBUG - Registering retry handlers for service: emr
[2021-08-08 05:29:38,699] {emr_step.py:73} INFO - Poking step s-581MKMYKRED7 on cluster j-XDTNJDHR23RQ
[2021-08-08 05:29:38,699] {hooks.py:210} DEBUG - Event before-parameter-build.emr.DescribeStep: calling handler <function generate_idempotent_uuid at 0x7fc8dbf06048>
[2021-08-08 05:29:38,699] {hooks.py:210} DEBUG - Event before-call.emr.DescribeStep: calling handler <function inject_api_version_header_if_needed at 0x7fc8dbf077b8>
[2021-08-08 05:29:38,699] {endpoint.py:101} DEBUG - Making request for OperationModel(name=DescribeStep) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'X-Amz-Target': 'ElasticMapReduce.DescribeStep', 'Content-Type': 'application/x-amz-json-1.1', 'User-Agent': 'Boto3/1.17.107 Python/3.6.13 Linux/4.14.238-182.422.amzn2.x86_64 exec-env/AWS_ECS_FARGATE Botocore/1.20.107'}, 'body': b'{"ClusterId": "j-XDTNJDHR23RQ", "StepId": "s-581MKMYKRED7"}', 'url': 'https://eu-west-1.elasticmapreduce.amazonaws.com/', 'context': {'client_region': 'eu-west-1', 'client_config': <botocore.config.Config object at 0x7fc8dba19470>, 'has_streaming_input': False, 'auth_type': None}}
[2021-08-08 05:29:38,700] {hooks.py:210} DEBUG - Event request-created.emr.DescribeStep: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7fc8dba19438>>
[2021-08-08 05:29:38,700] {hooks.py:210} DEBUG - Event choose-signer.emr.DescribeStep: calling handler <function set_operation_specific_signer at 0x7fc8dbf01ea0>
[2021-08-08 05:29:38,700] {auth.py:380} DEBUG - Calculating signature using v4 auth.
[2021-08-08 05:29:38,700] {auth.py:381} DEBUG - CanonicalRequest:
POST
/
content-type:application/x-amz-json-1.1
host:eu-west-1.elasticmapreduce.amazonaws.com
x-amz-date:20210808T052938Z
x-amz-security-token:IQoJb3JpZ2luX2VjEGwaCWV1LXdlc3QtMSJHMEUCIQCZ4NXI3+3YJKZwyu+L4vTyY4swRSd7+zHkDO3Nwc0JiwIgdDuzR2+qJ5vFE03B1RRhzZYGV4Iy/pt7jVXRr0YjXTUqogQIhP//////////ARABGgwyODM3NzQxNDgzNTciDDl+9YdFHetmruZnfSr2A4vFCZwFNe0LEigdz0ayjIhvTZMsjY6CClml27JRBbUllyWz6t3b5SjafRWERgfEe1xIjnFFvp/UFSDIrZVuOefX94uUcgWQKV5zhz/dHdpCzpPltF+syapd2IeY5lgaUZWr+ax+Pfs75JILyfTpa7u43hg1M6P9L07zP/IUWdrXvyvu0wVh07r6/bHUDKJGy52Ok2q6Hr4ltT4MVAY/EZIEDZA8dlNdd7/UDddecp+/7/QIMftzZsgQJVyO+IIB+cfHCIV+1g/ACnsSbBkJuH2fn/B0YeP6e1135yTFknzNKVUxf6OeBIuPrkcu78HnaOXcjv+JSKb9AcFP+2zOo9JYmr040XGVqesZiAc+uDWbL74LDQ7ze5b4sLSNXfCCEvqsYVy9Nt7UlopCXoIS2lBrWgXNhsppDQ976Gr+WgyV1Wbjx2NZlJFCtSNarwF0qDPBmm6yhQxyKMYarOrUpy9aNl/18ujIhJZ2/JMUYlzH0TOBc1YCKIuZLNPwYfxZW6JmosfKXjAFUK7eDn4tU6LSXyo2GNLYzjY71OyCOpllJYtxg/NDAQBlmMCbFPpFCCTjPECU0sGnhfPAdlsyYngT3L0bSyjAZpPRfYrfPd4i3j2niPq9BwF/iOIR95T2CK7zqxXB4TIpporSE0pItmFgynGTh+IwtZm9iAY6pgENShKQaHxJvNj1O5ddYeCwW3H2SqjrHroeOt82xGkH5stZ7g28Uy7iPIPEehlkrB7ry/KjLq9DAo4zVneHhfKJBUBTBxz944AZhd0d9VvSRGgEXnmxzTsHma9hnkwQfGdbXwH4ja582o7hPEI98AAgoo5OCuV/vyMHHgrJBa7z+7eRtGnCeg+EJZy9WlsilHHGze4QGDEDc4NJypNZM4JON503hXON
x-amz-target:ElasticMapReduce.DescribeStep
content-type;host;x-amz-date;x-amz-security-token;x-amz-target
2a131454435119560c6fa09b6b1eeeb557aba91e61af62fe4883ccc24890c4f3
[2021-08-08 05:29:38,700] {auth.py:383} DEBUG - StringToSign:
AWS4-HMAC-SHA256
20210808T052938Z
20210808/eu-west-1/elasticmapreduce/aws4_request
29f0d229d76daf02f334b8c7d193cb06de4619f4adb7b3057683f53b2ea79c80
[2021-08-08 05:29:38,700] {auth.py:385} DEBUG - Signature:
66e13f874221cb3c1b275a052ac56a7e827d431e940bfe9b14414104e0a3b162
[2021-08-08 05:29:38,701] {endpoint.py:187} DEBUG - Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://eu-west-1.elasticmapreduce.amazonaws.com/, headers={'X-Amz-Target': b'ElasticMapReduce.DescribeStep', 'Content-Type': b'application/x-amz-json-1.1', 'User-Agent': b'Boto3/1.17.107 Python/3.6.13 Linux/4.14.238-182.422.amzn2.x86_64 exec-env/AWS_ECS_FARGATE Botocore/1.20.107', 'X-Amz-Date': b'20210808T052938Z', 'X-Amz-Security-Token': b'IQoJb3JpZ2luX2VjEGwaCWV1LXdlc3QtMSJHMEUCIQCZ4NXI3+3YJKZwyu+L4vTyY4swRSd7+zHkDO3Nwc0JiwIgdDuzR2+qJ5vFE03B1RRhzZYGV4Iy/pt7jVXRr0YjXTUqogQIhP//////////ARABGgwyODM3NzQxNDgzNTciDDl+9YdFHetmruZnfSr2A4vFCZwFNe0LEigdz0ayjIhvTZMsjY6CClml27JRBbUllyWz6t3b5SjafRWERgfEe1xIjnFFvp/UFSDIrZVuOefX94uUcgWQKV5zhz/dHdpCzpPltF+syapd2IeY5lgaUZWr+ax+Pfs75JILyfTpa7u43hg1M6P9L07zP/IUWdrXvyvu0wVh07r6/bHUDKJGy52Ok2q6Hr4ltT4MVAY/EZIEDZA8dlNdd7/UDddecp+/7/QIMftzZsgQJVyO+IIB+cfHCIV+1g/ACnsSbBkJuH2fn/B0YeP6e1135yTFknzNKVUxf6OeBIuPrkcu78HnaOXcjv+JSKb9AcFP+2zOo9JYmr040XGVqesZiAc+uDWbL74LDQ7ze5b4sLSNXfCCEvqsYVy9Nt7UlopCXoIS2lBrWgXNhsppDQ976Gr+WgyV1Wbjx2NZlJFCtSNarwF0qDPBmm6yhQxyKMYarOrUpy9aNl/18ujIhJZ2/JMUYlzH0TOBc1YCKIuZLNPwYfxZW6JmosfKXjAFUK7eDn4tU6LSXyo2GNLYzjY71OyCOpllJYtxg/NDAQBlmMCbFPpFCCTjPECU0sGnhfPAdlsyYngT3L0bSyjAZpPRfYrfPd4i3j2niPq9BwF/iOIR95T2CK7zqxXB4TIpporSE0pItmFgynGTh+IwtZm9iAY6pgENShKQaHxJvNj1O5ddYeCwW3H2SqjrHroeOt82xGkH5stZ7g28Uy7iPIPEehlkrB7ry/KjLq9DAo4zVneHhfKJBUBTBxz944AZhd0d9VvSRGgEXnmxzTsHma9hnkwQfGdbXwH4ja582o7hPEI98AAgoo5OCuV/vyMHHgrJBa7z+7eRtGnCeg+EJZy9WlsilHHGze4QGDEDc4NJypNZM4JON503hXON', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAUEESB34CT3URIQHE/20210808/eu-west-1/elasticmapreduce/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=66e13f874221cb3c1b275a052ac56a7e827d431e940bfe9b14414104e0a3b162', 'Content-Length': '59'}>
[2021-08-08 05:29:38,702] {httpsession.py:50} DEBUG - Certificate path: /home/airflow/.local/lib/python3.6/site-packages/certifi/cacert.pem
[2021-08-08 05:29:38,702] {connectionpool.py:943} DEBUG - Starting new HTTPS connection (1): eu-west-1.elasticmapreduce.amazonaws.com:443
[2021-08-08 05:29:38,752] {connectionpool.py:442} DEBUG - https://eu-west-1.elasticmapreduce.amazonaws.com:443 "POST / HTTP/1.1" 200 799
[2021-08-08 05:29:38,752] {parsers.py:233} DEBUG - Response headers: {'x-amzn-RequestId': 'ecacd9e3-44b2-4a00-a4f0-48efe0d65847', 'Content-Type': 'application/x-amz-json-1.1', 'Content-Length': '799', 'Date': 'Sun, 08 Aug 2021 05:29:38 GMT'}
[2021-08-08 05:29:38,752] {parsers.py:234} DEBUG - Response body:
b'{"Step":{"ActionOnFailure":"CONTINUE","Config":{"Args":["spark-submit","--deploy-mode","cluster","--master","yarn","--driver-memory","2G","--executor-memory","8G","--num-executors","5","--executor-cores","3","--packages","io.delta:delta-core_2.11:0.6.1","--py-files","s3://vrt-datalake-artifacts-prod/adobe-target-catalog-sporza/python/adobe_target_catalog_sporza-1.0.0-py3.7_6.egg,s3://vrt-datalake-artifacts-prod/python-datalake-helpers/vrt_datalake_helpers-21-py3-none-any.whl","s3://vrt-datalake-artifacts-prod/adobe-target-catalog-sporza/python/run_6.py","prod","2021-08-08 05:28:00"],"Jar":"command-runner.jar","Properties":{}},"Id":"s-581MKMYKRED7","Name":"adobe-target-catalog-sporza-job","Status":{"State":"PENDING","StateChangeReason":{},"Timeline":{"CreationDateTime":1.628400523922E9}}}}'
[2021-08-08 05:29:38,753] {hooks.py:210} DEBUG - Event needs-retry.emr.DescribeStep: calling handler <botocore.retryhandler.RetryHandler object at 0x7fc8dba19860>
[2021-08-08 05:29:38,753] {retryhandler.py:187} DEBUG - No retry needed.
[2021-08-08 05:29:38,753] {emr_base.py:66} INFO - Job flow currently PENDING
[2021-08-08 05:29:38,753] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:29:39,718] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:29:39,748] {taskinstance.py:1906} DEBUG - Task Duration set to 17.617928
[2021-08-08 05:29:42,695] {taskinstance.py:1484} INFO - Rescheduling task, marking task as UP_FOR_RESCHEDULE
[2021-08-08 05:29:42,696] {cli_action_loggers.py:84} DEBUG - Calling callbacks: []
[2021-08-08 05:29:44,944] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:29:48,268] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]>
[2021-08-08 05:29:48,674] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:29:48,674] {local_task_job.py:149} INFO - Task exited with return code 0
[2021-08-08 05:29:48,675] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]> from DB
[2021-08-08 05:29:49,740] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]>
[2021-08-08 05:30:49,437] {__init__.py:51} DEBUG - Loading core task runner: StandardTaskRunner
[2021-08-08 05:30:51,569] {base_task_runner.py:62} DEBUG - Planning to run as the user
[2021-08-08 05:30:51,572] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> from DB
[2021-08-08 05:30:52,465] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:30:52,465] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:30:52,465] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance State' PASSED: True, Task state queued was valid.
[2021-08-08 05:30:52,544] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:30:52,544] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:30:52,545] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance Not Running' PASSED: True, Task is not in running state.
[2021-08-08 05:30:52,546] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:30:52,546] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:30:52,593] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:30:52,593] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:30:52,756] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Pool Slots Available' PASSED: True, ('There are enough open slots in %s to execute the task', 'default_pool')
[2021-08-08 05:30:52,756] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Concurrency' PASSED: True, Task concurrency is not set.
[2021-08-08 05:30:52,756] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:30:52,756] {taskinstance.py:1087} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:30:52,756] {taskinstance.py:1088} INFO - Starting attempt 1 of 1
[2021-08-08 05:30:52,756] {taskinstance.py:1089} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:30:53,648] {taskinstance.py:1107} INFO - Executing <Task(EmrStepSensor): watch_adobe_target_catalog_sporza_job_emr_step> on 2021-08-07T05:28:00+00:00
[2021-08-08 05:30:53,651] {standard_task_runner.py:52} INFO - Started process 7972 to run task
[2021-08-08 05:30:53,655] {standard_task_runner.py:76} INFO - Running: ['airflow', 'tasks', 'run', 'derived.adobe_target_catalog_sporza', 'watch_adobe_target_catalog_sporza_job_emr_step', '2021-08-07T05:28:00+00:00', '--job-id', '98953', '--pool', 'default_pool', '--raw', '--subdir', 'DAGS_FOLDER/adobe_target_catalog_sporza_wf.py', '--cfg-path', '/tmp/tmppdcqbh0o', '--error-file', '/tmp/tmpdky_uy36']
[2021-08-08 05:30:53,655] {standard_task_runner.py:77} INFO - Job 98953: Subtask watch_adobe_target_catalog_sporza_job_emr_step
[2021-08-08 05:30:53,656] {cli_action_loggers.py:66} DEBUG - Calling callbacks: [<function default_action_log at 0x7fc8dfbe5d90>]
[2021-08-08 05:30:54,515] {settings.py:208} DEBUG - Setting up DB connection pool (PID 7972)
[2021-08-08 05:30:54,515] {settings.py:244} DEBUG - settings.prepare_engine_args(): Using NullPool
[2021-08-08 05:30:54,517] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [None]> from DB
[2021-08-08 05:30:57,090] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:30:58,979] {logging_mixin.py:104} INFO - Running <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> on host ip-172-31-58-121.eu-west-1.compute.internal
[2021-08-08 05:30:58,979] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:30:59,588] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:31:03,931] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:31:04,181] {taskinstance.py:677} DEBUG - Clearing XCom data
[2021-08-08 05:31:04,914] {taskinstance.py:684} DEBUG - XCom data cleared
[2021-08-08 05:31:05,896] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:31:05,934] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:31:12,815] {taskinstance.py:1302} INFO - Exporting the following env vars:
AIRFLOW_CTX_DAG_OWNER=vrt
AIRFLOW_CTX_DAG_ID=derived.adobe_target_catalog_sporza
AIRFLOW_CTX_TASK_ID=watch_adobe_target_catalog_sporza_job_emr_step
AIRFLOW_CTX_EXECUTION_DATE=2021-08-07T05:28:00+00:00
AIRFLOW_CTX_DAG_RUN_ID=scheduled__2021-08-07T05:28:00+00:00
[2021-08-08 05:31:12,815] {__init__.py:146} DEBUG - Preparing lineage inlets and outlets
[2021-08-08 05:31:12,816] {__init__.py:190} DEBUG - inlets: [], outlets: []
[2021-08-08 05:31:13,431] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:31:13,718] {base_aws.py:368} INFO - Airflow Connection: aws_conn_id=aws_default
[2021-08-08 05:31:14,251] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:31:14,293] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:31:14,780] {base_aws.py:179} INFO - No credentials retrieved from Connection
[2021-08-08 05:31:14,780] {base_aws.py:87} INFO - Creating session with aws_access_key_id=None region_name=None
[2021-08-08 05:31:14,781] {hooks.py:417} DEBUG - Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
[2021-08-08 05:31:14,783] {hooks.py:417} DEBUG - Changing event name from before-call.apigateway to before-call.api-gateway
[2021-08-08 05:31:14,784] {hooks.py:417} DEBUG - Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
[2021-08-08 05:31:14,786] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
[2021-08-08 05:31:14,786] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
[2021-08-08 05:31:14,786] {hooks.py:417} DEBUG - Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
[2021-08-08 05:31:14,787] {hooks.py:417} DEBUG - Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
[2021-08-08 05:31:14,790] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
[2021-08-08 05:31:14,790] {hooks.py:417} DEBUG - Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
[2021-08-08 05:31:14,790] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
[2021-08-08 05:31:14,790] {hooks.py:417} DEBUG - Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
[2021-08-08 05:31:14,791] {base_aws.py:157} INFO - role_arn is None
[2021-08-08 05:31:14,794] {utils.py:364} DEBUG - IMDS ENDPOINT: http://169.254.169.254/
[2021-08-08 05:31:14,796] {credentials.py:1974} DEBUG - Looking for credentials via: env
[2021-08-08 05:31:14,796] {credentials.py:1974} DEBUG - Looking for credentials via: assume-role
[2021-08-08 05:31:14,796] {credentials.py:1974} DEBUG - Looking for credentials via: assume-role-with-web-identity
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: sso
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: shared-credentials-file
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: custom-process
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: config-file
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: ec2-credentials-file
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: boto-config
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: container-role
[2021-08-08 05:31:14,798] {connectionpool.py:230} DEBUG - Starting new HTTP connection (1): 169.254.170.2:80
[2021-08-08 05:31:14,799] {connectionpool.py:442} DEBUG - http://169.254.170.2:80 "GET /v2/credentials/c5f7099a-d46e-4472-a48f-6c137db9e75d HTTP/1.1" 200 1307
[2021-08-08 05:31:14,800] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/endpoints.json
[2021-08-08 05:31:14,810] {hooks.py:210} DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x7fc8dbee9bf8>
[2021-08-08 05:31:14,817] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/emr/2009-03-31/service-2.json
[2021-08-08 05:31:14,822] {hooks.py:210} DEBUG - Event creating-client-class.emr: calling handler <function add_generate_presigned_url at 0x7fc8dbf957b8>
[2021-08-08 05:31:14,824] {endpoint.py:292} DEBUG - Setting elasticmapreduce timeout as (60, 60)
[2021-08-08 05:31:14,825] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/_retry.json
[2021-08-08 05:31:14,825] {client.py:166} DEBUG - Registering retry handlers for service: emr
[2021-08-08 05:31:14,826] {emr_step.py:73} INFO - Poking step s-581MKMYKRED7 on cluster j-XDTNJDHR23RQ
[2021-08-08 05:31:14,826] {hooks.py:210} DEBUG - Event before-parameter-build.emr.DescribeStep: calling handler <function generate_idempotent_uuid at 0x7fc8dbf07048>
[2021-08-08 05:31:14,826] {hooks.py:210} DEBUG - Event before-call.emr.DescribeStep: calling handler <function inject_api_version_header_if_needed at 0x7fc8dbf087b8>
[2021-08-08 05:31:14,826] {endpoint.py:101} DEBUG - Making request for OperationModel(name=DescribeStep) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'X-Amz-Target': 'ElasticMapReduce.DescribeStep', 'Content-Type': 'application/x-amz-json-1.1', 'User-Agent': 'Boto3/1.17.107 Python/3.6.13 Linux/4.14.238-182.422.amzn2.x86_64 exec-env/AWS_ECS_FARGATE Botocore/1.20.107'}, 'body': b'{"ClusterId": "j-XDTNJDHR23RQ", "StepId": "s-581MKMYKRED7"}', 'url': 'https://eu-west-1.elasticmapreduce.amazonaws.com/', 'context': {'client_region': 'eu-west-1', 'client_config': <botocore.config.Config object at 0x7fc8dba0feb8>, 'has_streaming_input': False, 'auth_type': None}}
[2021-08-08 05:31:14,826] {hooks.py:210} DEBUG - Event request-created.emr.DescribeStep: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7fc8dba0fe80>>
[2021-08-08 05:31:14,827] {hooks.py:210} DEBUG - Event choose-signer.emr.DescribeStep: calling handler <function set_operation_specific_signer at 0x7fc8dbf01ea0>
[2021-08-08 05:31:14,827] {auth.py:380} DEBUG - Calculating signature using v4 auth.
[2021-08-08 05:31:14,827] {auth.py:381} DEBUG - CanonicalRequest:
POST
/
content-type:application/x-amz-json-1.1
host:eu-west-1.elasticmapreduce.amazonaws.com
x-amz-date:20210808T053114Z
x-amz-security-token:IQoJb3JpZ2luX2VjEGwaCWV1LXdlc3QtMSJHMEUCIQCZ4NXI3+3YJKZwyu+L4vTyY4swRSd7+zHkDO3Nwc0JiwIgdDuzR2+qJ5vFE03B1RRhzZYGV4Iy/pt7jVXRr0YjXTUqogQIhP//////////ARABGgwyODM3NzQxNDgzNTciDDl+9YdFHetmruZnfSr2A4vFCZwFNe0LEigdz0ayjIhvTZMsjY6CClml27JRBbUllyWz6t3b5SjafRWERgfEe1xIjnFFvp/UFSDIrZVuOefX94uUcgWQKV5zhz/dHdpCzpPltF+syapd2IeY5lgaUZWr+ax+Pfs75JILyfTpa7u43hg1M6P9L07zP/IUWdrXvyvu0wVh07r6/bHUDKJGy52Ok2q6Hr4ltT4MVAY/EZIEDZA8dlNdd7/UDddecp+/7/QIMftzZsgQJVyO+IIB+cfHCIV+1g/ACnsSbBkJuH2fn/B0YeP6e1135yTFknzNKVUxf6OeBIuPrkcu78HnaOXcjv+JSKb9AcFP+2zOo9JYmr040XGVqesZiAc+uDWbL74LDQ7ze5b4sLSNXfCCEvqsYVy9Nt7UlopCXoIS2lBrWgXNhsppDQ976Gr+WgyV1Wbjx2NZlJFCtSNarwF0qDPBmm6yhQxyKMYarOrUpy9aNl/18ujIhJZ2/JMUYlzH0TOBc1YCKIuZLNPwYfxZW6JmosfKXjAFUK7eDn4tU6LSXyo2GNLYzjY71OyCOpllJYtxg/NDAQBlmMCbFPpFCCTjPECU0sGnhfPAdlsyYngT3L0bSyjAZpPRfYrfPd4i3j2niPq9BwF/iOIR95T2CK7zqxXB4TIpporSE0pItmFgynGTh+IwtZm9iAY6pgENShKQaHxJvNj1O5ddYeCwW3H2SqjrHroeOt82xGkH5stZ7g28Uy7iPIPEehlkrB7ry/KjLq9DAo4zVneHhfKJBUBTBxz944AZhd0d9VvSRGgEXnmxzTsHma9hnkwQfGdbXwH4ja582o7hPEI98AAgoo5OCuV/vyMHHgrJBa7z+7eRtGnCeg+EJZy9WlsilHHGze4QGDEDc4NJypNZM4JON503hXON
x-amz-target:ElasticMapReduce.DescribeStep
content-type;host;x-amz-date;x-amz-security-token;x-amz-target
2a131454435119560c6fa09b6b1eeeb557aba91e61af62fe4883ccc24890c4f3
[2021-08-08 05:31:14,827] {auth.py:383} DEBUG - StringToSign:
AWS4-HMAC-SHA256
20210808T053114Z
20210808/eu-west-1/elasticmapreduce/aws4_request
a2f4ed4536a8bb05d35fc345f45eec9b42f7e071c230286854f034ea4878ced2
[2021-08-08 05:31:14,827] {auth.py:385} DEBUG - Signature:
90da79c86917ea04d8aed50abba5b1b3d5152e5327941eda3bf485e6af620e6b
[2021-08-08 05:31:14,827] {endpoint.py:187} DEBUG - Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://eu-west-1.elasticmapreduce.amazonaws.com/, headers={'X-Amz-Target': b'ElasticMapReduce.DescribeStep', 'Content-Type': b'application/x-amz-json-1.1', 'User-Agent': b'Boto3/1.17.107 Python/3.6.13 Linux/4.14.238-182.422.amzn2.x86_64 exec-env/AWS_ECS_FARGATE Botocore/1.20.107', 'X-Amz-Date': b'20210808T053114Z', 'X-Amz-Security-Token': b'IQoJb3JpZ2luX2VjEGwaCWV1LXdlc3QtMSJHMEUCIQCZ4NXI3+3YJKZwyu+L4vTyY4swRSd7+zHkDO3Nwc0JiwIgdDuzR2+qJ5vFE03B1RRhzZYGV4Iy/pt7jVXRr0YjXTUqogQIhP//////////ARABGgwyODM3NzQxNDgzNTciDDl+9YdFHetmruZnfSr2A4vFCZwFNe0LEigdz0ayjIhvTZMsjY6CClml27JRBbUllyWz6t3b5SjafRWERgfEe1xIjnFFvp/UFSDIrZVuOefX94uUcgWQKV5zhz/dHdpCzpPltF+syapd2IeY5lgaUZWr+ax+Pfs75JILyfTpa7u43hg1M6P9L07zP/IUWdrXvyvu0wVh07r6/bHUDKJGy52Ok2q6Hr4ltT4MVAY/EZIEDZA8dlNdd7/UDddecp+/7/QIMftzZsgQJVyO+IIB+cfHCIV+1g/ACnsSbBkJuH2fn/B0YeP6e1135yTFknzNKVUxf6OeBIuPrkcu78HnaOXcjv+JSKb9AcFP+2zOo9JYmr040XGVqesZiAc+uDWbL74LDQ7ze5b4sLSNXfCCEvqsYVy9Nt7UlopCXoIS2lBrWgXNhsppDQ976Gr+WgyV1Wbjx2NZlJFCtSNarwF0qDPBmm6yhQxyKMYarOrUpy9aNl/18ujIhJZ2/JMUYlzH0TOBc1YCKIuZLNPwYfxZW6JmosfKXjAFUK7eDn4tU6LSXyo2GNLYzjY71OyCOpllJYtxg/NDAQBlmMCbFPpFCCTjPECU0sGnhfPAdlsyYngT3L0bSyjAZpPRfYrfPd4i3j2niPq9BwF/iOIR95T2CK7zqxXB4TIpporSE0pItmFgynGTh+IwtZm9iAY6pgENShKQaHxJvNj1O5ddYeCwW3H2SqjrHroeOt82xGkH5stZ7g28Uy7iPIPEehlkrB7ry/KjLq9DAo4zVneHhfKJBUBTBxz944AZhd0d9VvSRGgEXnmxzTsHma9hnkwQfGdbXwH4ja582o7hPEI98AAgoo5OCuV/vyMHHgrJBa7z+7eRtGnCeg+EJZy9WlsilHHGze4QGDEDc4NJypNZM4JON503hXON', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAUEESB34CT3URIQHE/20210808/eu-west-1/elasticmapreduce/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=90da79c86917ea04d8aed50abba5b1b3d5152e5327941eda3bf485e6af620e6b', 'Content-Length': '59'}>
[2021-08-08 05:31:14,828] {httpsession.py:50} DEBUG - Certificate path: /home/airflow/.local/lib/python3.6/site-packages/certifi/cacert.pem
[2021-08-08 05:31:14,828] {connectionpool.py:943} DEBUG - Starting new HTTPS connection (1): eu-west-1.elasticmapreduce.amazonaws.com:443
[2021-08-08 05:31:15,021] {connectionpool.py:442} DEBUG - https://eu-west-1.elasticmapreduce.amazonaws.com:443 "POST / HTTP/1.1" 200 799
[2021-08-08 05:31:15,021] {parsers.py:233} DEBUG - Response headers: {'x-amzn-RequestId': '12e9220a-4dc3-4ca0-9ec9-93a529032f9b', 'Content-Type': 'application/x-amz-json-1.1', 'Content-Length': '799', 'Date': 'Sun, 08 Aug 2021 05:31:14 GMT'}
[2021-08-08 05:31:15,021] {parsers.py:234} DEBUG - Response body:
b'{"Step":{"ActionOnFailure":"CONTINUE","Config":{"Args":["spark-submit","--deploy-mode","cluster","--master","yarn","--driver-memory","2G","--executor-memory","8G","--num-executors","5","--executor-cores","3","--packages","io.delta:delta-core_2.11:0.6.1","--py-files","s3://vrt-datalake-artifacts-prod/adobe-target-catalog-sporza/python/adobe_target_catalog_sporza-1.0.0-py3.7_6.egg,s3://vrt-datalake-artifacts-prod/python-datalake-helpers/vrt_datalake_helpers-21-py3-none-any.whl","s3://vrt-datalake-artifacts-prod/adobe-target-catalog-sporza/python/run_6.py","prod","2021-08-08 05:28:00"],"Jar":"command-runner.jar","Properties":{}},"Id":"s-581MKMYKRED7","Name":"adobe-target-catalog-sporza-job","Status":{"State":"PENDING","StateChangeReason":{},"Timeline":{"CreationDateTime":1.628400523922E9}}}}'
[2021-08-08 05:31:15,022] {hooks.py:210} DEBUG - Event needs-retry.emr.DescribeStep: calling handler <botocore.retryhandler.RetryHandler object at 0x7fc8db9b82e8>
[2021-08-08 05:31:15,022] {retryhandler.py:187} DEBUG - No retry needed.
[2021-08-08 05:31:15,023] {emr_base.py:66} INFO - Job flow currently PENDING
[2021-08-08 05:31:15,023] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:31:17,730] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:31:17,771] {taskinstance.py:1906} DEBUG - Task Duration set to 25.225634
[2021-08-08 05:31:21,580] {taskinstance.py:1484} INFO - Rescheduling task, marking task as UP_FOR_RESCHEDULE
[2021-08-08 05:31:21,581] {cli_action_loggers.py:84} DEBUG - Calling callbacks: []
[2021-08-08 05:31:24,405] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:31:26,452] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]>
[2021-08-08 05:31:26,531] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:31:26,531] {local_task_job.py:149} INFO - Task exited with return code 0
[2021-08-08 05:31:26,531] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]> from DB
[2021-08-08 05:31:27,269] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]>
[2021-08-08 05:32:35,215] {__init__.py:51} DEBUG - Loading core task runner: StandardTaskRunner
[2021-08-08 05:32:36,815] {base_task_runner.py:62} DEBUG - Planning to run as the user
[2021-08-08 05:32:36,817] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> from DB
[2021-08-08 05:32:38,537] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:32:38,537] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:32:38,538] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance State' PASSED: True, Task state queued was valid.
[2021-08-08 05:32:38,578] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:32:38,578] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:32:38,579] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance Not Running' PASSED: True, Task is not in running state.
[2021-08-08 05:32:38,579] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:32:38,579] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:32:39,309] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:32:39,310] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:32:39,477] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Pool Slots Available' PASSED: True, ('There are enough open slots in %s to execute the task', 'default_pool')
[2021-08-08 05:32:39,477] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Concurrency' PASSED: True, Task concurrency is not set.
[2021-08-08 05:32:39,477] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:32:39,477] {taskinstance.py:1087} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:32:39,477] {taskinstance.py:1088} INFO - Starting attempt 1 of 1
[2021-08-08 05:32:39,477] {taskinstance.py:1089} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:32:43,976] {taskinstance.py:1107} INFO - Executing <Task(EmrStepSensor): watch_adobe_target_catalog_sporza_job_emr_step> on 2021-08-07T05:28:00+00:00
[2021-08-08 05:32:43,979] {standard_task_runner.py:52} INFO - Started process 8339 to run task
[2021-08-08 05:32:43,984] {standard_task_runner.py:76} INFO - Running: ['airflow', 'tasks', 'run', 'derived.adobe_target_catalog_sporza', 'watch_adobe_target_catalog_sporza_job_emr_step', '2021-08-07T05:28:00+00:00', '--job-id', '98962', '--pool', 'default_pool', '--raw', '--subdir', 'DAGS_FOLDER/adobe_target_catalog_sporza_wf.py', '--cfg-path', '/tmp/tmpbqux_rdl', '--error-file', '/tmp/tmpyb9gdojg']
[2021-08-08 05:32:43,984] {standard_task_runner.py:77} INFO - Job 98962: Subtask watch_adobe_target_catalog_sporza_job_emr_step
[2021-08-08 05:32:43,985] {cli_action_loggers.py:66} DEBUG - Calling callbacks: [<function default_action_log at 0x7fc8dfbe5d90>]
[2021-08-08 05:32:51,719] {settings.py:208} DEBUG - Setting up DB connection pool (PID 8339)
[2021-08-08 05:32:51,720] {settings.py:244} DEBUG - settings.prepare_engine_args(): Using NullPool
[2021-08-08 05:32:51,722] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [None]> from DB
[2021-08-08 05:32:53,315] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:32:54,868] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:32:55,812] {logging_mixin.py:104} INFO - Running <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> on host ip-172-31-58-121.eu-west-1.compute.internal
[2021-08-08 05:32:55,813] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:32:57,199] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:32:57,203] {local_task_job.py:194} WARNING - Recorded pid 7972 does not match the current pid 8339
[2021-08-08 05:32:57,206] {process_utils.py:100} INFO - Sending Signals.SIGTERM to GPID 8339
[2021-08-08 05:32:57,210] {process_utils.py:66} INFO - Process psutil.Process(pid=8339, status='terminated', exitcode=<Negsignal.SIGTERM: -15>, started='05:32:43') (8339) terminated with exit code Negsignal.SIGTERM"><pre class="notranslate"><code class="notranslate">*** Reading local file: /opt/airflow/logs/derived.adobe_target_catalog_sporza/watch_adobe_target_catalog_sporza_job_emr_step/2021-08-07T05:28:00+00:00/1.log
[2021-08-08 05:29:20,367] {__init__.py:51} DEBUG - Loading core task runner: StandardTaskRunner
[2021-08-08 05:29:21,594] {base_task_runner.py:62} DEBUG - Planning to run as the user
[2021-08-08 05:29:21,597] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> from DB
[2021-08-08 05:29:22,086] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:29:22,086] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:29:22,086] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance State' PASSED: True, Task state queued was valid.
[2021-08-08 05:29:22,128] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:29:22,128] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:29:22,129] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance Not Running' PASSED: True, Task is not in running state.
[2021-08-08 05:29:22,130] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:29:22,130] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:29:22,165] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:29:22,206] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:29:22,327] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Pool Slots Available' PASSED: True, ('There are enough open slots in %s to execute the task', 'default_pool')
[2021-08-08 05:29:22,327] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Concurrency' PASSED: True, Task concurrency is not set.
[2021-08-08 05:29:22,327] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:29:22,327] {taskinstance.py:1087} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:29:22,327] {taskinstance.py:1088} INFO - Starting attempt 1 of 1
[2021-08-08 05:29:22,327] {taskinstance.py:1089} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:29:24,417] {taskinstance.py:1107} INFO - Executing <Task(EmrStepSensor): watch_adobe_target_catalog_sporza_job_emr_step> on 2021-08-07T05:28:00+00:00
[2021-08-08 05:29:24,421] {standard_task_runner.py:52} INFO - Started process 7426 to run task
[2021-08-08 05:29:24,427] {standard_task_runner.py:76} INFO - Running: ['airflow', 'tasks', 'run', 'derived.adobe_target_catalog_sporza', 'watch_adobe_target_catalog_sporza_job_emr_step', '2021-08-07T05:28:00+00:00', '--job-id', '98940', '--pool', 'default_pool', '--raw', '--subdir', 'DAGS_FOLDER/adobe_target_catalog_sporza_wf.py', '--cfg-path', '/tmp/tmpucsqr5ep', '--error-file', '/tmp/tmpi1wh32jz']
[2021-08-08 05:29:24,427] {standard_task_runner.py:77} INFO - Job 98940: Subtask watch_adobe_target_catalog_sporza_job_emr_step
[2021-08-08 05:29:24,428] {cli_action_loggers.py:66} DEBUG - Calling callbacks: [<function default_action_log at 0x7fc8dfbe5d90>]
[2021-08-08 05:29:26,223] {settings.py:208} DEBUG - Setting up DB connection pool (PID 7426)
[2021-08-08 05:29:26,223] {settings.py:244} DEBUG - settings.prepare_engine_args(): Using NullPool
[2021-08-08 05:29:26,226] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [None]> from DB
[2021-08-08 05:29:27,030] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:29:27,523] {logging_mixin.py:104} INFO - Running <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> on host ip-172-31-58-121.eu-west-1.compute.internal
[2021-08-08 05:29:27,523] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:29:28,218] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:29:28,871] {taskinstance.py:677} DEBUG - Clearing XCom data
[2021-08-08 05:29:29,515] {taskinstance.py:684} DEBUG - XCom data cleared
[2021-08-08 05:29:32,916] {taskinstance.py:1302} INFO - Exporting the following env vars:
AIRFLOW_CTX_DAG_OWNER=vrt
AIRFLOW_CTX_DAG_ID=derived.adobe_target_catalog_sporza
AIRFLOW_CTX_TASK_ID=watch_adobe_target_catalog_sporza_job_emr_step
AIRFLOW_CTX_EXECUTION_DATE=2021-08-07T05:28:00+00:00
AIRFLOW_CTX_DAG_RUN_ID=scheduled__2021-08-07T05:28:00+00:00
[2021-08-08 05:29:32,916] {__init__.py:146} DEBUG - Preparing lineage inlets and outlets
[2021-08-08 05:29:32,916] {__init__.py:190} DEBUG - inlets: [], outlets: []
[2021-08-08 05:29:33,486] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:29:36,437] {base_aws.py:368} INFO - Airflow Connection: aws_conn_id=aws_default
[2021-08-08 05:29:36,521] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:29:36,562] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:29:38,654] {base_aws.py:179} INFO - No credentials retrieved from Connection
[2021-08-08 05:29:38,654] {base_aws.py:87} INFO - Creating session with aws_access_key_id=None region_name=None
[2021-08-08 05:29:38,655] {hooks.py:417} DEBUG - Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
[2021-08-08 05:29:38,656] {hooks.py:417} DEBUG - Changing event name from before-call.apigateway to before-call.api-gateway
[2021-08-08 05:29:38,657] {hooks.py:417} DEBUG - Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
[2021-08-08 05:29:38,659] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
[2021-08-08 05:29:38,659] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
[2021-08-08 05:29:38,659] {hooks.py:417} DEBUG - Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
[2021-08-08 05:29:38,660] {hooks.py:417} DEBUG - Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
[2021-08-08 05:29:38,663] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
[2021-08-08 05:29:38,663] {hooks.py:417} DEBUG - Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
[2021-08-08 05:29:38,663] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
[2021-08-08 05:29:38,663] {hooks.py:417} DEBUG - Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
[2021-08-08 05:29:38,664] {base_aws.py:157} INFO - role_arn is None
[2021-08-08 05:29:38,667] {utils.py:364} DEBUG - IMDS ENDPOINT: http://169.254.169.254/
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: env
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: assume-role
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: assume-role-with-web-identity
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: sso
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: shared-credentials-file
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: custom-process
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: config-file
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: ec2-credentials-file
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: boto-config
[2021-08-08 05:29:38,670] {credentials.py:1974} DEBUG - Looking for credentials via: container-role
[2021-08-08 05:29:38,671] {connectionpool.py:230} DEBUG - Starting new HTTP connection (1): 169.254.170.2:80
[2021-08-08 05:29:38,673] {connectionpool.py:442} DEBUG - http://169.254.170.2:80 "GET /v2/credentials/c5f7099a-d46e-4472-a48f-6c137db9e75d HTTP/1.1" 200 1307
[2021-08-08 05:29:38,674] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/endpoints.json
[2021-08-08 05:29:38,683] {hooks.py:210} DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x7fc8dbee8bf8>
[2021-08-08 05:29:38,691] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/emr/2009-03-31/service-2.json
[2021-08-08 05:29:38,695] {hooks.py:210} DEBUG - Event creating-client-class.emr: calling handler <function add_generate_presigned_url at 0x7fc8dbf947b8>
[2021-08-08 05:29:38,697] {endpoint.py:292} DEBUG - Setting elasticmapreduce timeout as (60, 60)
[2021-08-08 05:29:38,698] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/_retry.json
[2021-08-08 05:29:38,698] {client.py:166} DEBUG - Registering retry handlers for service: emr
[2021-08-08 05:29:38,699] {emr_step.py:73} INFO - Poking step s-581MKMYKRED7 on cluster j-XDTNJDHR23RQ
[2021-08-08 05:29:38,699] {hooks.py:210} DEBUG - Event before-parameter-build.emr.DescribeStep: calling handler <function generate_idempotent_uuid at 0x7fc8dbf06048>
[2021-08-08 05:29:38,699] {hooks.py:210} DEBUG - Event before-call.emr.DescribeStep: calling handler <function inject_api_version_header_if_needed at 0x7fc8dbf077b8>
[2021-08-08 05:29:38,699] {endpoint.py:101} DEBUG - Making request for OperationModel(name=DescribeStep) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'X-Amz-Target': 'ElasticMapReduce.DescribeStep', 'Content-Type': 'application/x-amz-json-1.1', 'User-Agent': 'Boto3/1.17.107 Python/3.6.13 Linux/4.14.238-182.422.amzn2.x86_64 exec-env/AWS_ECS_FARGATE Botocore/1.20.107'}, 'body': b'{"ClusterId": "j-XDTNJDHR23RQ", "StepId": "s-581MKMYKRED7"}', 'url': 'https://eu-west-1.elasticmapreduce.amazonaws.com/', 'context': {'client_region': 'eu-west-1', 'client_config': <botocore.config.Config object at 0x7fc8dba19470>, 'has_streaming_input': False, 'auth_type': None}}
[2021-08-08 05:29:38,700] {hooks.py:210} DEBUG - Event request-created.emr.DescribeStep: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7fc8dba19438>>
[2021-08-08 05:29:38,700] {hooks.py:210} DEBUG - Event choose-signer.emr.DescribeStep: calling handler <function set_operation_specific_signer at 0x7fc8dbf01ea0>
[2021-08-08 05:29:38,700] {auth.py:380} DEBUG - Calculating signature using v4 auth.
[2021-08-08 05:29:38,700] {auth.py:381} DEBUG - CanonicalRequest:
POST
/
content-type:application/x-amz-json-1.1
host:eu-west-1.elasticmapreduce.amazonaws.com
x-amz-date:20210808T052938Z
x-amz-security-token:IQoJb3JpZ2luX2VjEGwaCWV1LXdlc3QtMSJHMEUCIQCZ4NXI3+3YJKZwyu+L4vTyY4swRSd7+zHkDO3Nwc0JiwIgdDuzR2+qJ5vFE03B1RRhzZYGV4Iy/pt7jVXRr0YjXTUqogQIhP//////////ARABGgwyODM3NzQxNDgzNTciDDl+9YdFHetmruZnfSr2A4vFCZwFNe0LEigdz0ayjIhvTZMsjY6CClml27JRBbUllyWz6t3b5SjafRWERgfEe1xIjnFFvp/UFSDIrZVuOefX94uUcgWQKV5zhz/dHdpCzpPltF+syapd2IeY5lgaUZWr+ax+Pfs75JILyfTpa7u43hg1M6P9L07zP/IUWdrXvyvu0wVh07r6/bHUDKJGy52Ok2q6Hr4ltT4MVAY/EZIEDZA8dlNdd7/UDddecp+/7/QIMftzZsgQJVyO+IIB+cfHCIV+1g/ACnsSbBkJuH2fn/B0YeP6e1135yTFknzNKVUxf6OeBIuPrkcu78HnaOXcjv+JSKb9AcFP+2zOo9JYmr040XGVqesZiAc+uDWbL74LDQ7ze5b4sLSNXfCCEvqsYVy9Nt7UlopCXoIS2lBrWgXNhsppDQ976Gr+WgyV1Wbjx2NZlJFCtSNarwF0qDPBmm6yhQxyKMYarOrUpy9aNl/18ujIhJZ2/JMUYlzH0TOBc1YCKIuZLNPwYfxZW6JmosfKXjAFUK7eDn4tU6LSXyo2GNLYzjY71OyCOpllJYtxg/NDAQBlmMCbFPpFCCTjPECU0sGnhfPAdlsyYngT3L0bSyjAZpPRfYrfPd4i3j2niPq9BwF/iOIR95T2CK7zqxXB4TIpporSE0pItmFgynGTh+IwtZm9iAY6pgENShKQaHxJvNj1O5ddYeCwW3H2SqjrHroeOt82xGkH5stZ7g28Uy7iPIPEehlkrB7ry/KjLq9DAo4zVneHhfKJBUBTBxz944AZhd0d9VvSRGgEXnmxzTsHma9hnkwQfGdbXwH4ja582o7hPEI98AAgoo5OCuV/vyMHHgrJBa7z+7eRtGnCeg+EJZy9WlsilHHGze4QGDEDc4NJypNZM4JON503hXON
x-amz-target:ElasticMapReduce.DescribeStep
content-type;host;x-amz-date;x-amz-security-token;x-amz-target
2a131454435119560c6fa09b6b1eeeb557aba91e61af62fe4883ccc24890c4f3
[2021-08-08 05:29:38,700] {auth.py:383} DEBUG - StringToSign:
AWS4-HMAC-SHA256
20210808T052938Z
20210808/eu-west-1/elasticmapreduce/aws4_request
29f0d229d76daf02f334b8c7d193cb06de4619f4adb7b3057683f53b2ea79c80
[2021-08-08 05:29:38,700] {auth.py:385} DEBUG - Signature:
66e13f874221cb3c1b275a052ac56a7e827d431e940bfe9b14414104e0a3b162
[2021-08-08 05:29:38,701] {endpoint.py:187} DEBUG - Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://eu-west-1.elasticmapreduce.amazonaws.com/, headers={'X-Amz-Target': b'ElasticMapReduce.DescribeStep', 'Content-Type': b'application/x-amz-json-1.1', 'User-Agent': b'Boto3/1.17.107 Python/3.6.13 Linux/4.14.238-182.422.amzn2.x86_64 exec-env/AWS_ECS_FARGATE Botocore/1.20.107', 'X-Amz-Date': b'20210808T052938Z', 'X-Amz-Security-Token': b'IQoJb3JpZ2luX2VjEGwaCWV1LXdlc3QtMSJHMEUCIQCZ4NXI3+3YJKZwyu+L4vTyY4swRSd7+zHkDO3Nwc0JiwIgdDuzR2+qJ5vFE03B1RRhzZYGV4Iy/pt7jVXRr0YjXTUqogQIhP//////////ARABGgwyODM3NzQxNDgzNTciDDl+9YdFHetmruZnfSr2A4vFCZwFNe0LEigdz0ayjIhvTZMsjY6CClml27JRBbUllyWz6t3b5SjafRWERgfEe1xIjnFFvp/UFSDIrZVuOefX94uUcgWQKV5zhz/dHdpCzpPltF+syapd2IeY5lgaUZWr+ax+Pfs75JILyfTpa7u43hg1M6P9L07zP/IUWdrXvyvu0wVh07r6/bHUDKJGy52Ok2q6Hr4ltT4MVAY/EZIEDZA8dlNdd7/UDddecp+/7/QIMftzZsgQJVyO+IIB+cfHCIV+1g/ACnsSbBkJuH2fn/B0YeP6e1135yTFknzNKVUxf6OeBIuPrkcu78HnaOXcjv+JSKb9AcFP+2zOo9JYmr040XGVqesZiAc+uDWbL74LDQ7ze5b4sLSNXfCCEvqsYVy9Nt7UlopCXoIS2lBrWgXNhsppDQ976Gr+WgyV1Wbjx2NZlJFCtSNarwF0qDPBmm6yhQxyKMYarOrUpy9aNl/18ujIhJZ2/JMUYlzH0TOBc1YCKIuZLNPwYfxZW6JmosfKXjAFUK7eDn4tU6LSXyo2GNLYzjY71OyCOpllJYtxg/NDAQBlmMCbFPpFCCTjPECU0sGnhfPAdlsyYngT3L0bSyjAZpPRfYrfPd4i3j2niPq9BwF/iOIR95T2CK7zqxXB4TIpporSE0pItmFgynGTh+IwtZm9iAY6pgENShKQaHxJvNj1O5ddYeCwW3H2SqjrHroeOt82xGkH5stZ7g28Uy7iPIPEehlkrB7ry/KjLq9DAo4zVneHhfKJBUBTBxz944AZhd0d9VvSRGgEXnmxzTsHma9hnkwQfGdbXwH4ja582o7hPEI98AAgoo5OCuV/vyMHHgrJBa7z+7eRtGnCeg+EJZy9WlsilHHGze4QGDEDc4NJypNZM4JON503hXON', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAUEESB34CT3URIQHE/20210808/eu-west-1/elasticmapreduce/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=66e13f874221cb3c1b275a052ac56a7e827d431e940bfe9b14414104e0a3b162', 'Content-Length': '59'}>
[2021-08-08 05:29:38,702] {httpsession.py:50} DEBUG - Certificate path: /home/airflow/.local/lib/python3.6/site-packages/certifi/cacert.pem
[2021-08-08 05:29:38,702] {connectionpool.py:943} DEBUG - Starting new HTTPS connection (1): eu-west-1.elasticmapreduce.amazonaws.com:443
[2021-08-08 05:29:38,752] {connectionpool.py:442} DEBUG - https://eu-west-1.elasticmapreduce.amazonaws.com:443 "POST / HTTP/1.1" 200 799
[2021-08-08 05:29:38,752] {parsers.py:233} DEBUG - Response headers: {'x-amzn-RequestId': 'ecacd9e3-44b2-4a00-a4f0-48efe0d65847', 'Content-Type': 'application/x-amz-json-1.1', 'Content-Length': '799', 'Date': 'Sun, 08 Aug 2021 05:29:38 GMT'}
[2021-08-08 05:29:38,752] {parsers.py:234} DEBUG - Response body:
b'{"Step":{"ActionOnFailure":"CONTINUE","Config":{"Args":["spark-submit","--deploy-mode","cluster","--master","yarn","--driver-memory","2G","--executor-memory","8G","--num-executors","5","--executor-cores","3","--packages","io.delta:delta-core_2.11:0.6.1","--py-files","s3://vrt-datalake-artifacts-prod/adobe-target-catalog-sporza/python/adobe_target_catalog_sporza-1.0.0-py3.7_6.egg,s3://vrt-datalake-artifacts-prod/python-datalake-helpers/vrt_datalake_helpers-21-py3-none-any.whl","s3://vrt-datalake-artifacts-prod/adobe-target-catalog-sporza/python/run_6.py","prod","2021-08-08 05:28:00"],"Jar":"command-runner.jar","Properties":{}},"Id":"s-581MKMYKRED7","Name":"adobe-target-catalog-sporza-job","Status":{"State":"PENDING","StateChangeReason":{},"Timeline":{"CreationDateTime":1.628400523922E9}}}}'
[2021-08-08 05:29:38,753] {hooks.py:210} DEBUG - Event needs-retry.emr.DescribeStep: calling handler <botocore.retryhandler.RetryHandler object at 0x7fc8dba19860>
[2021-08-08 05:29:38,753] {retryhandler.py:187} DEBUG - No retry needed.
[2021-08-08 05:29:38,753] {emr_base.py:66} INFO - Job flow currently PENDING
[2021-08-08 05:29:38,753] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:29:39,718] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:29:39,748] {taskinstance.py:1906} DEBUG - Task Duration set to 17.617928
[2021-08-08 05:29:42,695] {taskinstance.py:1484} INFO - Rescheduling task, marking task as UP_FOR_RESCHEDULE
[2021-08-08 05:29:42,696] {cli_action_loggers.py:84} DEBUG - Calling callbacks: []
[2021-08-08 05:29:44,944] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:29:48,268] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]>
[2021-08-08 05:29:48,674] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:29:48,674] {local_task_job.py:149} INFO - Task exited with return code 0
[2021-08-08 05:29:48,675] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]> from DB
[2021-08-08 05:29:49,740] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]>
[2021-08-08 05:30:49,437] {__init__.py:51} DEBUG - Loading core task runner: StandardTaskRunner
[2021-08-08 05:30:51,569] {base_task_runner.py:62} DEBUG - Planning to run as the user
[2021-08-08 05:30:51,572] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> from DB
[2021-08-08 05:30:52,465] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:30:52,465] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:30:52,465] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance State' PASSED: True, Task state queued was valid.
[2021-08-08 05:30:52,544] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:30:52,544] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:30:52,545] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance Not Running' PASSED: True, Task is not in running state.
[2021-08-08 05:30:52,546] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:30:52,546] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:30:52,593] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:30:52,593] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:30:52,756] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Pool Slots Available' PASSED: True, ('There are enough open slots in %s to execute the task', 'default_pool')
[2021-08-08 05:30:52,756] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Concurrency' PASSED: True, Task concurrency is not set.
[2021-08-08 05:30:52,756] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:30:52,756] {taskinstance.py:1087} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:30:52,756] {taskinstance.py:1088} INFO - Starting attempt 1 of 1
[2021-08-08 05:30:52,756] {taskinstance.py:1089} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:30:53,648] {taskinstance.py:1107} INFO - Executing <Task(EmrStepSensor): watch_adobe_target_catalog_sporza_job_emr_step> on 2021-08-07T05:28:00+00:00
[2021-08-08 05:30:53,651] {standard_task_runner.py:52} INFO - Started process 7972 to run task
[2021-08-08 05:30:53,655] {standard_task_runner.py:76} INFO - Running: ['airflow', 'tasks', 'run', 'derived.adobe_target_catalog_sporza', 'watch_adobe_target_catalog_sporza_job_emr_step', '2021-08-07T05:28:00+00:00', '--job-id', '98953', '--pool', 'default_pool', '--raw', '--subdir', 'DAGS_FOLDER/adobe_target_catalog_sporza_wf.py', '--cfg-path', '/tmp/tmppdcqbh0o', '--error-file', '/tmp/tmpdky_uy36']
[2021-08-08 05:30:53,655] {standard_task_runner.py:77} INFO - Job 98953: Subtask watch_adobe_target_catalog_sporza_job_emr_step
[2021-08-08 05:30:53,656] {cli_action_loggers.py:66} DEBUG - Calling callbacks: [<function default_action_log at 0x7fc8dfbe5d90>]
[2021-08-08 05:30:54,515] {settings.py:208} DEBUG - Setting up DB connection pool (PID 7972)
[2021-08-08 05:30:54,515] {settings.py:244} DEBUG - settings.prepare_engine_args(): Using NullPool
[2021-08-08 05:30:54,517] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [None]> from DB
[2021-08-08 05:30:57,090] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:30:58,979] {logging_mixin.py:104} INFO - Running <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> on host ip-172-31-58-121.eu-west-1.compute.internal
[2021-08-08 05:30:58,979] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:30:59,588] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:31:03,931] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:31:04,181] {taskinstance.py:677} DEBUG - Clearing XCom data
[2021-08-08 05:31:04,914] {taskinstance.py:684} DEBUG - XCom data cleared
[2021-08-08 05:31:05,896] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:31:05,934] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:31:12,815] {taskinstance.py:1302} INFO - Exporting the following env vars:
AIRFLOW_CTX_DAG_OWNER=vrt
AIRFLOW_CTX_DAG_ID=derived.adobe_target_catalog_sporza
AIRFLOW_CTX_TASK_ID=watch_adobe_target_catalog_sporza_job_emr_step
AIRFLOW_CTX_EXECUTION_DATE=2021-08-07T05:28:00+00:00
AIRFLOW_CTX_DAG_RUN_ID=scheduled__2021-08-07T05:28:00+00:00
[2021-08-08 05:31:12,815] {__init__.py:146} DEBUG - Preparing lineage inlets and outlets
[2021-08-08 05:31:12,816] {__init__.py:190} DEBUG - inlets: [], outlets: []
[2021-08-08 05:31:13,431] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:31:13,718] {base_aws.py:368} INFO - Airflow Connection: aws_conn_id=aws_default
[2021-08-08 05:31:14,251] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:31:14,293] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:31:14,780] {base_aws.py:179} INFO - No credentials retrieved from Connection
[2021-08-08 05:31:14,780] {base_aws.py:87} INFO - Creating session with aws_access_key_id=None region_name=None
[2021-08-08 05:31:14,781] {hooks.py:417} DEBUG - Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
[2021-08-08 05:31:14,783] {hooks.py:417} DEBUG - Changing event name from before-call.apigateway to before-call.api-gateway
[2021-08-08 05:31:14,784] {hooks.py:417} DEBUG - Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
[2021-08-08 05:31:14,786] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
[2021-08-08 05:31:14,786] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
[2021-08-08 05:31:14,786] {hooks.py:417} DEBUG - Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
[2021-08-08 05:31:14,787] {hooks.py:417} DEBUG - Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
[2021-08-08 05:31:14,790] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
[2021-08-08 05:31:14,790] {hooks.py:417} DEBUG - Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
[2021-08-08 05:31:14,790] {hooks.py:417} DEBUG - Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
[2021-08-08 05:31:14,790] {hooks.py:417} DEBUG - Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
[2021-08-08 05:31:14,791] {base_aws.py:157} INFO - role_arn is None
[2021-08-08 05:31:14,794] {utils.py:364} DEBUG - IMDS ENDPOINT: http://169.254.169.254/
[2021-08-08 05:31:14,796] {credentials.py:1974} DEBUG - Looking for credentials via: env
[2021-08-08 05:31:14,796] {credentials.py:1974} DEBUG - Looking for credentials via: assume-role
[2021-08-08 05:31:14,796] {credentials.py:1974} DEBUG - Looking for credentials via: assume-role-with-web-identity
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: sso
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: shared-credentials-file
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: custom-process
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: config-file
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: ec2-credentials-file
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: boto-config
[2021-08-08 05:31:14,797] {credentials.py:1974} DEBUG - Looking for credentials via: container-role
[2021-08-08 05:31:14,798] {connectionpool.py:230} DEBUG - Starting new HTTP connection (1): 169.254.170.2:80
[2021-08-08 05:31:14,799] {connectionpool.py:442} DEBUG - http://169.254.170.2:80 "GET /v2/credentials/c5f7099a-d46e-4472-a48f-6c137db9e75d HTTP/1.1" 200 1307
[2021-08-08 05:31:14,800] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/endpoints.json
[2021-08-08 05:31:14,810] {hooks.py:210} DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x7fc8dbee9bf8>
[2021-08-08 05:31:14,817] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/emr/2009-03-31/service-2.json
[2021-08-08 05:31:14,822] {hooks.py:210} DEBUG - Event creating-client-class.emr: calling handler <function add_generate_presigned_url at 0x7fc8dbf957b8>
[2021-08-08 05:31:14,824] {endpoint.py:292} DEBUG - Setting elasticmapreduce timeout as (60, 60)
[2021-08-08 05:31:14,825] {loaders.py:174} DEBUG - Loading JSON file: /home/airflow/.local/lib/python3.6/site-packages/botocore/data/_retry.json
[2021-08-08 05:31:14,825] {client.py:166} DEBUG - Registering retry handlers for service: emr
[2021-08-08 05:31:14,826] {emr_step.py:73} INFO - Poking step s-581MKMYKRED7 on cluster j-XDTNJDHR23RQ
[2021-08-08 05:31:14,826] {hooks.py:210} DEBUG - Event before-parameter-build.emr.DescribeStep: calling handler <function generate_idempotent_uuid at 0x7fc8dbf07048>
[2021-08-08 05:31:14,826] {hooks.py:210} DEBUG - Event before-call.emr.DescribeStep: calling handler <function inject_api_version_header_if_needed at 0x7fc8dbf087b8>
[2021-08-08 05:31:14,826] {endpoint.py:101} DEBUG - Making request for OperationModel(name=DescribeStep) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'X-Amz-Target': 'ElasticMapReduce.DescribeStep', 'Content-Type': 'application/x-amz-json-1.1', 'User-Agent': 'Boto3/1.17.107 Python/3.6.13 Linux/4.14.238-182.422.amzn2.x86_64 exec-env/AWS_ECS_FARGATE Botocore/1.20.107'}, 'body': b'{"ClusterId": "j-XDTNJDHR23RQ", "StepId": "s-581MKMYKRED7"}', 'url': 'https://eu-west-1.elasticmapreduce.amazonaws.com/', 'context': {'client_region': 'eu-west-1', 'client_config': <botocore.config.Config object at 0x7fc8dba0feb8>, 'has_streaming_input': False, 'auth_type': None}}
[2021-08-08 05:31:14,826] {hooks.py:210} DEBUG - Event request-created.emr.DescribeStep: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7fc8dba0fe80>>
[2021-08-08 05:31:14,827] {hooks.py:210} DEBUG - Event choose-signer.emr.DescribeStep: calling handler <function set_operation_specific_signer at 0x7fc8dbf01ea0>
[2021-08-08 05:31:14,827] {auth.py:380} DEBUG - Calculating signature using v4 auth.
[2021-08-08 05:31:14,827] {auth.py:381} DEBUG - CanonicalRequest:
POST
/
content-type:application/x-amz-json-1.1
host:eu-west-1.elasticmapreduce.amazonaws.com
x-amz-date:20210808T053114Z
x-amz-security-token:IQoJb3JpZ2luX2VjEGwaCWV1LXdlc3QtMSJHMEUCIQCZ4NXI3+3YJKZwyu+L4vTyY4swRSd7+zHkDO3Nwc0JiwIgdDuzR2+qJ5vFE03B1RRhzZYGV4Iy/pt7jVXRr0YjXTUqogQIhP//////////ARABGgwyODM3NzQxNDgzNTciDDl+9YdFHetmruZnfSr2A4vFCZwFNe0LEigdz0ayjIhvTZMsjY6CClml27JRBbUllyWz6t3b5SjafRWERgfEe1xIjnFFvp/UFSDIrZVuOefX94uUcgWQKV5zhz/dHdpCzpPltF+syapd2IeY5lgaUZWr+ax+Pfs75JILyfTpa7u43hg1M6P9L07zP/IUWdrXvyvu0wVh07r6/bHUDKJGy52Ok2q6Hr4ltT4MVAY/EZIEDZA8dlNdd7/UDddecp+/7/QIMftzZsgQJVyO+IIB+cfHCIV+1g/ACnsSbBkJuH2fn/B0YeP6e1135yTFknzNKVUxf6OeBIuPrkcu78HnaOXcjv+JSKb9AcFP+2zOo9JYmr040XGVqesZiAc+uDWbL74LDQ7ze5b4sLSNXfCCEvqsYVy9Nt7UlopCXoIS2lBrWgXNhsppDQ976Gr+WgyV1Wbjx2NZlJFCtSNarwF0qDPBmm6yhQxyKMYarOrUpy9aNl/18ujIhJZ2/JMUYlzH0TOBc1YCKIuZLNPwYfxZW6JmosfKXjAFUK7eDn4tU6LSXyo2GNLYzjY71OyCOpllJYtxg/NDAQBlmMCbFPpFCCTjPECU0sGnhfPAdlsyYngT3L0bSyjAZpPRfYrfPd4i3j2niPq9BwF/iOIR95T2CK7zqxXB4TIpporSE0pItmFgynGTh+IwtZm9iAY6pgENShKQaHxJvNj1O5ddYeCwW3H2SqjrHroeOt82xGkH5stZ7g28Uy7iPIPEehlkrB7ry/KjLq9DAo4zVneHhfKJBUBTBxz944AZhd0d9VvSRGgEXnmxzTsHma9hnkwQfGdbXwH4ja582o7hPEI98AAgoo5OCuV/vyMHHgrJBa7z+7eRtGnCeg+EJZy9WlsilHHGze4QGDEDc4NJypNZM4JON503hXON
x-amz-target:ElasticMapReduce.DescribeStep
content-type;host;x-amz-date;x-amz-security-token;x-amz-target
2a131454435119560c6fa09b6b1eeeb557aba91e61af62fe4883ccc24890c4f3
[2021-08-08 05:31:14,827] {auth.py:383} DEBUG - StringToSign:
AWS4-HMAC-SHA256
20210808T053114Z
20210808/eu-west-1/elasticmapreduce/aws4_request
a2f4ed4536a8bb05d35fc345f45eec9b42f7e071c230286854f034ea4878ced2
[2021-08-08 05:31:14,827] {auth.py:385} DEBUG - Signature:
90da79c86917ea04d8aed50abba5b1b3d5152e5327941eda3bf485e6af620e6b
[2021-08-08 05:31:14,827] {endpoint.py:187} DEBUG - Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://eu-west-1.elasticmapreduce.amazonaws.com/, headers={'X-Amz-Target': b'ElasticMapReduce.DescribeStep', 'Content-Type': b'application/x-amz-json-1.1', 'User-Agent': b'Boto3/1.17.107 Python/3.6.13 Linux/4.14.238-182.422.amzn2.x86_64 exec-env/AWS_ECS_FARGATE Botocore/1.20.107', 'X-Amz-Date': b'20210808T053114Z', 'X-Amz-Security-Token': b'IQoJb3JpZ2luX2VjEGwaCWV1LXdlc3QtMSJHMEUCIQCZ4NXI3+3YJKZwyu+L4vTyY4swRSd7+zHkDO3Nwc0JiwIgdDuzR2+qJ5vFE03B1RRhzZYGV4Iy/pt7jVXRr0YjXTUqogQIhP//////////ARABGgwyODM3NzQxNDgzNTciDDl+9YdFHetmruZnfSr2A4vFCZwFNe0LEigdz0ayjIhvTZMsjY6CClml27JRBbUllyWz6t3b5SjafRWERgfEe1xIjnFFvp/UFSDIrZVuOefX94uUcgWQKV5zhz/dHdpCzpPltF+syapd2IeY5lgaUZWr+ax+Pfs75JILyfTpa7u43hg1M6P9L07zP/IUWdrXvyvu0wVh07r6/bHUDKJGy52Ok2q6Hr4ltT4MVAY/EZIEDZA8dlNdd7/UDddecp+/7/QIMftzZsgQJVyO+IIB+cfHCIV+1g/ACnsSbBkJuH2fn/B0YeP6e1135yTFknzNKVUxf6OeBIuPrkcu78HnaOXcjv+JSKb9AcFP+2zOo9JYmr040XGVqesZiAc+uDWbL74LDQ7ze5b4sLSNXfCCEvqsYVy9Nt7UlopCXoIS2lBrWgXNhsppDQ976Gr+WgyV1Wbjx2NZlJFCtSNarwF0qDPBmm6yhQxyKMYarOrUpy9aNl/18ujIhJZ2/JMUYlzH0TOBc1YCKIuZLNPwYfxZW6JmosfKXjAFUK7eDn4tU6LSXyo2GNLYzjY71OyCOpllJYtxg/NDAQBlmMCbFPpFCCTjPECU0sGnhfPAdlsyYngT3L0bSyjAZpPRfYrfPd4i3j2niPq9BwF/iOIR95T2CK7zqxXB4TIpporSE0pItmFgynGTh+IwtZm9iAY6pgENShKQaHxJvNj1O5ddYeCwW3H2SqjrHroeOt82xGkH5stZ7g28Uy7iPIPEehlkrB7ry/KjLq9DAo4zVneHhfKJBUBTBxz944AZhd0d9VvSRGgEXnmxzTsHma9hnkwQfGdbXwH4ja582o7hPEI98AAgoo5OCuV/vyMHHgrJBa7z+7eRtGnCeg+EJZy9WlsilHHGze4QGDEDc4NJypNZM4JON503hXON', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAUEESB34CT3URIQHE/20210808/eu-west-1/elasticmapreduce/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=90da79c86917ea04d8aed50abba5b1b3d5152e5327941eda3bf485e6af620e6b', 'Content-Length': '59'}>
[2021-08-08 05:31:14,828] {httpsession.py:50} DEBUG - Certificate path: /home/airflow/.local/lib/python3.6/site-packages/certifi/cacert.pem
[2021-08-08 05:31:14,828] {connectionpool.py:943} DEBUG - Starting new HTTPS connection (1): eu-west-1.elasticmapreduce.amazonaws.com:443
[2021-08-08 05:31:15,021] {connectionpool.py:442} DEBUG - https://eu-west-1.elasticmapreduce.amazonaws.com:443 "POST / HTTP/1.1" 200 799
[2021-08-08 05:31:15,021] {parsers.py:233} DEBUG - Response headers: {'x-amzn-RequestId': '12e9220a-4dc3-4ca0-9ec9-93a529032f9b', 'Content-Type': 'application/x-amz-json-1.1', 'Content-Length': '799', 'Date': 'Sun, 08 Aug 2021 05:31:14 GMT'}
[2021-08-08 05:31:15,021] {parsers.py:234} DEBUG - Response body:
b'{"Step":{"ActionOnFailure":"CONTINUE","Config":{"Args":["spark-submit","--deploy-mode","cluster","--master","yarn","--driver-memory","2G","--executor-memory","8G","--num-executors","5","--executor-cores","3","--packages","io.delta:delta-core_2.11:0.6.1","--py-files","s3://vrt-datalake-artifacts-prod/adobe-target-catalog-sporza/python/adobe_target_catalog_sporza-1.0.0-py3.7_6.egg,s3://vrt-datalake-artifacts-prod/python-datalake-helpers/vrt_datalake_helpers-21-py3-none-any.whl","s3://vrt-datalake-artifacts-prod/adobe-target-catalog-sporza/python/run_6.py","prod","2021-08-08 05:28:00"],"Jar":"command-runner.jar","Properties":{}},"Id":"s-581MKMYKRED7","Name":"adobe-target-catalog-sporza-job","Status":{"State":"PENDING","StateChangeReason":{},"Timeline":{"CreationDateTime":1.628400523922E9}}}}'
[2021-08-08 05:31:15,022] {hooks.py:210} DEBUG - Event needs-retry.emr.DescribeStep: calling handler <botocore.retryhandler.RetryHandler object at 0x7fc8db9b82e8>
[2021-08-08 05:31:15,022] {retryhandler.py:187} DEBUG - No retry needed.
[2021-08-08 05:31:15,023] {emr_base.py:66} INFO - Job flow currently PENDING
[2021-08-08 05:31:15,023] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:31:17,730] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:31:17,771] {taskinstance.py:1906} DEBUG - Task Duration set to 25.225634
[2021-08-08 05:31:21,580] {taskinstance.py:1484} INFO - Rescheduling task, marking task as UP_FOR_RESCHEDULE
[2021-08-08 05:31:21,581] {cli_action_loggers.py:84} DEBUG - Calling callbacks: []
[2021-08-08 05:31:24,405] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:31:26,452] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]>
[2021-08-08 05:31:26,531] {base_job.py:227} DEBUG - [heartbeat]
[2021-08-08 05:31:26,531] {local_task_job.py:149} INFO - Task exited with return code 0
[2021-08-08 05:31:26,531] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]> from DB
[2021-08-08 05:31:27,269] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [up_for_reschedule]>
[2021-08-08 05:32:35,215] {__init__.py:51} DEBUG - Loading core task runner: StandardTaskRunner
[2021-08-08 05:32:36,815] {base_task_runner.py:62} DEBUG - Planning to run as the user
[2021-08-08 05:32:36,817] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> from DB
[2021-08-08 05:32:38,537] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:32:38,537] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:32:38,538] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance State' PASSED: True, Task state queued was valid.
[2021-08-08 05:32:38,578] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:32:38,578] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:32:38,579] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Instance Not Running' PASSED: True, Task is not in running state.
[2021-08-08 05:32:38,579] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:32:38,579] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.
[2021-08-08 05:32:39,309] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Ready To Reschedule' PASSED: True, The task instance is not in State_UP_FOR_RESCHEDULE or NONE state.
[2021-08-08 05:32:39,310] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The task instance was not marked for retrying.
[2021-08-08 05:32:39,477] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Pool Slots Available' PASSED: True, ('There are enough open slots in %s to execute the task', 'default_pool')
[2021-08-08 05:32:39,477] {taskinstance.py:911} DEBUG - <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]> dependency 'Task Concurrency' PASSED: True, Task concurrency is not set.
[2021-08-08 05:32:39,477] {taskinstance.py:896} INFO - Dependencies all met for <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [queued]>
[2021-08-08 05:32:39,477] {taskinstance.py:1087} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:32:39,477] {taskinstance.py:1088} INFO - Starting attempt 1 of 1
[2021-08-08 05:32:39,477] {taskinstance.py:1089} INFO -
--------------------------------------------------------------------------------
[2021-08-08 05:32:43,976] {taskinstance.py:1107} INFO - Executing <Task(EmrStepSensor): watch_adobe_target_catalog_sporza_job_emr_step> on 2021-08-07T05:28:00+00:00
[2021-08-08 05:32:43,979] {standard_task_runner.py:52} INFO - Started process 8339 to run task
[2021-08-08 05:32:43,984] {standard_task_runner.py:76} INFO - Running: ['airflow', 'tasks', 'run', 'derived.adobe_target_catalog_sporza', 'watch_adobe_target_catalog_sporza_job_emr_step', '2021-08-07T05:28:00+00:00', '--job-id', '98962', '--pool', 'default_pool', '--raw', '--subdir', 'DAGS_FOLDER/adobe_target_catalog_sporza_wf.py', '--cfg-path', '/tmp/tmpbqux_rdl', '--error-file', '/tmp/tmpyb9gdojg']
[2021-08-08 05:32:43,984] {standard_task_runner.py:77} INFO - Job 98962: Subtask watch_adobe_target_catalog_sporza_job_emr_step
[2021-08-08 05:32:43,985] {cli_action_loggers.py:66} DEBUG - Calling callbacks: [<function default_action_log at 0x7fc8dfbe5d90>]
[2021-08-08 05:32:51,719] {settings.py:208} DEBUG - Setting up DB connection pool (PID 8339)
[2021-08-08 05:32:51,720] {settings.py:244} DEBUG - settings.prepare_engine_args(): Using NullPool
[2021-08-08 05:32:51,722] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [None]> from DB
[2021-08-08 05:32:53,315] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:32:54,868] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:32:55,812] {logging_mixin.py:104} INFO - Running <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> on host ip-172-31-58-121.eu-west-1.compute.internal
[2021-08-08 05:32:55,813] {taskinstance.py:614} DEBUG - Refreshing TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]> from DB
[2021-08-08 05:32:57,199] {taskinstance.py:649} DEBUG - Refreshed TaskInstance <TaskInstance: derived.adobe_target_catalog_sporza.watch_adobe_target_catalog_sporza_job_emr_step 2021-08-07T05:28:00+00:00 [running]>
[2021-08-08 05:32:57,203] {local_task_job.py:194} WARNING - Recorded pid 7972 does not match the current pid 8339
[2021-08-08 05:32:57,206] {process_utils.py:100} INFO - Sending Signals.SIGTERM to GPID 8339
[2021-08-08 05:32:57,210] {process_utils.py:66} INFO - Process psutil.Process(pid=8339, status='terminated', exitcode=<Negsignal.SIGTERM: -15>, started='05:32:43') (8339) terminated with exit code Negsignal.SIGTERM
</code></pre></div>
</details>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto">I'd expect the EMRStepSensor to run until the EMR step succeeded, and report a succesful run.</p>
<p dir="auto">If my understanding is correct, these final lines in the log show the runner terminating the task process. If I'm reading the log correctly, 8339 is the correct PID for the task, and the recorded pid 7972 is the pid for a previous run. Could it be possible that this pid is not correctly being updated?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2021-08-08 05:32:57,203] {local_task_job.py:194} WARNING - Recorded pid 7972 does not match the current pid 8339
[2021-08-08 05:32:57,206] {process_utils.py:100} INFO - Sending Signals.SIGTERM to GPID 8339
[2021-08-08 05:32:57,210] {process_utils.py:66} INFO - Process psutil.Process(pid=8339, status='terminated', exitcode=<Negsignal.SIGTERM: -15>, started='05:32:43') (8339) terminated with exit code Negsignal.SIGTERM"><pre class="notranslate"><code class="notranslate">[2021-08-08 05:32:57,203] {local_task_job.py:194} WARNING - Recorded pid 7972 does not match the current pid 8339
[2021-08-08 05:32:57,206] {process_utils.py:100} INFO - Sending Signals.SIGTERM to GPID 8339
[2021-08-08 05:32:57,210] {process_utils.py:66} INFO - Process psutil.Process(pid=8339, status='terminated', exitcode=<Negsignal.SIGTERM: -15>, started='05:32:43') (8339) terminated with exit code Negsignal.SIGTERM
</code></pre></div>
<p dir="auto"><strong>Anything else we need to know</strong>:</p>
<p dir="auto">The symptoms look very similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="959156291" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/17394" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/17394/hovercard" href="https://github.com/apache/airflow/issues/17394">#17394</a>, but I'm not using run_as_user, and the reported pids are not the same, so I'm not sure whether this is the same issue.</p> | 0 |
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">I noticed that only linux (using cxOracle) there's an object leak with a specific kind of usage.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy import *
import gc
engine = create_engine('oracle://dsn=somedb&user=myuser&password=mypass')
foo = Table('foo', engine,
Column('id', Integer, Sequence('foo_seq'), primary_key=True),
)
try: foo.drop()
except: pass
try: foo.create()
except: pass
foo.insert().execute()
class Foo(object): pass
foos = mapper(Foo, foo)
while 1:
foos.select()
gc.collect()
objectstore.clear()
gc.collect()
print len(gc.get_objects())"><pre class="notranslate"><code class="notranslate">from sqlalchemy import *
import gc
engine = create_engine('oracle://dsn=somedb&user=myuser&password=mypass')
foo = Table('foo', engine,
Column('id', Integer, Sequence('foo_seq'), primary_key=True),
)
try: foo.drop()
except: pass
try: foo.create()
except: pass
foo.insert().execute()
class Foo(object): pass
foos = mapper(Foo, foo)
while 1:
foos.select()
gc.collect()
objectstore.clear()
gc.collect()
print len(gc.get_objects())
</code></pre></div>
<p dir="auto">The output of the programm is the ever increasing number of objects until it crashes due to out of memory exception (if you don't ctrl+c before)</p>
<p dir="auto">This may need confirmation for other databases and linux distributions (mine is RedHat EL4)</p> | <p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">When I try to use objects linked by relation with backref memory is not released neither after objectstore.flush() nor objectstore.clear() nor objectstore.expunge() nor gc.collect()<br>
When I break backref relation memory cleared by gc.collect() good.<br>
Bug reproduced by usage User/Address objects from your tests.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="for i in xrange(1000):
objectstore.push_session(objectstore.Session())
for j in xrange(1000):
u = User()
u.name = str(randint(0, 100000000))
for k in xrange(10):
a = Address()
a.email_address = str(randint(0, 100000000))
a.user = u
objectstore.pop_session()
gc.collect() "><pre class="notranslate"><code class="notranslate">for i in xrange(1000):
objectstore.push_session(objectstore.Session())
for j in xrange(1000):
u = User()
u.name = str(randint(0, 100000000))
for k in xrange(10):
a = Address()
a.email_address = str(randint(0, 100000000))
a.user = u
objectstore.pop_session()
gc.collect()
</code></pre></div>
<p dir="auto">with backrefs memory grows intensivelly and does not released</p> | 1 |
<p dir="auto">need to emit a 2.0 warning for this, no magic SQL things like this should happen</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def distinct(self, *expr):
r"""Apply a ``DISTINCT`` to the query and return the newly resulting
``Query``.
.. note::
The :meth:`.distinct` call includes logic that will automatically
add columns from the ORDER BY of the query to the columns
clause of the SELECT statement, to satisfy the common need
of the database backend that ORDER BY columns be part of the
SELECT list when DISTINCT is used. These columns *are not*
added to the list of columns actually fetched by the
:class:`.Query`, however, so would not affect results.
The columns are passed through when using the
:attr:`.Query.statement` accessor, however.
"><pre class="notranslate"><code class="notranslate"> def distinct(self, *expr):
r"""Apply a ``DISTINCT`` to the query and return the newly resulting
``Query``.
.. note::
The :meth:`.distinct` call includes logic that will automatically
add columns from the ORDER BY of the query to the columns
clause of the SELECT statement, to satisfy the common need
of the database backend that ORDER BY columns be part of the
SELECT list when DISTINCT is used. These columns *are not*
added to the list of columns actually fetched by the
:class:`.Query`, however, so would not affect results.
The columns are passed through when using the
:attr:`.Query.statement` accessor, however.
</code></pre></div> | <p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p>
<p dir="auto">Starting with r2598, I'm seeing some failures with how I'm using the<br>
association proxy. I've modified the<br>
examples/association/proxied_association.py file which duplicates the<br>
problem.</p>
<p dir="auto">It is possible that I'm not suppose to remove associations like I am.<br>
But it did work before (in 0.3.7 and 0.3.6).</p>
<p dir="auto">It looks like if I read in part of the association into the current<br>
session and then delete it, things don't go so well.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Index: examples/association/proxied_association.py
===================================================================
--- examples/association/proxied_association.py (revision 2723)
+++ examples/association/proxied_association.py (working copy)
@@ -106,8 +106,18 @@
+# new additions to proxied_association.py
+#engine.echo = True
+new_item = Item('new item', 100)
+session.clear()
+order = session.query(Order).get_by(customer_name='john smith')
+bogus = order.items[0](0).item_id # comment out and it works on 0.3.8
+order.itemassociations = None
+session.flush()
+order.items.append(new_item)
+session.flush()"><pre class="notranslate"><code class="notranslate">Index: examples/association/proxied_association.py
===================================================================
--- examples/association/proxied_association.py (revision 2723)
+++ examples/association/proxied_association.py (working copy)
@@ -106,8 +106,18 @@
+# new additions to proxied_association.py
+#engine.echo = True
+new_item = Item('new item', 100)
+session.clear()
+order = session.query(Order).get_by(customer_name='john smith')
+bogus = order.items[0](0).item_id # comment out and it works on 0.3.8
+order.itemassociations = None
+session.flush()
+order.items.append(new_item)
+session.flush()
</code></pre></div>
<p dir="auto">It fails with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="sqlalchemy.exceptions.SQLError: (IntegrityError) orderitems.order_id
may not be NULL u'INSERT INTO orderitems (item_id, price) VALUES (?,
?)' [100](5,)"><pre class="notranslate"><code class="notranslate">sqlalchemy.exceptions.SQLError: (IntegrityError) orderitems.order_id
may not be NULL u'INSERT INTO orderitems (item_id, price) VALUES (?,
?)' [100](5,)
</code></pre></div> | 0 |
<p dir="auto">On master, as a small example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [1]: df = pd.DataFrame([[1,2,3,4],[5,6,7,8]], columns=['A','B','A','B'])
In [2]: df
Out[2]:
A B A B
0 1 2 3 4
1 5 6 7 8
In [4]: df.to_excel('test_excel_duplicate_columns.xlsx')"><pre class="notranslate"><code class="notranslate">In [1]: df = pd.DataFrame([[1,2,3,4],[5,6,7,8]], columns=['A','B','A','B'])
In [2]: df
Out[2]:
A B A B
0 1 2 3 4
1 5 6 7 8
In [4]: df.to_excel('test_excel_duplicate_columns.xlsx')
</code></pre></div>
<p dir="auto">gives:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1020496/9700751/4cacf18e-540f-11e5-923b-e6d6689d569f.PNG"><img src="https://cloud.githubusercontent.com/assets/1020496/9700751/4cacf18e-540f-11e5-923b-e6d6689d569f.PNG" alt="capture" style="max-width: 100%;"></a></p>
<p dir="auto">So the values of columns 2 and 3 are swapped (not the column names)</p>
<p dir="auto">BTW, this happens both with .xlsx as .xls (openpyxl / xlsxwriter / xlwt)</p>
<p dir="auto">Possibly related: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="104714589" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/10982" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/10982/hovercard" href="https://github.com/pandas-dev/pandas/issues/10982">#10982</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="104442704" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/10970" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/10970/hovercard" href="https://github.com/pandas-dev/pandas/issues/10970">#10970</a></p> | <p dir="auto">30% slowdown and up.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="melt_dataframe | 2.7920 | 2.1487 | 1.2994 |
concat_small_frames | 22.1807 | 17.0054 | 1.3043 |
dti_reset_index | 0.2950 | 0.2257 | 1.3070 |
frame_reindex_upcast | 28.8033 | 21.2270 | 1.3569 |
frame_fancy_lookup_all | 30.4507 | 22.1930 | 1.3721 |
timeseries_large_lookup_value | 0.0383 | 0.0277 | 1.3811 |
frame_boolean_row_select | 0.4419 | 0.3170 | 1.3941 |
panel_from_dict_equiv_indexes | 58.9810 | 41.6213 | 1.4171 |
panel_from_dict_same_index | 58.9364 | 41.5120 | 1.4197 |
frame_xs_row | 0.0637 | 0.0443 | 1.4355 |
groupby_frame_singlekey_integer | 4.3193 | 2.9940 | 1.4427 |
frame_ctor_nested_dict | 142.8297 | 98.7384 | 1.4465 |
frame_to_csv2 | 191.4937 | 130.7974 | 1.4640 |
series_ctor_from_dict | 5.1107 | 3.4617 | 1.4764 |
groupby_multi_python | 175.8397 | 117.9717 | 1.4905 |
frame_to_csv | 237.1720 | 154.0547 | 1.5395 |
series_string_vector_slice | 325.1186 | 208.9640 | 1.5559 |
indexing_panel_subset | 0.9351 | 0.5874 | 1.5919 |
frame_insert_500_columns_end | 198.1669 | 124.3424 | 1.5937 |
frame_ctor_nested_dict_int64 | 173.6054 | 106.8807 | 1.6243 |
frame_loc_dups | 1.2674 | 0.7770 | 1.6311 |
frame_get_dtype_counts | 0.1843 | 0.1113 | 1.6552 |
ctor_index_array_string | 0.0393 | 0.0236 | 1.6667 |
frame_get_numeric_data | 0.1736 | 0.0997 | 1.7424 |
frame_constructor_ndarray | 0.1047 | 0.0587 | 1.7846 |
frame_iteritems_cached | 1.1443 | 0.6117 | 1.8707 |
indexing_dataframe_boolean_rows_object | 0.9307 | 0.4853 | 1.9176 |
reshape_stack_simple | 2.6710 | 1.3684 | 1.9520 |
frame_iloc_dups | 0.5160 | 0.2420 | 2.1323 |
frame_xs_col | 0.0720 | 0.0323 | 2.2260 |
dataframe_getitem_scalar | 0.0199 | 0.0087 | 2.3028 |
datamatrix_getitem_scalar | 0.0193 | 0.0083 | 2.3143 |
indexing_dataframe_boolean_rows | 0.5593 | 0.2393 | 2.3374 |
series_constructor_ndarray | 0.0397 | 0.0167 | 2.3762 |
sparse_frame_constructor | 13.0450 | 4.7807 | 2.7287 |
frame_iteritems | 76.1917 | 27.6610 | 2.7545 |
indexing_frame_get_value_ix | 0.0123 | 0.0044 | 2.8182 |
series_getitem_scalar | 0.0199 | 0.0070 | 2.8523 |
frame_from_series | 0.1774 | 0.0534 | 3.3214 |
frame_fancy_lookup | 7.8727 | 1.7236 | 4.5675 |
series_get_value | 0.0123 | 0.0017 | 7.3810 |"><pre class="notranslate"><code class="notranslate">melt_dataframe | 2.7920 | 2.1487 | 1.2994 |
concat_small_frames | 22.1807 | 17.0054 | 1.3043 |
dti_reset_index | 0.2950 | 0.2257 | 1.3070 |
frame_reindex_upcast | 28.8033 | 21.2270 | 1.3569 |
frame_fancy_lookup_all | 30.4507 | 22.1930 | 1.3721 |
timeseries_large_lookup_value | 0.0383 | 0.0277 | 1.3811 |
frame_boolean_row_select | 0.4419 | 0.3170 | 1.3941 |
panel_from_dict_equiv_indexes | 58.9810 | 41.6213 | 1.4171 |
panel_from_dict_same_index | 58.9364 | 41.5120 | 1.4197 |
frame_xs_row | 0.0637 | 0.0443 | 1.4355 |
groupby_frame_singlekey_integer | 4.3193 | 2.9940 | 1.4427 |
frame_ctor_nested_dict | 142.8297 | 98.7384 | 1.4465 |
frame_to_csv2 | 191.4937 | 130.7974 | 1.4640 |
series_ctor_from_dict | 5.1107 | 3.4617 | 1.4764 |
groupby_multi_python | 175.8397 | 117.9717 | 1.4905 |
frame_to_csv | 237.1720 | 154.0547 | 1.5395 |
series_string_vector_slice | 325.1186 | 208.9640 | 1.5559 |
indexing_panel_subset | 0.9351 | 0.5874 | 1.5919 |
frame_insert_500_columns_end | 198.1669 | 124.3424 | 1.5937 |
frame_ctor_nested_dict_int64 | 173.6054 | 106.8807 | 1.6243 |
frame_loc_dups | 1.2674 | 0.7770 | 1.6311 |
frame_get_dtype_counts | 0.1843 | 0.1113 | 1.6552 |
ctor_index_array_string | 0.0393 | 0.0236 | 1.6667 |
frame_get_numeric_data | 0.1736 | 0.0997 | 1.7424 |
frame_constructor_ndarray | 0.1047 | 0.0587 | 1.7846 |
frame_iteritems_cached | 1.1443 | 0.6117 | 1.8707 |
indexing_dataframe_boolean_rows_object | 0.9307 | 0.4853 | 1.9176 |
reshape_stack_simple | 2.6710 | 1.3684 | 1.9520 |
frame_iloc_dups | 0.5160 | 0.2420 | 2.1323 |
frame_xs_col | 0.0720 | 0.0323 | 2.2260 |
dataframe_getitem_scalar | 0.0199 | 0.0087 | 2.3028 |
datamatrix_getitem_scalar | 0.0193 | 0.0083 | 2.3143 |
indexing_dataframe_boolean_rows | 0.5593 | 0.2393 | 2.3374 |
series_constructor_ndarray | 0.0397 | 0.0167 | 2.3762 |
sparse_frame_constructor | 13.0450 | 4.7807 | 2.7287 |
frame_iteritems | 76.1917 | 27.6610 | 2.7545 |
indexing_frame_get_value_ix | 0.0123 | 0.0044 | 2.8182 |
series_getitem_scalar | 0.0199 | 0.0070 | 2.8523 |
frame_from_series | 0.1774 | 0.0534 | 3.3214 |
frame_fancy_lookup | 7.8727 | 1.7236 | 4.5675 |
series_get_value | 0.0123 | 0.0017 | 7.3810 |
</code></pre></div>
<p dir="auto"><strong>Ruled out</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="frame_repr_tall | 49.2450 | 2.3817 | 20.6762 |
frame_repr_wide | 977.6090 | 1.1230 | 870.5710 |"><pre class="notranslate"><code class="notranslate">frame_repr_tall | 49.2450 | 2.3817 | 20.6762 |
frame_repr_wide | 977.6090 | 1.1230 | 870.5710 |
</code></pre></div>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="22941825" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/5550" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/5550/hovercard" href="https://github.com/pandas-dev/pandas/pull/5550">#5550</a>: truncated repr for large frames. legitimate change.</p> | 0 |
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report => search github for a similar issue or PR before submitting
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ ] bug report => search github for a similar issue or PR before submitting
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
Currently Angular does not have native support, so when we have a form that has an Input = File, we have to implement customizations so that when sending the form, the file is also sent via multipart/form-data.<br>
There are some code examples, such as:<br>
<a href="https://github.com/wangzilong/angular2-multipartForm">angular2-multipartForm</a><br>
But these libraries do not integrate very well with the Angular.</p>
<p dir="auto"><strong>Expected behavior</strong><br>
It would be very interesting if in future versions Angular had native support for "input=file" and multipart/form-data.<br>
Adding compatibility with <a href="http://www.w3.org/TR/FileAPI/" rel="nofollow">File API</a>.<br>
This would make it much easier for developers who want to implement this type of field in their application forms.<br>
There are some libraries for this, such as: <a href="https://github.com/wangzilong/angular2-multipartForm">angular2-multipartForm</a>, <a href="https://github.com/valor-software/ng2-file-upload">ng2-file-upload</a><br>
However, they do not implement very well, or are not updated or break the good practices of the Angular.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong> 4.0</li>
</ul>
<ul dir="auto">
<li>
<p dir="auto"><strong>Browser:</strong> all </p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> all</p>
</li>
<li>
<p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> = 6.10</p>
</li>
</ul> | <p dir="auto">I notice there is no control value accesor for inputs of type "file"</p> | 1 |
<p dir="auto">High Priority:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">repeat</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">split</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">std</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">var</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">renorm</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">eq</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">ge</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">gt</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">le</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">lt</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">ne</code></li>
</ul>
<p dir="auto">Mid Priority:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">cross</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">cumsum</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">trace</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">unfold</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">cumprod</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">atan2</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__and__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__bool__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__iand__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__ior__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__ixor__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__mod__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__nonzero__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__or__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">__xor__</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">cauchy</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">exponential</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">fill</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">geometric</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">log_normal</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">normal</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">ones</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">random</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">uniform</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">zero</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">zeros</code></li>
</ul>
<p dir="auto">Wontfix (as in very very low priority, but PRs are welcome!):</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">gesv</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">inverse</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">potrf</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">svd</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">trtrs</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">orgqr</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">ormqr</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">potri</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">potrs</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">pstrf</code> [NOW DEFUNCT]</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">qr</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">symeig</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">eig</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">gels</code></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">geqrf</code></li>
</ul> | 1 |
|
<p dir="auto">i can build and run the app fine locally but when i try deploying to heroku i get this</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="remote: -----> Building dependencies
remote: Installing node modules (yarn.lock)
remote: yarn install v0.24.6
remote: [1/4] Resolving packages...
remote: [2/4] Fetching packages...
remote: warning fsevents@1.1.1: The platform "linux" is incompatible with this module.
remote: info "fsevents@1.1.1" is an optional dependency and failed compatibility check. Excluding it from installation.
remote: [3/4] Linking dependencies...
remote: [4/4] Building fresh packages...
remote: success Saved lockfile.
remote: Done in 22.04s.
remote: Running heroku-postbuild (yarn)
remote: yarn run v0.24.6
remote: $ next build
remote: > Using "webpack" config function defined in next.config.js.
remote: > Failed to build on /tmp/4d8f2909-b5b6-41d7-8a6e-4b7b28b4b1d1
remote: { Error: ./pages/filters.js?entry
remote: Module not found: Error: Can't resolve '../components/layout/Main' in '/tmp/build_92a0c5ebe560c66f11f50502989153c7/pages'
remote: resolve '../components/layout/Main' in '/tmp/build_92a0c5ebe560c66f11f50502989153c7/pages'
remote: using description file: /tmp/build_92a0c5ebe560c66f11f50502989153c7/package.json (relative path: ./pages)
remote: Field 'browser' doesn't contain a valid alias configuration
remote: after using description file: /tmp/build_92a0c5ebe560c66f11f50502989153c7/package.json (relative path: ./pages)
remote: using description file: /tmp/build_92a0c5ebe560c66f11f50502989153c7/package.json (relative path: ./components/layout/Main)
remote: no extension
remote: Field 'browser' doesn't contain a valid alias configuration
remote: /tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main doesn't exist
remote: .js
remote: Field 'browser' doesn't contain a valid alias configuration
remote: /tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main.js doesn't exist
remote: .json
remote: Field 'browser' doesn't contain a valid alias configuration
remote: /tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main.json doesn't exist
remote: as directory
remote: /tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main doesn't exist
remote: [/tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main]
remote: [/tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main.js] "><pre class="notranslate">remote: -----<span class="pl-k">></span> Building dependencies
remote: Installing node modules (yarn.lock)
remote: yarn install v0.24.6
remote: [1/4] Resolving packages...
remote: [2/4] Fetching packages...
remote: warning fsevents@1.1.1: The platform <span class="pl-s"><span class="pl-pds">"</span>linux<span class="pl-pds">"</span></span> is incompatible with this module.
remote: info <span class="pl-s"><span class="pl-pds">"</span>fsevents@1.1.1<span class="pl-pds">"</span></span> is an optional dependency and failed compatibility check. Excluding it from installation.
remote: [3/4] Linking dependencies...
remote: [4/4] Building fresh packages...
remote: success Saved lockfile.
remote: Done <span class="pl-k">in</span> 22.04s.
remote: Running heroku-postbuild (yarn)
remote: yarn run v0.24.6
remote: $ next build
remote: <span class="pl-k">></span> Using <span class="pl-s"><span class="pl-pds">"</span>webpack<span class="pl-pds">"</span></span> config <span class="pl-k">function</span> <span class="pl-en">defined</span> <span class="pl-k">in</span> next.config.js.
remote: <span class="pl-k">></span> Failed to build on /tmp/4d8f2909-b5b6-41d7-8a6e-4b7b28b4b1d1
remote: { Error: ./pages/filters.js<span class="pl-k">?</span>entry
remote: Module not found: Error: Can<span class="pl-s"><span class="pl-pds">'</span>t resolve <span class="pl-pds">'</span></span>../components/layout/Main<span class="pl-s"><span class="pl-pds">'</span> in <span class="pl-pds">'</span></span>/tmp/build_92a0c5ebe560c66f11f50502989153c7/pages<span class="pl-s"><span class="pl-pds">'</span> </span>
<span class="pl-s">remote: resolve <span class="pl-pds">'</span></span>../components/layout/Main<span class="pl-s"><span class="pl-pds">'</span> in <span class="pl-pds">'</span></span>/tmp/build_92a0c5ebe560c66f11f50502989153c7/pages<span class="pl-s"><span class="pl-pds">'</span> </span>
<span class="pl-s">remote: using description file: /tmp/build_92a0c5ebe560c66f11f50502989153c7/package.json (relative path: ./pages) </span>
<span class="pl-s">remote: Field <span class="pl-pds">'</span></span>browser<span class="pl-s"><span class="pl-pds">'</span> doesn<span class="pl-pds">'</span></span>t contain a valid <span class="pl-c1">alias</span> configuration
remote: after using description file: /tmp/build_92a0c5ebe560c66f11f50502989153c7/package.json (relative path: ./pages)
remote: using description file: /tmp/build_92a0c5ebe560c66f11f50502989153c7/package.json (relative path: ./components/layout/Main)
remote: no extension
remote: Field <span class="pl-s"><span class="pl-pds">'</span>browser<span class="pl-pds">'</span></span> doesn<span class="pl-s"><span class="pl-pds">'</span>t contain a valid alias configuration </span>
<span class="pl-s">remote: /tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main doesn<span class="pl-pds">'</span></span>t exist
remote: .js
remote: Field <span class="pl-s"><span class="pl-pds">'</span>browser<span class="pl-pds">'</span></span> doesn<span class="pl-s"><span class="pl-pds">'</span>t contain a valid alias configuration </span>
<span class="pl-s">remote: /tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main.js doesn<span class="pl-pds">'</span></span>t exist
remote: .json
remote: Field <span class="pl-s"><span class="pl-pds">'</span>browser<span class="pl-pds">'</span></span> doesn<span class="pl-s"><span class="pl-pds">'</span>t contain a valid alias configuration </span>
<span class="pl-s">remote: /tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main.json doesn<span class="pl-pds">'</span></span>t exist
remote: as directory
remote: /tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main doesn<span class="pl-s"><span class="pl-pds">'</span>t exist </span>
<span class="pl-s">remote: [/tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main] </span>
<span class="pl-s">remote: [/tmp/build_92a0c5ebe560c66f11f50502989153c7/components/layout/Main.js] </span></pre></div>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">when i run it locally</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="yarn run v0.24.6
$ next build
> Using "webpack" config function defined in next.config.js.
Done in 28.74s."><pre class="notranslate">yarn run v0.24.6
$ next build
<span class="pl-k">></span> Using <span class="pl-s"><span class="pl-pds">"</span>webpack<span class="pl-pds">"</span></span> config <span class="pl-k">function</span> <span class="pl-en">defined</span> <span class="pl-k">in</span> next.config.js.
Done <span class="pl-k">in</span> 28.74s.</pre></div>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td>beta</td>
</tr>
<tr>
<td>node</td>
<td>7.10.1</td>
</tr>
<tr>
<td>OS</td>
<td>Win 10</td>
</tr>
</tbody>
</table> | <h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>Edit +++ ON HOLD</strong> I just had a lightbulb moment. I will post my discovery/misunderstanding in the next few hours. This ticket can probably be closed then, but I have to test my new theory first…</p>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">Multiple (duplicate) meta tags such as <code class="notranslate">charSet</code> and <code class="notranslate">viewport</code> are rendered in <code class="notranslate"><head></code> section of the HTML output when the <code class="notranslate"><Head></code> component is used in both a custom <code class="notranslate">_document</code> and a page file.</p>
<p dir="auto">Even relying on the default injection of <code class="notranslate"><meta charSet="utf-8"/></code> (i.e. not specifying that tag at all) results in having two of the same tags in the output HTML, one from Document and one from the page.</p>
<p dir="auto">I also end up with two <code class="notranslate">viewport</code> meta tags, one from Document and one from the page.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">I have created (failing) tests here: <a href="https://github.com/Manc/next.js/tree/test-head-document">https://github.com/Manc/next.js/tree/test-head-document</a></p>
<ol dir="auto">
<li>Clone repository <code class="notranslate">git@github.com:Manc/next.js.git</code></li>
<li>Check out branch <code class="notranslate">test-head-document</code></li>
<li><code class="notranslate">yarn install</code></li>
<li><code class="notranslate">yarn testonly --testPathPattern "app-document" -t "It dedupes head tags with the same key"</code></li>
</ol>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">I expect the meta tags with the same <code class="notranslate">key</code> to override the meta tags from the custom Document (<code class="notranslate">_document</code>).</p>
<p dir="auto">I expect only to have one <code class="notranslate">charset</code> and one <code class="notranslate">viewport</code> tag in the whole rendered HTML.</p>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: macOS</li>
<li>Version of Next.js: latest or <code class="notranslate">canary</code> branch</li>
</ul>
<h2 dir="auto">Other</h2>
<p dir="auto">I'm pretty new to Next.js and don't really know how it all works yet. I hope the test I provided helps somebody more experienced to fix this or maybe give me a hint. Thanks!</p>
<p dir="auto">My suspicion is that the <code class="notranslate">Head</code> component of the Document (<code class="notranslate">import { Head } from 'next/document'</code>) and the <code class="notranslate">Head</code> component used in the page (<code class="notranslate">import Head from 'next/head'</code>) might be completely separate and don't "communicate" with each other, each doing their own thing twice.</p> | 0 |
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): no</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): "is:issue is:open federation service", "is:issue is:open federated service"</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:16:57Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:10:32Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"} "><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:16:57Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:10:32Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: AWS</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): jessie (Debian 8)</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Linux ip-172-20-110-96 4.4.23-k8s <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35192559" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/1" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/1/hovercard" href="https://github.com/kubernetes/kubernetes/issues/1">#1</a> SMP Fri Sep 30 13:51:02 UTC 2016 x86_64 GNU/Linux</li>
<li><strong>Install tools</strong>: kops</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
We are applying label selectors to a service that is federated. e.g.,</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="apiVersion: v1
kind: Service
metadata:
name: date-time-federated
spec:
selector:
name: update-demo
version: black
ports:
-
protocol: TCP
port: 8080
targetPort: 8080
type: LoadBalancer"><pre class="notranslate"><span class="pl-ent">apiVersion</span>: <span class="pl-c1">v1</span>
<span class="pl-ent">kind</span>: <span class="pl-s">Service</span>
<span class="pl-ent">metadata</span>:
<span class="pl-ent">name</span>: <span class="pl-s">date-time-federated</span>
<span class="pl-ent">spec</span>:
<span class="pl-ent">selector</span>:
<span class="pl-ent">name</span>: <span class="pl-s">update-demo</span>
<span class="pl-ent">version</span>: <span class="pl-s">black</span>
<span class="pl-ent">ports</span>:
-
<span class="pl-ent">protocol</span>: <span class="pl-s">TCP</span>
<span class="pl-ent">port</span>: <span class="pl-c1">8080</span>
<span class="pl-ent">targetPort</span>: <span class="pl-c1">8080</span>
<span class="pl-ent">type</span>: <span class="pl-s">LoadBalancer</span></pre></div>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
We expect the federated service to be updated on all clusters. Instead, the controller manager reports no changes to the service.</p>
<p dir="auto">When we print the service YAML from the federation, it contains the new label selectors. When we print the service YAML directly from the clusters' APIs (who are members of the federation) there are no updates to the service whatsoever.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):<br>
Set <code class="notranslate">--v=5</code> on the federation controller manager. Create a federated service. Add some label selectors to the service and apply it through the federation. Watch the federation controller manager logs while applying the new label selectors and observe the logs that indicate there is no update because there are no perceived changes to the service.</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:<br>
We see that the controller manager is only evaluating the ports for changes to the service. See the <a href="https://github.com/kubernetes/kubernetes/blob/v1.4.0/federation/pkg/federation-controller/service/servicecontroller.go#L397-L411">1.4.0 reference</a> and the <a href="https://github.com/kubernetes/kubernetes/blob/master/federation/pkg/federation-controller/service/servicecontroller.go#L419-L433">master reference</a>.</p>
<p dir="auto">Do we have the correct expectation that update criteria should be broader than just changes to ports?</p>
<p dir="auto">Our use case is for deployment update strategies like sticking a canary under the service.</p>
<p dir="auto">Thanks a bunch!</p> | <p dir="auto">Reported by a couple users. For example:<br>
<a href="http://stackoverflow.com/questions/34732597/kubernetes-pod-cant-connect-through-service-to-self-only-to-other-pod-contai" rel="nofollow">http://stackoverflow.com/questions/34732597/kubernetes-pod-cant-connect-through-service-to-self-only-to-other-pod-contai</a></p>
<p dir="auto">If deliberate, we should document it. I don't see this mentioned in services.md, for instance.</p> | 0 |
<p dir="auto">I think that the help text should be changed to indicate that the selector $(container) needs to be used. If used as is it does not work.<br>
Instead of<br>
$("#target4").appendTo("#left-well");<br>
it should read<br>
$("#target4").appendTo($("#left-well"));</p>
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-use-appendto-to-move-elements-with-jquery#?solution=fccss%0A%20%20%24%28document%29.ready%28function%28%29%20%7B%0A%20%20%20%20%24%28%22%23target1%22%29.css%28%22color%22%2C%20%22red%22%29%3B%0A%20%20%20%20%24%28%22%23target1%22%29.prop%28%22disabled%22%2C%20true%29%3B%0A%20%20%20%20%24%28%22%23target4%22%29.remove%28%29%3B%0A%20%20%20%20%24%28%22%23target2%22%29.appendTo%28%24%28%22%23right-well%22%29%29%3B%0A%20%20%7D%29%3B%0Afcces%0A%0A%3C!--%20Only%20change%20code%20above%20this%20line.%20--%3E%0A%0A%3Cdiv%20class%3D%22container-fluid%22%3E%0A%20%20%3Ch3%20class%3D%22text-primary%20text-center%22%3EjQuery%20Playground%3C%2Fh3%3E%0A%20%20%3Cdiv%20class%3D%22row%22%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-6%22%3E%0A%20%20%20%20%20%20%3Ch4%3E%23left-well%3C%2Fh4%3E%0A%20%20%20%20%20%20%3Cdiv%20class%3D%22well%22%20id%3D%22left-well%22%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target1%22%3E%23target1%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target2%22%3E%23target2%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target3%22%3E%23target3%3C%2Fbutton%3E%0A%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-6%22%3E%0A%20%20%20%20%20%20%3Ch4%3E%23right-well%3C%2Fh4%3E%0A%20%20%20%20%20%20%3Cdiv%20class%3D%22well%22%20id%3D%22right-well%22%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target4%22%3E%23target4%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target5%22%3E%23target5%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target6%22%3E%23target6%3C%2Fbutton%3E%0A%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%3C%2Fdiv%3E%0A%3C%2Fdiv%3E%0A" rel="nofollow">Waypoint: Use appendTo to Move Elements with jQuery</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<script>
$(document).ready(function() {
$("#target1").css("color", "red");
$("#target1").prop("disabled", true);
$("#target4").remove();
$("#target2").appendTo($("#right-well"));
});
</script>
<!-- Only change code above this line. -->
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
<div class="row">
<div class="col-xs-6">
<h4>#left-well</h4>
<div class="well" id="left-well">
<button class="btn btn-default target" id="target1">#target1</button>
<button class="btn btn-default target" id="target2">#target2</button>
<button class="btn btn-default target" id="target3">#target3</button>
</div>
</div>
<div class="col-xs-6">
<h4>#right-well</h4>
<div class="well" id="right-well">
<button class="btn btn-default target" id="target4">#target4</button>
<button class="btn btn-default target" id="target5">#target5</button>
<button class="btn btn-default target" id="target6">#target6</button>
</div>
</div>
</div>
</div>
"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-smi">document</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">ready</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">css</span><span class="pl-kos">(</span><span class="pl-s">"color"</span><span class="pl-kos">,</span> <span class="pl-s">"red"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">prop</span><span class="pl-kos">(</span><span class="pl-s">"disabled"</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target4"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">remove</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target2"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">appendTo</span><span class="pl-kos">(</span><span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#right-well"</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-c"><!-- Only change code above this line. --></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">container-fluid</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h3</span> <span class="pl-c1">class</span>="<span class="pl-s">text-primary text-center</span>"<span class="pl-kos">></span>jQuery Playground<span class="pl-kos"></</span><span class="pl-ent">h3</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">row</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h4</span><span class="pl-kos">></span>#left-well<span class="pl-kos"></</span><span class="pl-ent">h4</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">left-well</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target1</span>"<span class="pl-kos">></span>#target1<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target2</span>"<span class="pl-kos">></span>#target2<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target3</span>"<span class="pl-kos">></span>#target3<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h4</span><span class="pl-kos">></span>#right-well<span class="pl-kos"></</span><span class="pl-ent">h4</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">right-well</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target4</span>"<span class="pl-kos">></span>#target4<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target5</span>"<span class="pl-kos">></span>#target5<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target6</span>"<span class="pl-kos">></span>#target6<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div> | <p dir="auto">A bug seems to be present: Chrome 46.0.2490.86 m; Windows 8.1 with respect to <code class="notranslate">appendTo()</code> function.</p>
<p dir="auto"><code class="notranslate">$("#target2").appendTo($("#right-well"));</code> does work, but not the <code class="notranslate">$("#target2").appendTo("#right-well");</code>, the latter being suggested in the tutorial.</p>
<p dir="auto">Hard reload and cache clearing did not seem to solve the problem.</p> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter create myapp
...app created..
$ cd myapp
$ flutter run"><pre class="notranslate"><code class="notranslate">$ flutter create myapp
...app created..
$ cd myapp
$ flutter run
</code></pre></div>
<p dir="auto">This app produces the following error when run on a Pixel XL:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--------- beginning of main
W/ActivityManager: Permission Denial: Accessing service ComponentInfo{com.google.android.music/com.google.android.music.dial.DialMediaRouteProviderService} from pid=19682, uid=10017 that is not exported from uid 10077
W/ActivityManager: Force finishing activity com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity
W/ActivityManager: Permission Denial: Accessing service ComponentInfo{com.google.android.music/com.google.android.music.dial.DialMediaRouteProviderService} from pid=4197, uid=10146 that is not exported from uid 10077
W/System.err: org.xmlpull.v1.XmlPullParserException: Unexpected token (position:TEXT >
W/System.err: @3:3 in java.io.InputStreamReader@48e3c2d)
W/System.err: at org.kxml2.io.KXmlParser.next(KXmlParser.java:432)
W/System.err: at org.kxml2.io.KXmlParser.next(KXmlParser.java:313)
W/System.err: at com.erosnow.utils.ao.b(UtilFortumo.java:1129)
W/System.err: at com.erosnow.utils.ap.a(UtilFortumo.java:174)
W/System.err: at com.erosnow.utils.ap.doInBackground(UtilFortumo.java:138)
W/System.err: at android.os.AsyncTask$2.call(AsyncTask.java:305)
W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
W/System.err: at java.lang.Thread.run(Thread.java:761)
W/System.err: org.xmlpull.v1.XmlPullParserException: name expected (position:TEXT >
W/System.err: @3:3 in java.io.InputStreamReader@48e3c2d)
W/System.err: at org.kxml2.io.KXmlParser.checkRelaxed(KXmlParser.java:305)
W/System.err: at org.kxml2.io.KXmlParser.readName(KXmlParser.java:1548)
W/System.err: at org.kxml2.io.KXmlParser.parseStartTag(KXmlParser.java:1091)
W/System.err: at org.kxml2.io.KXmlParser.next(KXmlParser.java:372)
W/System.err: at org.kxml2.io.KXmlParser.next(KXmlParser.java:313)
W/System.err: at com.erosnow.utils.ao.b(UtilFortumo.java:1129)
W/System.err: at com.erosnow.utils.aq.a(UtilFortumo.java:233)
W/System.err: at com.erosnow.utils.aq.doInBackground(UtilFortumo.java:198)
W/System.err: at android.os.AsyncTask$2.call(AsyncTask.java:305)
W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
W/System.err: at java.lang.Thread.run(Thread.java:761)
Timed out while waiting for a debug connection.
Error launching DevFS loader on Pixel XL."><pre class="notranslate"><code class="notranslate">--------- beginning of main
W/ActivityManager: Permission Denial: Accessing service ComponentInfo{com.google.android.music/com.google.android.music.dial.DialMediaRouteProviderService} from pid=19682, uid=10017 that is not exported from uid 10077
W/ActivityManager: Force finishing activity com.yourcompany.myapp/org.domokit.sky.shell.SkyActivity
W/ActivityManager: Permission Denial: Accessing service ComponentInfo{com.google.android.music/com.google.android.music.dial.DialMediaRouteProviderService} from pid=4197, uid=10146 that is not exported from uid 10077
W/System.err: org.xmlpull.v1.XmlPullParserException: Unexpected token (position:TEXT >
W/System.err: @3:3 in java.io.InputStreamReader@48e3c2d)
W/System.err: at org.kxml2.io.KXmlParser.next(KXmlParser.java:432)
W/System.err: at org.kxml2.io.KXmlParser.next(KXmlParser.java:313)
W/System.err: at com.erosnow.utils.ao.b(UtilFortumo.java:1129)
W/System.err: at com.erosnow.utils.ap.a(UtilFortumo.java:174)
W/System.err: at com.erosnow.utils.ap.doInBackground(UtilFortumo.java:138)
W/System.err: at android.os.AsyncTask$2.call(AsyncTask.java:305)
W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
W/System.err: at java.lang.Thread.run(Thread.java:761)
W/System.err: org.xmlpull.v1.XmlPullParserException: name expected (position:TEXT >
W/System.err: @3:3 in java.io.InputStreamReader@48e3c2d)
W/System.err: at org.kxml2.io.KXmlParser.checkRelaxed(KXmlParser.java:305)
W/System.err: at org.kxml2.io.KXmlParser.readName(KXmlParser.java:1548)
W/System.err: at org.kxml2.io.KXmlParser.parseStartTag(KXmlParser.java:1091)
W/System.err: at org.kxml2.io.KXmlParser.next(KXmlParser.java:372)
W/System.err: at org.kxml2.io.KXmlParser.next(KXmlParser.java:313)
W/System.err: at com.erosnow.utils.ao.b(UtilFortumo.java:1129)
W/System.err: at com.erosnow.utils.aq.a(UtilFortumo.java:233)
W/System.err: at com.erosnow.utils.aq.doInBackground(UtilFortumo.java:198)
W/System.err: at android.os.AsyncTask$2.call(AsyncTask.java:305)
W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
W/System.err: at java.lang.Thread.run(Thread.java:761)
Timed out while waiting for a debug connection.
Error launching DevFS loader on Pixel XL.
</code></pre></div>
<p dir="auto">Below is the input from flutter doctor command</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter doctor
[✓] Flutter (on Mac OS, channel master)
• Flutter at /Users/nasir/flutter-work/flutter
• Framework revision 022cb2d9dc (2 days ago), 2016-10-21 16:54:59
• Engine revision db12c5e621
• Tools Dart version 1.21.0-dev.0.0
[✓] Android toolchain - develop for Android devices (Android SDK 24.0.0-preview)
• Android SDK at /Users/nasir/android_sdk_L/android-sdk-macosx
• Platform android-N, build-tools 24.0.0-preview
• Java(TM) SE Runtime Environment (build 1.8.0_91-b14)
[-] iOS toolchain - develop for iOS devices (Xcode 7.3.1)
• XCode at /Applications/Xcode.app/Contents/Developer
• Xcode 7.3.1, Build version 7D1014
x ideviceinstaller not available; this is used to discover connected iOS devices.
Install via 'brew install ideviceinstaller'.
x ios-deploy not available; this is used to deploy to connected iOS devices.
Install via 'brew install ios-deploy'.
[✓] Atom - a lightweight development environment for Flutter
• flutter plugin version 0.2.6
• dartlang plugin version 0.6.42
[-] IntelliJ IDEA Community Edition (version 2016.2)
• Dart plugin not installed; this adds Dart specific functionality.
• Flutter plugin not installed; this adds Flutter specific functionality.
• For information about managing plugins, see
https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html
[✓] Connected devices
• Pixel XL • HT6860200899 • android-arm"><pre class="notranslate"><code class="notranslate">$ flutter doctor
[✓] Flutter (on Mac OS, channel master)
• Flutter at /Users/nasir/flutter-work/flutter
• Framework revision 022cb2d9dc (2 days ago), 2016-10-21 16:54:59
• Engine revision db12c5e621
• Tools Dart version 1.21.0-dev.0.0
[✓] Android toolchain - develop for Android devices (Android SDK 24.0.0-preview)
• Android SDK at /Users/nasir/android_sdk_L/android-sdk-macosx
• Platform android-N, build-tools 24.0.0-preview
• Java(TM) SE Runtime Environment (build 1.8.0_91-b14)
[-] iOS toolchain - develop for iOS devices (Xcode 7.3.1)
• XCode at /Applications/Xcode.app/Contents/Developer
• Xcode 7.3.1, Build version 7D1014
x ideviceinstaller not available; this is used to discover connected iOS devices.
Install via 'brew install ideviceinstaller'.
x ios-deploy not available; this is used to deploy to connected iOS devices.
Install via 'brew install ios-deploy'.
[✓] Atom - a lightweight development environment for Flutter
• flutter plugin version 0.2.6
• dartlang plugin version 0.6.42
[-] IntelliJ IDEA Community Edition (version 2016.2)
• Dart plugin not installed; this adds Dart specific functionality.
• Flutter plugin not installed; this adds Flutter specific functionality.
• For information about managing plugins, see
https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html
[✓] Connected devices
• Pixel XL • HT6860200899 • android-arm
</code></pre></div> | <h2 dir="auto">Steps to Reproduce</h2>
<ol dir="auto">
<li>Start a Timer with a 30 second delay - set the callback to fire a method to make a sound using (package <code class="notranslate">audioplayers: ^0.7.8</code>)</li>
<li>Lock the phone</li>
<li>Wait 30 seconds. Notice that the sound was not fired right away. Sometimes it is 15 seconds late, sometimes it is 45 seconds late.</li>
</ol>
<p dir="auto">Why is there such a delay when trying to get a sound to play after a specified time when the device is locked? If the device is NOT locked, the sound is made exactly 30 seconds after starting the timer, every time.</p>
<p dir="auto">I have tried to schedule notifications with package flutter_local_notifications ^0.3.7 but that too sometimes delays up to 45 seconds.</p>
<p dir="auto">What am I to do to ensure a sound is fired 30 seconds after a user action, EVEN when the device is locked?</p>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[√] Flutter (Channel master, v0.11.7-pre.47, on Microsoft Windows [Version 10.0.17134.471], locale en-CA)
• Flutter version 0.11.7-pre.47 at C:\src\flutter
• Framework revision 5385132c6b (4 weeks ago), 2018-11-16 16:53:59 -0800
• Engine revision c02dd8f935
• Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297)
[√] Android toolchain - develop for Android devices (Android SDK 28.0.2)
• Android SDK at C:\Users\KevinCherryholme\AppData\Local\Android\sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.2
• Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
• All Android licenses accepted.
[√] Android Studio (version 3.2)
• Android Studio at C:\Program Files\Android\Android Studio
• Flutter plugin version 31.2.1
• Dart plugin version 181.5656
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[!] VS Code, 64-bit edition (version 1.29.1)
• VS Code at C:\Program Files\Microsoft VS Code
• Flutter extension not installed; install from
https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter
[√] Connected device (1 available)
• Pixel 3 XL • 88TY020NT • android-arm64 • Android 9 (API 28)
! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">[√] Flutter (Channel master, v0.11.7-pre.47, on Microsoft Windows [Version 10.0.17134.471], locale en-CA)
• Flutter version 0.11.7-pre.47 at C:\src\flutter
• Framework revision 5385132c6b (4 weeks ago), 2018-11-16 16:53:59 -0800
• Engine revision c02dd8f935
• Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297)
[√] Android toolchain - develop for Android devices (Android SDK 28.0.2)
• Android SDK at C:\Users\KevinCherryholme\AppData\Local\Android\sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.2
• Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
• All Android licenses accepted.
[√] Android Studio (version 3.2)
• Android Studio at C:\Program Files\Android\Android Studio
• Flutter plugin version 31.2.1
• Dart plugin version 181.5656
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[!] VS Code, 64-bit edition (version 1.29.1)
• VS Code at C:\Program Files\Microsoft VS Code
• Flutter extension not installed; install from
https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter
[√] Connected device (1 available)
• Pixel 3 XL • 88TY020NT • android-arm64 • Android 9 (API 28)
! Doctor found issues in 1 category.
</code></pre></div> | 0 |
<p dir="auto">Am I the first one find it out?</p>
<p dir="auto">v1-beta2 AppBar<br>
If there is an icon button on the left the title, the icon button margin-left is large than margin-top and margin-bottom.</p>
<p dir="auto">I don't know if it is a issue.</p> | <p dir="auto">Since upgrading from material-ui@1.0.0-beta.12 to >=1.0.0-beta.13, my application cannot even boot up, it crashes straight with an error message.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">The following error message gets thrown in the form of a "red screen of death":</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Invariant Violation: Unknown(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.
invariant
webpack:///~/fbjs/lib/invariant.js:42
ReactCompositeComponentWrapper.mountComponent
webpack:///~/react-dom/lib/ReactCompositeComponent.js:192
Object.mountComponent
webpack:///~/react-dom/lib/ReactReconciler.js:43
ReactDOMComponent.mountChildren
webpack:///~/react-dom/lib/ReactMultiChild.js:234
ReactDOMComponent._createInitialChildren
webpack:///~/react-dom/lib/ReactDOMComponent.js:701
ReactDOMComponent.mountComponent
webpack:///~/react-dom/lib/ReactDOMComponent.js:520
Object.mountComponent
webpack:///~/react-dom/lib/ReactReconciler.js:43
ReactCompositeComponentWrapper.performInitialMount
webpack:///~/react-dom/lib/ReactCompositeComponent.js:368
ReactCompositeComponentWrapper.mountComponent
webpack:///~/react-dom/lib/ReactCompositeComponent.js:255
Object.mountComponent
webpack:///~/react-dom/lib/ReactReconciler.js:43"><pre class="notranslate"><code class="notranslate">Invariant Violation: Unknown(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.
invariant
webpack:///~/fbjs/lib/invariant.js:42
ReactCompositeComponentWrapper.mountComponent
webpack:///~/react-dom/lib/ReactCompositeComponent.js:192
Object.mountComponent
webpack:///~/react-dom/lib/ReactReconciler.js:43
ReactDOMComponent.mountChildren
webpack:///~/react-dom/lib/ReactMultiChild.js:234
ReactDOMComponent._createInitialChildren
webpack:///~/react-dom/lib/ReactDOMComponent.js:701
ReactDOMComponent.mountComponent
webpack:///~/react-dom/lib/ReactDOMComponent.js:520
Object.mountComponent
webpack:///~/react-dom/lib/ReactReconciler.js:43
ReactCompositeComponentWrapper.performInitialMount
webpack:///~/react-dom/lib/ReactCompositeComponent.js:368
ReactCompositeComponentWrapper.mountComponent
webpack:///~/react-dom/lib/ReactCompositeComponent.js:255
Object.mountComponent
webpack:///~/react-dom/lib/ReactReconciler.js:43
</code></pre></div>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>Clone <a href="https://github.com/simonyiszk/mvk-web">https://github.com/simonyiszk/mvk-web</a></li>
<li>Upgrade material-ui to the latest version (>=1.0.0-beta.13)</li>
<li>Launch the application using <code class="notranslate">yarn develop</code> or <code class="notranslate">npm run develop</code></li>
<li>Open a web browser at the location shown inside the console</li>
</ol>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>1.0.0-beta.16</td>
</tr>
<tr>
<td>React</td>
<td>15.6.2</td>
</tr>
<tr>
<td>Browser</td>
<td>Google Chrome 61.0.3163.100 x64</td>
</tr>
<tr>
<td>Gatsby</td>
<td>1.9.55</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">The help gives no info about the fact that a function is deprecated.<br>
EDIT: Unless you notice that it is defined in <code class="notranslate">deprecated.jl</code>.</p>
<p dir="auto">Example:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="help?> fft
search: fft fft! FFTW fftshift rfft ifft bfft ifft! bfft! ifftshift irfft brfft
No documentation found.
Base.DFT.fft is a Function.
# 1 method for generic function "fft":
[1] fft(args...; kwargs...) in Base.DFT at deprecated.jl:133
julia> fft()
ERROR: Base.DFT.fft has been moved to the package FFTW.jl.
Run `Pkg.add("FFTW")` to install it, restart Julia,
and then run `using FFTW` to load it.
Stacktrace:
[1] error(::Function, ::String, ::String, ::String, ::String, ::String, ::String, ::String, ::String, ::String) at ./error.jl:44
[2] fft() at ./deprecated.jl:133
[3] top-level scope"><pre class="notranslate">help?<span class="pl-k">></span> fft
search<span class="pl-k">:</span> fft fft! FFTW fftshift rfft ifft bfft ifft! bfft! ifftshift irfft brfft
No documentation found.
Base<span class="pl-k">.</span>DFT<span class="pl-k">.</span>fft is a Function.
<span class="pl-c"><span class="pl-c">#</span> 1 method for generic function "fft":</span>
[<span class="pl-c1">1</span>] <span class="pl-c1">fft</span>(args<span class="pl-k">...</span>; kwargs<span class="pl-k">...</span>) <span class="pl-k">in</span> Base<span class="pl-k">.</span>DFT at deprecated<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">133</span>
julia<span class="pl-k">></span> <span class="pl-c1">fft</span>()
ERROR<span class="pl-k">:</span> Base<span class="pl-k">.</span>DFT<span class="pl-k">.</span>fft has been moved to the package FFTW<span class="pl-k">.</span>jl.
Run <span class="pl-s"><span class="pl-pds">`</span>Pkg.add("FFTW")<span class="pl-pds">`</span></span> to install it, restart Julia,
and then run <span class="pl-s"><span class="pl-pds">`</span>using FFTW<span class="pl-pds">`</span></span> to load it.
Stacktrace<span class="pl-k">:</span>
[<span class="pl-c1">1</span>] <span class="pl-c1">error</span>(<span class="pl-k">::</span><span class="pl-c1">Function</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>, <span class="pl-k">::</span><span class="pl-c1">String</span>) at <span class="pl-k">./</span>error<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">44</span>
[<span class="pl-c1">2</span>] <span class="pl-c1">fft</span>() at <span class="pl-k">./</span>deprecated<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">133</span>
[<span class="pl-c1">3</span>] top<span class="pl-k">-</span>level scope</pre></div> | <p dir="auto">Unlike other iterable types, <code class="notranslate">Task</code> seem to advance on <code class="notranslate">done</code> instead of <code class="notranslate">next</code>. Is there a reason for this - it seems to break the iteration contract. eg.</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function p()
produce("A")
produce("B")
produce("C")
end
t = Task(p)
println("1")
s = start(t)
println("2")
done(t, s)
println("3")
(v, s) = next(t, s)
println("4 $v")
done(t, s)
println("5")
(v, s) = next(t, s)
println("6 $v")
(v, s) = next(t, s)
println("7 $v")
done(t, s)
println("8")"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">p</span>()
<span class="pl-c1">produce</span>(<span class="pl-s"><span class="pl-pds">"</span>A<span class="pl-pds">"</span></span>)
<span class="pl-c1">produce</span>(<span class="pl-s"><span class="pl-pds">"</span>B<span class="pl-pds">"</span></span>)
<span class="pl-c1">produce</span>(<span class="pl-s"><span class="pl-pds">"</span>C<span class="pl-pds">"</span></span>)
<span class="pl-k">end</span>
t <span class="pl-k">=</span> <span class="pl-c1">Task</span>(p)
<span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span>1<span class="pl-pds">"</span></span>)
s <span class="pl-k">=</span> <span class="pl-c1">start</span>(t)
<span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span>2<span class="pl-pds">"</span></span>)
<span class="pl-c1">done</span>(t, s)
<span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span>3<span class="pl-pds">"</span></span>)
(v, s) <span class="pl-k">=</span> <span class="pl-c1">next</span>(t, s)
<span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span>4 <span class="pl-v">$v</span><span class="pl-pds">"</span></span>)
<span class="pl-c1">done</span>(t, s)
<span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span>5<span class="pl-pds">"</span></span>)
(v, s) <span class="pl-k">=</span> <span class="pl-c1">next</span>(t, s)
<span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span>6 <span class="pl-v">$v</span><span class="pl-pds">"</span></span>)
(v, s) <span class="pl-k">=</span> <span class="pl-c1">next</span>(t, s)
<span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span>7 <span class="pl-v">$v</span><span class="pl-pds">"</span></span>)
<span class="pl-c1">done</span>(t, s)
<span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span>8<span class="pl-pds">"</span></span>)</pre></div>
<p dir="auto">Produces:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1
2
3
4 A
5
6 B
7 B
8"><pre class="notranslate"><code class="notranslate">1
2
3
4 A
5
6 B
7 B
8
</code></pre></div> | 0 |
<p dir="auto">In angular 1 we transform form data in this way <code class="notranslate">ng-model-options="{ getterSetter: true }"</code>. In my plunk <a href="http://plnkr.co/edit/hWuOlOQn9iTlTKEL38sM?p=preview" rel="nofollow">http://plnkr.co/edit/hWuOlOQn9iTlTKEL38sM?p=preview</a> emails input can be a comma delimited email list. How could it be implemented without moving transform logic to the <code class="notranslate">onSubmit</code> method?</p>
<p dir="auto">I found the <code class="notranslate">ControlValueAccessor</code>, <code class="notranslate">DefaultValueAccessor</code> and <code class="notranslate">NumberValueAccessor</code> classes, but I don't know how to use my own on a single input.</p> | <p dir="auto">Implementing custom formatters and parsers is a common way to extend control types in Angular 1.</p>
<p dir="auto">I think there are two ways to do it in Angular 2:</p>
<ul dir="auto">
<li>Implement parsers and formatters similar to Angular 1</li>
<li>Make defining new value accessors easier, so the use case can be handled by defining a new accessor.</li>
</ul> | 1 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.32.3]</li>
<li>Operating System: [ubuntu-20.04]</li>
<li>Browser: [Chromium]</li>
<li>Other info:</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/46001464/234200275-135abaa7-4449-4f9d-a559-5ecf0cf9d095.png"><img src="https://user-images.githubusercontent.com/46001464/234200275-135abaa7-4449-4f9d-a559-5ecf0cf9d095.png" alt="VRT Failure1" style="max-width: 100%;"></a></p>
<p dir="auto">implementing based on <a href="https://www.npmjs.com/package/@web/test-runner-visual-regression" rel="nofollow">https://www.npmjs.com/package/@web/test-runner-visual-regression</a></p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: v1.32.0-focal, v1.35.1</li>
<li>Operating System: Ubuntu 22.04.2 LTS</li>
<li>Browser: Chromium</li>
<li>Docker version 24.0.4, build 3713ee1</li>
<li>Docker Compose version v2.19.1</li>
<li>self-hosted azure devops agent (3.217.1, 3.220.2 и 3.220.5 (latest))</li>
<li>we use m6i.2xlarge AWS instance type</li>
</ul>
<h3 dir="auto">Other info:</h3>
<details>
<summary>
Dockerfile
</summary>
<div class="highlight highlight-source-dockerfile notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
FROM mcr.microsoft.com/playwright:v1.28.1-focal as ci-stage
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package*.json .npmrc ./
RUN npm ci
RUN npx playwright install --with-deps chromium
COPY . .
FROM ci-stage as build-stage
ARG BUILD_TYPE
RUN npm run build:$BUILD_TYPE
"><pre class="notranslate"><span class="pl-k">FROM</span> mcr.microsoft.com/playwright:v1.28.1-focal as ci-stage
<span class="pl-k">WORKDIR</span> /app
<span class="pl-k">ENV</span> PATH /app/node_modules/.bin:$PATH
<span class="pl-k">COPY</span> package*.json .npmrc ./
<span class="pl-k">RUN</span> npm ci
<span class="pl-k">RUN</span> npx playwright install --with-deps chromium
<span class="pl-k">COPY</span> . .
<span class="pl-k">FROM</span> ci-stage as build-stage
<span class="pl-k">ARG</span> BUILD_TYPE
<span class="pl-k">RUN</span> npm run build:$BUILD_TYPE
</pre></div>
</details>
<details>
<summary>docker-compose.yml</summary>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="version: '3.4'
# Command to run docker-compose
#docker-compose -f docker-compose-playwright.yml up --build --abort-on-container-exit
services:
database:
image: "postgres"
restart: always
ports:
- "5447:5432"
environment:
- POSTGRES_NAME=
- POSTGRES_USER=
- POSTGRES_PASSWORD=
api:
ports:
- "7002:80"
build:
context: .
dockerfile: ./Docker-Compose.Dockerfile
depends_on:
- database
entrypoint: ["dotnet", "Entry.dll"]
playwright:
build:
context: ../Frontend
dockerfile: ../Frontend/Playwright.Dockerfile
args:
- BUILD_TYPE=docker-compose
entrypoint: ["/bin/sh", "-c" , "sleep 30 && npm run test:pw:headless"]
environment:
- NODE_ENV=docker-compose
- CI=true
ports:
- "8082:8080"
volumes:
- /opt/vsts/work/_temp/playwright-report:/app/playwright-report
depends_on:
- api
"><pre class="notranslate"><span class="pl-ent">version</span>: <span class="pl-s"><span class="pl-pds">'</span>3.4<span class="pl-pds">'</span></span>
<span class="pl-c"><span class="pl-c">#</span> Command to run docker-compose</span>
<span class="pl-c"><span class="pl-c">#</span>docker-compose -f docker-compose-playwright.yml up --build --abort-on-container-exit</span>
<span class="pl-ent">services</span>:
<span class="pl-ent">database</span>:
<span class="pl-ent">image</span>: <span class="pl-s"><span class="pl-pds">"</span>postgres<span class="pl-pds">"</span></span>
<span class="pl-ent">restart</span>: <span class="pl-s">always</span>
<span class="pl-ent">ports</span>:
- <span class="pl-s"><span class="pl-pds">"</span>5447:5432<span class="pl-pds">"</span></span>
<span class="pl-ent">environment</span>:
- <span class="pl-s">POSTGRES_NAME=</span>
- <span class="pl-s">POSTGRES_USER=</span>
- <span class="pl-s">POSTGRES_PASSWORD=</span>
<span class="pl-ent">api</span>:
<span class="pl-ent">ports</span>:
- <span class="pl-s"><span class="pl-pds">"</span>7002:80<span class="pl-pds">"</span></span>
<span class="pl-ent">build</span>:
<span class="pl-ent">context</span>: <span class="pl-s">.</span>
<span class="pl-ent">dockerfile</span>: <span class="pl-s">./Docker-Compose.Dockerfile</span>
<span class="pl-ent">depends_on</span>:
- <span class="pl-s">database</span>
<span class="pl-ent">entrypoint</span>: <span class="pl-s">["dotnet", "Entry.dll"]</span>
<span class="pl-ent">playwright</span>:
<span class="pl-ent">build</span>:
<span class="pl-ent">context</span>: <span class="pl-s">../Frontend</span>
<span class="pl-ent">dockerfile</span>: <span class="pl-s">../Frontend/Playwright.Dockerfile</span>
<span class="pl-ent">args</span>:
- <span class="pl-s">BUILD_TYPE=docker-compose</span>
<span class="pl-ent">entrypoint</span>: <span class="pl-s">["/bin/sh", "-c" , "sleep 30 && npm run test:pw:headless"]</span>
<span class="pl-ent">environment</span>:
- <span class="pl-s">NODE_ENV=docker-compose</span>
- <span class="pl-s">CI=true</span>
<span class="pl-ent">ports</span>:
- <span class="pl-s"><span class="pl-pds">"</span>8082:8080<span class="pl-pds">"</span></span>
<span class="pl-ent">volumes</span>:
- <span class="pl-s">/opt/vsts/work/_temp/playwright-report:/app/playwright-report</span>
<span class="pl-ent">depends_on</span>:
- <span class="pl-s">api</span>
</pre></div>
</details>
<p dir="auto">npm script <code class="notranslate">test:pw:headless</code> launch frontend application and execute <code class="notranslate">playwright test</code> command</p>
<p dir="auto">Playwright config</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
{
testDir: './playwright',
/* Maximum time one test can run for. */
timeout,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout,
},
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: 6,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: isDev ? [
['list'], ['html'],
] : [
['list'],
['html', { open: 'never' }],
process.env.CI ? ['junit'] : ['list'],
],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
globalSetup: require.resolve('./playwright.global-setup'),
testMatch: 'playwright/specs/**/*.spec.ts',
use: {
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
actionTimeout: 0,
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'retain-on-failure',
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: 'http://localhost:8080',
screenshot: 'only-on-failure',
testIdAttribute: 'data-test',
},
}"><pre class="notranslate"><span class="pl-kos">{</span>
<span class="pl-c1">testDir</span>: <span class="pl-s">'./playwright'</span><span class="pl-kos">,</span>
<span class="pl-c">/* Maximum time one test can run for. */</span>
timeout<span class="pl-kos">,</span>
<span class="pl-c1">expect</span>: <span class="pl-kos">{</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * Maximum time expect() should wait for the condition to be met.</span>
<span class="pl-c"> * For example in `await expect(locator).toHaveText();`</span>
<span class="pl-c"> */</span>
timeout<span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">/* Run tests in files in parallel */</span>
<span class="pl-c1">fullyParallel</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c">/* Fail the build on CI if you accidentally left test.only in the source code. */</span>
<span class="pl-c1">forbidOnly</span>: <span class="pl-c1">!</span><span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span><span class="pl-kos">,</span>
<span class="pl-c">/* Retry on CI only */</span>
<span class="pl-c1">retries</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">2</span> : <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c">/* Opt out of parallel tests on CI. */</span>
<span class="pl-c1">workers</span>: <span class="pl-c1">6</span><span class="pl-kos">,</span>
<span class="pl-c">/* Reporter to use. See https://playwright.dev/docs/test-reporters */</span>
<span class="pl-c1">reporter</span>: <span class="pl-s1">isDev</span> ? <span class="pl-kos">[</span>
<span class="pl-kos">[</span><span class="pl-s">'list'</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">'html'</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">]</span> : <span class="pl-kos">[</span>
<span class="pl-kos">[</span><span class="pl-s">'list'</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">[</span><span class="pl-s">'html'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">open</span>: <span class="pl-s">'never'</span> <span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-kos">[</span><span class="pl-s">'junit'</span><span class="pl-kos">]</span> : <span class="pl-kos">[</span><span class="pl-s">'list'</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c">/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */</span>
<span class="pl-c1">globalSetup</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">'./playwright.global-setup'</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">testMatch</span>: <span class="pl-s">'playwright/specs/**/*.spec.ts'</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span>
<span class="pl-c">/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */</span>
<span class="pl-c1">actionTimeout</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c">/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */</span>
<span class="pl-c1">trace</span>: <span class="pl-s">'retain-on-failure'</span><span class="pl-kos">,</span>
<span class="pl-c">/* Base URL to use in actions like `await page.goto('/')`. */</span>
<span class="pl-c1">baseURL</span>: <span class="pl-s">'http://localhost:8080'</span><span class="pl-kos">,</span>
<span class="pl-c1">screenshot</span>: <span class="pl-s">'only-on-failure'</span><span class="pl-kos">,</span>
<span class="pl-c1">testIdAttribute</span>: <span class="pl-s">'data-test'</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">We have a 1-hour timeout for our builds. In the screenshot, you can see that consequent builds were cancelled by a timeout or cancelled manually.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/2903772/253110020-701957b7-25cb-4f45-b300-44d22dc71996.png"><img src="https://user-images.githubusercontent.com/2903772/253110020-701957b7-25cb-4f45-b300-44d22dc71996.png" alt="MicrosoftTeams-image (33)" style="max-width: 100%;"></a></p>
<h3 dir="auto">Solution</h3>
<p dir="auto">Downgrade to Playwright playwright:v1.28.1-focal solves the issue, and now everything works well.</p>
<p dir="auto">Also, there is no useful information even with <code class="notranslate">DEBUG=pw:browser*</code>.</p>
<p dir="auto">I think that issue is somehow related to the Docker image.</p>
<p dir="auto">I hope this issue will help somebody.</p> | 0 |
<p dir="auto">While tracing codes, found that:</p>
<p dir="auto">Inside ReactCompositeComponentMixin.mountComponent, the code reads</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" // These should be set up in the constructor, but as a convenience for
// simpler class abstractions, we set them up after the fact.
inst.props = publicProps;
inst.context = publicContext;
inst.refs = emptyObject;"><pre class="notranslate"><code class="notranslate"> // These should be set up in the constructor, but as a convenience for
// simpler class abstractions, we set them up after the fact.
inst.props = publicProps;
inst.context = publicContext;
inst.refs = emptyObject;
</code></pre></div>
<p dir="auto"><a href="https://github.com/facebook/react/blob/master/src/renderers/shared/reconciler/ReactCompositeComponent.js#L149">https://github.com/facebook/react/blob/master/src/renderers/shared/reconciler/ReactCompositeComponent.js#L149</a></p>
<p dir="auto">However, at ReactClass.createClass, the props and context are set already</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" this.props = props;
this.context = context;"><pre class="notranslate"><code class="notranslate"> this.props = props;
this.context = context;
</code></pre></div>
<p dir="auto"><a href="https://github.com/facebook/react/blob/master/src/isomorphic/classic/class/ReactClass.js#L826">https://github.com/facebook/react/blob/master/src/isomorphic/classic/class/ReactClass.js#L826</a></p>
<p dir="auto">It seems no reason to have duplicated codes.<br>
Should we remove one of these two code snippets and only keep one ?<br>
Or is there any reason for this ?</p>
<p dir="auto">If no other concerns, I would suggest move the setup of the props, context and refs back to the class constructor.<br>
Make the duty of constructing and the duty of mounting clear.</p> | <p dir="auto">Hello there!</p>
<p dir="auto">We, in our team, love the new Hooks API!<br>
But it comes with one negative thing we are experiencing since the 16.8 update...</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Hooks can only be called inside the body of a function component."><pre class="notranslate"><code class="notranslate">Hooks can only be called inside the body of a function component.
</code></pre></div>
<p dir="auto">We internally use multiple repositories.<br>
One for every customer project and multiple shared libraries.</p>
<p dir="auto">Since hooks require us to only have one copy of react in the scope (<a href="https://reactjs.org/warnings/invalid-hook-call-warning.html#duplicate-react" rel="nofollow">https://reactjs.org/warnings/invalid-hook-call-warning.html#duplicate-react</a>) we are forced to link our project to allow development of the shared libraries while running the dev server from the customer projects.<br>
So we have to link our projects depending on which project we are currently working on.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#!/bin/bash
cd /shared-component-library
pushd ./node_modules/react && yarn link && popd
pushd ./node_modules/react-dom && yarn link && popd
yarn link
cd /shared-hooks-library
yarn link "react"
yarn link "react-dom"
yarn link
cd /customer-project-1
yarn link "react"
yarn link "react-dom"
yarn link "shared-component-library"
yarn link "shared-hooks-library""><pre class="notranslate"><span class="pl-c"><span class="pl-c">#!</span>/bin/bash</span>
<span class="pl-c1">cd</span> /shared-component-library
<span class="pl-c1">pushd</span> ./node_modules/react <span class="pl-k">&&</span> yarn link <span class="pl-k">&&</span> <span class="pl-c1">popd</span>
<span class="pl-c1">pushd</span> ./node_modules/react-dom <span class="pl-k">&&</span> yarn link <span class="pl-k">&&</span> <span class="pl-c1">popd</span>
yarn link
<span class="pl-c1">cd</span> /shared-hooks-library
yarn link <span class="pl-s"><span class="pl-pds">"</span>react<span class="pl-pds">"</span></span>
yarn link <span class="pl-s"><span class="pl-pds">"</span>react-dom<span class="pl-pds">"</span></span>
yarn link
<span class="pl-c1">cd</span> /customer-project-1
yarn link <span class="pl-s"><span class="pl-pds">"</span>react<span class="pl-pds">"</span></span>
yarn link <span class="pl-s"><span class="pl-pds">"</span>react-dom<span class="pl-pds">"</span></span>
yarn link <span class="pl-s"><span class="pl-pds">"</span>shared-component-library<span class="pl-pds">"</span></span>
yarn link <span class="pl-s"><span class="pl-pds">"</span>shared-hooks-library<span class="pl-pds">"</span></span></pre></div>
<p dir="auto">This process has to be done for every frontend developer and does not work every time you try.<br>
Before you add new dependencies you have to unlink every linked dependency.<br>
and therefore it is very time consuming and is in our way.</p>
<hr>
<p dir="auto">Then we stumbled upon yarn plug'n play... which is not working for the most part. most npm packages cannot be installed, therefore its not a viable option for us.</p>
<p dir="auto">And then we tried the package manager <code class="notranslate">pnpm</code> which installs all dependencies on a central location in the filesystem and we thought that this might fix all of our issues. unfortunately there are two react instances too...</p>
<hr>
<p dir="auto">We would highly appreciate if someone would put some effort into this topic.<br>
Maybe by finding a way to make sure only one react instance is present - making it a Singleton somehow?!<br>
We don't have to re-invent the package management for this issue i think - it's just a matter of detecting of a react instance is already present - i think ^^</p> | 0 |
<p dir="auto">Is there any existing feature for printing the scene tree to the console, e.g. for debugging? I'm finding it a bit time-consuming to expand <code class="notranslate">node.children</code> recursively in the JS Console. If not, I wanted to propose something along the lines of:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="SceneUtils.log( node );"><pre class="notranslate"><span class="pl-v">SceneUtils</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span> <span class="pl-s1">node</span> <span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=". <Scene>
├── <Object3D>
│ └── joint_1 <Bone>
│ └── joint_2 <Bone>
│ └── joint_3 <Bone>
├── fancy_character <SkinnedMesh>
├── <PointLight>
├── <AmbientLight>
└── bookshelf <Mesh>"><pre class="notranslate"><code class="notranslate">. <Scene>
├── <Object3D>
│ └── joint_1 <Bone>
│ └── joint_2 <Bone>
│ └── joint_3 <Bone>
├── fancy_character <SkinnedMesh>
├── <PointLight>
├── <AmbientLight>
└── bookshelf <Mesh>
</code></pre></div> | <p dir="auto"><strong>Describe the bug</strong></p>
<p dir="auto">JPEG textures in an input GLB get exported as PNG, causing such models to grow enormously in size.</p>
<p dir="auto"><strong>To Reproduce</strong></p>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>Go to <a href="https://threejs.org/editor/" rel="nofollow">https://threejs.org/editor/</a></li>
<li>Import <a href="https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/2.0/DamagedHelmet/glTF-Binary">DamagedHelment.glb</a></li>
<li>Export as GLB</li>
<li>Note the original was 3.8 Mb, while the new is 17.9 Mb</li>
</ol>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">The exported model should be pretty close to the same size as the original. I understand it won't be identical, which is fine, but this is pretty unusable.</p>
<p dir="auto"><strong>Cause</strong></p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1118375356" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/23385" data-hovercard-type="pull_request" data-hovercard-url="/mrdoob/three.js/pull/23385/hovercard" href="https://github.com/mrdoob/three.js/pull/23385">#23385</a> is sort of the culprit, but really it was <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1102180015" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/23228" data-hovercard-type="pull_request" data-hovercard-url="/mrdoob/three.js/pull/23228/hovercard" href="https://github.com/mrdoob/three.js/pull/23228">#23228</a> where the RGBFormat was removed and this was the only way we had to tell if a texture had been a JPG or a PNG. <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Mugen87/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mugen87">@Mugen87</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/donmccurdy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/donmccurdy">@donmccurdy</a> This is blocking model-viewer's update to r137/r138 because it affects our editor the same as yours. Can anyone think of a quick work-around?</p> | 0 |
<h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">Improve the console User Experience by using the console schema "Campbell". Currently, using the "Solarize Dark", makes it harder to read and the bash console colors are gone.</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">Change:<br>
"colorScheme": "Solarized Dark",<br>
to:<br>
"colorScheme": "Campbell",</p> | <p dir="auto">When I don't use the terminal for some time (preferably when I left my PC unattended for some time...), the window just disappeared.</p>
<p dir="auto">Since I have little to no idea on how this can be reproduced consistently, I mainly want to post this here in case other people observe the same behavior.</p>
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18999.1
Windows Terminal version (if applicable): 0.5.2762.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18999.1
Windows Terminal version (if applicable): 0.5.2762.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">I can't consistently reproduce this, but it happens to me lots of the times when I leave the terminal unused for some time (at least half an hour I would say).</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">As long as I don't explicitly close it, the Terminal stays open.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">After some undefined period of time, the Terminal window is just gone. All that is left to make sure I'm not crazy is the processes of the tabs / panes I had opened - although I have no idea how to get back to them:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4457940/67140072-1fbbf900-f257-11e9-83b9-ec11f6b3e603.png"><img src="https://user-images.githubusercontent.com/4457940/67140072-1fbbf900-f257-11e9-83b9-ec11f6b3e603.png" alt="image" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">1.8.0.10 & nightly (1.9.0-dev.20160601)</p>
<p dir="auto"><strong>Code</strong></p>
<p dir="auto">Small example project here: <a href="https://github.com/unindented/ts-webpack-example">https://github.com/unindented/ts-webpack-example</a></p>
<p dir="auto">Project has the following layout:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".
├── app
│ ├── index.css
│ ├── index.html
│ └── index.ts
├── components
│ ├── button
│ │ ├── index.css
│ │ ├── index.html
│ │ └── index.ts
│ └── counter
│ ├── index.css
│ ├── index.html
│ └── index.ts
├── package.json
├── shared
│ ├── backbone_base_view.ts
│ ├── backbone_with_default_render.ts
│ └── backbone_with_subviews.ts
└── tsconfig.json"><pre class="notranslate"><code class="notranslate">.
├── app
│ ├── index.css
│ ├── index.html
│ └── index.ts
├── components
│ ├── button
│ │ ├── index.css
│ │ ├── index.html
│ │ └── index.ts
│ └── counter
│ ├── index.css
│ ├── index.html
│ └── index.ts
├── package.json
├── shared
│ ├── backbone_base_view.ts
│ ├── backbone_with_default_render.ts
│ └── backbone_with_subviews.ts
└── tsconfig.json
</code></pre></div>
<p dir="auto"><code class="notranslate">tsconfig.json</code> has the following options:</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"outDir": "dist"
},
"exclude": [
"dist",
"node_modules"
]
}"><pre class="notranslate">{
<span class="pl-ent">"compilerOptions"</span>: {
<span class="pl-ent">"target"</span>: <span class="pl-s"><span class="pl-pds">"</span>es5<span class="pl-pds">"</span></span>,
<span class="pl-ent">"module"</span>: <span class="pl-s"><span class="pl-pds">"</span>commonjs<span class="pl-pds">"</span></span>,
<span class="pl-ent">"noImplicitAny"</span>: <span class="pl-c1">false</span>,
<span class="pl-ent">"removeComments"</span>: <span class="pl-c1">false</span>,
<span class="pl-ent">"preserveConstEnums"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"sourceMap"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"outDir"</span>: <span class="pl-s"><span class="pl-pds">"</span>dist<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"exclude"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>dist<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span>
]
}</pre></div>
<p dir="auto"><strong>Expected behavior:</strong></p>
<p dir="auto">I'd expect <code class="notranslate">import</code>s like this one to work:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import Counter from 'components/counter/index';"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-smi">Counter</span> <span class="pl-k">from</span> <span class="pl-s">'components/counter/index'</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Actual behavior:</strong></p>
<p dir="auto">I get <code class="notranslate">TS2307</code> errors:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="app/index.ts(1,21): error TS2307: Cannot find module 'components/counter/index'.
components/button/index.ts(2,22): error TS2307: Cannot find module 'shared/backbone_base_view'.
components/button/index.ts(3,25): error TS2307: Cannot find module 'shared/backbone_with_default_render'.
components/counter/index.ts(2,22): error TS2307: Cannot find module 'shared/backbone_base_view'.
components/counter/index.ts(3,25): error TS2307: Cannot find module 'shared/backbone_with_default_render'.
components/counter/index.ts(4,27): error TS2307: Cannot find module 'shared/backbone_with_subviews'.
components/counter/index.ts(5,20): error TS2307: Cannot find module 'components/button/index'."><pre class="notranslate"><code class="notranslate">app/index.ts(1,21): error TS2307: Cannot find module 'components/counter/index'.
components/button/index.ts(2,22): error TS2307: Cannot find module 'shared/backbone_base_view'.
components/button/index.ts(3,25): error TS2307: Cannot find module 'shared/backbone_with_default_render'.
components/counter/index.ts(2,22): error TS2307: Cannot find module 'shared/backbone_base_view'.
components/counter/index.ts(3,25): error TS2307: Cannot find module 'shared/backbone_with_default_render'.
components/counter/index.ts(4,27): error TS2307: Cannot find module 'shared/backbone_with_subviews'.
components/counter/index.ts(5,20): error TS2307: Cannot find module 'components/button/index'.
</code></pre></div>
<p dir="auto">However, if I change <code class="notranslate">module</code> to <code class="notranslate">amd</code>, things do work.</p>
<p dir="auto">If this is intentional, is there a way to have <code class="notranslate">commonjs</code> be able to resolve these kinds of <em>"absolute"</em> paths?</p> | <p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">This is reproducible both in VSCode 1.0 and in the playground (<a href="https://www.typescriptlang.org/play/#src=interface%20A%20%7B%0D%0A%09x%3A%20number%3B%0D%0A%7D%0D%0A%0D%0Ainterface%20B%20%7B%0D%0A%09x%3A%20string%3B%0D%0A%7D%0D%0A%0D%0Aconst%20c%3A%20A%20%7C%20B%20%3D%20%7B%20x%3A%201%20%7C%7C%20%22a%22%20%7D%3B%0D%0A%0D%0Aconst%20d%3A%20A%20%7C%20B%20%3D%20%7B%20x%3A%201%20%7D%20%7C%7C%20%7B%20x%3A%20%22a%22%20%7D%3B%0D%0A" rel="nofollow">https://www.typescriptlang.org/play/#src=...</a>)</p>
<p dir="auto"><strong>Code</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface A {
x: number;
}
interface B {
x: string;
}
const c: A | B = { x: 1 || "a" };
const d: A | B = { x: 1 } || { x: "a" };
"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-c1">x</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">interface</span> <span class="pl-smi">B</span> <span class="pl-kos">{</span>
<span class="pl-c1">x</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">const</span> <span class="pl-s1">c</span>: <span class="pl-smi">A</span> <span class="pl-c1">|</span> <span class="pl-smi">B</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-c1">1</span> <span class="pl-c1">||</span> <span class="pl-s">"a"</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">d</span>: <span class="pl-smi">A</span> <span class="pl-c1">|</span> <span class="pl-smi">B</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-c1">1</span> <span class="pl-kos">}</span> <span class="pl-c1">||</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-s">"a"</span> <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Expected behavior:</strong><br>
Both <code class="notranslate">c</code> and <code class="notranslate">d</code> should be fine</p>
<p dir="auto"><strong>Actual behavior:</strong><br>
TypeScript reports this error for the <code class="notranslate">const c: A | B = { x: 1 || "a" };</code> statement:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Type '{ x: number | string; }' is not assignable to type 'A | B'.
Type '{ x: number | string; }' is not assignable to type 'B'.
Types of property 'x' are incompatible.
Type 'number | string' is not assignable to type 'string'.
Type 'number' is not assignable to type 'string'."><pre class="notranslate"><code class="notranslate">Type '{ x: number | string; }' is not assignable to type 'A | B'.
Type '{ x: number | string; }' is not assignable to type 'B'.
Types of property 'x' are incompatible.
Type 'number | string' is not assignable to type 'string'.
Type 'number' is not assignable to type 'string'.
</code></pre></div> | 0 |
<p dir="auto">I am trying to use scipy.dendrogram to create a dendrogram of genomics data.<br>
Unfortunately, the dendrogram fails with a recursion error</p>
<p dir="auto">THis code worked for slightly smaller datasets but maybe the data is malformed.<br>
Note: the data used here where created using sch.linkage(distance_matrix_rows, method="ward")</p>
<h3 dir="auto">Reproducing code example:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import json
import scipy.cluster.hierarchy as sch
datastr = "[[0.0, 5.0, 0.0, 2.0], [1.0, 2.0, 0.0, 2.0], [4.0, 7836.0, 0.0, 3.0], [3.0, 245.0, 0.0, 2.0], [6.0, 7837.0, 0.0, 4.0], [8.0, 7835.0, 0.0, 3.0], [7.0, 7839.0, 0.0, 5.0], [9.0, 7841.0, 0.0, 6.0], [40.0, 7840.0, 0.0, 4.0], [10.0, 7842.0, 0.0, 7.0], [14.0, 7844.0, 0.0, 8.0], [11.0, 565.0, 0.0, 2.0], [12.0, 26.0, 0.0, 2.0], [13.0, 442.0, 0.0, 2.0], [15.0, 7845.0, 0.0, 9.0], [16.0, 7849.0, 0.0, 10.0], [17.0, 7850.0, 0.0, 11.0], [18.0, 7851.0, 0.0, 12.0], [20.0, 7852.0, 0.0, 13.0], [21.0, 7853.0, 0.0, 14.0], [22.0, 7854.0, 0.0, 15.0], [24.0, 7855.0, 0.0, 16.0], [2922.0, 3903.0, 0.0, 2.0], [4454.0, 7857.0, 0.0, 3.0], [25.0, 7856.0, 0.0, 17.0], [27.0, 7859.0, 0.0, 18.0], [33.0, 7847.0, 0.0, 3.0], [28.0, 7860.0, 0.0, 19.0], [29.0, 7862.0, 0.0, 20.0], [30.0, 7863.0, 0.0, 21.0], [32.0, 7864.0, 0.0, 22.0], [31.0, 6953.0, 0.0, 2.0], [34.0, 7865.0, 0.0, 23.0], [81.0, 7861.0, 0.0, 4.0], [36.0, 7867.0, 0.0, 24.0], [35.0, 1063.0, 0.0, 2.0], [37.0, 7869.0, 0.0, 25.0], [39.0, 7871.0, 0.0, 26.0], [38.0, 60.0, 0.0, 2.0], [41.0, 7872.0, 0.0, 27.0], [47.0, 7843.0, 0.0, 5.0], [42.0, 7874.0, 0.0, 28.0], [43.0, 7876.0, 0.0, 29.0], [44.0, 7877.0, 0.0, 30.0], [45.0, 7878.0, 0.0, 31.0], [46.0, 7879.0, 0.0, 32.0], [48.0, 7880.0, 0.0, 33.0], [57.0, 7875.0, 0.0, 6.0], [50.0, 7881.0, 0.0, 34.0], [49.0, 450.0, 0.0, 2.0], [51.0, 7883.0, 0.0, 35.0], [52.0, 7885.0, 0.0, 36.0], [55.0, 7886.0, 0.0, 37.0], [54.0, 217.0, 0.0, 2.0], [56.0, 7887.0, 0.0, 38.0], [59.0, 7889.0, 0.0, 39.0], [61.0, 7882.0, 0.0, 7.0], [58.0, 1149.0, 0.0, 2.0], [62.0, 7890.0, 0.0, 40.0], [132.0, 7873.0, 0.0, 3.0], [82.0, 7891.0, 0.0, 8.0], [64.0, 7893.0, 0.0, 41.0], [63.0, 839.0, 0.0, 2.0], [65.0, 7896.0, 0.0, 42.0], [66.0, 7898.0, 0.0, 43.0], [67.0, 7899.0, 0.0, 44.0], [68.0, 7900.0, 0.0, 45.0], [69.0, 7901.0, 0.0, 46.0], [72.0, 7902.0, 0.0, 47.0], [71.0, 135.0, 0.0, 2.0], [74.0, 7903.0, 0.0, 48.0], [75.0, 7905.0, 0.0, 49.0], [76.0, 7906.0, 0.0, 50.0], [78.0, 7907.0, 0.0, 51.0], [616.0, 6267.0, 0.0, 2.0], [6732.0, 7909.0, 0.0, 3.0], [7120.0, 7910.0, 0.0, 4.0], [79.0, 7908.0, 0.0, 52.0], [80.0, 7912.0, 0.0, 53.0], [83.0, 7913.0, 0.0, 54.0], [127.0, 7868.0, 0.0, 5.0], [99.0, 7895.0, 0.0, 9.0], [84.0, 7914.0, 0.0, 55.0], [87.0, 7917.0, 0.0, 56.0], [85.0, 3630.0, 0.0, 2.0], [86.0, 4270.0, 0.0, 2.0], [88.0, 7918.0, 0.0, 57.0], [89.0, 7921.0, 0.0, 58.0], [91.0, 7922.0, 0.0, 59.0], [90.0, 677.0, 0.0, 2.0], [92.0, 7923.0, 0.0, 60.0], [93.0, 7925.0, 0.0, 61.0], [94.0, 7926.0, 0.0, 62.0], [95.0, 7927.0, 0.0, 63.0], [96.0, 7928.0, 0.0, 64.0], [97.0, 7929.0, 0.0, 65.0], [98.0, 7930.0, 0.0, 66.0], [102.0, 7931.0, 0.0, 67.0], [110.0, 7916.0, 0.0, 10.0], [6829.0, 7291.0, 0.0, 2.0], [874.0, 5171.0, 0.0, 2.0], [1219.0, 1819.0, 0.0, 2.0], [1112.0, 1353.0, 0.0, 2.0], [2286.0, 7937.0, 0.0, 3.0], [4972.0, 7938.0, 0.0, 4.0], [5741.0, 7939.0, 0.0, 5.0], [101.0, 806.0, 0.0, 2.0], [103.0, 7932.0, 0.0, 68.0], [105.0, 7942.0, 0.0, 69.0], [106.0, 7943.0, 0.0, 70.0], [107.0, 7944.0, 0.0, 71.0], [108.0, 7945.0, 0.0, 72.0], [109.0, 7946.0, 0.0, 73.0], [112.0, 7947.0, 0.0, 74.0], [122.0, 7933.0, 0.0, 11.0], [111.0, 123.0, 0.0, 2.0], [114.0, 7948.0, 0.0, 75.0], [4618.0, 7405.0, 0.0, 2.0], [115.0, 7951.0, 0.0, 76.0], [116.0, 7953.0, 0.0, 77.0], [118.0, 7954.0, 0.0, 78.0], [117.0, 770.0, 0.0, 2.0], [120.0, 7955.0, 0.0, 79.0], [5682.0, 5968.0, 0.0, 2.0], [121.0, 7957.0, 0.0, 80.0], [124.0, 7959.0, 0.0, 81.0], [126.0, 7949.0, 0.0, 12.0], [130.0, 7950.0, 0.0, 3.0], [125.0, 7960.0, 0.0, 82.0], [129.0, 7963.0, 0.0, 83.0], [131.0, 7961.0, 0.0, 13.0], [128.0, 7915.0, 0.0, 6.0], [141.0, 7966.0, 0.0, 7.0], [139.0, 7964.0, 0.0, 84.0], [153.0, 7962.0, 0.0, 4.0], [140.0, 7965.0, 0.0, 14.0], [170.0, 7894.0, 0.0, 4.0], [133.0, 465.0, 0.0, 2.0], [134.0, 1557.0, 0.0, 2.0], [204.0, 7904.0, 0.0, 3.0], [1135.0, 1762.0, 0.0, 2.0], [4196.0, 7975.0, 0.0, 3.0], [5900.0, 7976.0, 0.0, 4.0], [708.0, 920.0, 0.0, 2.0], [2350.0, 7978.0, 0.0, 3.0], [3184.0, 7979.0, 0.0, 4.0], [3185.0, 7980.0, 0.0, 5.0], [3797.0, 7981.0, 0.0, 6.0], [4599.0, 7982.0, 0.0, 7.0], [6920.0, 7983.0, 0.0, 8.0], [7004.0, 7984.0, 0.0, 9.0], [7803.0, 7985.0, 0.0, 10.0], [161.0, 7967.0, 0.0, 8.0], [162.0, 7987.0, 0.0, 9.0], [180.0, 7988.0, 0.0, 10.0], [194.0, 7989.0, 0.0, 11.0], [212.0, 7990.0, 0.0, 12.0], [216.0, 7991.0, 0.0, 13.0], [262.0, 7992.0, 0.0, 14.0], [265.0, 7993.0, 0.0, 15.0], [348.0, 7994.0, 0.0, 16.0], [350.0, 7995.0, 0.0, 17.0], [368.0, 7996.0, 0.0, 18.0], [370.0, 7997.0, 0.0, 19.0], [390.0, 7998.0, 0.0, 20.0], [416.0, 7999.0, 0.0, 21.0], [443.0, 8000.0, 0.0, 22.0], [446.0, 8001.0, 0.0, 23.0], [449.0, 8002.0, 0.0, 24.0], [466.0, 8003.0, 0.0, 25.0], [487.0, 8004.0, 0.0, 26.0], [497.0, 8005.0, 0.0, 27.0], [537.0, 8006.0, 0.0, 28.0], [540.0, 8007.0, 0.0, 29.0], [549.0, 8008.0, 0.0, 30.0], [561.0, 8009.0, 0.0, 31.0], [596.0, 8010.0, 0.0, 32.0], [599.0, 8011.0, 0.0, 33.0], [618.0, 8012.0, 0.0, 34.0], [645.0, 8013.0, 0.0, 35.0], [652.0, 8014.0, 0.0, 36.0], [656.0, 8015.0, 0.0, 37.0], [659.0, 8016.0, 0.0, 38.0], [662.0, 8017.0, 0.0, 39.0], [696.0, 8018.0, 0.0, 40.0], [733.0, 8019.0, 0.0, 41.0], [735.0, 8020.0, 0.0, 42.0], [740.0, 8021.0, 0.0, 43.0], [784.0, 8022.0, 0.0, 44.0], [812.0, 8023.0, 0.0, 45.0], [822.0, 8024.0, 0.0, 46.0], [824.0, 8025.0, 0.0, 47.0], [837.0, 8026.0, 0.0, 48.0], [872.0, 8027.0, 0.0, 49.0], [891.0, 8028.0, 0.0, 50.0], [903.0, 8029.0, 0.0, 51.0], [928.0, 8030.0, 0.0, 52.0], [961.0, 8031.0, 0.0, 53.0], [972.0, 8032.0, 0.0, 54.0], [982.0, 8033.0, 0.0, 55.0], [984.0, 8034.0, 0.0, 56.0], [1020.0, 8035.0, 0.0, 57.0], [1032.0, 8036.0, 0.0, 58.0], [1034.0, 8037.0, 0.0, 59.0], [1056.0, 8038.0, 0.0, 60.0], [1088.0, 8039.0, 0.0, 61.0], [1106.0, 8040.0, 0.0, 62.0], [1114.0, 8041.0, 0.0, 63.0], [1137.0, 8042.0, 0.0, 64.0], [1141.0, 8043.0, 0.0, 65.0], [1143.0, 8044.0, 0.0, 66.0], [1153.0, 8045.0, 0.0, 67.0], [1161.0, 8046.0, 0.0, 68.0], [1165.0, 8047.0, 0.0, 69.0], [1215.0, 8048.0, 0.0, 70.0], [1255.0, 8049.0, 0.0, 71.0], [1266.0, 8050.0, 0.0, 72.0], [1274.0, 8051.0, 0.0, 73.0], [1280.0, 8052.0, 0.0, 74.0], [1285.0, 8053.0, 0.0, 75.0], [1289.0, 8054.0, 0.0, 76.0], [1290.0, 8055.0, 0.0, 77.0], [1322.0, 8056.0, 0.0, 78.0], [1323.0, 8057.0, 0.0, 79.0], [1327.0, 8058.0, 0.0, 80.0], [1337.0, 8059.0, 0.0, 81.0], [1340.0, 8060.0, 0.0, 82.0], [1354.0, 8061.0, 0.0, 83.0], [1374.0, 8062.0, 0.0, 84.0], [1376.0, 8063.0, 0.0, 85.0], [1388.0, 8064.0, 0.0, 86.0], [1389.0, 8065.0, 0.0, 87.0], [1400.0, 8066.0, 0.0, 88.0], [1407.0, 8067.0, 0.0, 89.0], [1408.0, 8068.0, 0.0, 90.0], [1409.0, 8069.0, 0.0, 91.0], [1420.0, 8070.0, 0.0, 92.0], [1423.0, 8071.0, 0.0, 93.0], [1428.0, 8072.0, 0.0, 94.0], [1441.0, 8073.0, 0.0, 95.0], [1448.0, 8074.0, 0.0, 96.0], [1457.0, 8075.0, 0.0, 97.0], [1463.0, 8076.0, 0.0, 98.0], [1467.0, 8077.0, 0.0, 99.0], [1537.0, 8078.0, 0.0, 100.0], [1547.0, 8079.0, 0.0, 101.0], [1559.0, 8080.0, 0.0, 102.0], [1563.0, 8081.0, 0.0, 103.0], [1569.0, 8082.0, 0.0, 104.0], [1674.0, 8083.0, 0.0, 105.0], [1703.0, 8084.0, 0.0, 106.0], [1714.0, 8085.0, 0.0, 107.0], [1719.0, 8086.0, 0.0, 108.0], [1760.0, 8087.0, 0.0, 109.0], [1792.0, 8088.0, 0.0, 110.0], [1802.0, 8089.0, 0.0, 111.0], [1821.0, 8090.0, 0.0, 112.0], [1822.0, 8091.0, 0.0, 113.0], [1824.0, 8092.0, 0.0, 114.0], [1878.0, 8093.0, 0.0, 115.0], [1890.0, 8094.0, 0.0, 116.0], [1909.0, 8095.0, 0.0, 117.0], [1911.0, 8096.0, 0.0, 118.0], [1925.0, 8097.0, 0.0, 119.0], [1946.0, 8098.0, 0.0, 120.0], [1978.0, 8099.0, 0.0, 121.0], [1990.0, 8100.0, 0.0, 122.0], [2010.0, 8101.0, 0.0, 123.0], [2030.0, 8102.0, 0.0, 124.0], [2049.0, 8103.0, 0.0, 125.0], [2054.0, 8104.0, 0.0, 126.0], [2061.0, 8105.0, 0.0, 127.0], [2084.0, 8106.0, 0.0, 128.0], [2091.0, 8107.0, 0.0, 129.0], [2111.0, 8108.0, 0.0, 130.0], [2122.0, 8109.0, 0.0, 131.0], [2128.0, 8110.0, 0.0, 132.0], [2143.0, 8111.0, 0.0, 133.0], [2155.0, 8112.0, 0.0, 134.0], [2207.0, 8113.0, 0.0, 135.0], [2209.0, 8114.0, 0.0, 136.0], [2225.0, 8115.0, 0.0, 137.0], [2239.0, 8116.0, 0.0, 138.0], [2250.0, 8117.0, 0.0, 139.0], [2255.0, 8118.0, 0.0, 140.0], [2267.0, 8119.0, 0.0, 141.0], [2297.0, 8120.0, 0.0, 142.0], [2300.0, 8121.0, 0.0, 143.0], [2304.0, 8122.0, 0.0, 144.0], [2315.0, 8123.0, 0.0, 145.0], [2377.0, 8124.0, 0.0, 146.0], [2385.0, 8125.0, 0.0, 147.0], [2386.0, 8126.0, 0.0, 148.0], [2396.0, 8127.0, 0.0, 149.0], [2414.0, 8128.0, 0.0, 150.0], [2441.0, 8129.0, 0.0, 151.0], [2477.0, 8130.0, 0.0, 152.0], [2482.0, 8131.0, 0.0, 153.0], [2498.0, 8132.0, 0.0, 154.0], [2510.0, 8133.0, 0.0, 155.0], [2520.0, 8134.0, 0.0, 156.0], [2527.0, 8135.0, 0.0, 157.0], [2547.0, 8136.0, 0.0, 158.0], [2552.0, 8137.0, 0.0, 159.0], [2581.0, 8138.0, 0.0, 160.0], [2609.0, 8139.0, 0.0, 161.0], [2616.0, 8140.0, 0.0, 162.0], [2642.0, 8141.0, 0.0, 163.0], [2656.0, 8142.0, 0.0, 164.0], [2666.0, 8143.0, 0.0, 165.0], [2677.0, 8144.0, 0.0, 166.0], [2689.0, 8145.0, 0.0, 167.0], [2698.0, 8146.0, 0.0, 168.0], [2768.0, 8147.0, 0.0, 169.0], [2799.0, 8148.0, 0.0, 170.0], [2818.0, 8149.0, 0.0, 171.0], [2840.0, 8150.0, 0.0, 172.0], [2857.0, 8151.0, 0.0, 173.0], [2880.0, 8152.0, 0.0, 174.0], [2881.0, 8153.0, 0.0, 175.0], [2909.0, 8154.0, 0.0, 176.0], [2986.0, 8155.0, 0.0, 177.0], [3005.0, 8156.0, 0.0, 178.0], [3023.0, 8157.0, 0.0, 179.0], [3061.0, 8158.0, 0.0, 180.0], [3096.0, 8159.0, 0.0, 181.0], [3099.0, 8160.0, 0.0, 182.0], [3136.0, 8161.0, 0.0, 183.0], [3141.0, 8162.0, 0.0, 184.0], [3200.0, 8163.0, 0.0, 185.0], [3206.0, 8164.0, 0.0, 186.0], [3226.0, 8165.0, 0.0, 187.0], [3237.0, 8166.0, 0.0, 188.0], [3250.0, 8167.0, 0.0, 189.0], [3256.0, 8168.0, 0.0, 190.0], [3279.0, 8169.0, 0.0, 191.0], [3335.0, 8170.0, 0.0, 192.0], [3343.0, 8171.0, 0.0, 193.0], [3345.0, 8172.0, 0.0, 194.0], [3349.0, 8173.0, 0.0, 195.0], [3359.0, 8174.0, 0.0, 196.0], [3369.0, 8175.0, 0.0, 197.0], [3397.0, 8176.0, 0.0, 198.0], [3399.0, 8177.0, 0.0, 199.0], [3412.0, 8178.0, 0.0, 200.0], [3425.0, 8179.0, 0.0, 201.0], [3459.0, 8180.0, 0.0, 202.0], [3461.0, 8181.0, 0.0, 203.0], [3463.0, 8182.0, 0.0, 204.0], [3468.0, 8183.0, 0.0, 205.0], [3469.0, 8184.0, 0.0, 206.0], [3477.0, 8185.0, 0.0, 207.0], [3511.0, 8186.0, 0.0, 208.0], [3560.0, 8187.0, 0.0, 209.0], [3588.0, 8188.0, 0.0, 210.0], [3590.0, 8189.0, 0.0, 211.0], [3612.0, 8190.0, 0.0, 212.0], [3628.0, 8191.0, 0.0, 213.0], [3651.0, 8192.0, 0.0, 214.0], [3669.0, 8193.0, 0.0, 215.0], [3706.0, 8194.0, 0.0, 216.0], [3722.0, 8195.0, 0.0, 217.0], [3800.0, 8196.0, 0.0, 218.0], [3833.0, 8197.0, 0.0, 219.0], [3889.0, 8198.0, 0.0, 220.0], [3922.0, 8199.0, 0.0, 221.0], [3926.0, 8200.0, 0.0, 222.0], [3984.0, 8201.0, 0.0, 223.0], [3986.0, 8202.0, 0.0, 224.0], [3990.0, 8203.0, 0.0, 225.0], [3996.0, 8204.0, 0.0, 226.0], [3998.0, 8205.0, 0.0, 227.0], [4005.0, 8206.0, 0.0, 228.0], [4010.0, 8207.0, 0.0, 229.0], [4032.0, 8208.0, 0.0, 230.0], [4081.0, 8209.0, 0.0, 231.0], [4093.0, 8210.0, 0.0, 232.0], [4095.0, 8211.0, 0.0, 233.0], [4099.0, 8212.0, 0.0, 234.0], [4101.0, 8213.0, 0.0, 235.0], [4157.0, 8214.0, 0.0, 236.0], [4166.0, 8215.0, 0.0, 237.0], [4181.0, 8216.0, 0.0, 238.0], [4183.0, 8217.0, 0.0, 239.0], [4188.0, 8218.0, 0.0, 240.0], [4201.0, 8219.0, 0.0, 241.0], [4202.0, 8220.0, 0.0, 242.0], [4206.0, 8221.0, 0.0, 243.0], [4208.0, 8222.0, 0.0, 244.0], [4216.0, 8223.0, 0.0, 245.0], [4283.0, 8224.0, 0.0, 246.0], [4290.0, 8225.0, 0.0, 247.0], [4299.0, 8226.0, 0.0, 248.0], [4314.0, 8227.0, 0.0, 249.0], [4315.0, 8228.0, 0.0, 250.0], [4320.0, 8229.0, 0.0, 251.0], [4325.0, 8230.0, 0.0, 252.0], [4331.0, 8231.0, 0.0, 253.0], [4337.0, 8232.0, 0.0, 254.0], [4343.0, 8233.0, 0.0, 255.0], [4351.0, 8234.0, 0.0, 256.0], [4363.0, 8235.0, 0.0, 257.0], [4368.0, 8236.0, 0.0, 258.0], [4400.0, 8237.0, 0.0, 259.0], [4413.0, 8238.0, 0.0, 260.0], [4442.0, 8239.0, 0.0, 261.0], [4446.0, 8240.0, 0.0, 262.0], [4451.0, 8241.0, 0.0, 263.0], [4459.0, 8242.0, 0.0, 264.0], [4501.0, 8243.0, 0.0, 265.0], [4513.0, 8244.0, 0.0, 266.0], [4528.0, 8245.0, 0.0, 267.0], [4551.0, 8246.0, 0.0, 268.0], [4567.0, 8247.0, 0.0, 269.0], [4589.0, 8248.0, 0.0, 270.0], [4616.0, 8249.0, 0.0, 271.0], [4630.0, 8250.0, 0.0, 272.0], [4657.0, 8251.0, 0.0, 273.0], [4665.0, 8252.0, 0.0, 274.0], [4704.0, 8253.0, 0.0, 275.0], [4706.0, 8254.0, 0.0, 276.0], [4708.0, 8255.0, 0.0, 277.0], [4722.0, 8256.0, 0.0, 278.0], [4727.0, 8257.0, 0.0, 279.0], [4742.0, 8258.0, 0.0, 280.0], [4775.0, 8259.0, 0.0, 281.0], [4795.0, 8260.0, 0.0, 282.0], [4830.0, 8261.0, 0.0, 283.0], [4838.0, 8262.0, 0.0, 284.0], [4849.0, 8263.0, 0.0, 285.0], [4877.0, 8264.0, 0.0, 286.0], [4905.0, 8265.0, 0.0, 287.0], [4922.0, 8266.0, 0.0, 288.0], [4947.0, 8267.0, 0.0, 289.0], [4983.0, 8268.0, 0.0, 290.0], [5006.0, 8269.0, 0.0, 291.0], [5044.0, 8270.0, 0.0, 292.0], [5065.0, 8271.0, 0.0, 293.0], [5086.0, 8272.0, 0.0, 294.0], [5104.0, 8273.0, 0.0, 295.0], [5138.0, 8274.0, 0.0, 296.0], [5146.0, 8275.0, 0.0, 297.0], [5156.0, 8276.0, 0.0, 298.0], [5159.0, 8277.0, 0.0, 299.0], [5166.0, 8278.0, 0.0, 300.0], [5175.0, 8279.0, 0.0, 301.0], [5202.0, 8280.0, 0.0, 302.0], [5209.0, 8281.0, 0.0, 303.0], [5210.0, 8282.0, 0.0, 304.0], [5226.0, 8283.0, 0.0, 305.0], [5236.0, 8284.0, 0.0, 306.0], [5240.0, 8285.0, 0.0, 307.0], [5249.0, 8286.0, 0.0, 308.0], [5258.0, 8287.0, 0.0, 309.0], [5260.0, 8288.0, 0.0, 310.0], [5303.0, 8289.0, 0.0, 311.0], [5306.0, 8290.0, 0.0, 312.0], [5313.0, 8291.0, 0.0, 313.0], [5314.0, 8292.0, 0.0, 314.0], [5332.0, 8293.0, 0.0, 315.0], [5347.0, 8294.0, 0.0, 316.0], [5355.0, 8295.0, 0.0, 317.0], [5356.0, 8296.0, 0.0, 318.0], [5358.0, 8297.0, 0.0, 319.0], [5361.0, 8298.0, 0.0, 320.0], [5399.0, 8299.0, 0.0, 321.0], [5400.0, 8300.0, 0.0, 322.0], [5402.0, 8301.0, 0.0, 323.0], [5412.0, 8302.0, 0.0, 324.0], [5435.0, 8303.0, 0.0, 325.0], [5475.0, 8304.0, 0.0, 326.0], [5503.0, 8305.0, 0.0, 327.0], [5531.0, 8306.0, 0.0, 328.0], [5535.0, 8307.0, 0.0, 329.0], [5554.0, 8308.0, 0.0, 330.0], [5601.0, 8309.0, 0.0, 331.0], [5611.0, 8310.0, 0.0, 332.0], [5624.0, 8311.0, 0.0, 333.0], [5630.0, 8312.0, 0.0, 334.0], [5659.0, 8313.0, 0.0, 335.0], [5692.0, 8314.0, 0.0, 336.0], [5719.0, 8315.0, 0.0, 337.0], [5726.0, 8316.0, 0.0, 338.0], [5742.0, 8317.0, 0.0, 339.0], [5748.0, 8318.0, 0.0, 340.0], [5757.0, 8319.0, 0.0, 341.0], [5764.0, 8320.0, 0.0, 342.0], [5812.0, 8321.0, 0.0, 343.0], [5814.0, 8322.0, 0.0, 344.0], [5830.0, 8323.0, 0.0, 345.0], [5832.0, 8324.0, 0.0, 346.0], [5849.0, 8325.0, 0.0, 347.0], [5859.0, 8326.0, 0.0, 348.0], [5860.0, 8327.0, 0.0, 349.0], [5868.0, 8328.0, 0.0, 350.0], [5894.0, 8329.0, 0.0, 351.0], [5895.0, 8330.0, 0.0, 352.0], [5897.0, 8331.0, 0.0, 353.0], [5898.0, 8332.0, 0.0, 354.0], [5901.0, 8333.0, 0.0, 355.0], [5919.0, 8334.0, 0.0, 356.0], [5923.0, 8335.0, 0.0, 357.0], [5939.0, 8336.0, 0.0, 358.0], [5942.0, 8337.0, 0.0, 359.0], [5944.0, 8338.0, 0.0, 360.0], [5951.0, 8339.0, 0.0, 361.0], [5954.0, 8340.0, 0.0, 362.0], [6006.0, 8341.0, 0.0, 363.0], [6012.0, 8342.0, 0.0, 364.0], [6019.0, 8343.0, 0.0, 365.0], [6020.0, 8344.0, 0.0, 366.0], [6044.0, 8345.0, 0.0, 367.0], [6056.0, 8346.0, 0.0, 368.0], [6080.0, 8347.0, 0.0, 369.0], [6085.0, 8348.0, 0.0, 370.0], [6090.0, 8349.0, 0.0, 371.0], [6131.0, 8350.0, 0.0, 372.0], [6149.0, 8351.0, 0.0, 373.0], [6178.0, 8352.0, 0.0, 374.0], [6181.0, 8353.0, 0.0, 375.0], [6241.0, 8354.0, 0.0, 376.0], [6268.0, 8355.0, 0.0, 377.0], [6277.0, 8356.0, 0.0, 378.0], [6296.0, 8357.0, 0.0, 379.0], [6334.0, 8358.0, 0.0, 380.0], [6345.0, 8359.0, 0.0, 381.0], [6356.0, 8360.0, 0.0, 382.0], [6366.0, 8361.0, 0.0, 383.0], [6386.0, 8362.0, 0.0, 384.0], [6444.0, 8363.0, 0.0, 385.0], [6446.0, 8364.0, 0.0, 386.0], [6473.0, 8365.0, 0.0, 387.0], [6489.0, 8366.0, 0.0, 388.0], [6539.0, 8367.0, 0.0, 389.0], [6540.0, 8368.0, 0.0, 390.0], [6541.0, 8369.0, 0.0, 391.0], [6553.0, 8370.0, 0.0, 392.0], [6567.0, 8371.0, 0.0, 393.0], [6581.0, 8372.0, 0.0, 394.0], [6592.0, 8373.0, 0.0, 395.0], [6632.0, 8374.0, 0.0, 396.0], [6645.0, 8375.0, 0.0, 397.0], [6690.0, 8376.0, 0.0, 398.0], [6691.0, 8377.0, 0.0, 399.0], [6731.0, 8378.0, 0.0, 400.0], [6740.0, 8379.0, 0.0, 401.0], [6746.0, 8380.0, 0.0, 402.0], [6770.0, 8381.0, 0.0, 403.0], [6781.0, 8382.0, 0.0, 404.0], [6788.0, 8383.0, 0.0, 405.0], [6797.0, 8384.0, 0.0, 406.0], [6825.0, 8385.0, 0.0, 407.0], [6840.0, 8386.0, 0.0, 408.0], [6846.0, 8387.0, 0.0, 409.0], [6870.0, 8388.0, 0.0, 410.0], [6931.0, 8389.0, 0.0, 411.0], [6944.0, 8390.0, 0.0, 412.0], [6950.0, 8391.0, 0.0, 413.0], [6967.0, 8392.0, 0.0, 414.0], [6988.0, 8393.0, 0.0, 415.0], [7010.0, 8394.0, 0.0, 416.0], [7011.0, 8395.0, 0.0, 417.0], [7023.0, 8396.0, 0.0, 418.0], [7050.0, 8397.0, 0.0, 419.0], [7066.0, 8398.0, 0.0, 420.0], [7067.0, 8399.0, 0.0, 421.0], [7091.0, 8400.0, 0.0, 422.0], [7100.0, 8401.0, 0.0, 423.0], [7121.0, 8402.0, 0.0, 424.0], [7123.0, 8403.0, 0.0, 425.0], [7150.0, 8404.0, 0.0, 426.0], [7170.0, 8405.0, 0.0, 427.0], [7179.0, 8406.0, 0.0, 428.0], [7184.0, 8407.0, 0.0, 429.0], [7198.0, 8408.0, 0.0, 430.0], [7206.0, 8409.0, 0.0, 431.0], [7219.0, 8410.0, 0.0, 432.0], [7230.0, 8411.0, 0.0, 433.0], [7245.0, 8412.0, 0.0, 434.0], [7285.0, 8413.0, 0.0, 435.0], [7315.0, 8414.0, 0.0, 436.0], [7332.0, 8415.0, 0.0, 437.0], [7362.0, 8416.0, 0.0, 438.0], [7384.0, 8417.0, 0.0, 439.0], [7395.0, 8418.0, 0.0, 440.0], [7404.0, 8419.0, 0.0, 441.0], [7431.0, 8420.0, 0.0, 442.0], [7439.0, 8421.0, 0.0, 443.0], [7443.0, 8422.0, 0.0, 444.0], [7470.0, 8423.0, 0.0, 445.0], [7473.0, 8424.0, 0.0, 446.0], [7489.0, 8425.0, 0.0, 447.0], [7504.0, 8426.0, 0.0, 448.0], [7514.0, 8427.0, 0.0, 449.0], [7535.0, 8428.0, 0.0, 450.0], [7547.0, 8429.0, 0.0, 451.0], [7550.0, 8430.0, 0.0, 452.0], [7592.0, 8431.0, 0.0, 453.0], [7600.0, 8432.0, 0.0, 454.0], [7607.0, 8433.0, 0.0, 455.0], [7671.0, 8434.0, 0.0, 456.0], [7701.0, 8435.0, 0.0, 457.0], [7712.0, 8436.0, 0.0, 458.0], [7744.0, 8437.0, 0.0, 459.0], [7778.0, 8438.0, 0.0, 460.0], [7816.0, 8439.0, 0.0, 461.0], [137.0, 663.0, 0.0, 2.0], [144.0, 7968.0, 0.0, 85.0], [142.0, 7970.0, 0.0, 15.0], [169.0, 8443.0, 0.0, 16.0], [143.0, 358.0, 0.0, 2.0], [145.0, 8442.0, 0.0, 86.0], [148.0, 8446.0, 0.0, 87.0], [146.0, 1633.0, 0.0, 2.0], [149.0, 8447.0, 0.0, 88.0], [150.0, 8449.0, 0.0, 89.0], [151.0, 8450.0, 0.0, 90.0], [154.0, 8451.0, 0.0, 91.0], [152.0, 263.0, 0.0, 2.0], [168.0, 7969.0, 0.0, 5.0], [155.0, 8452.0, 0.0, 92.0], [157.0, 8455.0, 0.0, 93.0], [1100.0, 6918.0, 0.0, 2.0], [7691.0, 8457.0, 0.0, 3.0], [1069.0, 1892.0, 0.0, 2.0], [3309.0, 8459.0, 0.0, 3.0], [5148.0, 8460.0, 0.0, 4.0], [5792.0, 8461.0, 0.0, 5.0], [1080.0, 7846.0, 0.0, 3.0], [1635.0, 8463.0, 0.0, 4.0], [1657.0, 8464.0, 0.0, 5.0], [2145.0, 8465.0, 0.0, 6.0], [2213.0, 8466.0, 0.0, 7.0], [2289.0, 8467.0, 0.0, 8.0], [2346.0, 8468.0, 0.0, 9.0], [2939.0, 8469.0, 0.0, 10.0], [3392.0, 8470.0, 0.0, 11.0], [3454.0, 8471.0, 0.0, 12.0], [4633.0, 8472.0, 0.0, 13.0], [4731.0, 8473.0, 0.0, 14.0], [5114.0, 8474.0, 0.0, 15.0], [5486.0, 8475.0, 0.0, 16.0], [5620.0, 8476.0, 0.0, 17.0], [5791.0, 8477.0, 0.0, 18.0], [6236.0, 8478.0, 0.0, 19.0], [7096.0, 8479.0, 0.0, 20.0], [7288.0, 8480.0, 0.0, 21.0], [7341.0, 8481.0, 0.0, 22.0], [7421.0, 8482.0, 0.0, 23.0], [158.0, 8456.0, 0.0, 94.0], [159.0, 8484.0, 0.0, 95.0], [160.0, 8485.0, 0.0, 96.0], [163.0, 8486.0, 0.0, 97.0], [164.0, 8487.0, 0.0, 98.0], [165.0, 8488.0, 0.0, 99.0], [166.0, 8489.0, 0.0, 100.0], [171.0, 8490.0, 0.0, 101.0], [478.0, 5230.0, 0.0, 2.0], [192.0, 8454.0, 0.0, 6.0], [178.0, 8444.0, 0.0, 17.0], [222.0, 7971.0, 0.0, 5.0], [173.0, 8491.0, 0.0, 102.0], [172.0, 541.0, 0.0, 2.0], [174.0, 8496.0, 0.0, 103.0], [175.0, 8498.0, 0.0, 104.0], [176.0, 8499.0, 0.0, 105.0], [181.0, 8500.0, 0.0, 106.0], [177.0, 271.0, 0.0, 2.0], [200.0, 8494.0, 0.0, 18.0], [182.0, 8501.0, 0.0, 107.0], [183.0, 8504.0, 0.0, 108.0], [184.0, 8505.0, 0.0, 109.0], [186.0, 8506.0, 0.0, 110.0], [185.0, 819.0, 0.0, 2.0], [188.0, 8507.0, 0.0, 111.0], [187.0, 2804.0, 0.0, 2.0], [189.0, 8509.0, 0.0, 112.0], [190.0, 8511.0, 0.0, 113.0], [191.0, 8512.0, 0.0, 114.0], [195.0, 8513.0, 0.0, 115.0], [202.0, 8493.0, 0.0, 7.0], [193.0, 947.0, 0.0, 2.0], [197.0, 8514.0, 0.0, 116.0], [196.0, 586.0, 0.0, 2.0], [198.0, 8517.0, 0.0, 117.0], [199.0, 8519.0, 0.0, 118.0], [203.0, 8520.0, 0.0, 119.0], [210.0, 8503.0, 0.0, 19.0], [205.0, 8515.0, 0.0, 8.0], [207.0, 8521.0, 0.0, 120.0], [321.0, 7974.0, 0.0, 4.0], [227.0, 8523.0, 0.0, 9.0], [206.0, 1993.0, 0.0, 2.0], [208.0, 8524.0, 0.0, 121.0], [211.0, 8528.0, 0.0, 122.0], [209.0, 804.0, 0.0, 2.0], [213.0, 8522.0, 0.0, 20.0], [214.0, 8529.0, 0.0, 123.0], [224.0, 8531.0, 0.0, 21.0], [221.0, 8532.0, 0.0, 124.0], [215.0, 560.0, 0.0, 2.0], [415.0, 7888.0, 0.0, 3.0], [218.0, 941.0, 0.0, 2.0], [219.0, 270.0, 0.0, 2.0], [223.0, 8534.0, 0.0, 125.0], [453.0, 8495.0, 0.0, 6.0], [226.0, 8539.0, 0.0, 126.0], [241.0, 8533.0, 0.0, 22.0], [225.0, 3527.0, 0.0, 2.0], [228.0, 8541.0, 0.0, 127.0], [273.0, 8526.0, 0.0, 10.0], [229.0, 8544.0, 0.0, 128.0], [230.0, 8546.0, 0.0, 129.0], [233.0, 8547.0, 0.0, 130.0], [231.0, 275.0, 0.0, 2.0], [234.0, 8548.0, 0.0, 131.0], [235.0, 8550.0, 0.0, 132.0], [236.0, 8551.0, 0.0, 133.0], [237.0, 8552.0, 0.0, 134.0], [238.0, 8553.0, 0.0, 135.0], [240.0, 8554.0, 0.0, 136.0], [243.0, 8555.0, 0.0, 137.0], [251.0, 8542.0, 0.0, 23.0], [1625.0, 4192.0, 0.0, 2.0], [244.0, 8556.0, 0.0, 138.0], [246.0, 8559.0, 0.0, 139.0], [3066.0, 7838.0, 0.0, 3.0], [247.0, 8560.0, 0.0, 140.0], [249.0, 8562.0, 0.0, 141.0], [248.0, 261.0, 0.0, 2.0], [250.0, 8563.0, 0.0, 142.0], [252.0, 8565.0, 0.0, 143.0], [255.0, 8557.0, 0.0, 24.0], [254.0, 8566.0, 0.0, 144.0], [3836.0, 4353.0, 0.0, 2.0], [256.0, 8568.0, 0.0, 145.0], [260.0, 8567.0, 0.0, 25.0], [257.0, 8570.0, 0.0, 146.0], [258.0, 8572.0, 0.0, 147.0], [264.0, 8573.0, 0.0, 148.0], [259.0, 7113.0, 0.0, 2.0], [296.0, 8571.0, 0.0, 26.0], [1743.0, 8564.0, 0.0, 3.0], [324.0, 8453.0, 0.0, 3.0], [267.0, 8574.0, 0.0, 149.0], [269.0, 8579.0, 0.0, 150.0], [272.0, 8580.0, 0.0, 151.0], [796.0, 8538.0, 0.0, 3.0], [380.0, 8502.0, 0.0, 3.0], [276.0, 8581.0, 0.0, 152.0], [277.0, 8545.0, 0.0, 11.0], [1303.0, 8441.0, 0.0, 3.0], [1523.0, 8586.0, 0.0, 4.0], [1617.0, 8587.0, 0.0, 5.0], [1656.0, 8588.0, 0.0, 6.0], [2160.0, 8589.0, 0.0, 7.0], [2242.0, 8590.0, 0.0, 8.0], [2422.0, 8591.0, 0.0, 9.0], [2517.0, 8592.0, 0.0, 10.0], [2546.0, 8593.0, 0.0, 11.0], [2591.0, 8594.0, 0.0, 12.0], [2824.0, 8595.0, 0.0, 13.0], [2966.0, 8596.0, 0.0, 14.0], [3176.0, 8597.0, 0.0, 15.0], [3440.0, 8598.0, 0.0, 16.0], [3784.0, 8599.0, 0.0, 17.0], [4212.0, 8600.0, 0.0, 18.0], [4475.0, 8601.0, 0.0, 19.0], [4768.0, 8602.0, 0.0, 20.0], [4844.0, 8603.0, 0.0, 21.0], [4981.0, 8604.0, 0.0, 22.0], [5140.0, 8605.0, 0.0, 23.0], [5360.0, 8606.0, 0.0, 24.0], [5549.0, 8607.0, 0.0, 25.0], [5847.0, 8608.0, 0.0, 26.0], [6393.0, 8609.0, 0.0, 27.0], [6753.0, 8610.0, 0.0, 28.0], [6793.0, 8611.0, 0.0, 29.0], [6856.0, 8612.0, 0.0, 30.0], [6977.0, 8613.0, 0.0, 31.0], [7110.0, 8614.0, 0.0, 32.0], [7145.0, 8615.0, 0.0, 33.0], [7235.0, 8616.0, 0.0, 34.0], [7400.0, 8617.0, 0.0, 35.0], [7792.0, 8618.0, 0.0, 36.0], [336.0, 8549.0, 0.0, 3.0], [279.0, 8584.0, 0.0, 153.0], [280.0, 8585.0, 0.0, 12.0], [278.0, 775.0, 0.0, 2.0], [283.0, 8621.0, 0.0, 154.0], [327.0, 8622.0, 0.0, 13.0], [281.0, 362.0, 0.0, 2.0], [284.0, 8624.0, 0.0, 155.0], [286.0, 8627.0, 0.0, 156.0], [285.0, 467.0, 0.0, 2.0], [288.0, 8628.0, 0.0, 157.0], [287.0, 301.0, 0.0, 2.0], [289.0, 8630.0, 0.0, 158.0], [290.0, 8632.0, 0.0, 159.0], [291.0, 8633.0, 0.0, 160.0], [292.0, 8634.0, 0.0, 161.0], [293.0, 8635.0, 0.0, 162.0], [294.0, 8636.0, 0.0, 163.0], [295.0, 8637.0, 0.0, 164.0], [297.0, 8638.0, 0.0, 165.0], [300.0, 8576.0, 0.0, 27.0], [299.0, 8639.0, 0.0, 166.0], [298.0, 334.0, 0.0, 2.0], [302.0, 8641.0, 0.0, 167.0], [304.0, 8640.0, 0.0, 28.0], [406.0, 641.0, 0.0, 2.0], [7211.0, 8645.0, 0.0, 3.0], [7324.0, 8646.0, 0.0, 4.0], [2355.0, 5038.0, 0.0, 2.0], [6017.0, 8648.0, 0.0, 3.0], [303.0, 8643.0, 0.0, 168.0], [305.0, 8650.0, 0.0, 169.0], [341.0, 8644.0, 0.0, 29.0], [306.0, 8651.0, 0.0, 170.0], [307.0, 8653.0, 0.0, 171.0], [308.0, 8654.0, 0.0, 172.0], [309.0, 8655.0, 0.0, 173.0], [310.0, 8656.0, 0.0, 174.0], [311.0, 8657.0, 0.0, 175.0], [312.0, 8658.0, 0.0, 176.0], [313.0, 8659.0, 0.0, 177.0], [314.0, 8660.0, 0.0, 178.0], [316.0, 8661.0, 0.0, 179.0], [2900.0, 8510.0, 0.0, 3.0], [2999.0, 8663.0, 0.0, 4.0], [3485.0, 8664.0, 0.0, 5.0], [3635.0, 8665.0, 0.0, 6.0], [4068.0, 8666.0, 0.0, 7.0], [521.0, 1498.0, 0.0, 2.0], [3735.0, 8668.0, 0.0, 3.0], [3918.0, 8669.0, 0.0, 4.0], [6511.0, 8670.0, 0.0, 5.0], [1247.0, 4040.0, 0.0, 2.0], [3026.0, 6768.0, 0.0, 2.0], [2109.0, 7716.0, 0.0, 2.0], [426.0, 670.0, 0.0, 2.0], [1160.0, 8675.0, 0.0, 3.0], [1842.0, 8676.0, 0.0, 4.0], [2063.0, 8677.0, 0.0, 5.0], [2074.0, 8678.0, 0.0, 6.0], [2331.0, 8679.0, 0.0, 7.0], [2559.0, 8680.0, 0.0, 8.0], [3434.0, 8681.0, 0.0, 9.0], [3726.0, 8682.0, 0.0, 10.0], [3778.0, 8683.0, 0.0, 11.0], [3948.0, 8684.0, 0.0, 12.0], [4172.0, 8685.0, 0.0, 13.0], [4461.0, 8686.0, 0.0, 14.0], [4782.0, 8687.0, 0.0, 15.0], [4788.0, 8688.0, 0.0, 16.0], [4914.0, 8689.0, 0.0, 17.0], [6105.0, 8690.0, 0.0, 18.0], [6232.0, 8691.0, 0.0, 19.0], [6796.0, 8692.0, 0.0, 20.0], [6855.0, 8693.0, 0.0, 21.0], [7282.0, 8694.0, 0.0, 22.0], [1910.0, 5033.0, 0.0, 2.0], [5143.0, 8696.0, 0.0, 3.0], [5345.0, 8697.0, 0.0, 4.0], [6007.0, 8698.0, 0.0, 5.0], [6936.0, 8699.0, 0.0, 6.0], [1538.0, 1922.0, 0.0, 2.0], [2224.0, 8701.0, 0.0, 3.0], [2813.0, 8702.0, 0.0, 4.0], [5784.0, 8703.0, 0.0, 5.0], [317.0, 8662.0, 0.0, 180.0], [318.0, 8705.0, 0.0, 181.0], [320.0, 8706.0, 0.0, 182.0], [2973.0, 6410.0, 0.0, 2.0], [1405.0, 2119.0, 0.0, 2.0], [3556.0, 6325.0, 0.0, 2.0], [6863.0, 8710.0, 0.0, 3.0], [2148.0, 2925.0, 0.0, 2.0], [4949.0, 8712.0, 0.0, 3.0], [2681.0, 4644.0, 0.0, 2.0], [4855.0, 8714.0, 0.0, 3.0], [6308.0, 8715.0, 0.0, 4.0], [3167.0, 7897.0, 0.0, 3.0], [3599.0, 8717.0, 0.0, 4.0], [5967.0, 8718.0, 0.0, 5.0], [7735.0, 8719.0, 0.0, 6.0], [322.0, 8707.0, 0.0, 183.0], [427.0, 8525.0, 0.0, 5.0], [323.0, 8721.0, 0.0, 184.0], [325.0, 8723.0, 0.0, 185.0], [329.0, 8578.0, 0.0, 4.0], [326.0, 8724.0, 0.0, 186.0], [328.0, 8726.0, 0.0, 187.0], [331.0, 8625.0, 0.0, 14.0], [330.0, 8727.0, 0.0, 188.0], [364.0, 8725.0, 0.0, 5.0], [332.0, 8729.0, 0.0, 189.0], [376.0, 8728.0, 0.0, 15.0], [333.0, 8731.0, 0.0, 190.0], [335.0, 8733.0, 0.0, 191.0], [435.0, 8642.0, 0.0, 3.0], [337.0, 8734.0, 0.0, 192.0], [725.0, 8620.0, 0.0, 4.0], [338.0, 8736.0, 0.0, 193.0], [339.0, 8738.0, 0.0, 194.0], [340.0, 8739.0, 0.0, 195.0], [342.0, 8740.0, 0.0, 196.0], [360.0, 8652.0, 0.0, 30.0], [343.0, 8741.0, 0.0, 197.0], [344.0, 8743.0, 0.0, 198.0], [345.0, 8744.0, 0.0, 199.0], [346.0, 8745.0, 0.0, 200.0], [347.0, 8746.0, 0.0, 201.0], [349.0, 8747.0, 0.0, 202.0], [351.0, 8748.0, 0.0, 203.0], [352.0, 8749.0, 0.0, 204.0], [354.0, 8750.0, 0.0, 205.0], [353.0, 4852.0, 0.0, 2.0], [356.0, 8751.0, 0.0, 206.0], [355.0, 2016.0, 0.0, 2.0], [357.0, 8753.0, 0.0, 207.0], [359.0, 8755.0, 0.0, 208.0], [760.0, 8445.0, 0.0, 3.0], [363.0, 8756.0, 0.0, 209.0], [361.0, 8742.0, 0.0, 31.0], [403.0, 8759.0, 0.0, 32.0], [831.0, 8626.0, 0.0, 3.0], [365.0, 8758.0, 0.0, 210.0], [441.0, 8730.0, 0.0, 6.0], [366.0, 8762.0, 0.0, 211.0], [367.0, 8764.0, 0.0, 212.0], [372.0, 8765.0, 0.0, 213.0], [369.0, 1275.0, 0.0, 2.0], [371.0, 1624.0, 0.0, 2.0], [374.0, 8766.0, 0.0, 214.0], [985.0, 7548.0, 0.0, 2.0], [377.0, 8769.0, 0.0, 215.0], [375.0, 1118.0, 0.0, 2.0], [381.0, 8732.0, 0.0, 16.0], [378.0, 8771.0, 0.0, 216.0], [379.0, 8774.0, 0.0, 217.0], [382.0, 8775.0, 0.0, 218.0], [486.0, 8583.0, 0.0, 4.0], [401.0, 8773.0, 0.0, 17.0], [383.0, 8776.0, 0.0, 219.0], [384.0, 8779.0, 0.0, 220.0], [386.0, 8780.0, 0.0, 221.0], [385.0, 2762.0, 0.0, 2.0], [387.0, 8781.0, 0.0, 222.0], [389.0, 8783.0, 0.0, 223.0], [388.0, 468.0, 0.0, 2.0], [391.0, 8784.0, 0.0, 224.0], [394.0, 8786.0, 0.0, 225.0], [392.0, 3813.0, 0.0, 2.0], [393.0, 421.0, 0.0, 2.0], [396.0, 8787.0, 0.0, 226.0], [3703.0, 6847.0, 0.0, 2.0], [397.0, 8790.0, 0.0, 227.0], [398.0, 8792.0, 0.0, 228.0], [399.0, 8793.0, 0.0, 229.0], [400.0, 8794.0, 0.0, 230.0], [402.0, 8795.0, 0.0, 231.0], [407.0, 8778.0, 0.0, 18.0], [405.0, 8796.0, 0.0, 232.0], [409.0, 8760.0, 0.0, 33.0], [412.0, 8798.0, 0.0, 233.0], [408.0, 8797.0, 0.0, 19.0], [432.0, 8801.0, 0.0, 20.0], [410.0, 8799.0, 0.0, 34.0], [414.0, 8803.0, 0.0, 35.0], [411.0, 686.0, 0.0, 2.0], [413.0, 8800.0, 0.0, 234.0], [417.0, 8806.0, 0.0, 235.0], [424.0, 8804.0, 0.0, 36.0], [494.0, 8536.0, 0.0, 4.0], [418.0, 8807.0, 0.0, 236.0], [420.0, 8810.0, 0.0, 237.0], [419.0, 1079.0, 0.0, 2.0], [422.0, 8811.0, 0.0, 238.0], [535.0, 8789.0, 0.0, 3.0], [425.0, 8813.0, 0.0, 239.0], [2490.0, 8527.0, 0.0, 3.0], [3462.0, 8816.0, 0.0, 4.0], [6029.0, 8817.0, 0.0, 5.0], [6459.0, 8818.0, 0.0, 6.0], [430.0, 8808.0, 0.0, 37.0], [428.0, 8815.0, 0.0, 240.0], [438.0, 8722.0, 0.0, 6.0], [429.0, 8821.0, 0.0, 241.0], [431.0, 8823.0, 0.0, 242.0], [454.0, 8820.0, 0.0, 38.0], [433.0, 8824.0, 0.0, 243.0], [434.0, 8802.0, 0.0, 21.0], [437.0, 8826.0, 0.0, 244.0], [439.0, 8827.0, 0.0, 22.0], [637.0, 8735.0, 0.0, 4.0], [436.0, 885.0, 0.0, 2.0], [444.0, 8828.0, 0.0, 245.0], [817.0, 8822.0, 0.0, 7.0], [440.0, 8829.0, 0.0, 23.0], [482.0, 8834.0, 0.0, 24.0], [628.0, 8763.0, 0.0, 7.0], [687.0, 7848.0, 0.0, 3.0], [445.0, 8832.0, 0.0, 246.0], [447.0, 8838.0, 0.0, 247.0], [451.0, 8839.0, 0.0, 248.0], [777.0, 7884.0, 0.0, 3.0], [457.0, 8840.0, 0.0, 249.0], [496.0, 8540.0, 0.0, 7.0], [455.0, 8825.0, 0.0, 39.0], [458.0, 8844.0, 0.0, 40.0], [459.0, 8842.0, 0.0, 250.0], [462.0, 8845.0, 0.0, 41.0], [460.0, 8846.0, 0.0, 251.0], [464.0, 8848.0, 0.0, 252.0], [461.0, 6307.0, 0.0, 2.0], [471.0, 8847.0, 0.0, 42.0], [3201.0, 3959.0, 0.0, 2.0], [4426.0, 8852.0, 0.0, 3.0], [7628.0, 8853.0, 0.0, 4.0], [469.0, 8849.0, 0.0, 253.0], [1144.0, 7972.0, 0.0, 3.0], [6491.0, 8629.0, 0.0, 3.0], [530.0, 8785.0, 0.0, 3.0], [470.0, 8855.0, 0.0, 254.0], [473.0, 8859.0, 0.0, 255.0], [472.0, 8851.0, 0.0, 43.0], [474.0, 8861.0, 0.0, 44.0], [475.0, 8860.0, 0.0, 256.0], [476.0, 8862.0, 0.0, 45.0], [477.0, 8863.0, 0.0, 257.0], [498.0, 8864.0, 0.0, 46.0], [479.0, 8865.0, 0.0, 258.0], [484.0, 8867.0, 0.0, 259.0], [480.0, 7127.0, 0.0, 2.0], [503.0, 8835.0, 0.0, 25.0], [483.0, 1117.0, 0.0, 2.0], [485.0, 8868.0, 0.0, 260.0], [488.0, 8872.0, 0.0, 261.0], [504.0, 8777.0, 0.0, 5.0], [489.0, 8873.0, 0.0, 262.0], [490.0, 8875.0, 0.0, 263.0], [491.0, 8876.0, 0.0, 264.0], [492.0, 8877.0, 0.0, 265.0], [495.0, 8878.0, 0.0, 266.0], [2086.0, 3595.0, 0.0, 2.0], [5031.0, 8880.0, 0.0, 3.0], [7311.0, 8881.0, 0.0, 4.0], [605.0, 8809.0, 0.0, 5.0], [499.0, 8879.0, 0.0, 267.0], [523.0, 8843.0, 0.0, 8.0], [507.0, 8866.0, 0.0, 47.0], [500.0, 8884.0, 0.0, 268.0], [501.0, 8887.0, 0.0, 269.0], [502.0, 8888.0, 0.0, 270.0], [505.0, 8889.0, 0.0, 271.0], [520.0, 8870.0, 0.0, 26.0], [522.0, 8874.0, 0.0, 6.0], [506.0, 8890.0, 0.0, 272.0], [509.0, 8893.0, 0.0, 273.0], [571.0, 8886.0, 0.0, 48.0], [510.0, 8894.0, 0.0, 274.0], [511.0, 8896.0, 0.0, 275.0], [512.0, 8897.0, 0.0, 276.0], [513.0, 8898.0, 0.0, 277.0], [514.0, 8899.0, 0.0, 278.0], [515.0, 8900.0, 0.0, 279.0], [516.0, 8901.0, 0.0, 280.0], [517.0, 8902.0, 0.0, 281.0], [518.0, 8903.0, 0.0, 282.0], [519.0, 8904.0, 0.0, 283.0], [524.0, 8905.0, 0.0, 284.0], [558.0, 8891.0, 0.0, 27.0], [544.0, 8892.0, 0.0, 7.0], [572.0, 8885.0, 0.0, 9.0], [525.0, 8906.0, 0.0, 285.0], [527.0, 8910.0, 0.0, 286.0], [526.0, 783.0, 0.0, 2.0], [528.0, 8911.0, 0.0, 287.0], [529.0, 8913.0, 0.0, 288.0], [531.0, 8914.0, 0.0, 289.0], [568.0, 8858.0, 0.0, 4.0], [533.0, 8915.0, 0.0, 290.0], [1798.0, 2208.0, 0.0, 2.0], [2565.0, 8918.0, 0.0, 3.0], [4260.0, 8919.0, 0.0, 4.0], [4886.0, 8920.0, 0.0, 5.0], [5323.0, 8921.0, 0.0, 6.0], [6070.0, 8922.0, 0.0, 7.0], [7348.0, 8923.0, 0.0, 8.0], [742.0, 1843.0, 0.0, 2.0], [2055.0, 8925.0, 0.0, 3.0], [3969.0, 8926.0, 0.0, 4.0], [4841.0, 8927.0, 0.0, 5.0], [6512.0, 8928.0, 0.0, 6.0], [6546.0, 8929.0, 0.0, 7.0], [1028.0, 1817.0, 0.0, 2.0], [5265.0, 8931.0, 0.0, 3.0], [5281.0, 8932.0, 0.0, 4.0], [7743.0, 8933.0, 0.0, 5.0], [1880.0, 3938.0, 0.0, 2.0], [5653.0, 8935.0, 0.0, 3.0], [534.0, 8917.0, 0.0, 291.0], [536.0, 8937.0, 0.0, 292.0], [1194.0, 8814.0, 0.0, 4.0], [538.0, 8938.0, 0.0, 293.0], [539.0, 8940.0, 0.0, 294.0], [542.0, 8941.0, 0.0, 295.0], [1260.0, 8497.0, 0.0, 3.0], [545.0, 8942.0, 0.0, 296.0], [2023.0, 4995.0, 0.0, 2.0], [934.0, 8535.0, 0.0, 3.0], [1201.0, 8946.0, 0.0, 4.0], [1574.0, 8947.0, 0.0, 5.0], [1586.0, 8948.0, 0.0, 6.0], [1623.0, 8949.0, 0.0, 7.0], [1648.0, 8950.0, 0.0, 8.0], [1835.0, 8951.0, 0.0, 9.0], [2044.0, 8952.0, 0.0, 10.0], [2103.0, 8953.0, 0.0, 11.0], [2456.0, 8954.0, 0.0, 12.0], [2528.0, 8955.0, 0.0, 13.0], [2553.0, 8956.0, 0.0, 14.0], [2577.0, 8957.0, 0.0, 15.0], [2889.0, 8958.0, 0.0, 16.0], [2908.0, 8959.0, 0.0, 17.0], [3514.0, 8960.0, 0.0, 18.0], [3684.0, 8961.0, 0.0, 19.0], [3940.0, 8962.0, 0.0, 20.0], [4003.0, 8963.0, 0.0, 21.0], [4031.0, 8964.0, 0.0, 22.0], [4168.0, 8965.0, 0.0, 23.0], [4219.0, 8966.0, 0.0, 24.0], [4650.0, 8967.0, 0.0, 25.0], [4651.0, 8968.0, 0.0, 26.0], [5167.0, 8969.0, 0.0, 27.0], [5627.0, 8970.0, 0.0, 28.0], [6549.0, 8971.0, 0.0, 29.0], [6710.0, 8972.0, 0.0, 30.0], [6922.0, 8973.0, 0.0, 31.0], [7494.0, 8974.0, 0.0, 32.0], [7811.0, 8975.0, 0.0, 33.0], [621.0, 2670.0, 0.0, 2.0], [4982.0, 8977.0, 0.0, 3.0], [5375.0, 8978.0, 0.0, 4.0], [7175.0, 8979.0, 0.0, 5.0], [7232.0, 8980.0, 0.0, 6.0], [7284.0, 8981.0, 0.0, 7.0], [649.0, 8908.0, 0.0, 8.0], [546.0, 8944.0, 0.0, 297.0], [547.0, 8984.0, 0.0, 298.0], [548.0, 8985.0, 0.0, 299.0], [550.0, 8986.0, 0.0, 300.0], [551.0, 8987.0, 0.0, 301.0], [552.0, 8988.0, 0.0, 302.0], [553.0, 8989.0, 0.0, 303.0], [554.0, 8990.0, 0.0, 304.0], [555.0, 8991.0, 0.0, 305.0], [556.0, 8992.0, 0.0, 306.0], [557.0, 8993.0, 0.0, 307.0], [559.0, 8994.0, 0.0, 308.0], [611.0, 8907.0, 0.0, 28.0], [562.0, 8995.0, 0.0, 309.0], [563.0, 8997.0, 0.0, 310.0], [564.0, 8998.0, 0.0, 311.0], [566.0, 8999.0, 0.0, 312.0], [567.0, 9000.0, 0.0, 313.0], [570.0, 9001.0, 0.0, 314.0], [741.0, 8916.0, 0.0, 5.0], [574.0, 9002.0, 0.0, 315.0], [594.0, 8895.0, 0.0, 49.0], [604.0, 8909.0, 0.0, 10.0], [573.0, 1761.0, 0.0, 2.0], [575.0, 9004.0, 0.0, 316.0], [576.0, 9008.0, 0.0, 317.0], [577.0, 9009.0, 0.0, 318.0], [578.0, 9010.0, 0.0, 319.0], [581.0, 9011.0, 0.0, 320.0], [579.0, 1245.0, 0.0, 2.0], [582.0, 9012.0, 0.0, 321.0], [583.0, 9014.0, 0.0, 322.0], [584.0, 9015.0, 0.0, 323.0], [585.0, 9016.0, 0.0, 324.0], [587.0, 9017.0, 0.0, 325.0], [748.0, 8518.0, 0.0, 3.0], [588.0, 9018.0, 0.0, 326.0], [589.0, 9020.0, 0.0, 327.0], [590.0, 9021.0, 0.0, 328.0], [591.0, 9022.0, 0.0, 329.0], [592.0, 9023.0, 0.0, 330.0], [593.0, 9024.0, 0.0, 331.0], [595.0, 9025.0, 0.0, 332.0], [624.0, 9005.0, 0.0, 50.0], [597.0, 9026.0, 0.0, 333.0], [598.0, 9028.0, 0.0, 334.0], [601.0, 9029.0, 0.0, 335.0], [602.0, 9030.0, 0.0, 336.0], [606.0, 9031.0, 0.0, 337.0], [754.0, 9006.0, 0.0, 11.0], [608.0, 8883.0, 0.0, 6.0], [609.0, 9032.0, 0.0, 338.0], [639.0, 9034.0, 0.0, 7.0], [610.0, 9035.0, 0.0, 339.0], [613.0, 9037.0, 0.0, 340.0], [634.0, 8996.0, 0.0, 29.0], [612.0, 953.0, 0.0, 2.0], [615.0, 9038.0, 0.0, 341.0], [617.0, 9041.0, 0.0, 342.0], [620.0, 9042.0, 0.0, 343.0], [622.0, 9043.0, 0.0, 344.0], [623.0, 9044.0, 0.0, 345.0], [629.0, 9045.0, 0.0, 346.0], [625.0, 9027.0, 0.0, 51.0], [626.0, 9047.0, 0.0, 52.0], [675.0, 9048.0, 0.0, 53.0], [627.0, 2862.0, 0.0, 2.0], [736.0, 8836.0, 0.0, 8.0], [630.0, 9046.0, 0.0, 347.0], [633.0, 9052.0, 0.0, 348.0], [631.0, 756.0, 0.0, 2.0], [636.0, 9053.0, 0.0, 349.0], [635.0, 9039.0, 0.0, 30.0], [672.0, 9056.0, 0.0, 31.0], [638.0, 9055.0, 0.0, 350.0], [666.0, 8830.0, 0.0, 5.0], [642.0, 9058.0, 0.0, 351.0], [683.0, 9036.0, 0.0, 8.0], [640.0, 1834.0, 0.0, 2.0], [643.0, 9060.0, 0.0, 352.0], [644.0, 9063.0, 0.0, 353.0], [646.0, 9064.0, 0.0, 354.0], [650.0, 9065.0, 0.0, 355.0], [647.0, 3859.0, 0.0, 2.0], [667.0, 8983.0, 0.0, 9.0], [651.0, 9066.0, 0.0, 356.0], [655.0, 9069.0, 0.0, 357.0], [653.0, 4933.0, 0.0, 2.0], [1214.0, 8939.0, 0.0, 5.0], [1684.0, 9072.0, 0.0, 6.0], [1905.0, 9073.0, 0.0, 7.0], [2435.0, 9074.0, 0.0, 8.0], [2618.0, 9075.0, 0.0, 9.0], [2863.0, 9076.0, 0.0, 10.0], [2962.0, 9077.0, 0.0, 11.0], [3247.0, 9078.0, 0.0, 12.0], [3488.0, 9079.0, 0.0, 13.0], [3555.0, 9080.0, 0.0, 14.0], [3691.0, 9081.0, 0.0, 15.0], [3769.0, 9082.0, 0.0, 16.0], [3864.0, 9083.0, 0.0, 17.0], [4019.0, 9084.0, 0.0, 18.0], [4569.0, 9085.0, 0.0, 19.0], [4617.0, 9086.0, 0.0, 20.0], [4944.0, 9087.0, 0.0, 21.0], [5007.0, 9088.0, 0.0, 22.0], [5238.0, 9089.0, 0.0, 23.0], [5414.0, 9090.0, 0.0, 24.0], [5831.0, 9091.0, 0.0, 25.0], [6096.0, 9092.0, 0.0, 26.0], [6179.0, 9093.0, 0.0, 27.0], [6312.0, 9094.0, 0.0, 28.0], [6349.0, 9095.0, 0.0, 29.0], [7051.0, 9096.0, 0.0, 30.0], [7347.0, 9097.0, 0.0, 31.0], [7477.0, 9098.0, 0.0, 32.0], [7771.0, 9099.0, 0.0, 33.0], [1072.0, 1199.0, 0.0, 2.0], [2662.0, 9101.0, 0.0, 3.0], [5016.0, 9102.0, 0.0, 4.0], [6387.0, 9103.0, 0.0, 5.0], [658.0, 9070.0, 0.0, 358.0], [660.0, 9105.0, 0.0, 359.0], [664.0, 9106.0, 0.0, 360.0], [665.0, 9107.0, 0.0, 361.0], [668.0, 9108.0, 0.0, 362.0], [676.0, 9059.0, 0.0, 6.0], [674.0, 9068.0, 0.0, 10.0], [669.0, 9109.0, 0.0, 363.0], [673.0, 9112.0, 0.0, 364.0], [671.0, 2101.0, 0.0, 2.0], [679.0, 9057.0, 0.0, 32.0], [678.0, 9113.0, 0.0, 365.0], [720.0, 9111.0, 0.0, 11.0], [681.0, 9049.0, 0.0, 54.0], [758.0, 9110.0, 0.0, 7.0], [988.0, 7924.0, 0.0, 3.0], [685.0, 9116.0, 0.0, 366.0], [713.0, 9115.0, 0.0, 33.0], [3925.0, 4358.0, 0.0, 2.0], [2254.0, 2451.0, 0.0, 2.0], [6276.0, 9124.0, 0.0, 3.0], [6999.0, 9125.0, 0.0, 4.0], [699.0, 9118.0, 0.0, 55.0], [705.0, 9061.0, 0.0, 9.0], [684.0, 3325.0, 0.0, 2.0], [689.0, 9121.0, 0.0, 367.0], [1661.0, 8805.0, 0.0, 3.0], [1090.0, 8837.0, 0.0, 4.0], [690.0, 9130.0, 0.0, 368.0], [691.0, 9133.0, 0.0, 369.0], [692.0, 9134.0, 0.0, 370.0], [693.0, 9135.0, 0.0, 371.0], [695.0, 9136.0, 0.0, 372.0], [694.0, 2778.0, 0.0, 2.0], [697.0, 9137.0, 0.0, 373.0], [698.0, 9139.0, 0.0, 374.0], [700.0, 9140.0, 0.0, 375.0], [704.0, 9127.0, 0.0, 56.0], [702.0, 9141.0, 0.0, 376.0], [701.0, 709.0, 0.0, 2.0], [703.0, 9143.0, 0.0, 377.0], [706.0, 9145.0, 0.0, 378.0], [716.0, 9142.0, 0.0, 57.0], [764.0, 9128.0, 0.0, 10.0], [707.0, 9146.0, 0.0, 379.0], [710.0, 9149.0, 0.0, 380.0], [1757.0, 9144.0, 0.0, 3.0], [711.0, 9150.0, 0.0, 381.0], [714.0, 9152.0, 0.0, 382.0], [2183.0, 2766.0, 0.0, 2.0], [3097.0, 9154.0, 0.0, 3.0], [3411.0, 9155.0, 0.0, 4.0], [3755.0, 9156.0, 0.0, 5.0], [7596.0, 9157.0, 0.0, 6.0], [744.0, 9122.0, 0.0, 34.0], [715.0, 9153.0, 0.0, 383.0], [717.0, 9160.0, 0.0, 384.0], [749.0, 9147.0, 0.0, 58.0], [722.0, 9161.0, 0.0, 385.0], [5767.0, 9151.0, 0.0, 4.0], [5862.0, 9164.0, 0.0, 5.0], [5941.0, 9165.0, 0.0, 6.0], [6025.0, 9166.0, 0.0, 7.0], [7350.0, 9167.0, 0.0, 8.0], [1068.0, 9117.0, 0.0, 12.0], [2341.0, 8448.0, 0.0, 3.0], [3350.0, 9170.0, 0.0, 4.0], [4466.0, 9171.0, 0.0, 5.0], [4516.0, 9172.0, 0.0, 6.0], [6225.0, 9173.0, 0.0, 7.0], [6873.0, 9174.0, 0.0, 8.0], [6895.0, 9175.0, 0.0, 9.0], [726.0, 9163.0, 0.0, 386.0], [3686.0, 7413.0, 0.0, 2.0], [5779.0, 6859.0, 0.0, 2.0], [724.0, 1475.0, 0.0, 2.0], [886.0, 8737.0, 0.0, 5.0], [727.0, 9177.0, 0.0, 387.0], [728.0, 9182.0, 0.0, 388.0], [729.0, 9183.0, 0.0, 389.0], [730.0, 9184.0, 0.0, 390.0], [731.0, 9185.0, 0.0, 391.0], [732.0, 9186.0, 0.0, 392.0], [734.0, 9187.0, 0.0, 393.0], [737.0, 9188.0, 0.0, 394.0], [813.0, 9051.0, 0.0, 9.0], [738.0, 9189.0, 0.0, 395.0], [739.0, 9191.0, 0.0, 396.0], [743.0, 9192.0, 0.0, 397.0], [1373.0, 9003.0, 0.0, 6.0], [745.0, 9193.0, 0.0, 398.0], [750.0, 9159.0, 0.0, 35.0], [746.0, 9195.0, 0.0, 399.0], [747.0, 9197.0, 0.0, 400.0], [752.0, 9198.0, 0.0, 401.0], [1098.0, 9019.0, 0.0, 4.0], [786.0, 9162.0, 0.0, 59.0], [772.0, 9196.0, 0.0, 36.0], [751.0, 3002.0, 0.0, 2.0], [753.0, 9199.0, 0.0, 402.0], [755.0, 9204.0, 0.0, 403.0], [814.0, 9033.0, 0.0, 12.0], [759.0, 9205.0, 0.0, 404.0], [983.0, 9054.0, 0.0, 3.0], [757.0, 2227.0, 0.0, 2.0], [800.0, 9119.0, 0.0, 8.0], [761.0, 9207.0, 0.0, 405.0], [991.0, 8757.0, 0.0, 4.0], [762.0, 9211.0, 0.0, 406.0], [766.0, 9213.0, 0.0, 407.0], [2545.0, 5684.0, 0.0, 2.0], [1688.0, 7699.0, 0.0, 2.0], [2264.0, 3785.0, 0.0, 2.0], [3844.0, 5685.0, 0.0, 2.0], [826.0, 2912.0, 0.0, 2.0], [4864.0, 9219.0, 0.0, 3.0], [2134.0, 5410.0, 0.0, 2.0], [4863.0, 7319.0, 0.0, 2.0], [1673.0, 8767.0, 0.0, 3.0], [1733.0, 9223.0, 0.0, 4.0], [2936.0, 9224.0, 0.0, 5.0], [6063.0, 9225.0, 0.0, 6.0], [7408.0, 9226.0, 0.0, 7.0], [1921.0, 2002.0, 0.0, 2.0], [4210.0, 9228.0, 0.0, 3.0], [1555.0, 4056.0, 0.0, 2.0], [4116.0, 9230.0, 0.0, 3.0], [7078.0, 9231.0, 0.0, 4.0], [1236.0, 2675.0, 0.0, 2.0], [7463.0, 9233.0, 0.0, 3.0], [828.0, 9148.0, 0.0, 11.0], [768.0, 9214.0, 0.0, 408.0], [767.0, 1445.0, 0.0, 2.0], [769.0, 9236.0, 0.0, 409.0], [771.0, 9238.0, 0.0, 410.0], [887.0, 7956.0, 0.0, 3.0], [773.0, 9239.0, 0.0, 411.0], [857.0, 9202.0, 0.0, 37.0], [778.0, 9241.0, 0.0, 412.0], [2274.0, 2732.0, 0.0, 2.0], [4391.0, 9244.0, 0.0, 3.0], [5201.0, 9245.0, 0.0, 4.0], [1812.0, 2200.0, 0.0, 2.0], [2426.0, 9247.0, 0.0, 3.0], [2461.0, 9248.0, 0.0, 4.0], [3681.0, 9249.0, 0.0, 5.0], [3862.0, 9250.0, 0.0, 6.0], [4059.0, 9251.0, 0.0, 7.0], [5579.0, 9252.0, 0.0, 8.0], [7115.0, 9253.0, 0.0, 9.0], [7125.0, 9254.0, 0.0, 10.0], [3834.0, 8623.0, 0.0, 3.0], [1430.0, 9212.0, 0.0, 5.0], [1610.0, 9257.0, 0.0, 6.0], [2252.0, 9258.0, 0.0, 7.0], [2319.0, 9259.0, 0.0, 8.0], [2364.0, 9260.0, 0.0, 9.0], [2505.0, 9261.0, 0.0, 10.0], [2537.0, 9262.0, 0.0, 11.0], [3008.0, 9263.0, 0.0, 12.0], [3606.0, 9264.0, 0.0, 13.0], [3702.0, 9265.0, 0.0, 14.0], [3982.0, 9266.0, 0.0, 15.0], [4151.0, 9267.0, 0.0, 16.0], [4777.0, 9268.0, 0.0, 17.0], [5457.0, 9269.0, 0.0, 18.0], [5723.0, 9270.0, 0.0, 19.0], [6041.0, 9271.0, 0.0, 20.0], [6103.0, 9272.0, 0.0, 21.0], [7483.0, 9273.0, 0.0, 22.0], [7509.0, 9274.0, 0.0, 23.0], [7577.0, 9275.0, 0.0, 24.0], [7706.0, 9276.0, 0.0, 25.0], [1949.0, 2404.0, 0.0, 2.0], [835.0, 8841.0, 0.0, 4.0], [779.0, 9243.0, 0.0, 413.0], [781.0, 9280.0, 0.0, 414.0], [6081.0, 6748.0, 0.0, 2.0], [6957.0, 9282.0, 0.0, 3.0], [7430.0, 9283.0, 0.0, 4.0], [782.0, 9281.0, 0.0, 415.0], [785.0, 9285.0, 0.0, 416.0], [787.0, 9286.0, 0.0, 417.0], [859.0, 9201.0, 0.0, 60.0], [788.0, 9287.0, 0.0, 418.0], [789.0, 9289.0, 0.0, 419.0], [791.0, 9290.0, 0.0, 420.0], [2469.0, 2633.0, 0.0, 2.0], [3073.0, 9292.0, 0.0, 3.0], [792.0, 9291.0, 0.0, 421.0], [793.0, 9294.0, 0.0, 422.0], [794.0, 9295.0, 0.0, 423.0], [795.0, 9296.0, 0.0, 424.0], [797.0, 9297.0, 0.0, 425.0], [1381.0, 8582.0, 0.0, 4.0], [798.0, 9298.0, 0.0, 426.0], [799.0, 9300.0, 0.0, 427.0], [801.0, 9301.0, 0.0, 428.0], [809.0, 9210.0, 0.0, 9.0], [802.0, 9302.0, 0.0, 429.0], [803.0, 9304.0, 0.0, 430.0], [805.0, 9305.0, 0.0, 431.0], [1920.0, 8530.0, 0.0, 3.0], [807.0, 9306.0, 0.0, 432.0], [1510.0, 7941.0, 0.0, 3.0], [808.0, 9308.0, 0.0, 433.0], [810.0, 9310.0, 0.0, 434.0], [873.0, 9303.0, 0.0, 10.0], [811.0, 9311.0, 0.0, 435.0], [815.0, 9313.0, 0.0, 436.0], [861.0, 9190.0, 0.0, 10.0], [883.0, 9206.0, 0.0, 13.0], [816.0, 9314.0, 0.0, 437.0], [818.0, 9317.0, 0.0, 438.0], [898.0, 8833.0, 0.0, 8.0], [820.0, 9318.0, 0.0, 439.0], [1839.0, 8508.0, 0.0, 3.0], [823.0, 9320.0, 0.0, 440.0], [821.0, 1791.0, 0.0, 2.0], [825.0, 9322.0, 0.0, 441.0], [827.0, 9324.0, 0.0, 442.0], [829.0, 9325.0, 0.0, 443.0], [848.0, 9235.0, 0.0, 12.0], [830.0, 9326.0, 0.0, 444.0], [832.0, 9328.0, 0.0, 445.0], [1517.0, 8761.0, 0.0, 4.0], [833.0, 9329.0, 0.0, 446.0], [834.0, 9331.0, 0.0, 447.0], [836.0, 9332.0, 0.0, 448.0], [999.0, 9279.0, 0.0, 5.0], [838.0, 9333.0, 0.0, 449.0], [840.0, 9335.0, 0.0, 450.0], [842.0, 9336.0, 0.0, 451.0], [5496.0, 5609.0, 0.0, 2.0], [843.0, 9337.0, 0.0, 452.0], [844.0, 9339.0, 0.0, 453.0], [845.0, 9340.0, 0.0, 454.0], [846.0, 9341.0, 0.0, 455.0], [847.0, 9342.0, 0.0, 456.0], [849.0, 9343.0, 0.0, 457.0], [869.0, 9327.0, 0.0, 13.0], [850.0, 9344.0, 0.0, 458.0], [851.0, 9346.0, 0.0, 459.0], [852.0, 9347.0, 0.0, 460.0], [853.0, 9348.0, 0.0, 461.0], [855.0, 9349.0, 0.0, 462.0], [854.0, 4450.0, 0.0, 2.0], [856.0, 9350.0, 0.0, 463.0], [858.0, 9352.0, 0.0, 464.0], [860.0, 9242.0, 0.0, 38.0], [862.0, 9353.0, 0.0, 465.0], [881.0, 9288.0, 0.0, 61.0], [914.0, 9354.0, 0.0, 39.0], [949.0, 9315.0, 0.0, 11.0], [863.0, 9355.0, 0.0, 466.0], [864.0, 9359.0, 0.0, 467.0], [865.0, 9360.0, 0.0, 468.0], [866.0, 9361.0, 0.0, 469.0], [867.0, 9362.0, 0.0, 470.0], [868.0, 9363.0, 0.0, 471.0], [870.0, 9364.0, 0.0, 472.0], [871.0, 9345.0, 0.0, 14.0], [876.0, 9365.0, 0.0, 473.0], [877.0, 9366.0, 0.0, 15.0], [912.0, 9312.0, 0.0, 11.0], [878.0, 9367.0, 0.0, 474.0], [1026.0, 9368.0, 0.0, 16.0], [880.0, 9370.0, 0.0, 475.0], [879.0, 3828.0, 0.0, 2.0], [884.0, 9372.0, 0.0, 476.0], [902.0, 9356.0, 0.0, 62.0], [932.0, 5527.0, 0.0, 2.0], [6695.0, 9376.0, 0.0, 3.0], [894.0, 9316.0, 0.0, 14.0], [888.0, 9374.0, 0.0, 477.0], [1262.0, 8831.0, 0.0, 3.0], [1078.0, 9181.0, 0.0, 6.0], [1062.0, 9240.0, 0.0, 4.0], [889.0, 9379.0, 0.0, 478.0], [890.0, 9383.0, 0.0, 479.0], [892.0, 9384.0, 0.0, 480.0], [895.0, 9385.0, 0.0, 481.0], [893.0, 4813.0, 0.0, 2.0], [930.0, 9378.0, 0.0, 15.0], [896.0, 9386.0, 0.0, 482.0], [897.0, 9389.0, 0.0, 483.0], [899.0, 9390.0, 0.0, 484.0], [978.0, 9319.0, 0.0, 9.0], [900.0, 9391.0, 0.0, 485.0], [901.0, 9393.0, 0.0, 486.0], [904.0, 9394.0, 0.0, 487.0], [923.0, 9375.0, 0.0, 63.0], [905.0, 9395.0, 0.0, 488.0], [906.0, 9397.0, 0.0, 489.0], [907.0, 9398.0, 0.0, 490.0], [908.0, 9399.0, 0.0, 491.0], [909.0, 9400.0, 0.0, 492.0], [910.0, 9401.0, 0.0, 493.0], [911.0, 9402.0, 0.0, 494.0], [913.0, 9403.0, 0.0, 495.0], [986.0, 9369.0, 0.0, 12.0], [915.0, 9404.0, 0.0, 496.0], [935.0, 9357.0, 0.0, 40.0], [916.0, 9406.0, 0.0, 497.0], [918.0, 9408.0, 0.0, 498.0], [919.0, 9409.0, 0.0, 499.0], [921.0, 9410.0, 0.0, 500.0], [922.0, 9411.0, 0.0, 501.0], [924.0, 9412.0, 0.0, 502.0], [977.0, 9396.0, 0.0, 64.0], [925.0, 9413.0, 0.0, 503.0], [926.0, 9415.0, 0.0, 504.0], [927.0, 9416.0, 0.0, 505.0], [929.0, 9417.0, 0.0, 506.0], [931.0, 9418.0, 0.0, 507.0], [1058.0, 9388.0, 0.0, 16.0], [933.0, 9419.0, 0.0, 508.0], [936.0, 9421.0, 0.0, 509.0], [938.0, 9407.0, 0.0, 41.0], [937.0, 9422.0, 0.0, 510.0], [939.0, 9424.0, 0.0, 511.0], [942.0, 9423.0, 0.0, 42.0], [940.0, 9425.0, 0.0, 512.0], [943.0, 9427.0, 0.0, 513.0], [1383.0, 8537.0, 0.0, 3.0], [962.0, 9426.0, 0.0, 43.0], [944.0, 9428.0, 0.0, 514.0], [948.0, 9431.0, 0.0, 515.0], [945.0, 4798.0, 0.0, 2.0], [946.0, 5998.0, 0.0, 2.0], [1755.0, 8516.0, 0.0, 3.0], [951.0, 9432.0, 0.0, 516.0], [1010.0, 9358.0, 0.0, 12.0], [950.0, 4521.0, 0.0, 2.0], [952.0, 9436.0, 0.0, 517.0], [954.0, 9439.0, 0.0, 518.0], [2704.0, 9040.0, 0.0, 3.0], [955.0, 9440.0, 0.0, 519.0], [956.0, 9442.0, 0.0, 520.0], [958.0, 9443.0, 0.0, 521.0], [959.0, 9444.0, 0.0, 522.0], [960.0, 9445.0, 0.0, 523.0], [963.0, 9446.0, 0.0, 524.0], [967.0, 9430.0, 0.0, 44.0], [965.0, 9447.0, 0.0, 525.0], [5618.0, 9351.0, 0.0, 3.0], [5918.0, 9450.0, 0.0, 4.0], [6621.0, 9451.0, 0.0, 5.0], [966.0, 9449.0, 0.0, 526.0], [968.0, 9453.0, 0.0, 527.0], [996.0, 9448.0, 0.0, 45.0], [970.0, 9454.0, 0.0, 528.0], [969.0, 3292.0, 0.0, 2.0], [971.0, 9456.0, 0.0, 529.0], [973.0, 9458.0, 0.0, 530.0], [974.0, 9459.0, 0.0, 531.0], [975.0, 9460.0, 0.0, 532.0], [976.0, 9461.0, 0.0, 533.0], [979.0, 9462.0, 0.0, 534.0], [1019.0, 9414.0, 0.0, 65.0], [1081.0, 9392.0, 0.0, 10.0], [980.0, 9463.0, 0.0, 535.0], [987.0, 9466.0, 0.0, 536.0], [981.0, 3917.0, 0.0, 2.0], [1713.0, 9208.0, 0.0, 4.0], [1095.0, 9405.0, 0.0, 13.0], [989.0, 9467.0, 0.0, 537.0], [1339.0, 9120.0, 0.0, 4.0], [990.0, 9471.0, 0.0, 538.0], [992.0, 9473.0, 0.0, 539.0], [993.0, 9474.0, 0.0, 540.0], [994.0, 9475.0, 0.0, 541.0], [995.0, 9476.0, 0.0, 542.0], [998.0, 9477.0, 0.0, 543.0], [1021.0, 9455.0, 0.0, 46.0], [1000.0, 9478.0, 0.0, 544.0], [1434.0, 9334.0, 0.0, 6.0], [1001.0, 9480.0, 0.0, 545.0], [1003.0, 9482.0, 0.0, 546.0], [1004.0, 9483.0, 0.0, 547.0], [1006.0, 9484.0, 0.0, 548.0], [1139.0, 7402.0, 0.0, 2.0], [1104.0, 9465.0, 0.0, 11.0], [1148.0, 9487.0, 0.0, 12.0], [1385.0, 9488.0, 0.0, 13.0], [1393.0, 9489.0, 0.0, 14.0], [1443.0, 9490.0, 0.0, 15.0], [1461.0, 9491.0, 0.0, 16.0], [1484.0, 9492.0, 0.0, 17.0], [1496.0, 9493.0, 0.0, 18.0], [1550.0, 9494.0, 0.0, 19.0], [1568.0, 9495.0, 0.0, 20.0], [1588.0, 9496.0, 0.0, 21.0], [1602.0, 9497.0, 0.0, 22.0], [1725.0, 9498.0, 0.0, 23.0], [1864.0, 9499.0, 0.0, 24.0], [1886.0, 9500.0, 0.0, 25.0], [2019.0, 9501.0, 0.0, 26.0], [2042.0, 9502.0, 0.0, 27.0], [2092.0, 9503.0, 0.0, 28.0], [2154.0, 9504.0, 0.0, 29.0], [2196.0, 9505.0, 0.0, 30.0], [2226.0, 9506.0, 0.0, 31.0], [2277.0, 9507.0, 0.0, 32.0], [2288.0, 9508.0, 0.0, 33.0], [2298.0, 9509.0, 0.0, 34.0], [2313.0, 9510.0, 0.0, 35.0], [2366.0, 9511.0, 0.0, 36.0], [2379.0, 9512.0, 0.0, 37.0], [2615.0, 9513.0, 0.0, 38.0], [2763.0, 9514.0, 0.0, 39.0], [2775.0, 9515.0, 0.0, 40.0], [2849.0, 9516.0, 0.0, 41.0], [2876.0, 9517.0, 0.0, 42.0], [2996.0, 9518.0, 0.0, 43.0], [3062.0, 9519.0, 0.0, 44.0], [3154.0, 9520.0, 0.0, 45.0], [3180.0, 9521.0, 0.0, 46.0], [3207.0, 9522.0, 0.0, 47.0], [3360.0, 9523.0, 0.0, 48.0], [3432.0, 9524.0, 0.0, 49.0], [3480.0, 9525.0, 0.0, 50.0], [3496.0, 9526.0, 0.0, 51.0], [3499.0, 9527.0, 0.0, 52.0], [3537.0, 9528.0, 0.0, 53.0], [3584.0, 9529.0, 0.0, 54.0], [3871.0, 9530.0, 0.0, 55.0], [3916.0, 9531.0, 0.0, 56.0], [4097.0, 9532.0, 0.0, 57.0], [4100.0, 9533.0, 0.0, 58.0], [4224.0, 9534.0, 0.0, 59.0], [4250.0, 9535.0, 0.0, 60.0], [4457.0, 9536.0, 0.0, 61.0], [4542.0, 9537.0, 0.0, 62.0], [4649.0, 9538.0, 0.0, 63.0], [4763.0, 9539.0, 0.0, 64.0], [4776.0, 9540.0, 0.0, 65.0], [4948.0, 9541.0, 0.0, 66.0], [4952.0, 9542.0, 0.0, 67.0], [4985.0, 9543.0, 0.0, 68.0], [4986.0, 9544.0, 0.0, 69.0], [5255.0, 9545.0, 0.0, 70.0], [5263.0, 9546.0, 0.0, 71.0], [5264.0, 9547.0, 0.0, 72.0], [5295.0, 9548.0, 0.0, 73.0], [5315.0, 9549.0, 0.0, 74.0], [5619.0, 9550.0, 0.0, 75.0], [5635.0, 9551.0, 0.0, 76.0], [5667.0, 9552.0, 0.0, 77.0], [5724.0, 9553.0, 0.0, 78.0], [5762.0, 9554.0, 0.0, 79.0], [5885.0, 9555.0, 0.0, 80.0], [5929.0, 9556.0, 0.0, 81.0], [5999.0, 9557.0, 0.0, 82.0], [6069.0, 9558.0, 0.0, 83.0], [6171.0, 9559.0, 0.0, 84.0], [6195.0, 9560.0, 0.0, 85.0], [6215.0, 9561.0, 0.0, 86.0], [6216.0, 9562.0, 0.0, 87.0], [6281.0, 9563.0, 0.0, 88.0], [6310.0, 9564.0, 0.0, 89.0], [6317.0, 9565.0, 0.0, 90.0], [6439.0, 9566.0, 0.0, 91.0], [6453.0, 9567.0, 0.0, 92.0], [6460.0, 9568.0, 0.0, 93.0], [6656.0, 9569.0, 0.0, 94.0], [6892.0, 9570.0, 0.0, 95.0], [6938.0, 9571.0, 0.0, 96.0], [6963.0, 9572.0, 0.0, 97.0], [6989.0, 9573.0, 0.0, 98.0], [6995.0, 9574.0, 0.0, 99.0], [7139.0, 9575.0, 0.0, 100.0], [7287.0, 9576.0, 0.0, 101.0], [7313.0, 9577.0, 0.0, 102.0], [7325.0, 9578.0, 0.0, 103.0], [7602.0, 9579.0, 0.0, 104.0], [7726.0, 9580.0, 0.0, 105.0], [7777.0, 9581.0, 0.0, 106.0], [7789.0, 9582.0, 0.0, 107.0], [7795.0, 9583.0, 0.0, 108.0], [1007.0, 9485.0, 0.0, 549.0], [1008.0, 9585.0, 0.0, 550.0], [1009.0, 9586.0, 0.0, 551.0], [1011.0, 9587.0, 0.0, 552.0], [1128.0, 9437.0, 0.0, 13.0], [1012.0, 9588.0, 0.0, 553.0], [1013.0, 9590.0, 0.0, 554.0], [1014.0, 9591.0, 0.0, 555.0], [1015.0, 9592.0, 0.0, 556.0], [1016.0, 9593.0, 0.0, 557.0], [1018.0, 9594.0, 0.0, 558.0], [1023.0, 9595.0, 0.0, 559.0], [1027.0, 9464.0, 0.0, 66.0], [1054.0, 9479.0, 0.0, 47.0], [1024.0, 9596.0, 0.0, 560.0], [1025.0, 9599.0, 0.0, 561.0], [1029.0, 9600.0, 0.0, 562.0], [1073.0, 9371.0, 0.0, 17.0], [1105.0, 9597.0, 0.0, 67.0], [1035.0, 9601.0, 0.0, 563.0], [1030.0, 3088.0, 0.0, 2.0], [3547.0, 3604.0, 0.0, 2.0], [6842.0, 9606.0, 0.0, 3.0], [1033.0, 5805.0, 0.0, 2.0], [1036.0, 9604.0, 0.0, 564.0], [1037.0, 9609.0, 0.0, 565.0], [1038.0, 9610.0, 0.0, 566.0], [1039.0, 9611.0, 0.0, 567.0], [1041.0, 9612.0, 0.0, 568.0], [1040.0, 1596.0, 0.0, 2.0], [1042.0, 9613.0, 0.0, 569.0], [1044.0, 9615.0, 0.0, 570.0], [5352.0, 9457.0, 0.0, 3.0], [7708.0, 9617.0, 0.0, 4.0], [1831.0, 2420.0, 0.0, 2.0], [1045.0, 9616.0, 0.0, 571.0], [1046.0, 9620.0, 0.0, 572.0], [1047.0, 9621.0, 0.0, 573.0], [1049.0, 9622.0, 0.0, 574.0], [3285.0, 6693.0, 0.0, 2.0], [4960.0, 8782.0, 0.0, 3.0], [5661.0, 9625.0, 0.0, 4.0], [3208.0, 9062.0, 0.0, 3.0], [1050.0, 9623.0, 0.0, 575.0], [1051.0, 9628.0, 0.0, 576.0], [1052.0, 9629.0, 0.0, 577.0], [1055.0, 9630.0, 0.0, 578.0], [1057.0, 9598.0, 0.0, 48.0], [1059.0, 9631.0, 0.0, 579.0], [1093.0, 9632.0, 0.0, 49.0], [1065.0, 9420.0, 0.0, 17.0], [1061.0, 9633.0, 0.0, 580.0], [1067.0, 9636.0, 0.0, 581.0], [1066.0, 9382.0, 0.0, 5.0], [2161.0, 9007.0, 0.0, 3.0], [4458.0, 9639.0, 0.0, 4.0], [5149.0, 9640.0, 0.0, 5.0], [7377.0, 9641.0, 0.0, 6.0], [7598.0, 9642.0, 0.0, 7.0], [2811.0, 9114.0, 0.0, 3.0], [3801.0, 9644.0, 0.0, 4.0], [6659.0, 9645.0, 0.0, 5.0], [1379.0, 4653.0, 0.0, 2.0], [1071.0, 9635.0, 0.0, 18.0], [1651.0, 9638.0, 0.0, 6.0], [1070.0, 9637.0, 0.0, 582.0], [1074.0, 9169.0, 0.0, 13.0], [1075.0, 9650.0, 0.0, 583.0], [1082.0, 9648.0, 0.0, 19.0], [1157.0, 9602.0, 0.0, 18.0], [1412.0, 9651.0, 0.0, 14.0], [1077.0, 9652.0, 0.0, 584.0], [1076.0, 5157.0, 0.0, 2.0], [1084.0, 9656.0, 0.0, 585.0], [1233.0, 9381.0, 0.0, 7.0], [2680.0, 8812.0, 0.0, 3.0], [1097.0, 9653.0, 0.0, 20.0], [1213.0, 1577.0, 0.0, 2.0], [1838.0, 9662.0, 0.0, 3.0], [1933.0, 9663.0, 0.0, 4.0], [3646.0, 9664.0, 0.0, 5.0], [4257.0, 9665.0, 0.0, 6.0], [5152.0, 9666.0, 0.0, 7.0], [5622.0, 9667.0, 0.0, 8.0], [5822.0, 9668.0, 0.0, 9.0], [1085.0, 9658.0, 0.0, 586.0], [1086.0, 9670.0, 0.0, 587.0], [1091.0, 9671.0, 0.0, 588.0], [1087.0, 4919.0, 0.0, 2.0], [1089.0, 3012.0, 0.0, 2.0], [1352.0, 9132.0, 0.0, 5.0], [1092.0, 9672.0, 0.0, 589.0], [1094.0, 9676.0, 0.0, 590.0], [1115.0, 9634.0, 0.0, 50.0], [1096.0, 9677.0, 0.0, 591.0], [1350.0, 9470.0, 0.0, 14.0], [1099.0, 9679.0, 0.0, 592.0], [1196.0, 9661.0, 0.0, 21.0], [1187.0, 9200.0, 0.0, 5.0], [1101.0, 9681.0, 0.0, 593.0], [1102.0, 9684.0, 0.0, 594.0], [1103.0, 9685.0, 0.0, 595.0], [1107.0, 9686.0, 0.0, 596.0], [1113.0, 9603.0, 0.0, 68.0], [1110.0, 9687.0, 0.0, 597.0], [1108.0, 2099.0, 0.0, 2.0], [1109.0, 1241.0, 0.0, 2.0], [1111.0, 9689.0, 0.0, 598.0], [1116.0, 9692.0, 0.0, 599.0], [1142.0, 9688.0, 0.0, 69.0], [1132.0, 9678.0, 0.0, 51.0], [1120.0, 9693.0, 0.0, 600.0], [7316.0, 8772.0, 0.0, 3.0], [1119.0, 1994.0, 0.0, 2.0], [1121.0, 9696.0, 0.0, 601.0], [1122.0, 9699.0, 0.0, 602.0], [1123.0, 9700.0, 0.0, 603.0], [1124.0, 9701.0, 0.0, 604.0], [1126.0, 9702.0, 0.0, 605.0], [1127.0, 9703.0, 0.0, 606.0], [1129.0, 9704.0, 0.0, 607.0], [1138.0, 9589.0, 0.0, 14.0], [1130.0, 9705.0, 0.0, 608.0], [1131.0, 9707.0, 0.0, 609.0], [1133.0, 9708.0, 0.0, 610.0], [1136.0, 9695.0, 0.0, 52.0], [1140.0, 9709.0, 0.0, 611.0], [1170.0, 9710.0, 0.0, 53.0], [1231.0, 9706.0, 0.0, 15.0], [1145.0, 9711.0, 0.0, 612.0], [1147.0, 9694.0, 0.0, 70.0], [1449.0, 8856.0, 0.0, 4.0], [1146.0, 9714.0, 0.0, 613.0], [1151.0, 9717.0, 0.0, 614.0], [1172.0, 9715.0, 0.0, 71.0], [3869.0, 7892.0, 0.0, 3.0], [1150.0, 6660.0, 0.0, 2.0], [1152.0, 9718.0, 0.0, 615.0], [1154.0, 9722.0, 0.0, 616.0], [1155.0, 9723.0, 0.0, 617.0], [1156.0, 9724.0, 0.0, 618.0], [1158.0, 9725.0, 0.0, 619.0], [1238.0, 9654.0, 0.0, 19.0], [1159.0, 9726.0, 0.0, 620.0], [1162.0, 9728.0, 0.0, 621.0], [1163.0, 9729.0, 0.0, 622.0], [1166.0, 9730.0, 0.0, 623.0], [1164.0, 1675.0, 0.0, 2.0], [1168.0, 9731.0, 0.0, 624.0], [1173.0, 9733.0, 0.0, 625.0], [1203.0, 9712.0, 0.0, 54.0], [3941.0, 9138.0, 0.0, 3.0], [4868.0, 9736.0, 0.0, 4.0], [6110.0, 9737.0, 0.0, 5.0], [6956.0, 9738.0, 0.0, 6.0], [7039.0, 9739.0, 0.0, 7.0], [7513.0, 9740.0, 0.0, 8.0], [1174.0, 9719.0, 0.0, 72.0], [1175.0, 9734.0, 0.0, 626.0], [1177.0, 9742.0, 0.0, 73.0], [1176.0, 9743.0, 0.0, 627.0], [1178.0, 9745.0, 0.0, 628.0], [1188.0, 9744.0, 0.0, 74.0], [1179.0, 9746.0, 0.0, 629.0], [1180.0, 9748.0, 0.0, 630.0], [1181.0, 9749.0, 0.0, 631.0], [1182.0, 9750.0, 0.0, 632.0], [1183.0, 9751.0, 0.0, 633.0], [1184.0, 9752.0, 0.0, 634.0], [1185.0, 9753.0, 0.0, 635.0], [1186.0, 9754.0, 0.0, 636.0], [1189.0, 9755.0, 0.0, 637.0], [1277.0, 9683.0, 0.0, 6.0], [1208.0, 9747.0, 0.0, 75.0], [1190.0, 9756.0, 0.0, 638.0], [1192.0, 9759.0, 0.0, 639.0], [2046.0, 9698.0, 0.0, 3.0], [4539.0, 9761.0, 0.0, 4.0], [1193.0, 9760.0, 0.0, 640.0], [1195.0, 9763.0, 0.0, 641.0], [1198.0, 9764.0, 0.0, 642.0], [1209.0, 9682.0, 0.0, 22.0], [3081.0, 7128.0, 0.0, 2.0], [1202.0, 9765.0, 0.0, 643.0], [1200.0, 1304.0, 0.0, 2.0], [1205.0, 9768.0, 0.0, 644.0], [1206.0, 9735.0, 0.0, 55.0], [1500.0, 1632.0, 0.0, 2.0], [1863.0, 9772.0, 0.0, 3.0], [2201.0, 9773.0, 0.0, 4.0], [2311.0, 9774.0, 0.0, 5.0], [2381.0, 9775.0, 0.0, 6.0], [2691.0, 9776.0, 0.0, 7.0], [3525.0, 9777.0, 0.0, 8.0], [4332.0, 9778.0, 0.0, 9.0], [5059.0, 9779.0, 0.0, 10.0], [5158.0, 9780.0, 0.0, 11.0], [5634.0, 9781.0, 0.0, 12.0], [5906.0, 9782.0, 0.0, 13.0], [6072.0, 9783.0, 0.0, 14.0], [6397.0, 9784.0, 0.0, 15.0], [6838.0, 9785.0, 0.0, 16.0], [7482.0, 9786.0, 0.0, 17.0], [7541.0, 9787.0, 0.0, 18.0], [7594.0, 9788.0, 0.0, 19.0], [1207.0, 9770.0, 0.0, 645.0], [1223.0, 9771.0, 0.0, 56.0], [1210.0, 9790.0, 0.0, 646.0], [1212.0, 9758.0, 0.0, 76.0], [1225.0, 9766.0, 0.0, 23.0], [1211.0, 9792.0, 0.0, 647.0], [1218.0, 9795.0, 0.0, 648.0], [1256.0, 9793.0, 0.0, 77.0], [5163.0, 7021.0, 0.0, 2.0], [1220.0, 9796.0, 0.0, 649.0], [1221.0, 9799.0, 0.0, 650.0], [1222.0, 9800.0, 0.0, 651.0], [1226.0, 9801.0, 0.0, 652.0], [1227.0, 9791.0, 0.0, 57.0], [1232.0, 9794.0, 0.0, 24.0], [1228.0, 9802.0, 0.0, 653.0], [1237.0, 9803.0, 0.0, 58.0], [1229.0, 9805.0, 0.0, 654.0], [1230.0, 9807.0, 0.0, 655.0], [1234.0, 9808.0, 0.0, 656.0], [1334.0, 9713.0, 0.0, 16.0], [1403.0, 9804.0, 0.0, 25.0], [1276.0, 9659.0, 0.0, 8.0], [1240.0, 9809.0, 0.0, 657.0], [1263.0, 9806.0, 0.0, 59.0], [1253.0, 9727.0, 0.0, 20.0], [1346.0, 9815.0, 0.0, 21.0], [1413.0, 9816.0, 0.0, 22.0], [1468.0, 9817.0, 0.0, 23.0], [1478.0, 9818.0, 0.0, 24.0], [1666.0, 9819.0, 0.0, 25.0], [1704.0, 9820.0, 0.0, 26.0], [1898.0, 9821.0, 0.0, 27.0], [2600.0, 9822.0, 0.0, 28.0], [3124.0, 9823.0, 0.0, 29.0], [3230.0, 9824.0, 0.0, 30.0], [3274.0, 9825.0, 0.0, 31.0], [3310.0, 9826.0, 0.0, 32.0], [3402.0, 9827.0, 0.0, 33.0], [3617.0, 9828.0, 0.0, 34.0], [3618.0, 9829.0, 0.0, 35.0], [3717.0, 9830.0, 0.0, 36.0], [3767.0, 9831.0, 0.0, 37.0], [3792.0, 9832.0, 0.0, 38.0], [3846.0, 9833.0, 0.0, 39.0], [3857.0, 9834.0, 0.0, 40.0], [4267.0, 9835.0, 0.0, 41.0], [4311.0, 9836.0, 0.0, 42.0], [4421.0, 9837.0, 0.0, 43.0], [4750.0, 9838.0, 0.0, 44.0], [4796.0, 9839.0, 0.0, 45.0], [4803.0, 9840.0, 0.0, 46.0], [4998.0, 9841.0, 0.0, 47.0], [5009.0, 9842.0, 0.0, 48.0], [5049.0, 9843.0, 0.0, 49.0], [5164.0, 9844.0, 0.0, 50.0], [5396.0, 9845.0, 0.0, 51.0], [5507.0, 9846.0, 0.0, 52.0], [5510.0, 9847.0, 0.0, 53.0], [6646.0, 9848.0, 0.0, 54.0], [6665.0, 9849.0, 0.0, 55.0], [6718.0, 9850.0, 0.0, 56.0], [6755.0, 9851.0, 0.0, 57.0], [6828.0, 9852.0, 0.0, 58.0], [7072.0, 9853.0, 0.0, 59.0], [7220.0, 9854.0, 0.0, 60.0], [7366.0, 9855.0, 0.0, 61.0], [7521.0, 9856.0, 0.0, 62.0], [7584.0, 9857.0, 0.0, 63.0], [7800.0, 9858.0, 0.0, 64.0], [1242.0, 9813.0, 0.0, 658.0], [2266.0, 9691.0, 0.0, 3.0], [1243.0, 9860.0, 0.0, 659.0], [1246.0, 9862.0, 0.0, 660.0], [1593.0, 9013.0, 0.0, 3.0], [1248.0, 9863.0, 0.0, 661.0], [1250.0, 9865.0, 0.0, 662.0], [1254.0, 9866.0, 0.0, 663.0], [5224.0, 5680.0, 0.0, 2.0], [6140.0, 9868.0, 0.0, 3.0], [1257.0, 9867.0, 0.0, 664.0], [1284.0, 9797.0, 0.0, 78.0], [1258.0, 9870.0, 0.0, 665.0], [1259.0, 9872.0, 0.0, 666.0], [1261.0, 9873.0, 0.0, 667.0], [2430.0, 8943.0, 0.0, 4.0], [1264.0, 9874.0, 0.0, 668.0], [1748.0, 9380.0, 0.0, 4.0], [1282.0, 9814.0, 0.0, 60.0], [1265.0, 9876.0, 0.0, 669.0], [1267.0, 9879.0, 0.0, 670.0], [1270.0, 9880.0, 0.0, 671.0], [5650.0, 7416.0, 0.0, 2.0], [5274.0, 5775.0, 0.0, 2.0], [1271.0, 9881.0, 0.0, 672.0], [1272.0, 9884.0, 0.0, 673.0], [1273.0, 9885.0, 0.0, 674.0], [1278.0, 9886.0, 0.0, 675.0], [1396.0, 9812.0, 0.0, 9.0], [1397.0, 9757.0, 0.0, 7.0], [1281.0, 9887.0, 0.0, 676.0], [1286.0, 9890.0, 0.0, 677.0], [1294.0, 9878.0, 0.0, 61.0], [1283.0, 2223.0, 0.0, 2.0], [1288.0, 9871.0, 0.0, 79.0], [1291.0, 9891.0, 0.0, 678.0], [1293.0, 9894.0, 0.0, 80.0], [1292.0, 9895.0, 0.0, 679.0], [1296.0, 9897.0, 0.0, 680.0], [1305.0, 9896.0, 0.0, 81.0], [1295.0, 9892.0, 0.0, 62.0], [1312.0, 9900.0, 0.0, 63.0], [1297.0, 9898.0, 0.0, 681.0], [1298.0, 9902.0, 0.0, 682.0], [1299.0, 9903.0, 0.0, 683.0], [1300.0, 9904.0, 0.0, 684.0], [1301.0, 9905.0, 0.0, 685.0], [1302.0, 9906.0, 0.0, 686.0], [1306.0, 9907.0, 0.0, 687.0], [5072.0, 9769.0, 0.0, 3.0], [1317.0, 9899.0, 0.0, 82.0], [1307.0, 9908.0, 0.0, 688.0], [1308.0, 9911.0, 0.0, 689.0], [1309.0, 9912.0, 0.0, 690.0], [1310.0, 9913.0, 0.0, 691.0], [1311.0, 9914.0, 0.0, 692.0], [1313.0, 9915.0, 0.0, 693.0], [1328.0, 9901.0, 0.0, 64.0], [1314.0, 9916.0, 0.0, 694.0], [1315.0, 9918.0, 0.0, 695.0], [1316.0, 9919.0, 0.0, 696.0], [1318.0, 9920.0, 0.0, 697.0], [1319.0, 9910.0, 0.0, 83.0], [1320.0, 9921.0, 0.0, 698.0], [1357.0, 9922.0, 0.0, 84.0], [1321.0, 9923.0, 0.0, 699.0], [1324.0, 9925.0, 0.0, 700.0], [1325.0, 9926.0, 0.0, 701.0], [1326.0, 9927.0, 0.0, 702.0], [1330.0, 9928.0, 0.0, 703.0], [1348.0, 9917.0, 0.0, 65.0], [1638.0, 4774.0, 0.0, 2.0], [1331.0, 9929.0, 0.0, 704.0], [1332.0, 9932.0, 0.0, 705.0], [1335.0, 9933.0, 0.0, 706.0], [1333.0, 2210.0, 0.0, 2.0], [1431.0, 9810.0, 0.0, 17.0], [1336.0, 9934.0, 0.0, 707.0], [1338.0, 9937.0, 0.0, 708.0], [1341.0, 9938.0, 0.0, 709.0], [1365.0, 9472.0, 0.0, 5.0], [1342.0, 9939.0, 0.0, 710.0], [1343.0, 9941.0, 0.0, 711.0], [1344.0, 9942.0, 0.0, 712.0], [1347.0, 9943.0, 0.0, 713.0], [1345.0, 2622.0, 0.0, 2.0], [1349.0, 9944.0, 0.0, 714.0], [1369.0, 9930.0, 0.0, 66.0], [1351.0, 9946.0, 0.0, 715.0], [1427.0, 9680.0, 0.0, 15.0], [1355.0, 9948.0, 0.0, 716.0], [2428.0, 9675.0, 0.0, 6.0], [1356.0, 9950.0, 0.0, 717.0], [1358.0, 9952.0, 0.0, 718.0], [1362.0, 9924.0, 0.0, 85.0], [1360.0, 9953.0, 0.0, 719.0], [1363.0, 9955.0, 0.0, 720.0], [1470.0, 9954.0, 0.0, 86.0], [1364.0, 9956.0, 0.0, 721.0], [1366.0, 9958.0, 0.0, 722.0], [1565.0, 9940.0, 0.0, 6.0], [1370.0, 9959.0, 0.0, 723.0], [1367.0, 4114.0, 0.0, 2.0], [1387.0, 9947.0, 0.0, 67.0], [1372.0, 9961.0, 0.0, 724.0], [1377.0, 9964.0, 0.0, 725.0], [1885.0, 9194.0, 0.0, 7.0], [1375.0, 2316.0, 0.0, 2.0], [1380.0, 9965.0, 0.0, 726.0], [6587.0, 9438.0, 0.0, 3.0], [1384.0, 9968.0, 0.0, 727.0], [1520.0, 9299.0, 0.0, 5.0], [2496.0, 9429.0, 0.0, 4.0], [1386.0, 9970.0, 0.0, 728.0], [1390.0, 9973.0, 0.0, 729.0], [1460.0, 9963.0, 0.0, 68.0], [1391.0, 9974.0, 0.0, 730.0], [1392.0, 9976.0, 0.0, 731.0], [1394.0, 9977.0, 0.0, 732.0], [1395.0, 9978.0, 0.0, 733.0], [1398.0, 9979.0, 0.0, 734.0], [1466.0, 9888.0, 0.0, 10.0], [1581.0, 9889.0, 0.0, 8.0], [1399.0, 9980.0, 0.0, 735.0], [1402.0, 9983.0, 0.0, 736.0], [1404.0, 9984.0, 0.0, 737.0], [1499.0, 9811.0, 0.0, 26.0], [1406.0, 9985.0, 0.0, 738.0], [1410.0, 9987.0, 0.0, 739.0], [1411.0, 9988.0, 0.0, 740.0], [1414.0, 9989.0, 0.0, 741.0], [1436.0, 9655.0, 0.0, 15.0], [1415.0, 9990.0, 0.0, 742.0], [1416.0, 9992.0, 0.0, 743.0], [1417.0, 9993.0, 0.0, 744.0], [1418.0, 9994.0, 0.0, 745.0], [1419.0, 9995.0, 0.0, 746.0], [1421.0, 9996.0, 0.0, 747.0], [1424.0, 9997.0, 0.0, 748.0], [1422.0, 2149.0, 0.0, 2.0], [1425.0, 9998.0, 0.0, 749.0], [1426.0, 10000.0, 0.0, 750.0], [1429.0, 10001.0, 0.0, 751.0], [1564.0, 9949.0, 0.0, 16.0], [1432.0, 10002.0, 0.0, 752.0], [1435.0, 9936.0, 0.0, 18.0], [1437.0, 10004.0, 0.0, 753.0], [1720.0, 9481.0, 0.0, 7.0], [1453.0, 10005.0, 0.0, 19.0], [1554.0, 9991.0, 0.0, 16.0], [1438.0, 10006.0, 0.0, 754.0], [1442.0, 10010.0, 0.0, 755.0], [1509.0, 1901.0, 0.0, 2.0], [2294.0, 10012.0, 0.0, 3.0], [2721.0, 10013.0, 0.0, 4.0], [2836.0, 10014.0, 0.0, 5.0], [2943.0, 10015.0, 0.0, 6.0], [3747.0, 10016.0, 0.0, 7.0], [4248.0, 10017.0, 0.0, 8.0], [4313.0, 10018.0, 0.0, 9.0], [4366.0, 10019.0, 0.0, 10.0], [4477.0, 10020.0, 0.0, 11.0], [4596.0, 10021.0, 0.0, 12.0], [4680.0, 10022.0, 0.0, 13.0], [5047.0, 10023.0, 0.0, 14.0], [5739.0, 10024.0, 0.0, 15.0], [6226.0, 10025.0, 0.0, 16.0], [6505.0, 10026.0, 0.0, 17.0], [6509.0, 10027.0, 0.0, 18.0], [6760.0, 10028.0, 0.0, 19.0], [7755.0, 10029.0, 0.0, 20.0], [3222.0, 6442.0, 0.0, 2.0], [5854.0, 9909.0, 0.0, 4.0], [1444.0, 10011.0, 0.0, 756.0], [1447.0, 10033.0, 0.0, 757.0], [1669.0, 9237.0, 0.0, 3.0], [1450.0, 10034.0, 0.0, 758.0], [2131.0, 9716.0, 0.0, 5.0], [1451.0, 10036.0, 0.0, 759.0], [1452.0, 10038.0, 0.0, 760.0], [1454.0, 10039.0, 0.0, 761.0], [1749.0, 10008.0, 0.0, 20.0], [1455.0, 10040.0, 0.0, 762.0], [1456.0, 10042.0, 0.0, 763.0], [1458.0, 10043.0, 0.0, 764.0], [1459.0, 10044.0, 0.0, 765.0], [1462.0, 10045.0, 0.0, 766.0], [1465.0, 9975.0, 0.0, 69.0], [1464.0, 10046.0, 0.0, 767.0], [1469.0, 10048.0, 0.0, 768.0], [1477.0, 10047.0, 0.0, 70.0], [1479.0, 9981.0, 0.0, 11.0], [1471.0, 10049.0, 0.0, 769.0], [1493.0, 9957.0, 0.0, 87.0], [1472.0, 10052.0, 0.0, 770.0], [1474.0, 10054.0, 0.0, 771.0], [1473.0, 6563.0, 0.0, 2.0], [1476.0, 10055.0, 0.0, 772.0], [2245.0, 9180.0, 0.0, 3.0], [1480.0, 10057.0, 0.0, 773.0], [1483.0, 10050.0, 0.0, 71.0], [1691.0, 10051.0, 0.0, 12.0], [1482.0, 10059.0, 0.0, 774.0], [5437.0, 9468.0, 0.0, 3.0], [1485.0, 10062.0, 0.0, 775.0], [1511.0, 10060.0, 0.0, 72.0], [1487.0, 10064.0, 0.0, 776.0], [1488.0, 10066.0, 0.0, 777.0], [1489.0, 10067.0, 0.0, 778.0], [1491.0, 10068.0, 0.0, 779.0], [5245.0, 9732.0, 0.0, 3.0], [6417.0, 10070.0, 0.0, 4.0], [7375.0, 10071.0, 0.0, 5.0], [2446.0, 3636.0, 0.0, 2.0], [4893.0, 5097.0, 0.0, 2.0], [3112.0, 7702.0, 0.0, 2.0], [1492.0, 10069.0, 0.0, 780.0], [1494.0, 10076.0, 0.0, 781.0], [1497.0, 10053.0, 0.0, 88.0], [1495.0, 10077.0, 0.0, 782.0], [1501.0, 10079.0, 0.0, 783.0], [1516.0, 10078.0, 0.0, 89.0], [1527.0, 9986.0, 0.0, 27.0], [1502.0, 10080.0, 0.0, 784.0], [1503.0, 10083.0, 0.0, 785.0], [1504.0, 10084.0, 0.0, 786.0], [1505.0, 10085.0, 0.0, 787.0], [1506.0, 10086.0, 0.0, 788.0], [1507.0, 10087.0, 0.0, 789.0], [1508.0, 10088.0, 0.0, 790.0], [1512.0, 10089.0, 0.0, 791.0], [2452.0, 9309.0, 0.0, 4.0], [1582.0, 10065.0, 0.0, 73.0], [1513.0, 10090.0, 0.0, 792.0], [1514.0, 10093.0, 0.0, 793.0], [1518.0, 10094.0, 0.0, 794.0], [2488.0, 3518.0, 0.0, 2.0], [7689.0, 10096.0, 0.0, 3.0], [1542.0, 10081.0, 0.0, 90.0], [2081.0, 9330.0, 0.0, 5.0], [1521.0, 10095.0, 0.0, 795.0], [1519.0, 3307.0, 0.0, 2.0], [1738.0, 9971.0, 0.0, 6.0], [1522.0, 10100.0, 0.0, 796.0], [1524.0, 10103.0, 0.0, 797.0], [1525.0, 10104.0, 0.0, 798.0], [1526.0, 10105.0, 0.0, 799.0], [1528.0, 10106.0, 0.0, 800.0], [1530.0, 10082.0, 0.0, 28.0], [1531.0, 10107.0, 0.0, 801.0], [1529.0, 2738.0, 0.0, 2.0], [1570.0, 10108.0, 0.0, 29.0], [1533.0, 10109.0, 0.0, 802.0], [1532.0, 5286.0, 0.0, 2.0], [1534.0, 10112.0, 0.0, 803.0], [1535.0, 10114.0, 0.0, 804.0], [1536.0, 10115.0, 0.0, 805.0], [1539.0, 10116.0, 0.0, 806.0], [1540.0, 10117.0, 0.0, 807.0], [1541.0, 10118.0, 0.0, 808.0], [1543.0, 10119.0, 0.0, 809.0], [1562.0, 10098.0, 0.0, 91.0], [1545.0, 10120.0, 0.0, 810.0], [1544.0, 1549.0, 0.0, 2.0], [1546.0, 10122.0, 0.0, 811.0], [1548.0, 10124.0, 0.0, 812.0], [1551.0, 10125.0, 0.0, 813.0], [2844.0, 10123.0, 0.0, 3.0], [1553.0, 10126.0, 0.0, 814.0], [1556.0, 10128.0, 0.0, 815.0], [1605.0, 10009.0, 0.0, 17.0], [1558.0, 10129.0, 0.0, 816.0], [1642.0, 7973.0, 0.0, 3.0], [1560.0, 10131.0, 0.0, 817.0], [1561.0, 10133.0, 0.0, 818.0], [1566.0, 10134.0, 0.0, 819.0], [1573.0, 10121.0, 0.0, 92.0], [1587.0, 10003.0, 0.0, 17.0], [2105.0, 9960.0, 0.0, 7.0], [1567.0, 10135.0, 0.0, 820.0], [1571.0, 10139.0, 0.0, 821.0], [1579.0, 10111.0, 0.0, 30.0], [1572.0, 10140.0, 0.0, 822.0], [1575.0, 10142.0, 0.0, 823.0], [1578.0, 10136.0, 0.0, 93.0], [1576.0, 10143.0, 0.0, 824.0], [1580.0, 10145.0, 0.0, 825.0], [1612.0, 10144.0, 0.0, 94.0], [1693.0, 10141.0, 0.0, 31.0], [1583.0, 10146.0, 0.0, 826.0], [1806.0, 9982.0, 0.0, 9.0], [1643.0, 10092.0, 0.0, 74.0], [1584.0, 10149.0, 0.0, 827.0], [1585.0, 10152.0, 0.0, 828.0], [1589.0, 10153.0, 0.0, 829.0], [1607.0, 10137.0, 0.0, 18.0], [1591.0, 10154.0, 0.0, 830.0], [1592.0, 10156.0, 0.0, 831.0], [1594.0, 10157.0, 0.0, 832.0], [2018.0, 9864.0, 0.0, 4.0], [1595.0, 10158.0, 0.0, 833.0], [1597.0, 10160.0, 0.0, 834.0], [5673.0, 9614.0, 0.0, 3.0], [1598.0, 10161.0, 0.0, 835.0], [1600.0, 10163.0, 0.0, 836.0], [1599.0, 2913.0, 0.0, 2.0], [1601.0, 10164.0, 0.0, 837.0], [1604.0, 10166.0, 0.0, 838.0], [1609.0, 10167.0, 0.0, 839.0], [1608.0, 10130.0, 0.0, 18.0], [1732.0, 10155.0, 0.0, 19.0], [1923.0, 10169.0, 0.0, 19.0], [1614.0, 10168.0, 0.0, 840.0], [1611.0, 6304.0, 0.0, 2.0], [1613.0, 10147.0, 0.0, 95.0], [1620.0, 10174.0, 0.0, 96.0], [1615.0, 10172.0, 0.0, 841.0], [1616.0, 10176.0, 0.0, 842.0], [1618.0, 10177.0, 0.0, 843.0], [1619.0, 10178.0, 0.0, 844.0], [1622.0, 10179.0, 0.0, 845.0], [1631.0, 10175.0, 0.0, 97.0], [7173.0, 9935.0, 0.0, 3.0], [1626.0, 10180.0, 0.0, 846.0], [2001.0, 8768.0, 0.0, 3.0], [1627.0, 10183.0, 0.0, 847.0], [1628.0, 10185.0, 0.0, 848.0], [1629.0, 10186.0, 0.0, 849.0], [1630.0, 10187.0, 0.0, 850.0], [1634.0, 10188.0, 0.0, 851.0], [1637.0, 10181.0, 0.0, 98.0], [1639.0, 10189.0, 0.0, 852.0], [1677.0, 10190.0, 0.0, 99.0], [1640.0, 10191.0, 0.0, 853.0], [1641.0, 10193.0, 0.0, 854.0], [1644.0, 10194.0, 0.0, 855.0], [2336.0, 10132.0, 0.0, 4.0], [1658.0, 10151.0, 0.0, 75.0], [1645.0, 10195.0, 0.0, 856.0], [1646.0, 10198.0, 0.0, 857.0], [1647.0, 10199.0, 0.0, 858.0], [1649.0, 10200.0, 0.0, 859.0], [1650.0, 10201.0, 0.0, 860.0], [1653.0, 10202.0, 0.0, 861.0], [1685.0, 9649.0, 0.0, 7.0], [1654.0, 10203.0, 0.0, 862.0], [1655.0, 10205.0, 0.0, 863.0], [1659.0, 10206.0, 0.0, 864.0], [1667.0, 10197.0, 0.0, 76.0], [1660.0, 10207.0, 0.0, 865.0], [1662.0, 10209.0, 0.0, 866.0], [2530.0, 9131.0, 0.0, 4.0], [1664.0, 10210.0, 0.0, 867.0], [1663.0, 6743.0, 0.0, 2.0], [1665.0, 10212.0, 0.0, 868.0], [1668.0, 10214.0, 0.0, 869.0], [1679.0, 10208.0, 0.0, 77.0], [1670.0, 10215.0, 0.0, 870.0], [2108.0, 10035.0, 0.0, 4.0], [1671.0, 10217.0, 0.0, 871.0], [1676.0, 10219.0, 0.0, 872.0], [1678.0, 10220.0, 0.0, 873.0], [1729.0, 10192.0, 0.0, 100.0], [1680.0, 10221.0, 0.0, 874.0], [1690.0, 10216.0, 0.0, 78.0], [1682.0, 10223.0, 0.0, 875.0], [1683.0, 10225.0, 0.0, 876.0], [1686.0, 10226.0, 0.0, 877.0], [2437.0, 10204.0, 0.0, 8.0], [1687.0, 10227.0, 0.0, 878.0], [1692.0, 10229.0, 0.0, 879.0], [1695.0, 10224.0, 0.0, 79.0], [1805.0, 10061.0, 0.0, 13.0], [1697.0, 10230.0, 0.0, 880.0], [1726.0, 10148.0, 0.0, 32.0], [1699.0, 10231.0, 0.0, 80.0], [1698.0, 10233.0, 0.0, 881.0], [1700.0, 10236.0, 0.0, 882.0], [1773.0, 10235.0, 0.0, 81.0], [1701.0, 10237.0, 0.0, 883.0], [1705.0, 10239.0, 0.0, 884.0], [1702.0, 2724.0, 0.0, 2.0], [1706.0, 10240.0, 0.0, 885.0], [1707.0, 10242.0, 0.0, 886.0], [1708.0, 10243.0, 0.0, 887.0], [1709.0, 10244.0, 0.0, 888.0], [1710.0, 10245.0, 0.0, 889.0], [1711.0, 10246.0, 0.0, 890.0], [1712.0, 10247.0, 0.0, 891.0], [1715.0, 10248.0, 0.0, 892.0], [1737.0, 9469.0, 0.0, 5.0], [1716.0, 10249.0, 0.0, 893.0], [1717.0, 10251.0, 0.0, 894.0], [1718.0, 10252.0, 0.0, 895.0], [1721.0, 10253.0, 0.0, 896.0], [2147.0, 10007.0, 0.0, 8.0], [1722.0, 10254.0, 0.0, 897.0], [1723.0, 10256.0, 0.0, 898.0], [1724.0, 10257.0, 0.0, 899.0], [1727.0, 10258.0, 0.0, 900.0], [1813.0, 10234.0, 0.0, 33.0], [1728.0, 10259.0, 0.0, 901.0], [1730.0, 10261.0, 0.0, 902.0], [1740.0, 10222.0, 0.0, 101.0], [1731.0, 10262.0, 0.0, 903.0], [1735.0, 10264.0, 0.0, 904.0], [1837.0, 10170.0, 0.0, 20.0], [1736.0, 10265.0, 0.0, 905.0], [1739.0, 10267.0, 0.0, 906.0], [2067.0, 10250.0, 0.0, 6.0], [2301.0, 10102.0, 0.0, 7.0], [1741.0, 10268.0, 0.0, 907.0], [1753.0, 10263.0, 0.0, 102.0], [1742.0, 10271.0, 0.0, 908.0], [1745.0, 10273.0, 0.0, 909.0], [2163.0, 8577.0, 0.0, 4.0], [1744.0, 3540.0, 0.0, 2.0], [1747.0, 10274.0, 0.0, 910.0], [3299.0, 4881.0, 0.0, 2.0], [1750.0, 10277.0, 0.0, 911.0], [2685.0, 9877.0, 0.0, 5.0], [1784.0, 10041.0, 0.0, 21.0], [1751.0, 10279.0, 0.0, 912.0], [1752.0, 10282.0, 0.0, 913.0], [1756.0, 10283.0, 0.0, 914.0], [1771.0, 10272.0, 0.0, 103.0], [2008.0, 9435.0, 0.0, 4.0], [1758.0, 10284.0, 0.0, 915.0], [1759.0, 10287.0, 0.0, 916.0], [1763.0, 10288.0, 0.0, 917.0], [1764.0, 10289.0, 0.0, 918.0], [1765.0, 10290.0, 0.0, 919.0], [1766.0, 10291.0, 0.0, 920.0], [1768.0, 10292.0, 0.0, 921.0], [1769.0, 10293.0, 0.0, 922.0], [1770.0, 10294.0, 0.0, 923.0], [1772.0, 10295.0, 0.0, 924.0], [1788.0, 10285.0, 0.0, 104.0], [1774.0, 10296.0, 0.0, 925.0], [1818.0, 10238.0, 0.0, 82.0], [1775.0, 10298.0, 0.0, 926.0], [1776.0, 10300.0, 0.0, 927.0], [1777.0, 10301.0, 0.0, 928.0], [1778.0, 10302.0, 0.0, 929.0], [1779.0, 10303.0, 0.0, 930.0], [1780.0, 10304.0, 0.0, 931.0], [1782.0, 10305.0, 0.0, 932.0], [1783.0, 10306.0, 0.0, 933.0], [1785.0, 10307.0, 0.0, 934.0], [1865.0, 10281.0, 0.0, 22.0], [1786.0, 10308.0, 0.0, 935.0], [1789.0, 10310.0, 0.0, 936.0], [1820.0, 10297.0, 0.0, 105.0], [1793.0, 10311.0, 0.0, 937.0], [4453.0, 9323.0, 0.0, 3.0], [1794.0, 10313.0, 0.0, 938.0], [1795.0, 10315.0, 0.0, 939.0], [1796.0, 10316.0, 0.0, 940.0], [1797.0, 10317.0, 0.0, 941.0], [1799.0, 10318.0, 0.0, 942.0], [1800.0, 10319.0, 0.0, 943.0], [1801.0, 10320.0, 0.0, 944.0], [1803.0, 10321.0, 0.0, 945.0], [1804.0, 10322.0, 0.0, 946.0], [1807.0, 10323.0, 0.0, 947.0], [2170.0, 10232.0, 0.0, 14.0], [1936.0, 10150.0, 0.0, 10.0], [1808.0, 10324.0, 0.0, 948.0], [1809.0, 10327.0, 0.0, 949.0], [1810.0, 10328.0, 0.0, 950.0], [1811.0, 10329.0, 0.0, 951.0], [1814.0, 10330.0, 0.0, 952.0], [1851.0, 10260.0, 0.0, 34.0], [1815.0, 10331.0, 0.0, 953.0], [1816.0, 10333.0, 0.0, 954.0], [1823.0, 10334.0, 0.0, 955.0], [1845.0, 10299.0, 0.0, 83.0], [1847.0, 10312.0, 0.0, 106.0], [1825.0, 10335.0, 0.0, 956.0], [1826.0, 10338.0, 0.0, 957.0], [1829.0, 10339.0, 0.0, 958.0], [5644.0, 9999.0, 0.0, 3.0], [1830.0, 10340.0, 0.0, 959.0], [1832.0, 10342.0, 0.0, 960.0], [1833.0, 10343.0, 0.0, 961.0], [1836.0, 10344.0, 0.0, 962.0], [1840.0, 10345.0, 0.0, 963.0], [2442.0, 10266.0, 0.0, 21.0], [4441.0, 9321.0, 0.0, 4.0], [1841.0, 10346.0, 0.0, 964.0], [1844.0, 10349.0, 0.0, 965.0], [1846.0, 10350.0, 0.0, 966.0], [1853.0, 10336.0, 0.0, 84.0], [1848.0, 10351.0, 0.0, 967.0], [1852.0, 10337.0, 0.0, 107.0], [1849.0, 10353.0, 0.0, 968.0], [1850.0, 10355.0, 0.0, 969.0], [1854.0, 10356.0, 0.0, 970.0], [1947.0, 10332.0, 0.0, 35.0], [1884.0, 10354.0, 0.0, 108.0], [1881.0, 10352.0, 0.0, 85.0], [1855.0, 10357.0, 0.0, 971.0], [1856.0, 10361.0, 0.0, 972.0], [1857.0, 10362.0, 0.0, 973.0], [1860.0, 10363.0, 0.0, 974.0], [1858.0, 2230.0, 0.0, 2.0], [2523.0, 4018.0, 0.0, 2.0], [2514.0, 10228.0, 0.0, 9.0], [2715.0, 10367.0, 0.0, 10.0], [2848.0, 10368.0, 0.0, 11.0], [2852.0, 10369.0, 0.0, 12.0], [3491.0, 10370.0, 0.0, 13.0], [3780.0, 10371.0, 0.0, 14.0], [3825.0, 10372.0, 0.0, 15.0], [4021.0, 10373.0, 0.0, 16.0], [4460.0, 10374.0, 0.0, 17.0], [5489.0, 10375.0, 0.0, 18.0], [6919.0, 10376.0, 0.0, 19.0], [7006.0, 10377.0, 0.0, 20.0], [7163.0, 10378.0, 0.0, 21.0], [7680.0, 10379.0, 0.0, 22.0], [3870.0, 10110.0, 0.0, 3.0], [4558.0, 10381.0, 0.0, 4.0], [6923.0, 10382.0, 0.0, 5.0], [4745.0, 9893.0, 0.0, 3.0], [5887.0, 10384.0, 0.0, 4.0], [6899.0, 10385.0, 0.0, 5.0], [2660.0, 3571.0, 0.0, 2.0], [4646.0, 10387.0, 0.0, 3.0], [7601.0, 10388.0, 0.0, 4.0], [2236.0, 10184.0, 0.0, 4.0], [2265.0, 10390.0, 0.0, 5.0], [2352.0, 10391.0, 0.0, 6.0], [2540.0, 10392.0, 0.0, 7.0], [3286.0, 10393.0, 0.0, 8.0], [3334.0, 10394.0, 0.0, 9.0], [3753.0, 10395.0, 0.0, 10.0], [4049.0, 10396.0, 0.0, 11.0], [4141.0, 10397.0, 0.0, 12.0], [4530.0, 10398.0, 0.0, 13.0], [5628.0, 10399.0, 0.0, 14.0], [5977.0, 10400.0, 0.0, 15.0], [6202.0, 10401.0, 0.0, 16.0], [6240.0, 10402.0, 0.0, 17.0], [6244.0, 10403.0, 0.0, 18.0], [6477.0, 10404.0, 0.0, 19.0], [6584.0, 10405.0, 0.0, 20.0], [6789.0, 10406.0, 0.0, 21.0], [7498.0, 10407.0, 0.0, 22.0], [2015.0, 5039.0, 0.0, 2.0], [6153.0, 10409.0, 0.0, 3.0], [6611.0, 10410.0, 0.0, 4.0], [6932.0, 10411.0, 0.0, 5.0], [1862.0, 10364.0, 0.0, 975.0], [1866.0, 10413.0, 0.0, 976.0], [1900.0, 10309.0, 0.0, 23.0], [1867.0, 10414.0, 0.0, 977.0], [1868.0, 10416.0, 0.0, 978.0], [1869.0, 10417.0, 0.0, 979.0], [1870.0, 10418.0, 0.0, 980.0], [1871.0, 10419.0, 0.0, 981.0], [1872.0, 10420.0, 0.0, 982.0], [1873.0, 10421.0, 0.0, 983.0], [1875.0, 10422.0, 0.0, 984.0], [1874.0, 2871.0, 0.0, 2.0], [1876.0, 10423.0, 0.0, 985.0], [1877.0, 10425.0, 0.0, 986.0], [1879.0, 10426.0, 0.0, 987.0], [1882.0, 10427.0, 0.0, 988.0], [1895.0, 10360.0, 0.0, 86.0], [1883.0, 10428.0, 0.0, 989.0], [1887.0, 10430.0, 0.0, 990.0], [1951.0, 10359.0, 0.0, 109.0], [2512.0, 9966.0, 0.0, 8.0], [1888.0, 10431.0, 0.0, 991.0], [1889.0, 10434.0, 0.0, 992.0], [1891.0, 10435.0, 0.0, 993.0], [1893.0, 10436.0, 0.0, 994.0], [1894.0, 10437.0, 0.0, 995.0], [1896.0, 10438.0, 0.0, 996.0], [1899.0, 10429.0, 0.0, 87.0], [1897.0, 10439.0, 0.0, 997.0], [1903.0, 10441.0, 0.0, 998.0], [1904.0, 10440.0, 0.0, 88.0], [2017.0, 10415.0, 0.0, 24.0], [1902.0, 3202.0, 0.0, 2.0], [1906.0, 10442.0, 0.0, 999.0], [1930.0, 10443.0, 0.0, 89.0], [1907.0, 10446.0, 0.0, 1000.0], [1908.0, 10448.0, 0.0, 1001.0], [1912.0, 10449.0, 0.0, 1002.0], [1913.0, 10450.0, 0.0, 1003.0], [1914.0, 10451.0, 0.0, 1004.0], [1915.0, 10452.0, 0.0, 1005.0], [1916.0, 10453.0, 0.0, 1006.0], [1917.0, 10454.0, 0.0, 1007.0], [1918.0, 10455.0, 0.0, 1008.0], [1919.0, 10456.0, 0.0, 1009.0], [1924.0, 10457.0, 0.0, 1010.0], [1982.0, 10171.0, 0.0, 20.0], [1926.0, 10458.0, 0.0, 1011.0], [1927.0, 10460.0, 0.0, 1012.0], [1928.0, 10461.0, 0.0, 1013.0], [1929.0, 10462.0, 0.0, 1014.0], [1931.0, 10463.0, 0.0, 1015.0], [1932.0, 10447.0, 0.0, 90.0], [1934.0, 10464.0, 0.0, 1016.0], [1943.0, 10465.0, 0.0, 91.0], [1935.0, 10466.0, 0.0, 1017.0], [1937.0, 10468.0, 0.0, 1018.0], [2144.0, 10326.0, 0.0, 11.0], [1938.0, 10469.0, 0.0, 1019.0], [1939.0, 10471.0, 0.0, 1020.0], [1940.0, 10472.0, 0.0, 1021.0], [1941.0, 10473.0, 0.0, 1022.0], [1942.0, 10474.0, 0.0, 1023.0], [1944.0, 10475.0, 0.0, 1024.0], [1952.0, 10467.0, 0.0, 92.0], [1945.0, 10476.0, 0.0, 1025.0], [1950.0, 10478.0, 0.0, 1026.0], [1971.0, 10358.0, 0.0, 36.0], [1953.0, 10479.0, 0.0, 1027.0], [1969.0, 10432.0, 0.0, 110.0], [1955.0, 10477.0, 0.0, 93.0], [1954.0, 10481.0, 0.0, 1028.0], [1956.0, 10484.0, 0.0, 1029.0], [1957.0, 10483.0, 0.0, 94.0], [1958.0, 10485.0, 0.0, 1030.0], [1960.0, 10486.0, 0.0, 95.0], [1959.0, 10487.0, 0.0, 1031.0], [1962.0, 10489.0, 0.0, 1032.0], [1965.0, 10488.0, 0.0, 96.0], [3827.0, 4394.0, 0.0, 2.0], [4606.0, 10492.0, 0.0, 3.0], [5293.0, 5636.0, 0.0, 2.0], [7398.0, 10494.0, 0.0, 3.0], [2661.0, 10270.0, 0.0, 8.0], [2858.0, 10496.0, 0.0, 9.0], [3127.0, 10497.0, 0.0, 10.0], [3215.0, 10498.0, 0.0, 11.0], [3476.0, 10499.0, 0.0, 12.0], [4050.0, 10500.0, 0.0, 13.0], [4078.0, 10501.0, 0.0, 14.0], [4244.0, 10502.0, 0.0, 15.0], [4323.0, 10503.0, 0.0, 16.0], [4440.0, 10504.0, 0.0, 17.0], [5539.0, 10505.0, 0.0, 18.0], [5578.0, 10506.0, 0.0, 19.0], [5657.0, 10507.0, 0.0, 20.0], [5914.0, 10508.0, 0.0, 21.0], [6052.0, 10509.0, 0.0, 22.0], [6420.0, 10510.0, 0.0, 23.0], [6561.0, 10511.0, 0.0, 24.0], [7388.0, 10512.0, 0.0, 25.0], [1963.0, 10490.0, 0.0, 1033.0], [1964.0, 10514.0, 0.0, 1034.0], [1966.0, 10515.0, 0.0, 1035.0], [2006.0, 10491.0, 0.0, 97.0], [1967.0, 10516.0, 0.0, 1036.0], [1968.0, 10518.0, 0.0, 1037.0], [1970.0, 10519.0, 0.0, 1038.0], [1984.0, 10482.0, 0.0, 111.0], [1973.0, 10520.0, 0.0, 1039.0], [1979.0, 10480.0, 0.0, 37.0], [1972.0, 3424.0, 0.0, 2.0], [1974.0, 10522.0, 0.0, 1040.0], [1975.0, 10525.0, 0.0, 1041.0], [1976.0, 10526.0, 0.0, 1042.0], [1977.0, 10527.0, 0.0, 1043.0], [1980.0, 10528.0, 0.0, 1044.0], [2028.0, 10523.0, 0.0, 38.0], [1981.0, 10529.0, 0.0, 1045.0], [1983.0, 10531.0, 0.0, 1046.0], [2039.0, 10459.0, 0.0, 21.0], [1986.0, 10532.0, 0.0, 1047.0], [1985.0, 10521.0, 0.0, 112.0], [1998.0, 10535.0, 0.0, 113.0], [1988.0, 10534.0, 0.0, 1048.0], [1989.0, 10537.0, 0.0, 1049.0], [1992.0, 10538.0, 0.0, 1050.0], [2038.0, 10444.0, 0.0, 25.0], [2116.0, 10540.0, 0.0, 26.0], [2399.0, 10541.0, 0.0, 27.0], [2419.0, 10542.0, 0.0, 28.0], [2538.0, 10543.0, 0.0, 29.0], [2563.0, 10544.0, 0.0, 30.0], [2595.0, 10545.0, 0.0, 31.0], [2687.0, 10546.0, 0.0, 32.0], [2697.0, 10547.0, 0.0, 33.0], [2930.0, 10548.0, 0.0, 34.0], [3004.0, 10549.0, 0.0, 35.0], [3037.0, 10550.0, 0.0, 36.0], [3091.0, 10551.0, 0.0, 37.0], [3137.0, 10552.0, 0.0, 38.0], [3171.0, 10553.0, 0.0, 39.0], [3216.0, 10554.0, 0.0, 40.0], [3252.0, 10555.0, 0.0, 41.0], [3269.0, 10556.0, 0.0, 42.0], [3273.0, 10557.0, 0.0, 43.0], [3295.0, 10558.0, 0.0, 44.0], [3385.0, 10559.0, 0.0, 45.0], [3387.0, 10560.0, 0.0, 46.0], [3404.0, 10561.0, 0.0, 47.0], [3466.0, 10562.0, 0.0, 48.0], [3559.0, 10563.0, 0.0, 49.0], [3592.0, 10564.0, 0.0, 50.0], [3609.0, 10565.0, 0.0, 51.0], [3649.0, 10566.0, 0.0, 52.0], [3819.0, 10567.0, 0.0, 53.0], [3987.0, 10568.0, 0.0, 54.0], [4091.0, 10569.0, 0.0, 55.0], [4113.0, 10570.0, 0.0, 56.0], [4153.0, 10571.0, 0.0, 57.0], [4169.0, 10572.0, 0.0, 58.0], [4254.0, 10573.0, 0.0, 59.0], [4266.0, 10574.0, 0.0, 60.0], [4277.0, 10575.0, 0.0, 61.0], [4375.0, 10576.0, 0.0, 62.0], [4424.0, 10577.0, 0.0, 63.0], [4566.0, 10578.0, 0.0, 64.0], [4730.0, 10579.0, 0.0, 65.0], [4790.0, 10580.0, 0.0, 66.0], [4888.0, 10581.0, 0.0, 67.0], [5018.0, 10582.0, 0.0, 68.0], [5099.0, 10583.0, 0.0, 69.0], [5126.0, 10584.0, 0.0, 70.0], [5193.0, 10585.0, 0.0, 71.0], [5203.0, 10586.0, 0.0, 72.0], [5288.0, 10587.0, 0.0, 73.0], [5312.0, 10588.0, 0.0, 74.0], [5322.0, 10589.0, 0.0, 75.0], [5369.0, 10590.0, 0.0, 76.0], [5425.0, 10591.0, 0.0, 77.0], [5439.0, 10592.0, 0.0, 78.0], [5547.0, 10593.0, 0.0, 79.0], [5643.0, 10594.0, 0.0, 80.0], [5721.0, 10595.0, 0.0, 81.0], [5727.0, 10596.0, 0.0, 82.0], [5796.0, 10597.0, 0.0, 83.0], [5840.0, 10598.0, 0.0, 84.0], [5966.0, 10599.0, 0.0, 85.0], [5970.0, 10600.0, 0.0, 86.0], [5990.0, 10601.0, 0.0, 87.0], [6098.0, 10602.0, 0.0, 88.0], [6160.0, 10603.0, 0.0, 89.0], [6187.0, 10604.0, 0.0, 90.0], [6217.0, 10605.0, 0.0, 91.0], [6295.0, 10606.0, 0.0, 92.0], [6333.0, 10607.0, 0.0, 93.0], [6424.0, 10608.0, 0.0, 94.0], [6433.0, 10609.0, 0.0, 95.0], [6619.0, 10610.0, 0.0, 96.0], [6744.0, 10611.0, 0.0, 97.0], [6806.0, 10612.0, 0.0, 98.0], [7165.0, 10613.0, 0.0, 99.0], [7183.0, 10614.0, 0.0, 100.0], [7360.0, 10615.0, 0.0, 101.0], [7361.0, 10616.0, 0.0, 102.0], [7365.0, 10617.0, 0.0, 103.0], [7447.0, 10618.0, 0.0, 104.0], [7640.0, 10619.0, 0.0, 105.0], [7677.0, 10620.0, 0.0, 106.0], [7775.0, 10621.0, 0.0, 107.0], [4161.0, 6123.0, 0.0, 2.0], [3353.0, 10241.0, 0.0, 3.0], [3882.0, 10624.0, 0.0, 4.0], [6340.0, 10625.0, 0.0, 5.0], [1995.0, 10539.0, 0.0, 1051.0], [1997.0, 10627.0, 0.0, 1052.0], [6221.0, 9673.0, 0.0, 3.0], [6952.0, 10629.0, 0.0, 4.0], [1999.0, 10628.0, 0.0, 1053.0], [2083.0, 10536.0, 0.0, 114.0], [2000.0, 10631.0, 0.0, 1054.0], [2003.0, 10633.0, 0.0, 1055.0], [2004.0, 10634.0, 0.0, 1056.0], [2005.0, 10635.0, 0.0, 1057.0], [2007.0, 10636.0, 0.0, 1058.0], [2012.0, 10517.0, 0.0, 98.0], [2009.0, 10637.0, 0.0, 1059.0], [4896.0, 10286.0, 0.0, 5.0], [2011.0, 10639.0, 0.0, 1060.0], [2013.0, 10641.0, 0.0, 1061.0], [2056.0, 10638.0, 0.0, 99.0], [2022.0, 10642.0, 0.0, 1062.0], [2454.0, 8754.0, 0.0, 3.0], [2197.0, 10159.0, 0.0, 5.0], [4305.0, 9256.0, 0.0, 4.0], [3150.0, 10099.0, 0.0, 6.0], [3179.0, 10648.0, 0.0, 7.0], [3240.0, 10649.0, 0.0, 8.0], [3696.0, 10650.0, 0.0, 9.0], [4104.0, 10651.0, 0.0, 10.0], [4452.0, 10652.0, 0.0, 11.0], [4759.0, 10653.0, 0.0, 12.0], [4821.0, 10654.0, 0.0, 13.0], [4946.0, 10655.0, 0.0, 14.0], [5084.0, 10656.0, 0.0, 15.0], [5235.0, 10657.0, 0.0, 16.0], [5788.0, 10658.0, 0.0, 17.0], [6046.0, 10659.0, 0.0, 18.0], [6635.0, 10660.0, 0.0, 19.0], [7788.0, 10661.0, 0.0, 20.0], [4009.0, 9945.0, 0.0, 3.0], [5915.0, 10663.0, 0.0, 4.0], [3265.0, 9972.0, 0.0, 5.0], [4748.0, 10665.0, 0.0, 6.0], [5383.0, 10666.0, 0.0, 7.0], [4195.0, 6881.0, 0.0, 2.0], [5621.0, 9129.0, 0.0, 3.0], [7112.0, 10669.0, 0.0, 4.0], [4723.0, 10101.0, 0.0, 3.0], [2202.0, 2398.0, 0.0, 2.0], [6522.0, 10672.0, 0.0, 3.0], [2499.0, 10325.0, 0.0, 15.0], [2582.0, 10674.0, 0.0, 16.0], [2634.0, 10675.0, 0.0, 17.0], [2873.0, 10676.0, 0.0, 18.0], [3169.0, 10677.0, 0.0, 19.0], [3242.0, 10678.0, 0.0, 20.0], [3245.0, 10679.0, 0.0, 21.0], [3381.0, 10680.0, 0.0, 22.0], [3400.0, 10681.0, 0.0, 23.0], [3532.0, 10682.0, 0.0, 24.0], [3694.0, 10683.0, 0.0, 25.0], [3712.0, 10684.0, 0.0, 26.0], [3754.0, 10685.0, 0.0, 27.0], [4017.0, 10686.0, 0.0, 28.0], [4341.0, 10687.0, 0.0, 29.0], [4374.0, 10688.0, 0.0, 30.0], [5407.0, 10689.0, 0.0, 31.0], [5971.0, 10690.0, 0.0, 32.0], [6350.0, 10691.0, 0.0, 33.0], [6537.0, 10692.0, 0.0, 34.0], [6578.0, 10693.0, 0.0, 35.0], [6983.0, 10694.0, 0.0, 36.0], [7420.0, 10695.0, 0.0, 37.0], [7534.0, 10696.0, 0.0, 38.0], [7553.0, 10697.0, 0.0, 39.0], [7651.0, 10698.0, 0.0, 40.0], [7738.0, 10699.0, 0.0, 41.0], [2606.0, 10433.0, 0.0, 9.0], [2771.0, 10701.0, 0.0, 10.0], [3337.0, 10702.0, 0.0, 11.0], [3605.0, 10703.0, 0.0, 12.0], [3832.0, 10704.0, 0.0, 13.0], [3955.0, 10705.0, 0.0, 14.0], [4499.0, 10706.0, 0.0, 15.0], [4659.0, 10707.0, 0.0, 16.0], [5003.0, 10708.0, 0.0, 17.0], [5672.0, 10709.0, 0.0, 18.0], [6720.0, 10710.0, 0.0, 19.0], [6921.0, 10711.0, 0.0, 20.0], [7797.0, 10712.0, 0.0, 21.0], [5709.0, 6817.0, 0.0, 2.0], [2658.0, 10138.0, 0.0, 8.0], [3134.0, 10715.0, 0.0, 9.0], [5395.0, 10716.0, 0.0, 10.0], [6113.0, 10717.0, 0.0, 11.0], [6589.0, 10718.0, 0.0, 12.0], [7009.0, 10719.0, 0.0, 13.0], [7269.0, 10720.0, 0.0, 14.0], [3357.0, 3566.0, 0.0, 2.0], [3572.0, 10722.0, 0.0, 3.0], [4361.0, 10723.0, 0.0, 4.0], [5305.0, 10724.0, 0.0, 5.0], [6148.0, 10725.0, 0.0, 6.0], [6749.0, 10726.0, 0.0, 7.0], [7305.0, 10727.0, 0.0, 8.0], [2534.0, 10365.0, 0.0, 3.0], [2765.0, 10729.0, 0.0, 4.0], [4098.0, 10730.0, 0.0, 5.0], [5021.0, 10731.0, 0.0, 6.0], [6055.0, 10732.0, 0.0, 7.0], [7201.0, 10733.0, 0.0, 8.0], [7357.0, 10734.0, 0.0, 9.0], [7768.0, 10735.0, 0.0, 10.0], [6981.0, 7734.0, 0.0, 2.0], [2136.0, 10037.0, 0.0, 6.0], [3195.0, 10738.0, 0.0, 7.0], [3342.0, 10739.0, 0.0, 8.0], [3414.0, 10740.0, 0.0, 9.0], [4700.0, 10741.0, 0.0, 10.0], [5701.0, 10742.0, 0.0, 11.0], [5934.0, 10743.0, 0.0, 12.0], [6251.0, 10744.0, 0.0, 13.0], [6377.0, 10745.0, 0.0, 14.0], [6713.0, 10746.0, 0.0, 15.0], [6805.0, 10747.0, 0.0, 16.0], [7158.0, 10748.0, 0.0, 17.0], [7250.0, 10749.0, 0.0, 18.0], [3970.0, 9861.0, 0.0, 4.0], [4135.0, 10751.0, 0.0, 5.0], [4149.0, 10752.0, 0.0, 6.0], [5177.0, 10753.0, 0.0, 7.0], [6372.0, 10754.0, 0.0, 8.0], [6776.0, 10755.0, 0.0, 9.0], [7197.0, 10756.0, 0.0, 10.0], [3223.0, 4697.0, 0.0, 2.0], [3021.0, 4121.0, 0.0, 2.0], [2628.0, 4272.0, 0.0, 2.0], [5338.0, 10760.0, 0.0, 3.0], [5850.0, 10761.0, 0.0, 4.0], [6914.0, 10762.0, 0.0, 5.0], [3382.0, 4853.0, 0.0, 2.0], [5921.0, 10764.0, 0.0, 3.0], [2657.0, 3676.0, 0.0, 2.0], [2578.0, 6604.0, 0.0, 2.0], [5795.0, 6600.0, 0.0, 2.0], [3829.0, 4538.0, 0.0, 2.0], [6112.0, 10769.0, 0.0, 3.0], [3967.0, 6265.0, 0.0, 2.0], [3131.0, 9951.0, 0.0, 7.0], [3374.0, 10772.0, 0.0, 8.0], [3732.0, 10773.0, 0.0, 9.0], [4546.0, 10774.0, 0.0, 10.0], [5019.0, 10775.0, 0.0, 11.0], [5801.0, 10776.0, 0.0, 12.0], [5826.0, 10777.0, 0.0, 13.0], [6169.0, 10778.0, 0.0, 14.0], [6492.0, 10779.0, 0.0, 15.0], [6504.0, 10780.0, 0.0, 16.0], [6624.0, 10781.0, 0.0, 17.0], [6629.0, 10782.0, 0.0, 18.0], [6555.0, 6582.0, 0.0, 2.0], [4643.0, 9203.0, 0.0, 3.0], [7570.0, 10785.0, 0.0, 4.0], [7769.0, 10786.0, 0.0, 5.0], [5925.0, 6383.0, 0.0, 2.0], [6716.0, 7920.0, 0.0, 3.0], [3170.0, 9967.0, 0.0, 3.0], [6824.0, 10790.0, 0.0, 4.0], [2951.0, 10646.0, 0.0, 6.0], [2997.0, 10792.0, 0.0, 7.0], [3457.0, 10793.0, 0.0, 8.0], [4120.0, 10794.0, 0.0, 9.0], [4261.0, 10795.0, 0.0, 10.0], [4934.0, 10796.0, 0.0, 11.0], [6001.0, 10797.0, 0.0, 12.0], [6464.0, 10798.0, 0.0, 13.0], [3317.0, 10424.0, 0.0, 3.0], [3539.0, 10800.0, 0.0, 4.0], [4535.0, 10801.0, 0.0, 5.0], [4560.0, 10802.0, 0.0, 6.0], [5048.0, 10803.0, 0.0, 7.0], [4436.0, 6603.0, 0.0, 2.0], [4022.0, 5640.0, 0.0, 2.0], [2629.0, 10645.0, 0.0, 4.0], [2769.0, 10807.0, 0.0, 5.0], [2806.0, 10808.0, 0.0, 6.0], [2899.0, 10809.0, 0.0, 7.0], [3887.0, 10810.0, 0.0, 8.0], [4023.0, 10811.0, 0.0, 9.0], [5597.0, 10812.0, 0.0, 10.0], [6927.0, 10813.0, 0.0, 11.0], [2168.0, 3830.0, 0.0, 2.0], [5105.0, 6373.0, 0.0, 2.0], [3177.0, 3483.0, 0.0, 2.0], [3773.0, 10817.0, 0.0, 3.0], [4612.0, 10818.0, 0.0, 4.0], [5036.0, 5081.0, 0.0, 2.0], [5811.0, 7658.0, 0.0, 2.0], [2515.0, 6147.0, 0.0, 2.0], [3929.0, 10445.0, 0.0, 3.0], [5261.0, 9433.0, 0.0, 3.0], [6245.0, 10824.0, 0.0, 4.0], [7059.0, 7642.0, 0.0, 2.0], [4805.0, 10524.0, 0.0, 3.0], [5181.0, 10827.0, 0.0, 4.0], [7633.0, 10828.0, 0.0, 5.0], [7683.0, 10829.0, 0.0, 6.0], [4223.0, 9373.0, 0.0, 3.0], [5376.0, 10831.0, 0.0, 4.0], [6441.0, 10832.0, 0.0, 5.0], [2088.0, 7099.0, 0.0, 2.0], [2373.0, 4527.0, 0.0, 2.0], [5876.0, 10835.0, 0.0, 3.0], [3758.0, 6028.0, 0.0, 2.0], [4758.0, 10314.0, 0.0, 4.0], [6218.0, 10838.0, 0.0, 5.0], [2329.0, 4754.0, 0.0, 2.0], [4876.0, 10840.0, 0.0, 3.0], [6605.0, 10841.0, 0.0, 4.0], [3196.0, 5062.0, 0.0, 2.0], [2360.0, 6396.0, 0.0, 2.0], [7646.0, 10127.0, 0.0, 4.0], [2708.0, 5473.0, 0.0, 2.0], [7732.0, 10846.0, 0.0, 3.0], [4958.0, 9962.0, 0.0, 3.0], [3090.0, 3161.0, 0.0, 2.0], [5117.0, 6627.0, 0.0, 2.0], [6775.0, 10850.0, 0.0, 3.0], [7558.0, 10851.0, 0.0, 4.0], [5706.0, 5922.0, 0.0, 2.0], [4204.0, 9720.0, 0.0, 4.0], [5725.0, 10854.0, 0.0, 5.0], [6647.0, 10855.0, 0.0, 6.0], [6750.0, 10856.0, 0.0, 7.0], [6862.0, 10857.0, 0.0, 8.0], [3494.0, 9605.0, 0.0, 3.0], [4226.0, 10859.0, 0.0, 4.0], [4689.0, 10860.0, 0.0, 5.0], [4842.0, 10861.0, 0.0, 6.0], [4907.0, 10862.0, 0.0, 7.0], [5284.0, 10863.0, 0.0, 8.0], [5333.0, 10864.0, 0.0, 9.0], [5391.0, 10865.0, 0.0, 10.0], [5612.0, 10866.0, 0.0, 11.0], [5626.0, 10867.0, 0.0, 12.0], [6313.0, 10868.0, 0.0, 13.0], [6585.0, 10869.0, 0.0, 14.0], [3979.0, 5188.0, 0.0, 2.0], [5584.0, 10871.0, 0.0, 3.0], [4956.0, 7467.0, 0.0, 2.0], [2363.0, 3163.0, 0.0, 2.0], [3172.0, 10874.0, 0.0, 3.0], [4388.0, 10875.0, 0.0, 4.0], [5132.0, 10876.0, 0.0, 5.0], [5443.0, 10877.0, 0.0, 6.0], [6359.0, 10878.0, 0.0, 7.0], [6727.0, 10879.0, 0.0, 8.0], [7068.0, 10880.0, 0.0, 9.0], [3730.0, 4070.0, 0.0, 2.0], [4385.0, 10882.0, 0.0, 3.0], [5133.0, 10883.0, 0.0, 4.0], [3239.0, 9441.0, 0.0, 4.0], [3783.0, 10885.0, 0.0, 5.0], [6462.0, 10886.0, 0.0, 6.0], [3272.0, 3428.0, 0.0, 2.0], [2669.0, 2948.0, 0.0, 2.0], [3015.0, 10889.0, 0.0, 3.0], [4197.0, 10890.0, 0.0, 4.0], [4770.0, 10891.0, 0.0, 5.0], [5649.0, 10892.0, 0.0, 6.0], [5717.0, 10893.0, 0.0, 7.0], [5962.0, 10894.0, 0.0, 8.0], [6042.0, 10895.0, 0.0, 9.0], [6371.0, 10896.0, 0.0, 10.0], [2998.0, 10211.0, 0.0, 5.0], [4000.0, 10898.0, 0.0, 6.0], [4140.0, 10899.0, 0.0, 7.0], [5311.0, 10900.0, 0.0, 8.0], [5927.0, 10901.0, 0.0, 9.0], [5961.0, 10902.0, 0.0, 10.0], [6571.0, 10903.0, 0.0, 11.0], [6886.0, 10904.0, 0.0, 12.0], [7684.0, 10905.0, 0.0, 13.0], [7751.0, 10906.0, 0.0, 14.0], [5162.0, 10280.0, 0.0, 6.0], [7263.0, 10908.0, 0.0, 7.0], [7741.0, 10909.0, 0.0, 8.0], [2079.0, 10530.0, 0.0, 39.0], [2090.0, 10911.0, 0.0, 40.0], [2243.0, 10912.0, 0.0, 41.0], [2351.0, 10913.0, 0.0, 42.0], [2371.0, 10914.0, 0.0, 43.0], [2635.0, 10915.0, 0.0, 44.0], [2644.0, 10916.0, 0.0, 45.0], [2713.0, 10917.0, 0.0, 46.0], [2730.0, 10918.0, 0.0, 47.0], [2846.0, 10919.0, 0.0, 48.0], [2867.0, 10920.0, 0.0, 49.0], [2875.0, 10921.0, 0.0, 50.0], [2890.0, 10922.0, 0.0, 51.0], [2983.0, 10923.0, 0.0, 52.0], [3153.0, 10924.0, 0.0, 53.0], [3162.0, 10925.0, 0.0, 54.0], [3209.0, 10926.0, 0.0, 55.0], [3270.0, 10927.0, 0.0, 56.0], [3470.0, 10928.0, 0.0, 57.0], [3521.0, 10929.0, 0.0, 58.0], [3596.0, 10930.0, 0.0, 59.0], [3611.0, 10931.0, 0.0, 60.0], [3643.0, 10932.0, 0.0, 61.0], [3666.0, 10933.0, 0.0, 62.0], [3714.0, 10934.0, 0.0, 63.0], [4119.0, 10935.0, 0.0, 64.0], [4148.0, 10936.0, 0.0, 65.0], [4258.0, 10937.0, 0.0, 66.0], [4262.0, 10938.0, 0.0, 67.0], [4281.0, 10939.0, 0.0, 68.0], [4287.0, 10940.0, 0.0, 69.0], [4329.0, 10941.0, 0.0, 70.0], [4333.0, 10942.0, 0.0, 71.0], [4380.0, 10943.0, 0.0, 72.0], [4397.0, 10944.0, 0.0, 73.0], [4402.0, 10945.0, 0.0, 74.0], [4408.0, 10946.0, 0.0, 75.0], [4582.0, 10947.0, 0.0, 76.0], [4610.0, 10948.0, 0.0, 77.0], [4622.0, 10949.0, 0.0, 78.0], [4703.0, 10950.0, 0.0, 79.0], [4738.0, 10951.0, 0.0, 80.0], [4800.0, 10952.0, 0.0, 81.0], [4822.0, 10953.0, 0.0, 82.0], [4901.0, 10954.0, 0.0, 83.0], [4963.0, 10955.0, 0.0, 84.0], [5111.0, 10956.0, 0.0, 85.0], [5184.0, 10957.0, 0.0, 86.0], [5337.0, 10958.0, 0.0, 87.0], [5346.0, 10959.0, 0.0, 88.0], [5695.0, 10960.0, 0.0, 89.0], [5808.0, 10961.0, 0.0, 90.0], [6126.0, 10962.0, 0.0, 91.0], [6151.0, 10963.0, 0.0, 92.0], [6239.0, 10964.0, 0.0, 93.0], [6242.0, 10965.0, 0.0, 94.0], [6311.0, 10966.0, 0.0, 95.0], [6382.0, 10967.0, 0.0, 96.0], [6488.0, 10968.0, 0.0, 97.0], [6510.0, 10969.0, 0.0, 98.0], [6534.0, 10970.0, 0.0, 99.0], [6742.0, 10971.0, 0.0, 100.0], [7171.0, 10972.0, 0.0, 101.0], [7215.0, 10973.0, 0.0, 102.0], [7551.0, 10974.0, 0.0, 103.0], [7655.0, 10975.0, 0.0, 104.0], [7660.0, 10976.0, 0.0, 105.0], [7799.0, 10977.0, 0.0, 106.0], [2024.0, 10644.0, 0.0, 1063.0], [2026.0, 10979.0, 0.0, 1064.0], [2027.0, 10980.0, 0.0, 1065.0], [2029.0, 10981.0, 0.0, 1066.0], [2031.0, 10982.0, 0.0, 1067.0], [2032.0, 10983.0, 0.0, 1068.0], [2033.0, 10984.0, 0.0, 1069.0], [2034.0, 10985.0, 0.0, 1070.0], [2035.0, 10986.0, 0.0, 1071.0], [2036.0, 10987.0, 0.0, 1072.0], [2037.0, 10988.0, 0.0, 1073.0], [2041.0, 10989.0, 0.0, 1074.0], [2043.0, 10990.0, 0.0, 1075.0], [2047.0, 10991.0, 0.0, 1076.0], [2048.0, 10992.0, 0.0, 1077.0], [2050.0, 10993.0, 0.0, 1078.0], [2051.0, 10994.0, 0.0, 1079.0], [2053.0, 10995.0, 0.0, 1080.0], [2057.0, 10996.0, 0.0, 1081.0], [2058.0, 10997.0, 0.0, 1082.0], [2059.0, 10998.0, 0.0, 1083.0], [2062.0, 10999.0, 0.0, 1084.0], [2065.0, 11000.0, 0.0, 1085.0], [2066.0, 11001.0, 0.0, 1086.0], [2068.0, 11002.0, 0.0, 1087.0], [2069.0, 11003.0, 0.0, 1088.0], [2070.0, 11004.0, 0.0, 1089.0], [2071.0, 11005.0, 0.0, 1090.0], [2072.0, 11006.0, 0.0, 1091.0], [2075.0, 11007.0, 0.0, 1092.0], [2076.0, 11008.0, 0.0, 1093.0], [2077.0, 11009.0, 0.0, 1094.0], [2078.0, 11010.0, 0.0, 1095.0], [2080.0, 11011.0, 0.0, 1096.0], [2082.0, 11012.0, 0.0, 1097.0], [2085.0, 11013.0, 0.0, 1098.0], [2087.0, 11014.0, 0.0, 1099.0], [2093.0, 11015.0, 0.0, 1100.0], [2095.0, 11016.0, 0.0, 1101.0], [2096.0, 11017.0, 0.0, 1102.0], [2097.0, 11018.0, 0.0, 1103.0], [2098.0, 11019.0, 0.0, 1104.0], [2100.0, 11020.0, 0.0, 1105.0], [2102.0, 11021.0, 0.0, 1106.0], [2104.0, 11022.0, 0.0, 1107.0], [2107.0, 11023.0, 0.0, 1108.0], [2110.0, 11024.0, 0.0, 1109.0], [2113.0, 11025.0, 0.0, 1110.0], [2114.0, 11026.0, 0.0, 1111.0], [2117.0, 11027.0, 0.0, 1112.0], [2118.0, 11028.0, 0.0, 1113.0], [2120.0, 11029.0, 0.0, 1114.0], [2121.0, 11030.0, 0.0, 1115.0], [2123.0, 11031.0, 0.0, 1116.0], [2124.0, 11032.0, 0.0, 1117.0], [2125.0, 11033.0, 0.0, 1118.0], [2127.0, 11034.0, 0.0, 1119.0], [2135.0, 11035.0, 0.0, 1120.0], [2137.0, 11036.0, 0.0, 1121.0], [2140.0, 11037.0, 0.0, 1122.0], [2141.0, 11038.0, 0.0, 1123.0], [2146.0, 11039.0, 0.0, 1124.0], [2152.0, 11040.0, 0.0, 1125.0], [2153.0, 11041.0, 0.0, 1126.0], [2158.0, 11042.0, 0.0, 1127.0], [2162.0, 11043.0, 0.0, 1128.0], [2164.0, 11044.0, 0.0, 1129.0], [2165.0, 11045.0, 0.0, 1130.0], [2171.0, 11046.0, 0.0, 1131.0], [2174.0, 11047.0, 0.0, 1132.0], [2176.0, 11048.0, 0.0, 1133.0], [2177.0, 11049.0, 0.0, 1134.0], [2178.0, 11050.0, 0.0, 1135.0], [2179.0, 11051.0, 0.0, 1136.0], [2180.0, 11052.0, 0.0, 1137.0], [2181.0, 11053.0, 0.0, 1138.0], [2182.0, 11054.0, 0.0, 1139.0], [2184.0, 11055.0, 0.0, 1140.0], [2185.0, 11056.0, 0.0, 1141.0], [2188.0, 11057.0, 0.0, 1142.0], [2190.0, 11058.0, 0.0, 1143.0], [2191.0, 11059.0, 0.0, 1144.0], [2192.0, 11060.0, 0.0, 1145.0], [2193.0, 11061.0, 0.0, 1146.0], [2194.0, 11062.0, 0.0, 1147.0], [2199.0, 11063.0, 0.0, 1148.0], [2205.0, 11064.0, 0.0, 1149.0], [2211.0, 11065.0, 0.0, 1150.0], [2212.0, 11066.0, 0.0, 1151.0], [2214.0, 11067.0, 0.0, 1152.0], [2216.0, 11068.0, 0.0, 1153.0], [2219.0, 11069.0, 0.0, 1154.0], [2220.0, 11070.0, 0.0, 1155.0], [2221.0, 11071.0, 0.0, 1156.0], [2222.0, 11072.0, 0.0, 1157.0], [2229.0, 11073.0, 0.0, 1158.0], [2231.0, 11074.0, 0.0, 1159.0], [2235.0, 11075.0, 0.0, 1160.0], [2237.0, 11076.0, 0.0, 1161.0], [2240.0, 11077.0, 0.0, 1162.0], [2241.0, 11078.0, 0.0, 1163.0], [2244.0, 11079.0, 0.0, 1164.0], [2246.0, 11080.0, 0.0, 1165.0], [2247.0, 11081.0, 0.0, 1166.0], [2248.0, 11082.0, 0.0, 1167.0], [2251.0, 11083.0, 0.0, 1168.0], [2253.0, 11084.0, 0.0, 1169.0], [2256.0, 11085.0, 0.0, 1170.0], [2258.0, 11086.0, 0.0, 1171.0], [2259.0, 11087.0, 0.0, 1172.0], [2262.0, 11088.0, 0.0, 1173.0], [2263.0, 11089.0, 0.0, 1174.0], [2269.0, 11090.0, 0.0, 1175.0], [2270.0, 11091.0, 0.0, 1176.0], [2271.0, 11092.0, 0.0, 1177.0], [2272.0, 11093.0, 0.0, 1178.0], [2275.0, 11094.0, 0.0, 1179.0], [2280.0, 11095.0, 0.0, 1180.0], [2281.0, 11096.0, 0.0, 1181.0], [2282.0, 11097.0, 0.0, 1182.0], [2283.0, 11098.0, 0.0, 1183.0], [2284.0, 11099.0, 0.0, 1184.0], [2285.0, 11100.0, 0.0, 1185.0], [2292.0, 11101.0, 0.0, 1186.0], [2293.0, 11102.0, 0.0, 1187.0], [2295.0, 11103.0, 0.0, 1188.0], [2296.0, 11104.0, 0.0, 1189.0], [2305.0, 11105.0, 0.0, 1190.0], [2306.0, 11106.0, 0.0, 1191.0], [2310.0, 11107.0, 0.0, 1192.0], [2312.0, 11108.0, 0.0, 1193.0], [2314.0, 11109.0, 0.0, 1194.0], [2318.0, 11110.0, 0.0, 1195.0], [2320.0, 11111.0, 0.0, 1196.0], [2322.0, 11112.0, 0.0, 1197.0], [2323.0, 11113.0, 0.0, 1198.0], [2324.0, 11114.0, 0.0, 1199.0], [2326.0, 11115.0, 0.0, 1200.0], [2327.0, 11116.0, 0.0, 1201.0], [2328.0, 11117.0, 0.0, 1202.0], [2333.0, 11118.0, 0.0, 1203.0], [2334.0, 11119.0, 0.0, 1204.0], [2338.0, 11120.0, 0.0, 1205.0], [2342.0, 11121.0, 0.0, 1206.0], [2343.0, 11122.0, 0.0, 1207.0], [2344.0, 11123.0, 0.0, 1208.0], [2345.0, 11124.0, 0.0, 1209.0], [2348.0, 11125.0, 0.0, 1210.0], [2353.0, 11126.0, 0.0, 1211.0], [2354.0, 11127.0, 0.0, 1212.0], [2356.0, 11128.0, 0.0, 1213.0], [2359.0, 11129.0, 0.0, 1214.0], [2368.0, 11130.0, 0.0, 1215.0], [2369.0, 11131.0, 0.0, 1216.0], [2370.0, 11132.0, 0.0, 1217.0], [2372.0, 11133.0, 0.0, 1218.0], [2374.0, 11134.0, 0.0, 1219.0], [2376.0, 11135.0, 0.0, 1220.0], [2378.0, 11136.0, 0.0, 1221.0], [2383.0, 11137.0, 0.0, 1222.0], [2384.0, 11138.0, 0.0, 1223.0], [2388.0, 11139.0, 0.0, 1224.0], [2389.0, 11140.0, 0.0, 1225.0], [2390.0, 11141.0, 0.0, 1226.0], [2391.0, 11142.0, 0.0, 1227.0], [2393.0, 11143.0, 0.0, 1228.0], [2394.0, 11144.0, 0.0, 1229.0], [2395.0, 11145.0, 0.0, 1230.0], [2401.0, 11146.0, 0.0, 1231.0], [2402.0, 11147.0, 0.0, 1232.0], [2403.0, 11148.0, 0.0, 1233.0], [2405.0, 11149.0, 0.0, 1234.0], [2406.0, 11150.0, 0.0, 1235.0], [2407.0, 11151.0, 0.0, 1236.0], [2408.0, 11152.0, 0.0, 1237.0], [2409.0, 11153.0, 0.0, 1238.0], [2411.0, 11154.0, 0.0, 1239.0], [2412.0, 11155.0, 0.0, 1240.0], [2413.0, 11156.0, 0.0, 1241.0], [2415.0, 11157.0, 0.0, 1242.0], [2416.0, 11158.0, 0.0, 1243.0], [2417.0, 11159.0, 0.0, 1244.0], [2421.0, 11160.0, 0.0, 1245.0], [2423.0, 11161.0, 0.0, 1246.0], [2424.0, 11162.0, 0.0, 1247.0], [2425.0, 11163.0, 0.0, 1248.0], [2427.0, 11164.0, 0.0, 1249.0], [2429.0, 11165.0, 0.0, 1250.0], [2431.0, 11166.0, 0.0, 1251.0], [2433.0, 11167.0, 0.0, 1252.0], [2434.0, 11168.0, 0.0, 1253.0], [2436.0, 11169.0, 0.0, 1254.0], [2438.0, 11170.0, 0.0, 1255.0], [2439.0, 11171.0, 0.0, 1256.0], [2440.0, 11172.0, 0.0, 1257.0], [2443.0, 11173.0, 0.0, 1258.0], [2447.0, 11174.0, 0.0, 1259.0], [2448.0, 11175.0, 0.0, 1260.0], [2450.0, 11176.0, 0.0, 1261.0], [2453.0, 11177.0, 0.0, 1262.0], [2455.0, 11178.0, 0.0, 1263.0], [2458.0, 11179.0, 0.0, 1264.0], [2460.0, 11180.0, 0.0, 1265.0], [2462.0, 11181.0, 0.0, 1266.0], [2463.0, 11182.0, 0.0, 1267.0], [2464.0, 11183.0, 0.0, 1268.0], [2465.0, 11184.0, 0.0, 1269.0], [2466.0, 11185.0, 0.0, 1270.0], [2468.0, 11186.0, 0.0, 1271.0], [2470.0, 11187.0, 0.0, 1272.0], [2473.0, 11188.0, 0.0, 1273.0], [2474.0, 11189.0, 0.0, 1274.0], [2475.0, 11190.0, 0.0, 1275.0], [2476.0, 11191.0, 0.0, 1276.0], [2479.0, 11192.0, 0.0, 1277.0], [2480.0, 11193.0, 0.0, 1278.0], [2481.0, 11194.0, 0.0, 1279.0], [2485.0, 11195.0, 0.0, 1280.0], [2491.0, 11196.0, 0.0, 1281.0], [2493.0, 11197.0, 0.0, 1282.0], [2494.0, 11198.0, 0.0, 1283.0], [2495.0, 11199.0, 0.0, 1284.0], [2497.0, 11200.0, 0.0, 1285.0], [2500.0, 11201.0, 0.0, 1286.0], [2501.0, 11202.0, 0.0, 1287.0], [2504.0, 11203.0, 0.0, 1288.0], [2506.0, 11204.0, 0.0, 1289.0], [2508.0, 11205.0, 0.0, 1290.0], [2511.0, 11206.0, 0.0, 1291.0], [2513.0, 11207.0, 0.0, 1292.0], [2516.0, 11208.0, 0.0, 1293.0], [2518.0, 11209.0, 0.0, 1294.0], [2519.0, 11210.0, 0.0, 1295.0], [2521.0, 11211.0, 0.0, 1296.0], [2526.0, 11212.0, 0.0, 1297.0], [2529.0, 11213.0, 0.0, 1298.0], [2531.0, 11214.0, 0.0, 1299.0], [2532.0, 11215.0, 0.0, 1300.0], [2533.0, 11216.0, 0.0, 1301.0], [2535.0, 11217.0, 0.0, 1302.0], [2536.0, 11218.0, 0.0, 1303.0], [2541.0, 11219.0, 0.0, 1304.0], [2543.0, 11220.0, 0.0, 1305.0], [2548.0, 11221.0, 0.0, 1306.0], [2551.0, 11222.0, 0.0, 1307.0], [2555.0, 11223.0, 0.0, 1308.0], [2556.0, 11224.0, 0.0, 1309.0], [2557.0, 11225.0, 0.0, 1310.0], [2558.0, 11226.0, 0.0, 1311.0], [2560.0, 11227.0, 0.0, 1312.0], [2561.0, 11228.0, 0.0, 1313.0], [2564.0, 11229.0, 0.0, 1314.0], [2567.0, 11230.0, 0.0, 1315.0], [2568.0, 11231.0, 0.0, 1316.0], [2569.0, 11232.0, 0.0, 1317.0], [2570.0, 11233.0, 0.0, 1318.0], [2571.0, 11234.0, 0.0, 1319.0], [2572.0, 11235.0, 0.0, 1320.0], [2574.0, 11236.0, 0.0, 1321.0], [2575.0, 11237.0, 0.0, 1322.0], [2576.0, 11238.0, 0.0, 1323.0], [2579.0, 11239.0, 0.0, 1324.0], [2580.0, 11240.0, 0.0, 1325.0], [2583.0, 11241.0, 0.0, 1326.0], [2584.0, 11242.0, 0.0, 1327.0], [2586.0, 11243.0, 0.0, 1328.0], [2587.0, 11244.0, 0.0, 1329.0], [2589.0, 11245.0, 0.0, 1330.0], [2590.0, 11246.0, 0.0, 1331.0], [2593.0, 11247.0, 0.0, 1332.0], [2594.0, 11248.0, 0.0, 1333.0], [2598.0, 11249.0, 0.0, 1334.0], [2601.0, 11250.0, 0.0, 1335.0], [2602.0, 11251.0, 0.0, 1336.0], [2603.0, 11252.0, 0.0, 1337.0], [2607.0, 11253.0, 0.0, 1338.0], [2608.0, 11254.0, 0.0, 1339.0], [2610.0, 11255.0, 0.0, 1340.0], [2611.0, 11256.0, 0.0, 1341.0], [2612.0, 11257.0, 0.0, 1342.0], [2613.0, 11258.0, 0.0, 1343.0], [2614.0, 11259.0, 0.0, 1344.0], [2617.0, 11260.0, 0.0, 1345.0], [2623.0, 11261.0, 0.0, 1346.0], [2624.0, 11262.0, 0.0, 1347.0], [2625.0, 11263.0, 0.0, 1348.0], [2626.0, 11264.0, 0.0, 1349.0], [2627.0, 11265.0, 0.0, 1350.0], [2630.0, 11266.0, 0.0, 1351.0], [2631.0, 11267.0, 0.0, 1352.0], [2636.0, 11268.0, 0.0, 1353.0], [2641.0, 11269.0, 0.0, 1354.0], [2645.0, 11270.0, 0.0, 1355.0], [2646.0, 11271.0, 0.0, 1356.0], [2648.0, 11272.0, 0.0, 1357.0], [2651.0, 11273.0, 0.0, 1358.0], [2652.0, 11274.0, 0.0, 1359.0], [2653.0, 11275.0, 0.0, 1360.0], [2655.0, 11276.0, 0.0, 1361.0], [2663.0, 11277.0, 0.0, 1362.0], [2672.0, 11278.0, 0.0, 1363.0], [2673.0, 11279.0, 0.0, 1364.0], [2676.0, 11280.0, 0.0, 1365.0], [2678.0, 11281.0, 0.0, 1366.0], [2679.0, 11282.0, 0.0, 1367.0], [2682.0, 11283.0, 0.0, 1368.0], [2683.0, 11284.0, 0.0, 1369.0], [2684.0, 11285.0, 0.0, 1370.0], [2686.0, 11286.0, 0.0, 1371.0], [2688.0, 11287.0, 0.0, 1372.0], [2690.0, 11288.0, 0.0, 1373.0], [2692.0, 11289.0, 0.0, 1374.0], [2693.0, 11290.0, 0.0, 1375.0], [2694.0, 11291.0, 0.0, 1376.0], [2696.0, 11292.0, 0.0, 1377.0], [2702.0, 11293.0, 0.0, 1378.0], [2703.0, 11294.0, 0.0, 1379.0], [2705.0, 11295.0, 0.0, 1380.0], [2706.0, 11296.0, 0.0, 1381.0], [2707.0, 11297.0, 0.0, 1382.0], [2709.0, 11298.0, 0.0, 1383.0], [2712.0, 11299.0, 0.0, 1384.0], [2714.0, 11300.0, 0.0, 1385.0], [2716.0, 11301.0, 0.0, 1386.0], [2717.0, 11302.0, 0.0, 1387.0], [2719.0, 11303.0, 0.0, 1388.0], [2720.0, 11304.0, 0.0, 1389.0], [2722.0, 11305.0, 0.0, 1390.0], [2723.0, 11306.0, 0.0, 1391.0], [2725.0, 11307.0, 0.0, 1392.0], [2727.0, 11308.0, 0.0, 1393.0], [2728.0, 11309.0, 0.0, 1394.0], [2729.0, 11310.0, 0.0, 1395.0], [2731.0, 11311.0, 0.0, 1396.0], [2733.0, 11312.0, 0.0, 1397.0], [2734.0, 11313.0, 0.0, 1398.0], [2736.0, 11314.0, 0.0, 1399.0], [2739.0, 11315.0, 0.0, 1400.0], [2740.0, 11316.0, 0.0, 1401.0], [2741.0, 11317.0, 0.0, 1402.0], [2742.0, 11318.0, 0.0, 1403.0], [2744.0, 11319.0, 0.0, 1404.0], [2745.0, 11320.0, 0.0, 1405.0], [2747.0, 11321.0, 0.0, 1406.0], [2748.0, 11322.0, 0.0, 1407.0], [2751.0, 11323.0, 0.0, 1408.0], [2752.0, 11324.0, 0.0, 1409.0], [2753.0, 11325.0, 0.0, 1410.0], [2754.0, 11326.0, 0.0, 1411.0], [2756.0, 11327.0, 0.0, 1412.0], [2757.0, 11328.0, 0.0, 1413.0], [2758.0, 11329.0, 0.0, 1414.0], [2760.0, 11330.0, 0.0, 1415.0], [2761.0, 11331.0, 0.0, 1416.0], [2764.0, 11332.0, 0.0, 1417.0], [2767.0, 11333.0, 0.0, 1418.0], [2770.0, 11334.0, 0.0, 1419.0], [2772.0, 11335.0, 0.0, 1420.0], [2773.0, 11336.0, 0.0, 1421.0], [2774.0, 11337.0, 0.0, 1422.0], [2776.0, 11338.0, 0.0, 1423.0], [2780.0, 11339.0, 0.0, 1424.0], [2782.0, 11340.0, 0.0, 1425.0], [2784.0, 11341.0, 0.0, 1426.0], [2785.0, 11342.0, 0.0, 1427.0], [2788.0, 11343.0, 0.0, 1428.0], [2789.0, 11344.0, 0.0, 1429.0], [2791.0, 11345.0, 0.0, 1430.0], [2792.0, 11346.0, 0.0, 1431.0], [2793.0, 11347.0, 0.0, 1432.0], [2794.0, 11348.0, 0.0, 1433.0], [2795.0, 11349.0, 0.0, 1434.0], [2798.0, 11350.0, 0.0, 1435.0], [2800.0, 11351.0, 0.0, 1436.0], [2801.0, 11352.0, 0.0, 1437.0], [2802.0, 11353.0, 0.0, 1438.0], [2803.0, 11354.0, 0.0, 1439.0], [2807.0, 11355.0, 0.0, 1440.0], [2810.0, 11356.0, 0.0, 1441.0], [2812.0, 11357.0, 0.0, 1442.0], [2814.0, 11358.0, 0.0, 1443.0], [2817.0, 11359.0, 0.0, 1444.0], [2823.0, 11360.0, 0.0, 1445.0], [2825.0, 11361.0, 0.0, 1446.0], [2826.0, 11362.0, 0.0, 1447.0], [2827.0, 11363.0, 0.0, 1448.0], [2828.0, 11364.0, 0.0, 1449.0], [2829.0, 11365.0, 0.0, 1450.0], [2831.0, 11366.0, 0.0, 1451.0], [2834.0, 11367.0, 0.0, 1452.0], [2835.0, 11368.0, 0.0, 1453.0], [2838.0, 11369.0, 0.0, 1454.0], [2839.0, 11370.0, 0.0, 1455.0], [2842.0, 11371.0, 0.0, 1456.0], [2843.0, 11372.0, 0.0, 1457.0], [2845.0, 11373.0, 0.0, 1458.0], [2847.0, 11374.0, 0.0, 1459.0], [2850.0, 11375.0, 0.0, 1460.0], [2851.0, 11376.0, 0.0, 1461.0], [2855.0, 11377.0, 0.0, 1462.0], [2856.0, 11378.0, 0.0, 1463.0], [2864.0, 11379.0, 0.0, 1464.0], [2866.0, 11380.0, 0.0, 1465.0], [2869.0, 11381.0, 0.0, 1466.0], [2872.0, 11382.0, 0.0, 1467.0], [2877.0, 11383.0, 0.0, 1468.0], [2882.0, 11384.0, 0.0, 1469.0], [2884.0, 11385.0, 0.0, 1470.0], [2885.0, 11386.0, 0.0, 1471.0], [2886.0, 11387.0, 0.0, 1472.0], [2887.0, 11388.0, 0.0, 1473.0], [2888.0, 11389.0, 0.0, 1474.0], [2891.0, 11390.0, 0.0, 1475.0], [2893.0, 11391.0, 0.0, 1476.0], [2894.0, 11392.0, 0.0, 1477.0], [2897.0, 11393.0, 0.0, 1478.0], [2898.0, 11394.0, 0.0, 1479.0], [2901.0, 11395.0, 0.0, 1480.0], [2903.0, 11396.0, 0.0, 1481.0], [2904.0, 11397.0, 0.0, 1482.0], [2905.0, 11398.0, 0.0, 1483.0], [2906.0, 11399.0, 0.0, 1484.0], [2907.0, 11400.0, 0.0, 1485.0], [2910.0, 11401.0, 0.0, 1486.0], [2911.0, 11402.0, 0.0, 1487.0], [2914.0, 11403.0, 0.0, 1488.0], [2918.0, 11404.0, 0.0, 1489.0], [2919.0, 11405.0, 0.0, 1490.0], [2920.0, 11406.0, 0.0, 1491.0], [2921.0, 11407.0, 0.0, 1492.0], [2923.0, 11408.0, 0.0, 1493.0], [2924.0, 11409.0, 0.0, 1494.0], [2926.0, 11410.0, 0.0, 1495.0], [2928.0, 11411.0, 0.0, 1496.0], [2929.0, 11412.0, 0.0, 1497.0], [2931.0, 11413.0, 0.0, 1498.0], [2933.0, 11414.0, 0.0, 1499.0], [2934.0, 11415.0, 0.0, 1500.0], [2935.0, 11416.0, 0.0, 1501.0], [2940.0, 11417.0, 0.0, 1502.0], [2941.0, 11418.0, 0.0, 1503.0], [2944.0, 11419.0, 0.0, 1504.0], [2946.0, 11420.0, 0.0, 1505.0], [2947.0, 11421.0, 0.0, 1506.0], [2949.0, 11422.0, 0.0, 1507.0], [2950.0, 11423.0, 0.0, 1508.0], [2952.0, 11424.0, 0.0, 1509.0], [2953.0, 11425.0, 0.0, 1510.0], [2956.0, 11426.0, 0.0, 1511.0], [2958.0, 11427.0, 0.0, 1512.0], [2959.0, 11428.0, 0.0, 1513.0], [2960.0, 11429.0, 0.0, 1514.0], [2961.0, 11430.0, 0.0, 1515.0], [2964.0, 11431.0, 0.0, 1516.0], [2965.0, 11432.0, 0.0, 1517.0], [2967.0, 11433.0, 0.0, 1518.0], [2968.0, 11434.0, 0.0, 1519.0], [2970.0, 11435.0, 0.0, 1520.0], [2972.0, 11436.0, 0.0, 1521.0], [2976.0, 11437.0, 0.0, 1522.0], [2978.0, 11438.0, 0.0, 1523.0], [2979.0, 11439.0, 0.0, 1524.0], [2980.0, 11440.0, 0.0, 1525.0], [2981.0, 11441.0, 0.0, 1526.0], [2985.0, 11442.0, 0.0, 1527.0], [2988.0, 11443.0, 0.0, 1528.0], [2989.0, 11444.0, 0.0, 1529.0], [2991.0, 11445.0, 0.0, 1530.0], [2993.0, 11446.0, 0.0, 1531.0], [2994.0, 11447.0, 0.0, 1532.0], [2995.0, 11448.0, 0.0, 1533.0], [3003.0, 11449.0, 0.0, 1534.0], [3006.0, 11450.0, 0.0, 1535.0], [3009.0, 11451.0, 0.0, 1536.0], [3010.0, 11452.0, 0.0, 1537.0], [3011.0, 11453.0, 0.0, 1538.0], [3014.0, 11454.0, 0.0, 1539.0], [3016.0, 11455.0, 0.0, 1540.0], [3017.0, 11456.0, 0.0, 1541.0], [3019.0, 11457.0, 0.0, 1542.0], [3020.0, 11458.0, 0.0, 1543.0], [3022.0, 11459.0, 0.0, 1544.0], [3028.0, 11460.0, 0.0, 1545.0], [3029.0, 11461.0, 0.0, 1546.0], [3030.0, 11462.0, 0.0, 1547.0], [3031.0, 11463.0, 0.0, 1548.0], [3033.0, 11464.0, 0.0, 1549.0], [3036.0, 11465.0, 0.0, 1550.0], [3038.0, 11466.0, 0.0, 1551.0], [3039.0, 11467.0, 0.0, 1552.0], [3040.0, 11468.0, 0.0, 1553.0], [3041.0, 11469.0, 0.0, 1554.0], [3042.0, 11470.0, 0.0, 1555.0], [3043.0, 11471.0, 0.0, 1556.0], [3045.0, 11472.0, 0.0, 1557.0], [3047.0, 11473.0, 0.0, 1558.0], [3050.0, 11474.0, 0.0, 1559.0], [3051.0, 11475.0, 0.0, 1560.0], [3052.0, 11476.0, 0.0, 1561.0], [3053.0, 11477.0, 0.0, 1562.0], [3055.0, 11478.0, 0.0, 1563.0], [3056.0, 11479.0, 0.0, 1564.0], [3058.0, 11480.0, 0.0, 1565.0], [3060.0, 11481.0, 0.0, 1566.0], [3065.0, 11482.0, 0.0, 1567.0], [3067.0, 11483.0, 0.0, 1568.0], [3069.0, 11484.0, 0.0, 1569.0], [3071.0, 11485.0, 0.0, 1570.0], [3072.0, 11486.0, 0.0, 1571.0], [3074.0, 11487.0, 0.0, 1572.0], [3075.0, 11488.0, 0.0, 1573.0], [3076.0, 11489.0, 0.0, 1574.0], [3077.0, 11490.0, 0.0, 1575.0], [3079.0, 11491.0, 0.0, 1576.0], [3080.0, 11492.0, 0.0, 1577.0], [3082.0, 11493.0, 0.0, 1578.0], [3084.0, 11494.0, 0.0, 1579.0], [3085.0, 11495.0, 0.0, 1580.0], [3086.0, 11496.0, 0.0, 1581.0], [3087.0, 11497.0, 0.0, 1582.0], [3092.0, 11498.0, 0.0, 1583.0], [3093.0, 11499.0, 0.0, 1584.0], [3094.0, 11500.0, 0.0, 1585.0], [3095.0, 11501.0, 0.0, 1586.0], [3098.0, 11502.0, 0.0, 1587.0], [3100.0, 11503.0, 0.0, 1588.0], [3101.0, 11504.0, 0.0, 1589.0], [3103.0, 11505.0, 0.0, 1590.0], [3104.0, 11506.0, 0.0, 1591.0], [3105.0, 11507.0, 0.0, 1592.0], [3108.0, 11508.0, 0.0, 1593.0], [3109.0, 11509.0, 0.0, 1594.0], [3110.0, 11510.0, 0.0, 1595.0], [3113.0, 11511.0, 0.0, 1596.0], [3114.0, 11512.0, 0.0, 1597.0], [3116.0, 11513.0, 0.0, 1598.0], [3117.0, 11514.0, 0.0, 1599.0], [3118.0, 11515.0, 0.0, 1600.0], [3120.0, 11516.0, 0.0, 1601.0], [3121.0, 11517.0, 0.0, 1602.0], [3122.0, 11518.0, 0.0, 1603.0], [3123.0, 11519.0, 0.0, 1604.0], [3126.0, 11520.0, 0.0, 1605.0], [3128.0, 11521.0, 0.0, 1606.0], [3129.0, 11522.0, 0.0, 1607.0], [3132.0, 11523.0, 0.0, 1608.0], [3133.0, 11524.0, 0.0, 1609.0], [3138.0, 11525.0, 0.0, 1610.0], [3144.0, 11526.0, 0.0, 1611.0], [3145.0, 11527.0, 0.0, 1612.0], [3146.0, 11528.0, 0.0, 1613.0], [3147.0, 11529.0, 0.0, 1614.0], [3148.0, 11530.0, 0.0, 1615.0], [3149.0, 11531.0, 0.0, 1616.0], [3151.0, 11532.0, 0.0, 1617.0], [3152.0, 11533.0, 0.0, 1618.0], [3155.0, 11534.0, 0.0, 1619.0], [3156.0, 11535.0, 0.0, 1620.0], [3157.0, 11536.0, 0.0, 1621.0], [3158.0, 11537.0, 0.0, 1622.0], [3159.0, 11538.0, 0.0, 1623.0], [3160.0, 11539.0, 0.0, 1624.0], [3164.0, 11540.0, 0.0, 1625.0], [3165.0, 11541.0, 0.0, 1626.0], [3166.0, 11542.0, 0.0, 1627.0], [3173.0, 11543.0, 0.0, 1628.0], [3174.0, 11544.0, 0.0, 1629.0], [3178.0, 11545.0, 0.0, 1630.0], [3182.0, 11546.0, 0.0, 1631.0], [3183.0, 11547.0, 0.0, 1632.0], [3186.0, 11548.0, 0.0, 1633.0], [3188.0, 11549.0, 0.0, 1634.0], [3190.0, 11550.0, 0.0, 1635.0], [3191.0, 11551.0, 0.0, 1636.0], [3192.0, 11552.0, 0.0, 1637.0], [3193.0, 11553.0, 0.0, 1638.0], [3194.0, 11554.0, 0.0, 1639.0], [3197.0, 11555.0, 0.0, 1640.0], [3199.0, 11556.0, 0.0, 1641.0], [3203.0, 11557.0, 0.0, 1642.0], [3204.0, 11558.0, 0.0, 1643.0], [3205.0, 11559.0, 0.0, 1644.0], [3210.0, 11560.0, 0.0, 1645.0], [3212.0, 11561.0, 0.0, 1646.0], [3213.0, 11562.0, 0.0, 1647.0], [3214.0, 11563.0, 0.0, 1648.0], [3217.0, 11564.0, 0.0, 1649.0], [3218.0, 11565.0, 0.0, 1650.0], [3219.0, 11566.0, 0.0, 1651.0], [3224.0, 11567.0, 0.0, 1652.0], [3225.0, 11568.0, 0.0, 1653.0], [3228.0, 11569.0, 0.0, 1654.0], [3229.0, 11570.0, 0.0, 1655.0], [3231.0, 11571.0, 0.0, 1656.0], [3235.0, 11572.0, 0.0, 1657.0], [3236.0, 11573.0, 0.0, 1658.0], [3238.0, 11574.0, 0.0, 1659.0], [3241.0, 11575.0, 0.0, 1660.0], [3243.0, 11576.0, 0.0, 1661.0], [3244.0, 11577.0, 0.0, 1662.0], [3246.0, 11578.0, 0.0, 1663.0], [3248.0, 11579.0, 0.0, 1664.0], [3253.0, 11580.0, 0.0, 1665.0], [3254.0, 11581.0, 0.0, 1666.0], [3255.0, 11582.0, 0.0, 1667.0], [3258.0, 11583.0, 0.0, 1668.0], [3259.0, 11584.0, 0.0, 1669.0], [3260.0, 11585.0, 0.0, 1670.0], [3261.0, 11586.0, 0.0, 1671.0], [3262.0, 11587.0, 0.0, 1672.0], [3263.0, 11588.0, 0.0, 1673.0], [3264.0, 11589.0, 0.0, 1674.0], [3266.0, 11590.0, 0.0, 1675.0], [3267.0, 11591.0, 0.0, 1676.0], [3268.0, 11592.0, 0.0, 1677.0], [3275.0, 11593.0, 0.0, 1678.0], [3276.0, 11594.0, 0.0, 1679.0], [3278.0, 11595.0, 0.0, 1680.0], [3280.0, 11596.0, 0.0, 1681.0], [3281.0, 11597.0, 0.0, 1682.0], [3282.0, 11598.0, 0.0, 1683.0], [3283.0, 11599.0, 0.0, 1684.0], [3284.0, 11600.0, 0.0, 1685.0], [3288.0, 11601.0, 0.0, 1686.0], [3289.0, 11602.0, 0.0, 1687.0], [3290.0, 11603.0, 0.0, 1688.0], [3291.0, 11604.0, 0.0, 1689.0], [3293.0, 11605.0, 0.0, 1690.0], [3294.0, 11606.0, 0.0, 1691.0], [3296.0, 11607.0, 0.0, 1692.0], [3297.0, 11608.0, 0.0, 1693.0], [3298.0, 11609.0, 0.0, 1694.0], [3301.0, 11610.0, 0.0, 1695.0], [3303.0, 11611.0, 0.0, 1696.0], [3304.0, 11612.0, 0.0, 1697.0], [3305.0, 11613.0, 0.0, 1698.0], [3306.0, 11614.0, 0.0, 1699.0], [3308.0, 11615.0, 0.0, 1700.0], [3311.0, 11616.0, 0.0, 1701.0], [3313.0, 11617.0, 0.0, 1702.0], [3316.0, 11618.0, 0.0, 1703.0], [3318.0, 11619.0, 0.0, 1704.0], [3319.0, 11620.0, 0.0, 1705.0], [3321.0, 11621.0, 0.0, 1706.0], [3322.0, 11622.0, 0.0, 1707.0], [3323.0, 11623.0, 0.0, 1708.0], [3324.0, 11624.0, 0.0, 1709.0], [3327.0, 11625.0, 0.0, 1710.0], [3328.0, 11626.0, 0.0, 1711.0], [3329.0, 11627.0, 0.0, 1712.0], [3330.0, 11628.0, 0.0, 1713.0], [3331.0, 11629.0, 0.0, 1714.0], [3338.0, 11630.0, 0.0, 1715.0], [3339.0, 11631.0, 0.0, 1716.0], [3340.0, 11632.0, 0.0, 1717.0], [3344.0, 11633.0, 0.0, 1718.0], [3346.0, 11634.0, 0.0, 1719.0], [3347.0, 11635.0, 0.0, 1720.0], [3348.0, 11636.0, 0.0, 1721.0], [3352.0, 11637.0, 0.0, 1722.0], [3354.0, 11638.0, 0.0, 1723.0], [3356.0, 11639.0, 0.0, 1724.0], [3358.0, 11640.0, 0.0, 1725.0], [3361.0, 11641.0, 0.0, 1726.0], [3362.0, 11642.0, 0.0, 1727.0], [3363.0, 11643.0, 0.0, 1728.0], [3365.0, 11644.0, 0.0, 1729.0], [3370.0, 11645.0, 0.0, 1730.0], [3371.0, 11646.0, 0.0, 1731.0], [3372.0, 11647.0, 0.0, 1732.0], [3373.0, 11648.0, 0.0, 1733.0], [3376.0, 11649.0, 0.0, 1734.0], [3383.0, 11650.0, 0.0, 1735.0], [3386.0, 11651.0, 0.0, 1736.0], [3388.0, 11652.0, 0.0, 1737.0], [3390.0, 11653.0, 0.0, 1738.0], [3391.0, 11654.0, 0.0, 1739.0], [3394.0, 11655.0, 0.0, 1740.0], [3395.0, 11656.0, 0.0, 1741.0], [3396.0, 11657.0, 0.0, 1742.0], [3403.0, 11658.0, 0.0, 1743.0], [3405.0, 11659.0, 0.0, 1744.0], [3406.0, 11660.0, 0.0, 1745.0], [3407.0, 11661.0, 0.0, 1746.0], [3413.0, 11662.0, 0.0, 1747.0], [3415.0, 11663.0, 0.0, 1748.0], [3416.0, 11664.0, 0.0, 1749.0], [3417.0, 11665.0, 0.0, 1750.0], [3418.0, 11666.0, 0.0, 1751.0], [3420.0, 11667.0, 0.0, 1752.0], [3421.0, 11668.0, 0.0, 1753.0], [3422.0, 11669.0, 0.0, 1754.0], [3423.0, 11670.0, 0.0, 1755.0], [3427.0, 11671.0, 0.0, 1756.0], [3430.0, 11672.0, 0.0, 1757.0], [3431.0, 11673.0, 0.0, 1758.0], [3435.0, 11674.0, 0.0, 1759.0], [3436.0, 11675.0, 0.0, 1760.0], [3438.0, 11676.0, 0.0, 1761.0], [3439.0, 11677.0, 0.0, 1762.0], [3441.0, 11678.0, 0.0, 1763.0], [3442.0, 11679.0, 0.0, 1764.0], [3443.0, 11680.0, 0.0, 1765.0], [3444.0, 11681.0, 0.0, 1766.0], [3447.0, 11682.0, 0.0, 1767.0], [3449.0, 11683.0, 0.0, 1768.0], [3450.0, 11684.0, 0.0, 1769.0], [3451.0, 11685.0, 0.0, 1770.0], [3452.0, 11686.0, 0.0, 1771.0], [3455.0, 11687.0, 0.0, 1772.0], [3456.0, 11688.0, 0.0, 1773.0], [3458.0, 11689.0, 0.0, 1774.0], [3464.0, 11690.0, 0.0, 1775.0], [3465.0, 11691.0, 0.0, 1776.0], [3467.0, 11692.0, 0.0, 1777.0], [3471.0, 11693.0, 0.0, 1778.0], [3472.0, 11694.0, 0.0, 1779.0], [3473.0, 11695.0, 0.0, 1780.0], [3474.0, 11696.0, 0.0, 1781.0], [3475.0, 11697.0, 0.0, 1782.0], [3481.0, 11698.0, 0.0, 1783.0], [3484.0, 11699.0, 0.0, 1784.0], [3487.0, 11700.0, 0.0, 1785.0], [3489.0, 11701.0, 0.0, 1786.0], [3490.0, 11702.0, 0.0, 1787.0], [3495.0, 11703.0, 0.0, 1788.0], [3497.0, 11704.0, 0.0, 1789.0], [3502.0, 11705.0, 0.0, 1790.0], [3506.0, 11706.0, 0.0, 1791.0], [3507.0, 11707.0, 0.0, 1792.0], [3509.0, 11708.0, 0.0, 1793.0], [3512.0, 11709.0, 0.0, 1794.0], [3516.0, 11710.0, 0.0, 1795.0], [3519.0, 11711.0, 0.0, 1796.0], [3523.0, 11712.0, 0.0, 1797.0], [3524.0, 11713.0, 0.0, 1798.0], [3526.0, 11714.0, 0.0, 1799.0], [3529.0, 11715.0, 0.0, 1800.0], [3530.0, 11716.0, 0.0, 1801.0], [3531.0, 11717.0, 0.0, 1802.0], [3533.0, 11718.0, 0.0, 1803.0], [3534.0, 11719.0, 0.0, 1804.0], [3535.0, 11720.0, 0.0, 1805.0], [3536.0, 11721.0, 0.0, 1806.0], [3541.0, 11722.0, 0.0, 1807.0], [3542.0, 11723.0, 0.0, 1808.0], [3544.0, 11724.0, 0.0, 1809.0], [3545.0, 11725.0, 0.0, 1810.0], [3546.0, 11726.0, 0.0, 1811.0], [3548.0, 11727.0, 0.0, 1812.0], [3549.0, 11728.0, 0.0, 1813.0], [3550.0, 11729.0, 0.0, 1814.0], [3552.0, 11730.0, 0.0, 1815.0], [3553.0, 11731.0, 0.0, 1816.0], [3557.0, 11732.0, 0.0, 1817.0], [3558.0, 11733.0, 0.0, 1818.0], [3561.0, 11734.0, 0.0, 1819.0], [3562.0, 11735.0, 0.0, 1820.0], [3563.0, 11736.0, 0.0, 1821.0], [3564.0, 11737.0, 0.0, 1822.0], [3567.0, 11738.0, 0.0, 1823.0], [3568.0, 11739.0, 0.0, 1824.0], [3569.0, 11740.0, 0.0, 1825.0], [3570.0, 11741.0, 0.0, 1826.0], [3573.0, 11742.0, 0.0, 1827.0], [3574.0, 11743.0, 0.0, 1828.0], [3575.0, 11744.0, 0.0, 1829.0], [3577.0, 11745.0, 0.0, 1830.0], [3578.0, 11746.0, 0.0, 1831.0], [3579.0, 11747.0, 0.0, 1832.0], [3580.0, 11748.0, 0.0, 1833.0], [3581.0, 11749.0, 0.0, 1834.0], [3585.0, 11750.0, 0.0, 1835.0], [3587.0, 11751.0, 0.0, 1836.0], [3589.0, 11752.0, 0.0, 1837.0], [3591.0, 11753.0, 0.0, 1838.0], [3593.0, 11754.0, 0.0, 1839.0], [3594.0, 11755.0, 0.0, 1840.0], [3597.0, 11756.0, 0.0, 1841.0], [3598.0, 11757.0, 0.0, 1842.0], [3600.0, 11758.0, 0.0, 1843.0], [3602.0, 11759.0, 0.0, 1844.0], [3603.0, 11760.0, 0.0, 1845.0], [3608.0, 11761.0, 0.0, 1846.0], [3610.0, 11762.0, 0.0, 1847.0], [3613.0, 11763.0, 0.0, 1848.0], [3615.0, 11764.0, 0.0, 1849.0], [3616.0, 11765.0, 0.0, 1850.0], [3619.0, 11766.0, 0.0, 1851.0], [3620.0, 11767.0, 0.0, 1852.0], [3621.0, 11768.0, 0.0, 1853.0], [3623.0, 11769.0, 0.0, 1854.0], [3624.0, 11770.0, 0.0, 1855.0], [3625.0, 11771.0, 0.0, 1856.0], [3627.0, 11772.0, 0.0, 1857.0], [3629.0, 11773.0, 0.0, 1858.0], [3631.0, 11774.0, 0.0, 1859.0], [3632.0, 11775.0, 0.0, 1860.0], [3633.0, 11776.0, 0.0, 1861.0], [3634.0, 11777.0, 0.0, 1862.0], [3638.0, 11778.0, 0.0, 1863.0], [3639.0, 11779.0, 0.0, 1864.0], [3642.0, 11780.0, 0.0, 1865.0], [3644.0, 11781.0, 0.0, 1866.0], [3645.0, 11782.0, 0.0, 1867.0], [3647.0, 11783.0, 0.0, 1868.0], [3648.0, 11784.0, 0.0, 1869.0], [3650.0, 11785.0, 0.0, 1870.0], [3652.0, 11786.0, 0.0, 1871.0], [3653.0, 11787.0, 0.0, 1872.0], [3654.0, 11788.0, 0.0, 1873.0], [3657.0, 11789.0, 0.0, 1874.0], [3661.0, 11790.0, 0.0, 1875.0], [3662.0, 11791.0, 0.0, 1876.0], [3663.0, 11792.0, 0.0, 1877.0], [3664.0, 11793.0, 0.0, 1878.0], [3665.0, 11794.0, 0.0, 1879.0], [3667.0, 11795.0, 0.0, 1880.0], [3670.0, 11796.0, 0.0, 1881.0], [3671.0, 11797.0, 0.0, 1882.0], [3672.0, 11798.0, 0.0, 1883.0], [3673.0, 11799.0, 0.0, 1884.0], [3674.0, 11800.0, 0.0, 1885.0], [3675.0, 11801.0, 0.0, 1886.0], [3679.0, 11802.0, 0.0, 1887.0], [3682.0, 11803.0, 0.0, 1888.0], [3683.0, 11804.0, 0.0, 1889.0], [3685.0, 11805.0, 0.0, 1890.0], [3687.0, 11806.0, 0.0, 1891.0], [3690.0, 11807.0, 0.0, 1892.0], [3692.0, 11808.0, 0.0, 1893.0], [3693.0, 11809.0, 0.0, 1894.0], [3697.0, 11810.0, 0.0, 1895.0], [3698.0, 11811.0, 0.0, 1896.0], [3699.0, 11812.0, 0.0, 1897.0], [3700.0, 11813.0, 0.0, 1898.0], [3701.0, 11814.0, 0.0, 1899.0], [3704.0, 11815.0, 0.0, 1900.0], [3705.0, 11816.0, 0.0, 1901.0], [3707.0, 11817.0, 0.0, 1902.0], [3710.0, 11818.0, 0.0, 1903.0], [3711.0, 11819.0, 0.0, 1904.0], [3713.0, 11820.0, 0.0, 1905.0], [3716.0, 11821.0, 0.0, 1906.0], [3718.0, 11822.0, 0.0, 1907.0], [3719.0, 11823.0, 0.0, 1908.0], [3723.0, 11824.0, 0.0, 1909.0], [3724.0, 11825.0, 0.0, 1910.0], [3725.0, 11826.0, 0.0, 1911.0], [3727.0, 11827.0, 0.0, 1912.0], [3729.0, 11828.0, 0.0, 1913.0], [3731.0, 11829.0, 0.0, 1914.0], [3734.0, 11830.0, 0.0, 1915.0], [3736.0, 11831.0, 0.0, 1916.0], [3737.0, 11832.0, 0.0, 1917.0], [3738.0, 11833.0, 0.0, 1918.0], [3739.0, 11834.0, 0.0, 1919.0], [3740.0, 11835.0, 0.0, 1920.0], [3741.0, 11836.0, 0.0, 1921.0], [3743.0, 11837.0, 0.0, 1922.0], [3744.0, 11838.0, 0.0, 1923.0], [3745.0, 11839.0, 0.0, 1924.0], [3749.0, 11840.0, 0.0, 1925.0], [3751.0, 11841.0, 0.0, 1926.0], [3752.0, 11842.0, 0.0, 1927.0], [3756.0, 11843.0, 0.0, 1928.0], [3760.0, 11844.0, 0.0, 1929.0], [3761.0, 11845.0, 0.0, 1930.0], [3762.0, 11846.0, 0.0, 1931.0], [3765.0, 11847.0, 0.0, 1932.0], [3766.0, 11848.0, 0.0, 1933.0], [3768.0, 11849.0, 0.0, 1934.0], [3771.0, 11850.0, 0.0, 1935.0], [3772.0, 11851.0, 0.0, 1936.0], [3774.0, 11852.0, 0.0, 1937.0], [3775.0, 11853.0, 0.0, 1938.0], [3776.0, 11854.0, 0.0, 1939.0], [3777.0, 11855.0, 0.0, 1940.0], [3779.0, 11856.0, 0.0, 1941.0], [3781.0, 11857.0, 0.0, 1942.0], [3782.0, 11858.0, 0.0, 1943.0], [3786.0, 11859.0, 0.0, 1944.0], [3787.0, 11860.0, 0.0, 1945.0], [3788.0, 11861.0, 0.0, 1946.0], [3789.0, 11862.0, 0.0, 1947.0], [3791.0, 11863.0, 0.0, 1948.0], [3793.0, 11864.0, 0.0, 1949.0], [3794.0, 11865.0, 0.0, 1950.0], [3795.0, 11866.0, 0.0, 1951.0], [3796.0, 11867.0, 0.0, 1952.0], [3798.0, 11868.0, 0.0, 1953.0], [3799.0, 11869.0, 0.0, 1954.0], [3802.0, 11870.0, 0.0, 1955.0], [3804.0, 11871.0, 0.0, 1956.0], [3807.0, 11872.0, 0.0, 1957.0], [3808.0, 11873.0, 0.0, 1958.0], [3812.0, 11874.0, 0.0, 1959.0], [3814.0, 11875.0, 0.0, 1960.0], [3815.0, 11876.0, 0.0, 1961.0], [3816.0, 11877.0, 0.0, 1962.0], [3818.0, 11878.0, 0.0, 1963.0], [3820.0, 11879.0, 0.0, 1964.0], [3821.0, 11880.0, 0.0, 1965.0], [3823.0, 11881.0, 0.0, 1966.0], [3824.0, 11882.0, 0.0, 1967.0], [3826.0, 11883.0, 0.0, 1968.0], [3831.0, 11884.0, 0.0, 1969.0], [3835.0, 11885.0, 0.0, 1970.0], [3837.0, 11886.0, 0.0, 1971.0], [3838.0, 11887.0, 0.0, 1972.0], [3839.0, 11888.0, 0.0, 1973.0], [3840.0, 11889.0, 0.0, 1974.0], [3841.0, 11890.0, 0.0, 1975.0], [3842.0, 11891.0, 0.0, 1976.0], [3845.0, 11892.0, 0.0, 1977.0], [3847.0, 11893.0, 0.0, 1978.0], [3849.0, 11894.0, 0.0, 1979.0], [3850.0, 11895.0, 0.0, 1980.0], [3851.0, 11896.0, 0.0, 1981.0], [3852.0, 11897.0, 0.0, 1982.0], [3853.0, 11898.0, 0.0, 1983.0], [3856.0, 11899.0, 0.0, 1984.0], [3858.0, 11900.0, 0.0, 1985.0], [3860.0, 11901.0, 0.0, 1986.0], [3861.0, 11902.0, 0.0, 1987.0], [3863.0, 11903.0, 0.0, 1988.0], [3865.0, 11904.0, 0.0, 1989.0], [3867.0, 11905.0, 0.0, 1990.0], [3872.0, 11906.0, 0.0, 1991.0], [3873.0, 11907.0, 0.0, 1992.0], [3874.0, 11908.0, 0.0, 1993.0], [3877.0, 11909.0, 0.0, 1994.0], [3878.0, 11910.0, 0.0, 1995.0], [3879.0, 11911.0, 0.0, 1996.0], [3880.0, 11912.0, 0.0, 1997.0], [3881.0, 11913.0, 0.0, 1998.0], [3883.0, 11914.0, 0.0, 1999.0], [3885.0, 11915.0, 0.0, 2000.0], [3886.0, 11916.0, 0.0, 2001.0], [3888.0, 11917.0, 0.0, 2002.0], [3890.0, 11918.0, 0.0, 2003.0], [3891.0, 11919.0, 0.0, 2004.0], [3892.0, 11920.0, 0.0, 2005.0], [3894.0, 11921.0, 0.0, 2006.0], [3895.0, 11922.0, 0.0, 2007.0], [3897.0, 11923.0, 0.0, 2008.0], [3899.0, 11924.0, 0.0, 2009.0], [3904.0, 11925.0, 0.0, 2010.0], [3905.0, 11926.0, 0.0, 2011.0], [3908.0, 11927.0, 0.0, 2012.0], [3909.0, 11928.0, 0.0, 2013.0], [3911.0, 11929.0, 0.0, 2014.0], [3912.0, 11930.0, 0.0, 2015.0], [3913.0, 11931.0, 0.0, 2016.0], [3914.0, 11932.0, 0.0, 2017.0], [3915.0, 11933.0, 0.0, 2018.0], [3919.0, 11934.0, 0.0, 2019.0], [3920.0, 11935.0, 0.0, 2020.0], [3923.0, 11936.0, 0.0, 2021.0], [3924.0, 11937.0, 0.0, 2022.0], [3927.0, 11938.0, 0.0, 2023.0], [3928.0, 11939.0, 0.0, 2024.0], [3932.0, 11940.0, 0.0, 2025.0], [3933.0, 11941.0, 0.0, 2026.0], [3934.0, 11942.0, 0.0, 2027.0], [3935.0, 11943.0, 0.0, 2028.0], [3936.0, 11944.0, 0.0, 2029.0], [3939.0, 11945.0, 0.0, 2030.0], [3943.0, 11946.0, 0.0, 2031.0], [3944.0, 11947.0, 0.0, 2032.0], [3946.0, 11948.0, 0.0, 2033.0], [3947.0, 11949.0, 0.0, 2034.0], [3950.0, 11950.0, 0.0, 2035.0], [3953.0, 11951.0, 0.0, 2036.0], [3954.0, 11952.0, 0.0, 2037.0], [3956.0, 11953.0, 0.0, 2038.0], [3957.0, 11954.0, 0.0, 2039.0], [3960.0, 11955.0, 0.0, 2040.0], [3961.0, 11956.0, 0.0, 2041.0], [3962.0, 11957.0, 0.0, 2042.0], [3963.0, 11958.0, 0.0, 2043.0], [3964.0, 11959.0, 0.0, 2044.0], [3966.0, 11960.0, 0.0, 2045.0], [3968.0, 11961.0, 0.0, 2046.0], [3972.0, 11962.0, 0.0, 2047.0], [3975.0, 11963.0, 0.0, 2048.0], [3978.0, 11964.0, 0.0, 2049.0], [3980.0, 11965.0, 0.0, 2050.0], [3981.0, 11966.0, 0.0, 2051.0], [3988.0, 11967.0, 0.0, 2052.0], [3991.0, 11968.0, 0.0, 2053.0], [3993.0, 11969.0, 0.0, 2054.0], [3994.0, 11970.0, 0.0, 2055.0], [3995.0, 11971.0, 0.0, 2056.0], [3997.0, 11972.0, 0.0, 2057.0], [3999.0, 11973.0, 0.0, 2058.0], [4001.0, 11974.0, 0.0, 2059.0], [4004.0, 11975.0, 0.0, 2060.0], [4006.0, 11976.0, 0.0, 2061.0], [4007.0, 11977.0, 0.0, 2062.0], [4011.0, 11978.0, 0.0, 2063.0], [4013.0, 11979.0, 0.0, 2064.0], [4014.0, 11980.0, 0.0, 2065.0], [4015.0, 11981.0, 0.0, 2066.0], [4016.0, 11982.0, 0.0, 2067.0], [4020.0, 11983.0, 0.0, 2068.0], [4024.0, 11984.0, 0.0, 2069.0], [4025.0, 11985.0, 0.0, 2070.0], [4026.0, 11986.0, 0.0, 2071.0], [4029.0, 11987.0, 0.0, 2072.0], [4030.0, 11988.0, 0.0, 2073.0], [4033.0, 11989.0, 0.0, 2074.0], [4035.0, 11990.0, 0.0, 2075.0], [4036.0, 11991.0, 0.0, 2076.0], [4038.0, 11992.0, 0.0, 2077.0], [4041.0, 11993.0, 0.0, 2078.0], [4042.0, 11994.0, 0.0, 2079.0], [4044.0, 11995.0, 0.0, 2080.0], [4045.0, 11996.0, 0.0, 2081.0], [4046.0, 11997.0, 0.0, 2082.0], [4048.0, 11998.0, 0.0, 2083.0], [4051.0, 11999.0, 0.0, 2084.0], [4053.0, 12000.0, 0.0, 2085.0], [4054.0, 12001.0, 0.0, 2086.0], [4055.0, 12002.0, 0.0, 2087.0], [4057.0, 12003.0, 0.0, 2088.0], [4058.0, 12004.0, 0.0, 2089.0], [4060.0, 12005.0, 0.0, 2090.0], [4061.0, 12006.0, 0.0, 2091.0], [4064.0, 12007.0, 0.0, 2092.0], [4065.0, 12008.0, 0.0, 2093.0], [4066.0, 12009.0, 0.0, 2094.0], [4067.0, 12010.0, 0.0, 2095.0], [4069.0, 12011.0, 0.0, 2096.0], [4071.0, 12012.0, 0.0, 2097.0], [4072.0, 12013.0, 0.0, 2098.0], [4073.0, 12014.0, 0.0, 2099.0], [4074.0, 12015.0, 0.0, 2100.0], [4075.0, 12016.0, 0.0, 2101.0], [4076.0, 12017.0, 0.0, 2102.0], [4077.0, 12018.0, 0.0, 2103.0], [4080.0, 12019.0, 0.0, 2104.0], [4082.0, 12020.0, 0.0, 2105.0], [4083.0, 12021.0, 0.0, 2106.0], [4084.0, 12022.0, 0.0, 2107.0], [4085.0, 12023.0, 0.0, 2108.0], [4086.0, 12024.0, 0.0, 2109.0], [4087.0, 12025.0, 0.0, 2110.0], [4088.0, 12026.0, 0.0, 2111.0], [4092.0, 12027.0, 0.0, 2112.0], [4094.0, 12028.0, 0.0, 2113.0], [4103.0, 12029.0, 0.0, 2114.0], [4106.0, 12030.0, 0.0, 2115.0], [4107.0, 12031.0, 0.0, 2116.0], [4109.0, 12032.0, 0.0, 2117.0], [4110.0, 12033.0, 0.0, 2118.0], [4111.0, 12034.0, 0.0, 2119.0], [4112.0, 12035.0, 0.0, 2120.0], [4115.0, 12036.0, 0.0, 2121.0], [4117.0, 12037.0, 0.0, 2122.0], [4118.0, 12038.0, 0.0, 2123.0], [4122.0, 12039.0, 0.0, 2124.0], [4123.0, 12040.0, 0.0, 2125.0], [4124.0, 12041.0, 0.0, 2126.0], [4127.0, 12042.0, 0.0, 2127.0], [4128.0, 12043.0, 0.0, 2128.0], [4129.0, 12044.0, 0.0, 2129.0], [4130.0, 12045.0, 0.0, 2130.0], [4131.0, 12046.0, 0.0, 2131.0], [4132.0, 12047.0, 0.0, 2132.0], [4137.0, 12048.0, 0.0, 2133.0], [4138.0, 12049.0, 0.0, 2134.0], [4139.0, 12050.0, 0.0, 2135.0], [4145.0, 12051.0, 0.0, 2136.0], [4146.0, 12052.0, 0.0, 2137.0], [4147.0, 12053.0, 0.0, 2138.0], [4150.0, 12054.0, 0.0, 2139.0], [4152.0, 12055.0, 0.0, 2140.0], [4155.0, 12056.0, 0.0, 2141.0], [4156.0, 12057.0, 0.0, 2142.0], [4158.0, 12058.0, 0.0, 2143.0], [4159.0, 12059.0, 0.0, 2144.0], [4162.0, 12060.0, 0.0, 2145.0], [4164.0, 12061.0, 0.0, 2146.0], [4165.0, 12062.0, 0.0, 2147.0], [4167.0, 12063.0, 0.0, 2148.0], [4170.0, 12064.0, 0.0, 2149.0], [4171.0, 12065.0, 0.0, 2150.0], [4174.0, 12066.0, 0.0, 2151.0], [4175.0, 12067.0, 0.0, 2152.0], [4176.0, 12068.0, 0.0, 2153.0], [4177.0, 12069.0, 0.0, 2154.0], [4178.0, 12070.0, 0.0, 2155.0], [4179.0, 12071.0, 0.0, 2156.0], [4180.0, 12072.0, 0.0, 2157.0], [4182.0, 12073.0, 0.0, 2158.0], [4184.0, 12074.0, 0.0, 2159.0], [4186.0, 12075.0, 0.0, 2160.0], [4187.0, 12076.0, 0.0, 2161.0], [4191.0, 12077.0, 0.0, 2162.0], [4193.0, 12078.0, 0.0, 2163.0], [4194.0, 12079.0, 0.0, 2164.0], [4198.0, 12080.0, 0.0, 2165.0], [4200.0, 12081.0, 0.0, 2166.0], [4203.0, 12082.0, 0.0, 2167.0], [4207.0, 12083.0, 0.0, 2168.0], [4209.0, 12084.0, 0.0, 2169.0], [4211.0, 12085.0, 0.0, 2170.0], [4213.0, 12086.0, 0.0, 2171.0], [4214.0, 12087.0, 0.0, 2172.0], [4217.0, 12088.0, 0.0, 2173.0], [4218.0, 12089.0, 0.0, 2174.0], [4221.0, 12090.0, 0.0, 2175.0], [4222.0, 12091.0, 0.0, 2176.0], [4227.0, 12092.0, 0.0, 2177.0], [4228.0, 12093.0, 0.0, 2178.0], [4231.0, 12094.0, 0.0, 2179.0], [4232.0, 12095.0, 0.0, 2180.0], [4233.0, 12096.0, 0.0, 2181.0], [4235.0, 12097.0, 0.0, 2182.0], [4236.0, 12098.0, 0.0, 2183.0], [4237.0, 12099.0, 0.0, 2184.0], [4238.0, 12100.0, 0.0, 2185.0], [4240.0, 12101.0, 0.0, 2186.0], [4241.0, 12102.0, 0.0, 2187.0], [4242.0, 12103.0, 0.0, 2188.0], [4243.0, 12104.0, 0.0, 2189.0], [4245.0, 12105.0, 0.0, 2190.0], [4246.0, 12106.0, 0.0, 2191.0], [4247.0, 12107.0, 0.0, 2192.0], [4249.0, 12108.0, 0.0, 2193.0], [4251.0, 12109.0, 0.0, 2194.0], [4252.0, 12110.0, 0.0, 2195.0], [4255.0, 12111.0, 0.0, 2196.0], [4259.0, 12112.0, 0.0, 2197.0], [4263.0, 12113.0, 0.0, 2198.0], [4264.0, 12114.0, 0.0, 2199.0], [4265.0, 12115.0, 0.0, 2200.0], [4268.0, 12116.0, 0.0, 2201.0], [4269.0, 12117.0, 0.0, 2202.0], [4273.0, 12118.0, 0.0, 2203.0], [4274.0, 12119.0, 0.0, 2204.0], [4275.0, 12120.0, 0.0, 2205.0], [4276.0, 12121.0, 0.0, 2206.0], [4278.0, 12122.0, 0.0, 2207.0], [4279.0, 12123.0, 0.0, 2208.0], [4280.0, 12124.0, 0.0, 2209.0], [4282.0, 12125.0, 0.0, 2210.0], [4284.0, 12126.0, 0.0, 2211.0], [4285.0, 12127.0, 0.0, 2212.0], [4286.0, 12128.0, 0.0, 2213.0], [4289.0, 12129.0, 0.0, 2214.0], [4291.0, 12130.0, 0.0, 2215.0], [4292.0, 12131.0, 0.0, 2216.0], [4293.0, 12132.0, 0.0, 2217.0], [4294.0, 12133.0, 0.0, 2218.0], [4295.0, 12134.0, 0.0, 2219.0], [4297.0, 12135.0, 0.0, 2220.0], [4298.0, 12136.0, 0.0, 2221.0], [4300.0, 12137.0, 0.0, 2222.0], [4301.0, 12138.0, 0.0, 2223.0], [4302.0, 12139.0, 0.0, 2224.0], [4303.0, 12140.0, 0.0, 2225.0], [4304.0, 12141.0, 0.0, 2226.0], [4309.0, 12142.0, 0.0, 2227.0], [4310.0, 12143.0, 0.0, 2228.0], [4312.0, 12144.0, 0.0, 2229.0], [4316.0, 12145.0, 0.0, 2230.0], [4317.0, 12146.0, 0.0, 2231.0], [4318.0, 12147.0, 0.0, 2232.0], [4319.0, 12148.0, 0.0, 2233.0], [4321.0, 12149.0, 0.0, 2234.0], [4322.0, 12150.0, 0.0, 2235.0], [4324.0, 12151.0, 0.0, 2236.0], [4326.0, 12152.0, 0.0, 2237.0], [4327.0, 12153.0, 0.0, 2238.0], [4330.0, 12154.0, 0.0, 2239.0], [4334.0, 12155.0, 0.0, 2240.0], [4335.0, 12156.0, 0.0, 2241.0], [4336.0, 12157.0, 0.0, 2242.0], [4338.0, 12158.0, 0.0, 2243.0], [4339.0, 12159.0, 0.0, 2244.0], [4345.0, 12160.0, 0.0, 2245.0], [4346.0, 12161.0, 0.0, 2246.0], [4347.0, 12162.0, 0.0, 2247.0], [4348.0, 12163.0, 0.0, 2248.0], [4355.0, 12164.0, 0.0, 2249.0], [4356.0, 12165.0, 0.0, 2250.0], [4360.0, 12166.0, 0.0, 2251.0], [4362.0, 12167.0, 0.0, 2252.0], [4365.0, 12168.0, 0.0, 2253.0], [4367.0, 12169.0, 0.0, 2254.0], [4369.0, 12170.0, 0.0, 2255.0], [4370.0, 12171.0, 0.0, 2256.0], [4371.0, 12172.0, 0.0, 2257.0], [4373.0, 12173.0, 0.0, 2258.0], [4376.0, 12174.0, 0.0, 2259.0], [4378.0, 12175.0, 0.0, 2260.0], [4379.0, 12176.0, 0.0, 2261.0], [4381.0, 12177.0, 0.0, 2262.0], [4382.0, 12178.0, 0.0, 2263.0], [4383.0, 12179.0, 0.0, 2264.0], [4384.0, 12180.0, 0.0, 2265.0], [4386.0, 12181.0, 0.0, 2266.0], [4387.0, 12182.0, 0.0, 2267.0], [4390.0, 12183.0, 0.0, 2268.0], [4392.0, 12184.0, 0.0, 2269.0], [4398.0, 12185.0, 0.0, 2270.0], [4399.0, 12186.0, 0.0, 2271.0], [4401.0, 12187.0, 0.0, 2272.0], [4404.0, 12188.0, 0.0, 2273.0], [4410.0, 12189.0, 0.0, 2274.0], [4412.0, 12190.0, 0.0, 2275.0], [4414.0, 12191.0, 0.0, 2276.0], [4416.0, 12192.0, 0.0, 2277.0], [4418.0, 12193.0, 0.0, 2278.0], [4419.0, 12194.0, 0.0, 2279.0], [4420.0, 12195.0, 0.0, 2280.0], [4422.0, 12196.0, 0.0, 2281.0], [4423.0, 12197.0, 0.0, 2282.0], [4425.0, 12198.0, 0.0, 2283.0], [4428.0, 12199.0, 0.0, 2284.0], [4429.0, 12200.0, 0.0, 2285.0], [4430.0, 12201.0, 0.0, 2286.0], [4432.0, 12202.0, 0.0, 2287.0], [4434.0, 12203.0, 0.0, 2288.0], [4435.0, 12204.0, 0.0, 2289.0], [4439.0, 12205.0, 0.0, 2290.0], [4443.0, 12206.0, 0.0, 2291.0], [4444.0, 12207.0, 0.0, 2292.0], [4445.0, 12208.0, 0.0, 2293.0], [4447.0, 12209.0, 0.0, 2294.0], [4462.0, 12210.0, 0.0, 2295.0], [4464.0, 12211.0, 0.0, 2296.0], [4465.0, 12212.0, 0.0, 2297.0], [4467.0, 12213.0, 0.0, 2298.0], [4469.0, 12214.0, 0.0, 2299.0], [4470.0, 12215.0, 0.0, 2300.0], [4471.0, 12216.0, 0.0, 2301.0], [4473.0, 12217.0, 0.0, 2302.0], [4476.0, 12218.0, 0.0, 2303.0], [4478.0, 12219.0, 0.0, 2304.0], [4479.0, 12220.0, 0.0, 2305.0], [4480.0, 12221.0, 0.0, 2306.0], [4482.0, 12222.0, 0.0, 2307.0], [4484.0, 12223.0, 0.0, 2308.0], [4486.0, 12224.0, 0.0, 2309.0], [4488.0, 12225.0, 0.0, 2310.0], [4490.0, 12226.0, 0.0, 2311.0], [4492.0, 12227.0, 0.0, 2312.0], [4494.0, 12228.0, 0.0, 2313.0], [4495.0, 12229.0, 0.0, 2314.0], [4497.0, 12230.0, 0.0, 2315.0], [4500.0, 12231.0, 0.0, 2316.0], [4503.0, 12232.0, 0.0, 2317.0], [4504.0, 12233.0, 0.0, 2318.0], [4505.0, 12234.0, 0.0, 2319.0], [4508.0, 12235.0, 0.0, 2320.0], [4510.0, 12236.0, 0.0, 2321.0], [4511.0, 12237.0, 0.0, 2322.0], [4512.0, 12238.0, 0.0, 2323.0], [4514.0, 12239.0, 0.0, 2324.0], [4515.0, 12240.0, 0.0, 2325.0], [4518.0, 12241.0, 0.0, 2326.0], [4519.0, 12242.0, 0.0, 2327.0], [4520.0, 12243.0, 0.0, 2328.0], [4522.0, 12244.0, 0.0, 2329.0], [4523.0, 12245.0, 0.0, 2330.0], [4524.0, 12246.0, 0.0, 2331.0], [4525.0, 12247.0, 0.0, 2332.0], [4526.0, 12248.0, 0.0, 2333.0], [4529.0, 12249.0, 0.0, 2334.0], [4531.0, 12250.0, 0.0, 2335.0], [4532.0, 12251.0, 0.0, 2336.0], [4533.0, 12252.0, 0.0, 2337.0], [4534.0, 12253.0, 0.0, 2338.0], [4536.0, 12254.0, 0.0, 2339.0], [4537.0, 12255.0, 0.0, 2340.0], [4540.0, 12256.0, 0.0, 2341.0], [4541.0, 12257.0, 0.0, 2342.0], [4543.0, 12258.0, 0.0, 2343.0], [4544.0, 12259.0, 0.0, 2344.0], [4545.0, 12260.0, 0.0, 2345.0], [4547.0, 12261.0, 0.0, 2346.0], [4548.0, 12262.0, 0.0, 2347.0], [4549.0, 12263.0, 0.0, 2348.0], [4552.0, 12264.0, 0.0, 2349.0], [4554.0, 12265.0, 0.0, 2350.0], [4556.0, 12266.0, 0.0, 2351.0], [4557.0, 12267.0, 0.0, 2352.0], [4561.0, 12268.0, 0.0, 2353.0], [4562.0, 12269.0, 0.0, 2354.0], [4563.0, 12270.0, 0.0, 2355.0], [4568.0, 12271.0, 0.0, 2356.0], [4571.0, 12272.0, 0.0, 2357.0], [4575.0, 12273.0, 0.0, 2358.0], [4577.0, 12274.0, 0.0, 2359.0], [4578.0, 12275.0, 0.0, 2360.0], [4579.0, 12276.0, 0.0, 2361.0], [4580.0, 12277.0, 0.0, 2362.0], [4583.0, 12278.0, 0.0, 2363.0], [4587.0, 12279.0, 0.0, 2364.0], [4588.0, 12280.0, 0.0, 2365.0], [4590.0, 12281.0, 0.0, 2366.0], [4591.0, 12282.0, 0.0, 2367.0], [4592.0, 12283.0, 0.0, 2368.0], [4593.0, 12284.0, 0.0, 2369.0], [4594.0, 12285.0, 0.0, 2370.0], [4597.0, 12286.0, 0.0, 2371.0], [4598.0, 12287.0, 0.0, 2372.0], [4600.0, 12288.0, 0.0, 2373.0], [4601.0, 12289.0, 0.0, 2374.0], [4604.0, 12290.0, 0.0, 2375.0], [4605.0, 12291.0, 0.0, 2376.0], [4607.0, 12292.0, 0.0, 2377.0], [4609.0, 12293.0, 0.0, 2378.0], [4611.0, 12294.0, 0.0, 2379.0], [4619.0, 12295.0, 0.0, 2380.0], [4621.0, 12296.0, 0.0, 2381.0], [4624.0, 12297.0, 0.0, 2382.0], [4625.0, 12298.0, 0.0, 2383.0], [4626.0, 12299.0, 0.0, 2384.0], [4627.0, 12300.0, 0.0, 2385.0], [4628.0, 12301.0, 0.0, 2386.0], [4634.0, 12302.0, 0.0, 2387.0], [4635.0, 12303.0, 0.0, 2388.0], [4636.0, 12304.0, 0.0, 2389.0], [4638.0, 12305.0, 0.0, 2390.0], [4639.0, 12306.0, 0.0, 2391.0], [4642.0, 12307.0, 0.0, 2392.0], [4645.0, 12308.0, 0.0, 2393.0], [4647.0, 12309.0, 0.0, 2394.0], [4648.0, 12310.0, 0.0, 2395.0], [4652.0, 12311.0, 0.0, 2396.0], [4658.0, 12312.0, 0.0, 2397.0], [4663.0, 12313.0, 0.0, 2398.0], [4664.0, 12314.0, 0.0, 2399.0], [4667.0, 12315.0, 0.0, 2400.0], [4668.0, 12316.0, 0.0, 2401.0], [4669.0, 12317.0, 0.0, 2402.0], [4671.0, 12318.0, 0.0, 2403.0], [4672.0, 12319.0, 0.0, 2404.0], [4673.0, 12320.0, 0.0, 2405.0], [4674.0, 12321.0, 0.0, 2406.0], [4675.0, 12322.0, 0.0, 2407.0], [4677.0, 12323.0, 0.0, 2408.0], [4678.0, 12324.0, 0.0, 2409.0], [4679.0, 12325.0, 0.0, 2410.0], [4683.0, 12326.0, 0.0, 2411.0], [4685.0, 12327.0, 0.0, 2412.0], [4686.0, 12328.0, 0.0, 2413.0], [4690.0, 12329.0, 0.0, 2414.0], [4691.0, 12330.0, 0.0, 2415.0], [4692.0, 12331.0, 0.0, 2416.0], [4693.0, 12332.0, 0.0, 2417.0], [4696.0, 12333.0, 0.0, 2418.0], [4698.0, 12334.0, 0.0, 2419.0], [4699.0, 12335.0, 0.0, 2420.0], [4701.0, 12336.0, 0.0, 2421.0], [4707.0, 12337.0, 0.0, 2422.0], [4709.0, 12338.0, 0.0, 2423.0], [4710.0, 12339.0, 0.0, 2424.0], [4711.0, 12340.0, 0.0, 2425.0], [4712.0, 12341.0, 0.0, 2426.0], [4713.0, 12342.0, 0.0, 2427.0], [4714.0, 12343.0, 0.0, 2428.0], [4715.0, 12344.0, 0.0, 2429.0], [4716.0, 12345.0, 0.0, 2430.0], [4717.0, 12346.0, 0.0, 2431.0], [4718.0, 12347.0, 0.0, 2432.0], [4720.0, 12348.0, 0.0, 2433.0], [4721.0, 12349.0, 0.0, 2434.0], [4724.0, 12350.0, 0.0, 2435.0], [4725.0, 12351.0, 0.0, 2436.0], [4726.0, 12352.0, 0.0, 2437.0], [4728.0, 12353.0, 0.0, 2438.0], [4732.0, 12354.0, 0.0, 2439.0], [4733.0, 12355.0, 0.0, 2440.0], [4735.0, 12356.0, 0.0, 2441.0], [4736.0, 12357.0, 0.0, 2442.0], [4737.0, 12358.0, 0.0, 2443.0], [4739.0, 12359.0, 0.0, 2444.0], [4740.0, 12360.0, 0.0, 2445.0], [4741.0, 12361.0, 0.0, 2446.0], [4743.0, 12362.0, 0.0, 2447.0], [4744.0, 12363.0, 0.0, 2448.0], [4746.0, 12364.0, 0.0, 2449.0], [4747.0, 12365.0, 0.0, 2450.0], [4749.0, 12366.0, 0.0, 2451.0], [4751.0, 12367.0, 0.0, 2452.0], [4752.0, 12368.0, 0.0, 2453.0], [4755.0, 12369.0, 0.0, 2454.0], [4756.0, 12370.0, 0.0, 2455.0], [4757.0, 12371.0, 0.0, 2456.0], [4760.0, 12372.0, 0.0, 2457.0], [4764.0, 12373.0, 0.0, 2458.0], [4766.0, 12374.0, 0.0, 2459.0], [4769.0, 12375.0, 0.0, 2460.0], [4771.0, 12376.0, 0.0, 2461.0], [4772.0, 12377.0, 0.0, 2462.0], [4779.0, 12378.0, 0.0, 2463.0], [4780.0, 12379.0, 0.0, 2464.0], [4781.0, 12380.0, 0.0, 2465.0], [4783.0, 12381.0, 0.0, 2466.0], [4789.0, 12382.0, 0.0, 2467.0], [4791.0, 12383.0, 0.0, 2468.0], [4792.0, 12384.0, 0.0, 2469.0], [4794.0, 12385.0, 0.0, 2470.0], [4797.0, 12386.0, 0.0, 2471.0], [4799.0, 12387.0, 0.0, 2472.0], [4801.0, 12388.0, 0.0, 2473.0], [4804.0, 12389.0, 0.0, 2474.0], [4806.0, 12390.0, 0.0, 2475.0], [4807.0, 12391.0, 0.0, 2476.0], [4809.0, 12392.0, 0.0, 2477.0], [4810.0, 12393.0, 0.0, 2478.0], [4811.0, 12394.0, 0.0, 2479.0], [4812.0, 12395.0, 0.0, 2480.0], [4815.0, 12396.0, 0.0, 2481.0], [4816.0, 12397.0, 0.0, 2482.0], [4819.0, 12398.0, 0.0, 2483.0], [4820.0, 12399.0, 0.0, 2484.0], [4823.0, 12400.0, 0.0, 2485.0], [4826.0, 12401.0, 0.0, 2486.0], [4827.0, 12402.0, 0.0, 2487.0], [4828.0, 12403.0, 0.0, 2488.0], [4831.0, 12404.0, 0.0, 2489.0], [4832.0, 12405.0, 0.0, 2490.0], [4833.0, 12406.0, 0.0, 2491.0], [4834.0, 12407.0, 0.0, 2492.0], [4835.0, 12408.0, 0.0, 2493.0], [4836.0, 12409.0, 0.0, 2494.0], [4837.0, 12410.0, 0.0, 2495.0], [4840.0, 12411.0, 0.0, 2496.0], [4843.0, 12412.0, 0.0, 2497.0], [4845.0, 12413.0, 0.0, 2498.0], [4850.0, 12414.0, 0.0, 2499.0], [4856.0, 12415.0, 0.0, 2500.0], [4858.0, 12416.0, 0.0, 2501.0], [4859.0, 12417.0, 0.0, 2502.0], [4860.0, 12418.0, 0.0, 2503.0], [4861.0, 12419.0, 0.0, 2504.0], [4862.0, 12420.0, 0.0, 2505.0], [4865.0, 12421.0, 0.0, 2506.0], [4866.0, 12422.0, 0.0, 2507.0], [4869.0, 12423.0, 0.0, 2508.0], [4870.0, 12424.0, 0.0, 2509.0], [4872.0, 12425.0, 0.0, 2510.0], [4873.0, 12426.0, 0.0, 2511.0], [4874.0, 12427.0, 0.0, 2512.0], [4875.0, 12428.0, 0.0, 2513.0], [4878.0, 12429.0, 0.0, 2514.0], [4880.0, 12430.0, 0.0, 2515.0], [4883.0, 12431.0, 0.0, 2516.0], [4884.0, 12432.0, 0.0, 2517.0], [4885.0, 12433.0, 0.0, 2518.0], [4887.0, 12434.0, 0.0, 2519.0], [4889.0, 12435.0, 0.0, 2520.0], [4890.0, 12436.0, 0.0, 2521.0], [4891.0, 12437.0, 0.0, 2522.0], [4892.0, 12438.0, 0.0, 2523.0], [4895.0, 12439.0, 0.0, 2524.0], [4897.0, 12440.0, 0.0, 2525.0], [4899.0, 12441.0, 0.0, 2526.0], [4902.0, 12442.0, 0.0, 2527.0], [4909.0, 12443.0, 0.0, 2528.0], [4912.0, 12444.0, 0.0, 2529.0], [4918.0, 12445.0, 0.0, 2530.0], [4920.0, 12446.0, 0.0, 2531.0], [4923.0, 12447.0, 0.0, 2532.0], [4925.0, 12448.0, 0.0, 2533.0], [4927.0, 12449.0, 0.0, 2534.0], [4928.0, 12450.0, 0.0, 2535.0], [4930.0, 12451.0, 0.0, 2536.0], [4931.0, 12452.0, 0.0, 2537.0], [4935.0, 12453.0, 0.0, 2538.0], [4936.0, 12454.0, 0.0, 2539.0], [4937.0, 12455.0, 0.0, 2540.0], [4938.0, 12456.0, 0.0, 2541.0], [4940.0, 12457.0, 0.0, 2542.0], [4941.0, 12458.0, 0.0, 2543.0], [4942.0, 12459.0, 0.0, 2544.0], [4950.0, 12460.0, 0.0, 2545.0], [4951.0, 12461.0, 0.0, 2546.0], [4953.0, 12462.0, 0.0, 2547.0], [4954.0, 12463.0, 0.0, 2548.0], [4955.0, 12464.0, 0.0, 2549.0], [4959.0, 12465.0, 0.0, 2550.0], [4961.0, 12466.0, 0.0, 2551.0], [4962.0, 12467.0, 0.0, 2552.0], [4964.0, 12468.0, 0.0, 2553.0], [4967.0, 12469.0, 0.0, 2554.0], [4968.0, 12470.0, 0.0, 2555.0], [4969.0, 12471.0, 0.0, 2556.0], [4970.0, 12472.0, 0.0, 2557.0], [4973.0, 12473.0, 0.0, 2558.0], [4974.0, 12474.0, 0.0, 2559.0], [4975.0, 12475.0, 0.0, 2560.0], [4978.0, 12476.0, 0.0, 2561.0], [4980.0, 12477.0, 0.0, 2562.0], [4984.0, 12478.0, 0.0, 2563.0], [4987.0, 12479.0, 0.0, 2564.0], [4988.0, 12480.0, 0.0, 2565.0], [4989.0, 12481.0, 0.0, 2566.0], [4990.0, 12482.0, 0.0, 2567.0], [4991.0, 12483.0, 0.0, 2568.0], [4992.0, 12484.0, 0.0, 2569.0], [4993.0, 12485.0, 0.0, 2570.0], [4994.0, 12486.0, 0.0, 2571.0], [4996.0, 12487.0, 0.0, 2572.0], [4997.0, 12488.0, 0.0, 2573.0], [5000.0, 12489.0, 0.0, 2574.0], [5001.0, 12490.0, 0.0, 2575.0], [5002.0, 12491.0, 0.0, 2576.0], [5004.0, 12492.0, 0.0, 2577.0], [5005.0, 12493.0, 0.0, 2578.0], [5010.0, 12494.0, 0.0, 2579.0], [5011.0, 12495.0, 0.0, 2580.0], [5012.0, 12496.0, 0.0, 2581.0], [5014.0, 12497.0, 0.0, 2582.0], [5020.0, 12498.0, 0.0, 2583.0], [5022.0, 12499.0, 0.0, 2584.0], [5025.0, 12500.0, 0.0, 2585.0], [5026.0, 12501.0, 0.0, 2586.0], [5027.0, 12502.0, 0.0, 2587.0], [5028.0, 12503.0, 0.0, 2588.0], [5029.0, 12504.0, 0.0, 2589.0], [5030.0, 12505.0, 0.0, 2590.0], [5032.0, 12506.0, 0.0, 2591.0], [5034.0, 12507.0, 0.0, 2592.0], [5037.0, 12508.0, 0.0, 2593.0], [5040.0, 12509.0, 0.0, 2594.0], [5041.0, 12510.0, 0.0, 2595.0], [5045.0, 12511.0, 0.0, 2596.0], [5050.0, 12512.0, 0.0, 2597.0], [5051.0, 12513.0, 0.0, 2598.0], [5052.0, 12514.0, 0.0, 2599.0], [5053.0, 12515.0, 0.0, 2600.0], [5054.0, 12516.0, 0.0, 2601.0], [5055.0, 12517.0, 0.0, 2602.0], [5056.0, 12518.0, 0.0, 2603.0], [5057.0, 12519.0, 0.0, 2604.0], [5058.0, 12520.0, 0.0, 2605.0], [5060.0, 12521.0, 0.0, 2606.0], [5061.0, 12522.0, 0.0, 2607.0], [5063.0, 12523.0, 0.0, 2608.0], [5067.0, 12524.0, 0.0, 2609.0], [5068.0, 12525.0, 0.0, 2610.0], [5069.0, 12526.0, 0.0, 2611.0], [5070.0, 12527.0, 0.0, 2612.0], [5073.0, 12528.0, 0.0, 2613.0], [5074.0, 12529.0, 0.0, 2614.0], [5075.0, 12530.0, 0.0, 2615.0], [5077.0, 12531.0, 0.0, 2616.0], [5079.0, 12532.0, 0.0, 2617.0], [5080.0, 12533.0, 0.0, 2618.0], [5082.0, 12534.0, 0.0, 2619.0], [5085.0, 12535.0, 0.0, 2620.0], [5087.0, 12536.0, 0.0, 2621.0], [5089.0, 12537.0, 0.0, 2622.0], [5090.0, 12538.0, 0.0, 2623.0], [5091.0, 12539.0, 0.0, 2624.0], [5092.0, 12540.0, 0.0, 2625.0], [5093.0, 12541.0, 0.0, 2626.0], [5094.0, 12542.0, 0.0, 2627.0], [5096.0, 12543.0, 0.0, 2628.0], [5098.0, 12544.0, 0.0, 2629.0], [5100.0, 12545.0, 0.0, 2630.0], [5102.0, 12546.0, 0.0, 2631.0], [5103.0, 12547.0, 0.0, 2632.0], [5107.0, 12548.0, 0.0, 2633.0], [5108.0, 12549.0, 0.0, 2634.0], [5110.0, 12550.0, 0.0, 2635.0], [5112.0, 12551.0, 0.0, 2636.0], [5113.0, 12552.0, 0.0, 2637.0], [5116.0, 12553.0, 0.0, 2638.0], [5120.0, 12554.0, 0.0, 2639.0], [5121.0, 12555.0, 0.0, 2640.0], [5122.0, 12556.0, 0.0, 2641.0], [5125.0, 12557.0, 0.0, 2642.0], [5127.0, 12558.0, 0.0, 2643.0], [5128.0, 12559.0, 0.0, 2644.0], [5129.0, 12560.0, 0.0, 2645.0], [5130.0, 12561.0, 0.0, 2646.0], [5134.0, 12562.0, 0.0, 2647.0], [5139.0, 12563.0, 0.0, 2648.0], [5144.0, 12564.0, 0.0, 2649.0], [5147.0, 12565.0, 0.0, 2650.0], [5150.0, 12566.0, 0.0, 2651.0], [5154.0, 12567.0, 0.0, 2652.0], [5155.0, 12568.0, 0.0, 2653.0], [5160.0, 12569.0, 0.0, 2654.0], [5161.0, 12570.0, 0.0, 2655.0], [5165.0, 12571.0, 0.0, 2656.0], [5168.0, 12572.0, 0.0, 2657.0], [5169.0, 12573.0, 0.0, 2658.0], [5170.0, 12574.0, 0.0, 2659.0], [5172.0, 12575.0, 0.0, 2660.0], [5173.0, 12576.0, 0.0, 2661.0], [5174.0, 12577.0, 0.0, 2662.0], [5176.0, 12578.0, 0.0, 2663.0], [5179.0, 12579.0, 0.0, 2664.0], [5182.0, 12580.0, 0.0, 2665.0], [5185.0, 12581.0, 0.0, 2666.0], [5186.0, 12582.0, 0.0, 2667.0], [5187.0, 12583.0, 0.0, 2668.0], [5189.0, 12584.0, 0.0, 2669.0], [5190.0, 12585.0, 0.0, 2670.0], [5191.0, 12586.0, 0.0, 2671.0], [5192.0, 12587.0, 0.0, 2672.0], [5195.0, 12588.0, 0.0, 2673.0], [5197.0, 12589.0, 0.0, 2674.0], [5200.0, 12590.0, 0.0, 2675.0], [5204.0, 12591.0, 0.0, 2676.0], [5205.0, 12592.0, 0.0, 2677.0], [5206.0, 12593.0, 0.0, 2678.0], [5207.0, 12594.0, 0.0, 2679.0], [5211.0, 12595.0, 0.0, 2680.0], [5214.0, 12596.0, 0.0, 2681.0], [5215.0, 12597.0, 0.0, 2682.0], [5217.0, 12598.0, 0.0, 2683.0], [5221.0, 12599.0, 0.0, 2684.0], [5223.0, 12600.0, 0.0, 2685.0], [5225.0, 12601.0, 0.0, 2686.0], [5229.0, 12602.0, 0.0, 2687.0], [5231.0, 12603.0, 0.0, 2688.0], [5232.0, 12604.0, 0.0, 2689.0], [5233.0, 12605.0, 0.0, 2690.0], [5234.0, 12606.0, 0.0, 2691.0], [5237.0, 12607.0, 0.0, 2692.0], [5239.0, 12608.0, 0.0, 2693.0], [5241.0, 12609.0, 0.0, 2694.0], [5242.0, 12610.0, 0.0, 2695.0], [5243.0, 12611.0, 0.0, 2696.0], [5247.0, 12612.0, 0.0, 2697.0], [5248.0, 12613.0, 0.0, 2698.0], [5250.0, 12614.0, 0.0, 2699.0], [5251.0, 12615.0, 0.0, 2700.0], [5252.0, 12616.0, 0.0, 2701.0], [5253.0, 12617.0, 0.0, 2702.0], [5256.0, 12618.0, 0.0, 2703.0], [5259.0, 12619.0, 0.0, 2704.0], [5262.0, 12620.0, 0.0, 2705.0], [5266.0, 12621.0, 0.0, 2706.0], [5267.0, 12622.0, 0.0, 2707.0], [5269.0, 12623.0, 0.0, 2708.0], [5270.0, 12624.0, 0.0, 2709.0], [5271.0, 12625.0, 0.0, 2710.0], [5276.0, 12626.0, 0.0, 2711.0], [5277.0, 12627.0, 0.0, 2712.0], [5279.0, 12628.0, 0.0, 2713.0], [5283.0, 12629.0, 0.0, 2714.0], [5285.0, 12630.0, 0.0, 2715.0], [5287.0, 12631.0, 0.0, 2716.0], [5289.0, 12632.0, 0.0, 2717.0], [5290.0, 12633.0, 0.0, 2718.0], [5291.0, 12634.0, 0.0, 2719.0], [5296.0, 12635.0, 0.0, 2720.0], [5297.0, 12636.0, 0.0, 2721.0], [5298.0, 12637.0, 0.0, 2722.0], [5299.0, 12638.0, 0.0, 2723.0], [5300.0, 12639.0, 0.0, 2724.0], [5302.0, 12640.0, 0.0, 2725.0], [5304.0, 12641.0, 0.0, 2726.0], [5307.0, 12642.0, 0.0, 2727.0], [5309.0, 12643.0, 0.0, 2728.0], [5316.0, 12644.0, 0.0, 2729.0], [5319.0, 12645.0, 0.0, 2730.0], [5320.0, 12646.0, 0.0, 2731.0], [5327.0, 12647.0, 0.0, 2732.0], [5328.0, 12648.0, 0.0, 2733.0], [5329.0, 12649.0, 0.0, 2734.0], [5330.0, 12650.0, 0.0, 2735.0], [5331.0, 12651.0, 0.0, 2736.0], [5339.0, 12652.0, 0.0, 2737.0], [5340.0, 12653.0, 0.0, 2738.0], [5341.0, 12654.0, 0.0, 2739.0], [5343.0, 12655.0, 0.0, 2740.0], [5344.0, 12656.0, 0.0, 2741.0], [5348.0, 12657.0, 0.0, 2742.0], [5350.0, 12658.0, 0.0, 2743.0], [5351.0, 12659.0, 0.0, 2744.0], [5353.0, 12660.0, 0.0, 2745.0], [5357.0, 12661.0, 0.0, 2746.0], [5362.0, 12662.0, 0.0, 2747.0], [5363.0, 12663.0, 0.0, 2748.0], [5366.0, 12664.0, 0.0, 2749.0], [5367.0, 12665.0, 0.0, 2750.0], [5372.0, 12666.0, 0.0, 2751.0], [5373.0, 12667.0, 0.0, 2752.0], [5374.0, 12668.0, 0.0, 2753.0], [5379.0, 12669.0, 0.0, 2754.0], [5380.0, 12670.0, 0.0, 2755.0], [5381.0, 12671.0, 0.0, 2756.0], [5382.0, 12672.0, 0.0, 2757.0], [5384.0, 12673.0, 0.0, 2758.0], [5385.0, 12674.0, 0.0, 2759.0], [5386.0, 12675.0, 0.0, 2760.0], [5387.0, 12676.0, 0.0, 2761.0], [5389.0, 12677.0, 0.0, 2762.0], [5392.0, 12678.0, 0.0, 2763.0], [5394.0, 12679.0, 0.0, 2764.0], [5397.0, 12680.0, 0.0, 2765.0], [5398.0, 12681.0, 0.0, 2766.0], [5403.0, 12682.0, 0.0, 2767.0], [5405.0, 12683.0, 0.0, 2768.0], [5408.0, 12684.0, 0.0, 2769.0], [5409.0, 12685.0, 0.0, 2770.0], [5411.0, 12686.0, 0.0, 2771.0], [5413.0, 12687.0, 0.0, 2772.0], [5415.0, 12688.0, 0.0, 2773.0], [5416.0, 12689.0, 0.0, 2774.0], [5418.0, 12690.0, 0.0, 2775.0], [5420.0, 12691.0, 0.0, 2776.0], [5421.0, 12692.0, 0.0, 2777.0], [5422.0, 12693.0, 0.0, 2778.0], [5423.0, 12694.0, 0.0, 2779.0], [5424.0, 12695.0, 0.0, 2780.0], [5426.0, 12696.0, 0.0, 2781.0], [5430.0, 12697.0, 0.0, 2782.0], [5431.0, 12698.0, 0.0, 2783.0], [5432.0, 12699.0, 0.0, 2784.0], [5433.0, 12700.0, 0.0, 2785.0], [5436.0, 12701.0, 0.0, 2786.0], [5438.0, 12702.0, 0.0, 2787.0], [5441.0, 12703.0, 0.0, 2788.0], [5445.0, 12704.0, 0.0, 2789.0], [5446.0, 12705.0, 0.0, 2790.0], [5447.0, 12706.0, 0.0, 2791.0], [5449.0, 12707.0, 0.0, 2792.0], [5450.0, 12708.0, 0.0, 2793.0], [5451.0, 12709.0, 0.0, 2794.0], [5452.0, 12710.0, 0.0, 2795.0], [5455.0, 12711.0, 0.0, 2796.0], [5456.0, 12712.0, 0.0, 2797.0], [5459.0, 12713.0, 0.0, 2798.0], [5460.0, 12714.0, 0.0, 2799.0], [5461.0, 12715.0, 0.0, 2800.0], [5462.0, 12716.0, 0.0, 2801.0], [5463.0, 12717.0, 0.0, 2802.0], [5464.0, 12718.0, 0.0, 2803.0], [5465.0, 12719.0, 0.0, 2804.0], [5466.0, 12720.0, 0.0, 2805.0], [5468.0, 12721.0, 0.0, 2806.0], [5470.0, 12722.0, 0.0, 2807.0], [5471.0, 12723.0, 0.0, 2808.0], [5472.0, 12724.0, 0.0, 2809.0], [5474.0, 12725.0, 0.0, 2810.0], [5476.0, 12726.0, 0.0, 2811.0], [5477.0, 12727.0, 0.0, 2812.0], [5478.0, 12728.0, 0.0, 2813.0], [5479.0, 12729.0, 0.0, 2814.0], [5480.0, 12730.0, 0.0, 2815.0], [5481.0, 12731.0, 0.0, 2816.0], [5482.0, 12732.0, 0.0, 2817.0], [5485.0, 12733.0, 0.0, 2818.0], [5488.0, 12734.0, 0.0, 2819.0], [5490.0, 12735.0, 0.0, 2820.0], [5493.0, 12736.0, 0.0, 2821.0], [5494.0, 12737.0, 0.0, 2822.0], [5497.0, 12738.0, 0.0, 2823.0], [5498.0, 12739.0, 0.0, 2824.0], [5499.0, 12740.0, 0.0, 2825.0], [5500.0, 12741.0, 0.0, 2826.0], [5502.0, 12742.0, 0.0, 2827.0], [5504.0, 12743.0, 0.0, 2828.0], [5505.0, 12744.0, 0.0, 2829.0], [5506.0, 12745.0, 0.0, 2830.0], [5509.0, 12746.0, 0.0, 2831.0], [5512.0, 12747.0, 0.0, 2832.0], [5513.0, 12748.0, 0.0, 2833.0], [5514.0, 12749.0, 0.0, 2834.0], [5515.0, 12750.0, 0.0, 2835.0], [5516.0, 12751.0, 0.0, 2836.0], [5517.0, 12752.0, 0.0, 2837.0], [5519.0, 12753.0, 0.0, 2838.0], [5525.0, 12754.0, 0.0, 2839.0], [5526.0, 12755.0, 0.0, 2840.0], [5530.0, 12756.0, 0.0, 2841.0], [5532.0, 12757.0, 0.0, 2842.0], [5533.0, 12758.0, 0.0, 2843.0], [5534.0, 12759.0, 0.0, 2844.0], [5536.0, 12760.0, 0.0, 2845.0], [5538.0, 12761.0, 0.0, 2846.0], [5540.0, 12762.0, 0.0, 2847.0], [5541.0, 12763.0, 0.0, 2848.0], [5545.0, 12764.0, 0.0, 2849.0], [5546.0, 12765.0, 0.0, 2850.0], [5548.0, 12766.0, 0.0, 2851.0], [5550.0, 12767.0, 0.0, 2852.0], [5551.0, 12768.0, 0.0, 2853.0], [5553.0, 12769.0, 0.0, 2854.0], [5555.0, 12770.0, 0.0, 2855.0], [5556.0, 12771.0, 0.0, 2856.0], [5558.0, 12772.0, 0.0, 2857.0], [5559.0, 12773.0, 0.0, 2858.0], [5560.0, 12774.0, 0.0, 2859.0], [5561.0, 12775.0, 0.0, 2860.0], [5563.0, 12776.0, 0.0, 2861.0], [5564.0, 12777.0, 0.0, 2862.0], [5565.0, 12778.0, 0.0, 2863.0], [5566.0, 12779.0, 0.0, 2864.0], [5567.0, 12780.0, 0.0, 2865.0], [5569.0, 12781.0, 0.0, 2866.0], [5570.0, 12782.0, 0.0, 2867.0], [5572.0, 12783.0, 0.0, 2868.0], [5574.0, 12784.0, 0.0, 2869.0], [5580.0, 12785.0, 0.0, 2870.0], [5581.0, 12786.0, 0.0, 2871.0], [5583.0, 12787.0, 0.0, 2872.0], [5585.0, 12788.0, 0.0, 2873.0], [5586.0, 12789.0, 0.0, 2874.0], [5587.0, 12790.0, 0.0, 2875.0], [5588.0, 12791.0, 0.0, 2876.0], [5590.0, 12792.0, 0.0, 2877.0], [5591.0, 12793.0, 0.0, 2878.0], [5592.0, 12794.0, 0.0, 2879.0], [5593.0, 12795.0, 0.0, 2880.0], [5595.0, 12796.0, 0.0, 2881.0], [5596.0, 12797.0, 0.0, 2882.0], [5598.0, 12798.0, 0.0, 2883.0], [5600.0, 12799.0, 0.0, 2884.0], [5602.0, 12800.0, 0.0, 2885.0], [5604.0, 12801.0, 0.0, 2886.0], [5606.0, 12802.0, 0.0, 2887.0], [5607.0, 12803.0, 0.0, 2888.0], [5608.0, 12804.0, 0.0, 2889.0], [5610.0, 12805.0, 0.0, 2890.0], [5615.0, 12806.0, 0.0, 2891.0], [5616.0, 12807.0, 0.0, 2892.0], [5617.0, 12808.0, 0.0, 2893.0], [5623.0, 12809.0, 0.0, 2894.0], [5625.0, 12810.0, 0.0, 2895.0], [5629.0, 12811.0, 0.0, 2896.0], [5631.0, 12812.0, 0.0, 2897.0], [5637.0, 12813.0, 0.0, 2898.0], [5642.0, 12814.0, 0.0, 2899.0], [5645.0, 12815.0, 0.0, 2900.0], [5648.0, 12816.0, 0.0, 2901.0], [5652.0, 12817.0, 0.0, 2902.0], [5654.0, 12818.0, 0.0, 2903.0], [5655.0, 12819.0, 0.0, 2904.0], [5658.0, 12820.0, 0.0, 2905.0], [5662.0, 12821.0, 0.0, 2906.0], [5663.0, 12822.0, 0.0, 2907.0], [5664.0, 12823.0, 0.0, 2908.0], [5666.0, 12824.0, 0.0, 2909.0], [5668.0, 12825.0, 0.0, 2910.0], [5671.0, 12826.0, 0.0, 2911.0], [5674.0, 12827.0, 0.0, 2912.0], [5675.0, 12828.0, 0.0, 2913.0], [5676.0, 12829.0, 0.0, 2914.0], [5677.0, 12830.0, 0.0, 2915.0], [5678.0, 12831.0, 0.0, 2916.0], [5683.0, 12832.0, 0.0, 2917.0], [5686.0, 12833.0, 0.0, 2918.0], [5687.0, 12834.0, 0.0, 2919.0], [5688.0, 12835.0, 0.0, 2920.0], [5689.0, 12836.0, 0.0, 2921.0], [5690.0, 12837.0, 0.0, 2922.0], [5691.0, 12838.0, 0.0, 2923.0], [5693.0, 12839.0, 0.0, 2924.0], [5694.0, 12840.0, 0.0, 2925.0], [5696.0, 12841.0, 0.0, 2926.0], [5697.0, 12842.0, 0.0, 2927.0], [5699.0, 12843.0, 0.0, 2928.0], [5700.0, 12844.0, 0.0, 2929.0], [5703.0, 12845.0, 0.0, 2930.0], [5704.0, 12846.0, 0.0, 2931.0], [5705.0, 12847.0, 0.0, 2932.0], [5707.0, 12848.0, 0.0, 2933.0], [5710.0, 12849.0, 0.0, 2934.0], [5711.0, 12850.0, 0.0, 2935.0], [5712.0, 12851.0, 0.0, 2936.0], [5715.0, 12852.0, 0.0, 2937.0], [5716.0, 12853.0, 0.0, 2938.0], [5720.0, 12854.0, 0.0, 2939.0], [5722.0, 12855.0, 0.0, 2940.0], [5729.0, 12856.0, 0.0, 2941.0], [5730.0, 12857.0, 0.0, 2942.0], [5731.0, 12858.0, 0.0, 2943.0], [5732.0, 12859.0, 0.0, 2944.0], [5733.0, 12860.0, 0.0, 2945.0], [5734.0, 12861.0, 0.0, 2946.0], [5737.0, 12862.0, 0.0, 2947.0], [5738.0, 12863.0, 0.0, 2948.0], [5743.0, 12864.0, 0.0, 2949.0], [5744.0, 12865.0, 0.0, 2950.0], [5746.0, 12866.0, 0.0, 2951.0], [5749.0, 12867.0, 0.0, 2952.0], [5750.0, 12868.0, 0.0, 2953.0], [5751.0, 12869.0, 0.0, 2954.0], [5752.0, 12870.0, 0.0, 2955.0], [5753.0, 12871.0, 0.0, 2956.0], [5754.0, 12872.0, 0.0, 2957.0], [5758.0, 12873.0, 0.0, 2958.0], [5759.0, 12874.0, 0.0, 2959.0], [5761.0, 12875.0, 0.0, 2960.0], [5763.0, 12876.0, 0.0, 2961.0], [5765.0, 12877.0, 0.0, 2962.0], [5766.0, 12878.0, 0.0, 2963.0], [5768.0, 12879.0, 0.0, 2964.0], [5769.0, 12880.0, 0.0, 2965.0], [5770.0, 12881.0, 0.0, 2966.0], [5771.0, 12882.0, 0.0, 2967.0], [5774.0, 12883.0, 0.0, 2968.0], [5776.0, 12884.0, 0.0, 2969.0], [5778.0, 12885.0, 0.0, 2970.0], [5781.0, 12886.0, 0.0, 2971.0], [5782.0, 12887.0, 0.0, 2972.0], [5787.0, 12888.0, 0.0, 2973.0], [5789.0, 12889.0, 0.0, 2974.0], [5790.0, 12890.0, 0.0, 2975.0], [5793.0, 12891.0, 0.0, 2976.0], [5794.0, 12892.0, 0.0, 2977.0], [5797.0, 12893.0, 0.0, 2978.0], [5800.0, 12894.0, 0.0, 2979.0], [5802.0, 12895.0, 0.0, 2980.0], [5803.0, 12896.0, 0.0, 2981.0], [5804.0, 12897.0, 0.0, 2982.0], [5806.0, 12898.0, 0.0, 2983.0], [5807.0, 12899.0, 0.0, 2984.0], [5809.0, 12900.0, 0.0, 2985.0], [5810.0, 12901.0, 0.0, 2986.0], [5813.0, 12902.0, 0.0, 2987.0], [5815.0, 12903.0, 0.0, 2988.0], [5816.0, 12904.0, 0.0, 2989.0], [5817.0, 12905.0, 0.0, 2990.0], [5820.0, 12906.0, 0.0, 2991.0], [5821.0, 12907.0, 0.0, 2992.0], [5823.0, 12908.0, 0.0, 2993.0], [5824.0, 12909.0, 0.0, 2994.0], [5827.0, 12910.0, 0.0, 2995.0], [5828.0, 12911.0, 0.0, 2996.0], [5829.0, 12912.0, 0.0, 2997.0], [5834.0, 12913.0, 0.0, 2998.0], [5836.0, 12914.0, 0.0, 2999.0], [5837.0, 12915.0, 0.0, 3000.0], [5839.0, 12916.0, 0.0, 3001.0], [5841.0, 12917.0, 0.0, 3002.0], [5842.0, 12918.0, 0.0, 3003.0], [5843.0, 12919.0, 0.0, 3004.0], [5845.0, 12920.0, 0.0, 3005.0], [5852.0, 12921.0, 0.0, 3006.0], [5855.0, 12922.0, 0.0, 3007.0], [5857.0, 12923.0, 0.0, 3008.0], [5863.0, 12924.0, 0.0, 3009.0], [5865.0, 12925.0, 0.0, 3010.0], [5866.0, 12926.0, 0.0, 3011.0], [5867.0, 12927.0, 0.0, 3012.0], [5870.0, 12928.0, 0.0, 3013.0], [5871.0, 12929.0, 0.0, 3014.0], [5873.0, 12930.0, 0.0, 3015.0], [5874.0, 12931.0, 0.0, 3016.0], [5875.0, 12932.0, 0.0, 3017.0], [5877.0, 12933.0, 0.0, 3018.0], [5880.0, 12934.0, 0.0, 3019.0], [5882.0, 12935.0, 0.0, 3020.0], [5883.0, 12936.0, 0.0, 3021.0], [5886.0, 12937.0, 0.0, 3022.0], [5888.0, 12938.0, 0.0, 3023.0], [5890.0, 12939.0, 0.0, 3024.0], [5892.0, 12940.0, 0.0, 3025.0], [5893.0, 12941.0, 0.0, 3026.0], [5896.0, 12942.0, 0.0, 3027.0], [5899.0, 12943.0, 0.0, 3028.0], [5902.0, 12944.0, 0.0, 3029.0], [5904.0, 12945.0, 0.0, 3030.0], [5905.0, 12946.0, 0.0, 3031.0], [5908.0, 12947.0, 0.0, 3032.0], [5909.0, 12948.0, 0.0, 3033.0], [5910.0, 12949.0, 0.0, 3034.0], [5911.0, 12950.0, 0.0, 3035.0], [5912.0, 12951.0, 0.0, 3036.0], [5913.0, 12952.0, 0.0, 3037.0], [5916.0, 12953.0, 0.0, 3038.0], [5917.0, 12954.0, 0.0, 3039.0], [5920.0, 12955.0, 0.0, 3040.0], [5924.0, 12956.0, 0.0, 3041.0], [5928.0, 12957.0, 0.0, 3042.0], [5930.0, 12958.0, 0.0, 3043.0], [5931.0, 12959.0, 0.0, 3044.0], [5936.0, 12960.0, 0.0, 3045.0], [5937.0, 12961.0, 0.0, 3046.0], [5938.0, 12962.0, 0.0, 3047.0], [5940.0, 12963.0, 0.0, 3048.0], [5943.0, 12964.0, 0.0, 3049.0], [5947.0, 12965.0, 0.0, 3050.0], [5948.0, 12966.0, 0.0, 3051.0], [5949.0, 12967.0, 0.0, 3052.0], [5950.0, 12968.0, 0.0, 3053.0], [5952.0, 12969.0, 0.0, 3054.0], [5955.0, 12970.0, 0.0, 3055.0], [5956.0, 12971.0, 0.0, 3056.0], [5957.0, 12972.0, 0.0, 3057.0], [5958.0, 12973.0, 0.0, 3058.0], [5960.0, 12974.0, 0.0, 3059.0], [5963.0, 12975.0, 0.0, 3060.0], [5964.0, 12976.0, 0.0, 3061.0], [5965.0, 12977.0, 0.0, 3062.0], [5976.0, 12978.0, 0.0, 3063.0], [5979.0, 12979.0, 0.0, 3064.0], [5980.0, 12980.0, 0.0, 3065.0], [5982.0, 12981.0, 0.0, 3066.0], [5983.0, 12982.0, 0.0, 3067.0], [5984.0, 12983.0, 0.0, 3068.0], [5986.0, 12984.0, 0.0, 3069.0], [5988.0, 12985.0, 0.0, 3070.0], [5993.0, 12986.0, 0.0, 3071.0], [5994.0, 12987.0, 0.0, 3072.0], [5995.0, 12988.0, 0.0, 3073.0], [5997.0, 12989.0, 0.0, 3074.0], [6000.0, 12990.0, 0.0, 3075.0], [6002.0, 12991.0, 0.0, 3076.0], [6004.0, 12992.0, 0.0, 3077.0], [6008.0, 12993.0, 0.0, 3078.0], [6010.0, 12994.0, 0.0, 3079.0], [6011.0, 12995.0, 0.0, 3080.0], [6013.0, 12996.0, 0.0, 3081.0], [6014.0, 12997.0, 0.0, 3082.0], [6015.0, 12998.0, 0.0, 3083.0], [6016.0, 12999.0, 0.0, 3084.0], [6018.0, 13000.0, 0.0, 3085.0], [6021.0, 13001.0, 0.0, 3086.0], [6022.0, 13002.0, 0.0, 3087.0], [6023.0, 13003.0, 0.0, 3088.0], [6026.0, 13004.0, 0.0, 3089.0], [6032.0, 13005.0, 0.0, 3090.0], [6034.0, 13006.0, 0.0, 3091.0], [6035.0, 13007.0, 0.0, 3092.0], [6036.0, 13008.0, 0.0, 3093.0], [6037.0, 13009.0, 0.0, 3094.0], [6038.0, 13010.0, 0.0, 3095.0], [6039.0, 13011.0, 0.0, 3096.0], [6040.0, 13012.0, 0.0, 3097.0], [6043.0, 13013.0, 0.0, 3098.0], [6045.0, 13014.0, 0.0, 3099.0], [6047.0, 13015.0, 0.0, 3100.0], [6049.0, 13016.0, 0.0, 3101.0], [6051.0, 13017.0, 0.0, 3102.0], [6054.0, 13018.0, 0.0, 3103.0], [6058.0, 13019.0, 0.0, 3104.0], [6059.0, 13020.0, 0.0, 3105.0], [6061.0, 13021.0, 0.0, 3106.0], [6062.0, 13022.0, 0.0, 3107.0], [6066.0, 13023.0, 0.0, 3108.0], [6068.0, 13024.0, 0.0, 3109.0], [6071.0, 13025.0, 0.0, 3110.0], [6073.0, 13026.0, 0.0, 3111.0], [6074.0, 13027.0, 0.0, 3112.0], [6076.0, 13028.0, 0.0, 3113.0], [6077.0, 13029.0, 0.0, 3114.0], [6078.0, 13030.0, 0.0, 3115.0], [6079.0, 13031.0, 0.0, 3116.0], [6082.0, 13032.0, 0.0, 3117.0], [6083.0, 13033.0, 0.0, 3118.0], [6086.0, 13034.0, 0.0, 3119.0], [6087.0, 13035.0, 0.0, 3120.0], [6091.0, 13036.0, 0.0, 3121.0], [6092.0, 13037.0, 0.0, 3122.0], [6093.0, 13038.0, 0.0, 3123.0], [6094.0, 13039.0, 0.0, 3124.0], [6095.0, 13040.0, 0.0, 3125.0], [6097.0, 13041.0, 0.0, 3126.0], [6099.0, 13042.0, 0.0, 3127.0], [6100.0, 13043.0, 0.0, 3128.0], [6101.0, 13044.0, 0.0, 3129.0], [6104.0, 13045.0, 0.0, 3130.0], [6106.0, 13046.0, 0.0, 3131.0], [6108.0, 13047.0, 0.0, 3132.0], [6109.0, 13048.0, 0.0, 3133.0], [6111.0, 13049.0, 0.0, 3134.0], [6114.0, 13050.0, 0.0, 3135.0], [6115.0, 13051.0, 0.0, 3136.0], [6116.0, 13052.0, 0.0, 3137.0], [6118.0, 13053.0, 0.0, 3138.0], [6119.0, 13054.0, 0.0, 3139.0], [6121.0, 13055.0, 0.0, 3140.0], [6122.0, 13056.0, 0.0, 3141.0], [6124.0, 13057.0, 0.0, 3142.0], [6127.0, 13058.0, 0.0, 3143.0], [6128.0, 13059.0, 0.0, 3144.0], [6129.0, 13060.0, 0.0, 3145.0], [6130.0, 13061.0, 0.0, 3146.0], [6132.0, 13062.0, 0.0, 3147.0], [6135.0, 13063.0, 0.0, 3148.0], [6137.0, 13064.0, 0.0, 3149.0], [6138.0, 13065.0, 0.0, 3150.0], [6139.0, 13066.0, 0.0, 3151.0], [6141.0, 13067.0, 0.0, 3152.0], [6143.0, 13068.0, 0.0, 3153.0], [6144.0, 13069.0, 0.0, 3154.0], [6146.0, 13070.0, 0.0, 3155.0], [6150.0, 13071.0, 0.0, 3156.0], [6154.0, 13072.0, 0.0, 3157.0], [6155.0, 13073.0, 0.0, 3158.0], [6156.0, 13074.0, 0.0, 3159.0], [6157.0, 13075.0, 0.0, 3160.0], [6161.0, 13076.0, 0.0, 3161.0], [6162.0, 13077.0, 0.0, 3162.0], [6163.0, 13078.0, 0.0, 3163.0], [6165.0, 13079.0, 0.0, 3164.0], [6167.0, 13080.0, 0.0, 3165.0], [6175.0, 13081.0, 0.0, 3166.0], [6176.0, 13082.0, 0.0, 3167.0], [6177.0, 13083.0, 0.0, 3168.0], [6180.0, 13084.0, 0.0, 3169.0], [6183.0, 13085.0, 0.0, 3170.0], [6184.0, 13086.0, 0.0, 3171.0], [6186.0, 13087.0, 0.0, 3172.0], [6188.0, 13088.0, 0.0, 3173.0], [6190.0, 13089.0, 0.0, 3174.0], [6192.0, 13090.0, 0.0, 3175.0], [6193.0, 13091.0, 0.0, 3176.0], [6194.0, 13092.0, 0.0, 3177.0], [6196.0, 13093.0, 0.0, 3178.0], [6197.0, 13094.0, 0.0, 3179.0], [6198.0, 13095.0, 0.0, 3180.0], [6199.0, 13096.0, 0.0, 3181.0], [6201.0, 13097.0, 0.0, 3182.0], [6203.0, 13098.0, 0.0, 3183.0], [6206.0, 13099.0, 0.0, 3184.0], [6207.0, 13100.0, 0.0, 3185.0], [6208.0, 13101.0, 0.0, 3186.0], [6210.0, 13102.0, 0.0, 3187.0], [6212.0, 13103.0, 0.0, 3188.0], [6213.0, 13104.0, 0.0, 3189.0], [6214.0, 13105.0, 0.0, 3190.0], [6219.0, 13106.0, 0.0, 3191.0], [6220.0, 13107.0, 0.0, 3192.0], [6224.0, 13108.0, 0.0, 3193.0], [6227.0, 13109.0, 0.0, 3194.0], [6228.0, 13110.0, 0.0, 3195.0], [6229.0, 13111.0, 0.0, 3196.0], [6230.0, 13112.0, 0.0, 3197.0], [6231.0, 13113.0, 0.0, 3198.0], [6234.0, 13114.0, 0.0, 3199.0], [6238.0, 13115.0, 0.0, 3200.0], [6243.0, 13116.0, 0.0, 3201.0], [6246.0, 13117.0, 0.0, 3202.0], [6249.0, 13118.0, 0.0, 3203.0], [6250.0, 13119.0, 0.0, 3204.0], [6252.0, 13120.0, 0.0, 3205.0], [6253.0, 13121.0, 0.0, 3206.0], [6255.0, 13122.0, 0.0, 3207.0], [6256.0, 13123.0, 0.0, 3208.0], [6257.0, 13124.0, 0.0, 3209.0], [6258.0, 13125.0, 0.0, 3210.0], [6259.0, 13126.0, 0.0, 3211.0], [6260.0, 13127.0, 0.0, 3212.0], [6261.0, 13128.0, 0.0, 3213.0], [6263.0, 13129.0, 0.0, 3214.0], [6264.0, 13130.0, 0.0, 3215.0], [6266.0, 13131.0, 0.0, 3216.0], [6269.0, 13132.0, 0.0, 3217.0], [6270.0, 13133.0, 0.0, 3218.0], [6271.0, 13134.0, 0.0, 3219.0], [6272.0, 13135.0, 0.0, 3220.0], [6273.0, 13136.0, 0.0, 3221.0], [6274.0, 13137.0, 0.0, 3222.0], [6275.0, 13138.0, 0.0, 3223.0], [6278.0, 13139.0, 0.0, 3224.0], [6279.0, 13140.0, 0.0, 3225.0], [6280.0, 13141.0, 0.0, 3226.0], [6282.0, 13142.0, 0.0, 3227.0], [6284.0, 13143.0, 0.0, 3228.0], [6285.0, 13144.0, 0.0, 3229.0], [6290.0, 13145.0, 0.0, 3230.0], [6291.0, 13146.0, 0.0, 3231.0], [6292.0, 13147.0, 0.0, 3232.0], [6294.0, 13148.0, 0.0, 3233.0], [6297.0, 13149.0, 0.0, 3234.0], [6298.0, 13150.0, 0.0, 3235.0], [6299.0, 13151.0, 0.0, 3236.0], [6300.0, 13152.0, 0.0, 3237.0], [6301.0, 13153.0, 0.0, 3238.0], [6305.0, 13154.0, 0.0, 3239.0], [6315.0, 13155.0, 0.0, 3240.0], [6318.0, 13156.0, 0.0, 3241.0], [6319.0, 13157.0, 0.0, 3242.0], [6320.0, 13158.0, 0.0, 3243.0], [6321.0, 13159.0, 0.0, 3244.0], [6322.0, 13160.0, 0.0, 3245.0], [6323.0, 13161.0, 0.0, 3246.0], [6327.0, 13162.0, 0.0, 3247.0], [6328.0, 13163.0, 0.0, 3248.0], [6329.0, 13164.0, 0.0, 3249.0], [6330.0, 13165.0, 0.0, 3250.0], [6331.0, 13166.0, 0.0, 3251.0], [6332.0, 13167.0, 0.0, 3252.0], [6335.0, 13168.0, 0.0, 3253.0], [6337.0, 13169.0, 0.0, 3254.0], [6338.0, 13170.0, 0.0, 3255.0], [6339.0, 13171.0, 0.0, 3256.0], [6341.0, 13172.0, 0.0, 3257.0], [6342.0, 13173.0, 0.0, 3258.0], [6343.0, 13174.0, 0.0, 3259.0], [6347.0, 13175.0, 0.0, 3260.0], [6348.0, 13176.0, 0.0, 3261.0], [6351.0, 13177.0, 0.0, 3262.0], [6352.0, 13178.0, 0.0, 3263.0], [6353.0, 13179.0, 0.0, 3264.0], [6354.0, 13180.0, 0.0, 3265.0], [6355.0, 13181.0, 0.0, 3266.0], [6358.0, 13182.0, 0.0, 3267.0], [6360.0, 13183.0, 0.0, 3268.0], [6361.0, 13184.0, 0.0, 3269.0], [6362.0, 13185.0, 0.0, 3270.0], [6363.0, 13186.0, 0.0, 3271.0], [6365.0, 13187.0, 0.0, 3272.0], [6367.0, 13188.0, 0.0, 3273.0], [6369.0, 13189.0, 0.0, 3274.0], [6370.0, 13190.0, 0.0, 3275.0], [6374.0, 13191.0, 0.0, 3276.0], [6375.0, 13192.0, 0.0, 3277.0], [6378.0, 13193.0, 0.0, 3278.0], [6380.0, 13194.0, 0.0, 3279.0], [6381.0, 13195.0, 0.0, 3280.0], [6384.0, 13196.0, 0.0, 3281.0], [6388.0, 13197.0, 0.0, 3282.0], [6389.0, 13198.0, 0.0, 3283.0], [6390.0, 13199.0, 0.0, 3284.0], [6391.0, 13200.0, 0.0, 3285.0], [6395.0, 13201.0, 0.0, 3286.0], [6399.0, 13202.0, 0.0, 3287.0], [6400.0, 13203.0, 0.0, 3288.0], [6401.0, 13204.0, 0.0, 3289.0], [6402.0, 13205.0, 0.0, 3290.0], [6403.0, 13206.0, 0.0, 3291.0], [6404.0, 13207.0, 0.0, 3292.0], [6406.0, 13208.0, 0.0, 3293.0], [6408.0, 13209.0, 0.0, 3294.0], [6409.0, 13210.0, 0.0, 3295.0], [6411.0, 13211.0, 0.0, 3296.0], [6413.0, 13212.0, 0.0, 3297.0], [6414.0, 13213.0, 0.0, 3298.0], [6416.0, 13214.0, 0.0, 3299.0], [6418.0, 13215.0, 0.0, 3300.0], [6419.0, 13216.0, 0.0, 3301.0], [6421.0, 13217.0, 0.0, 3302.0], [6423.0, 13218.0, 0.0, 3303.0], [6425.0, 13219.0, 0.0, 3304.0], [6426.0, 13220.0, 0.0, 3305.0], [6427.0, 13221.0, 0.0, 3306.0], [6428.0, 13222.0, 0.0, 3307.0], [6430.0, 13223.0, 0.0, 3308.0], [6431.0, 13224.0, 0.0, 3309.0], [6432.0, 13225.0, 0.0, 3310.0], [6434.0, 13226.0, 0.0, 3311.0], [6435.0, 13227.0, 0.0, 3312.0], [6436.0, 13228.0, 0.0, 3313.0], [6438.0, 13229.0, 0.0, 3314.0], [6440.0, 13230.0, 0.0, 3315.0], [6447.0, 13231.0, 0.0, 3316.0], [6449.0, 13232.0, 0.0, 3317.0], [6451.0, 13233.0, 0.0, 3318.0], [6452.0, 13234.0, 0.0, 3319.0], [6454.0, 13235.0, 0.0, 3320.0], [6455.0, 13236.0, 0.0, 3321.0], [6456.0, 13237.0, 0.0, 3322.0], [6461.0, 13238.0, 0.0, 3323.0], [6463.0, 13239.0, 0.0, 3324.0], [6467.0, 13240.0, 0.0, 3325.0], [6468.0, 13241.0, 0.0, 3326.0], [6469.0, 13242.0, 0.0, 3327.0], [6470.0, 13243.0, 0.0, 3328.0], [6471.0, 13244.0, 0.0, 3329.0], [6472.0, 13245.0, 0.0, 3330.0], [6474.0, 13246.0, 0.0, 3331.0], [6475.0, 13247.0, 0.0, 3332.0], [6476.0, 13248.0, 0.0, 3333.0], [6478.0, 13249.0, 0.0, 3334.0], [6483.0, 13250.0, 0.0, 3335.0], [6486.0, 13251.0, 0.0, 3336.0], [6493.0, 13252.0, 0.0, 3337.0], [6494.0, 13253.0, 0.0, 3338.0], [6495.0, 13254.0, 0.0, 3339.0], [6501.0, 13255.0, 0.0, 3340.0], [6503.0, 13256.0, 0.0, 3341.0], [6506.0, 13257.0, 0.0, 3342.0], [6507.0, 13258.0, 0.0, 3343.0], [6508.0, 13259.0, 0.0, 3344.0], [6513.0, 13260.0, 0.0, 3345.0], [6514.0, 13261.0, 0.0, 3346.0], [6515.0, 13262.0, 0.0, 3347.0], [6516.0, 13263.0, 0.0, 3348.0], [6517.0, 13264.0, 0.0, 3349.0], [6518.0, 13265.0, 0.0, 3350.0], [6519.0, 13266.0, 0.0, 3351.0], [6521.0, 13267.0, 0.0, 3352.0], [6524.0, 13268.0, 0.0, 3353.0], [6526.0, 13269.0, 0.0, 3354.0], [6528.0, 13270.0, 0.0, 3355.0], [6529.0, 13271.0, 0.0, 3356.0], [6530.0, 13272.0, 0.0, 3357.0], [6531.0, 13273.0, 0.0, 3358.0], [6532.0, 13274.0, 0.0, 3359.0], [6535.0, 13275.0, 0.0, 3360.0], [6538.0, 13276.0, 0.0, 3361.0], [6543.0, 13277.0, 0.0, 3362.0], [6544.0, 13278.0, 0.0, 3363.0], [6545.0, 13279.0, 0.0, 3364.0], [6547.0, 13280.0, 0.0, 3365.0], [6548.0, 13281.0, 0.0, 3366.0], [6551.0, 13282.0, 0.0, 3367.0], [6556.0, 13283.0, 0.0, 3368.0], [6558.0, 13284.0, 0.0, 3369.0], [6559.0, 13285.0, 0.0, 3370.0], [6560.0, 13286.0, 0.0, 3371.0], [6562.0, 13287.0, 0.0, 3372.0], [6566.0, 13288.0, 0.0, 3373.0], [6568.0, 13289.0, 0.0, 3374.0], [6570.0, 13290.0, 0.0, 3375.0], [6572.0, 13291.0, 0.0, 3376.0], [6573.0, 13292.0, 0.0, 3377.0], [6574.0, 13293.0, 0.0, 3378.0], [6579.0, 13294.0, 0.0, 3379.0], [6580.0, 13295.0, 0.0, 3380.0], [6583.0, 13296.0, 0.0, 3381.0], [6591.0, 13297.0, 0.0, 3382.0], [6593.0, 13298.0, 0.0, 3383.0], [6594.0, 13299.0, 0.0, 3384.0], [6595.0, 13300.0, 0.0, 3385.0], [6596.0, 13301.0, 0.0, 3386.0], [6599.0, 13302.0, 0.0, 3387.0], [6601.0, 13303.0, 0.0, 3388.0], [6602.0, 13304.0, 0.0, 3389.0], [6606.0, 13305.0, 0.0, 3390.0], [6608.0, 13306.0, 0.0, 3391.0], [6609.0, 13307.0, 0.0, 3392.0], [6610.0, 13308.0, 0.0, 3393.0], [6614.0, 13309.0, 0.0, 3394.0], [6616.0, 13310.0, 0.0, 3395.0], [6618.0, 13311.0, 0.0, 3396.0], [6620.0, 13312.0, 0.0, 3397.0], [6622.0, 13313.0, 0.0, 3398.0], [6623.0, 13314.0, 0.0, 3399.0], [6625.0, 13315.0, 0.0, 3400.0], [6626.0, 13316.0, 0.0, 3401.0], [6628.0, 13317.0, 0.0, 3402.0], [6631.0, 13318.0, 0.0, 3403.0], [6633.0, 13319.0, 0.0, 3404.0], [6634.0, 13320.0, 0.0, 3405.0], [6636.0, 13321.0, 0.0, 3406.0], [6639.0, 13322.0, 0.0, 3407.0], [6640.0, 13323.0, 0.0, 3408.0], [6641.0, 13324.0, 0.0, 3409.0], [6642.0, 13325.0, 0.0, 3410.0], [6643.0, 13326.0, 0.0, 3411.0], [6644.0, 13327.0, 0.0, 3412.0], [6648.0, 13328.0, 0.0, 3413.0], [6649.0, 13329.0, 0.0, 3414.0], [6650.0, 13330.0, 0.0, 3415.0], [6651.0, 13331.0, 0.0, 3416.0], [6653.0, 13332.0, 0.0, 3417.0], [6654.0, 13333.0, 0.0, 3418.0], [6655.0, 13334.0, 0.0, 3419.0], [6657.0, 13335.0, 0.0, 3420.0], [6658.0, 13336.0, 0.0, 3421.0], [6661.0, 13337.0, 0.0, 3422.0], [6663.0, 13338.0, 0.0, 3423.0], [6667.0, 13339.0, 0.0, 3424.0], [6668.0, 13340.0, 0.0, 3425.0], [6669.0, 13341.0, 0.0, 3426.0], [6670.0, 13342.0, 0.0, 3427.0], [6672.0, 13343.0, 0.0, 3428.0], [6673.0, 13344.0, 0.0, 3429.0], [6674.0, 13345.0, 0.0, 3430.0], [6675.0, 13346.0, 0.0, 3431.0], [6679.0, 13347.0, 0.0, 3432.0], [6681.0, 13348.0, 0.0, 3433.0], [6683.0, 13349.0, 0.0, 3434.0], [6684.0, 13350.0, 0.0, 3435.0], [6686.0, 13351.0, 0.0, 3436.0], [6687.0, 13352.0, 0.0, 3437.0], [6689.0, 13353.0, 0.0, 3438.0], [6692.0, 13354.0, 0.0, 3439.0], [6694.0, 13355.0, 0.0, 3440.0], [6696.0, 13356.0, 0.0, 3441.0], [6698.0, 13357.0, 0.0, 3442.0], [6699.0, 13358.0, 0.0, 3443.0], [6702.0, 13359.0, 0.0, 3444.0], [6703.0, 13360.0, 0.0, 3445.0], [6705.0, 13361.0, 0.0, 3446.0], [6707.0, 13362.0, 0.0, 3447.0], [6708.0, 13363.0, 0.0, 3448.0], [6709.0, 13364.0, 0.0, 3449.0], [6711.0, 13365.0, 0.0, 3450.0], [6712.0, 13366.0, 0.0, 3451.0], [6714.0, 13367.0, 0.0, 3452.0], [6717.0, 13368.0, 0.0, 3453.0], [6719.0, 13369.0, 0.0, 3454.0], [6722.0, 13370.0, 0.0, 3455.0], [6723.0, 13371.0, 0.0, 3456.0], [6724.0, 13372.0, 0.0, 3457.0], [6726.0, 13373.0, 0.0, 3458.0], [6728.0, 13374.0, 0.0, 3459.0], [6729.0, 13375.0, 0.0, 3460.0], [6730.0, 13376.0, 0.0, 3461.0], [6735.0, 13377.0, 0.0, 3462.0], [6736.0, 13378.0, 0.0, 3463.0], [6737.0, 13379.0, 0.0, 3464.0], [6738.0, 13380.0, 0.0, 3465.0], [6739.0, 13381.0, 0.0, 3466.0], [6741.0, 13382.0, 0.0, 3467.0], [6745.0, 13383.0, 0.0, 3468.0], [6747.0, 13384.0, 0.0, 3469.0], [6751.0, 13385.0, 0.0, 3470.0], [6752.0, 13386.0, 0.0, 3471.0], [6754.0, 13387.0, 0.0, 3472.0], [6756.0, 13388.0, 0.0, 3473.0], [6757.0, 13389.0, 0.0, 3474.0], [6758.0, 13390.0, 0.0, 3475.0], [6759.0, 13391.0, 0.0, 3476.0], [6761.0, 13392.0, 0.0, 3477.0], [6762.0, 13393.0, 0.0, 3478.0], [6766.0, 13394.0, 0.0, 3479.0], [6771.0, 13395.0, 0.0, 3480.0], [6772.0, 13396.0, 0.0, 3481.0], [6773.0, 13397.0, 0.0, 3482.0], [6777.0, 13398.0, 0.0, 3483.0], [6780.0, 13399.0, 0.0, 3484.0], [6784.0, 13400.0, 0.0, 3485.0], [6785.0, 13401.0, 0.0, 3486.0], [6787.0, 13402.0, 0.0, 3487.0], [6790.0, 13403.0, 0.0, 3488.0], [6791.0, 13404.0, 0.0, 3489.0], [6799.0, 13405.0, 0.0, 3490.0], [6800.0, 13406.0, 0.0, 3491.0], [6801.0, 13407.0, 0.0, 3492.0], [6804.0, 13408.0, 0.0, 3493.0], [6807.0, 13409.0, 0.0, 3494.0], [6808.0, 13410.0, 0.0, 3495.0], [6809.0, 13411.0, 0.0, 3496.0], [6810.0, 13412.0, 0.0, 3497.0], [6812.0, 13413.0, 0.0, 3498.0], [6816.0, 13414.0, 0.0, 3499.0], [6818.0, 13415.0, 0.0, 3500.0], [6819.0, 13416.0, 0.0, 3501.0], [6820.0, 13417.0, 0.0, 3502.0], [6821.0, 13418.0, 0.0, 3503.0], [6822.0, 13419.0, 0.0, 3504.0], [6823.0, 13420.0, 0.0, 3505.0], [6826.0, 13421.0, 0.0, 3506.0], [6827.0, 13422.0, 0.0, 3507.0], [6830.0, 13423.0, 0.0, 3508.0], [6833.0, 13424.0, 0.0, 3509.0], [6835.0, 13425.0, 0.0, 3510.0], [6836.0, 13426.0, 0.0, 3511.0], [6837.0, 13427.0, 0.0, 3512.0], [6839.0, 13428.0, 0.0, 3513.0], [6841.0, 13429.0, 0.0, 3514.0], [6844.0, 13430.0, 0.0, 3515.0], [6845.0, 13431.0, 0.0, 3516.0], [6849.0, 13432.0, 0.0, 3517.0], [6850.0, 13433.0, 0.0, 3518.0], [6853.0, 13434.0, 0.0, 3519.0], [6854.0, 13435.0, 0.0, 3520.0], [6857.0, 13436.0, 0.0, 3521.0], [6858.0, 13437.0, 0.0, 3522.0], [6861.0, 13438.0, 0.0, 3523.0], [6864.0, 13439.0, 0.0, 3524.0], [6865.0, 13440.0, 0.0, 3525.0], [6867.0, 13441.0, 0.0, 3526.0], [6868.0, 13442.0, 0.0, 3527.0], [6869.0, 13443.0, 0.0, 3528.0], [6874.0, 13444.0, 0.0, 3529.0], [6875.0, 13445.0, 0.0, 3530.0], [6878.0, 13446.0, 0.0, 3531.0], [6879.0, 13447.0, 0.0, 3532.0], [6882.0, 13448.0, 0.0, 3533.0], [6884.0, 13449.0, 0.0, 3534.0], [6887.0, 13450.0, 0.0, 3535.0], [6888.0, 13451.0, 0.0, 3536.0], [6889.0, 13452.0, 0.0, 3537.0], [6890.0, 13453.0, 0.0, 3538.0], [6891.0, 13454.0, 0.0, 3539.0], [6893.0, 13455.0, 0.0, 3540.0], [6898.0, 13456.0, 0.0, 3541.0], [6900.0, 13457.0, 0.0, 3542.0], [6901.0, 13458.0, 0.0, 3543.0], [6903.0, 13459.0, 0.0, 3544.0], [6905.0, 13460.0, 0.0, 3545.0], [6906.0, 13461.0, 0.0, 3546.0], [6908.0, 13462.0, 0.0, 3547.0], [6909.0, 13463.0, 0.0, 3548.0], [6910.0, 13464.0, 0.0, 3549.0], [6911.0, 13465.0, 0.0, 3550.0], [6912.0, 13466.0, 0.0, 3551.0], [6913.0, 13467.0, 0.0, 3552.0], [6915.0, 13468.0, 0.0, 3553.0], [6916.0, 13469.0, 0.0, 3554.0], [6917.0, 13470.0, 0.0, 3555.0], [6925.0, 13471.0, 0.0, 3556.0], [6929.0, 13472.0, 0.0, 3557.0], [6930.0, 13473.0, 0.0, 3558.0], [6933.0, 13474.0, 0.0, 3559.0], [6935.0, 13475.0, 0.0, 3560.0], [6937.0, 13476.0, 0.0, 3561.0], [6939.0, 13477.0, 0.0, 3562.0], [6942.0, 13478.0, 0.0, 3563.0], [6943.0, 13479.0, 0.0, 3564.0], [6946.0, 13480.0, 0.0, 3565.0], [6947.0, 13481.0, 0.0, 3566.0], [6948.0, 13482.0, 0.0, 3567.0], [6949.0, 13483.0, 0.0, 3568.0], [6954.0, 13484.0, 0.0, 3569.0], [6955.0, 13485.0, 0.0, 3570.0], [6958.0, 13486.0, 0.0, 3571.0], [6960.0, 13487.0, 0.0, 3572.0], [6961.0, 13488.0, 0.0, 3573.0], [6962.0, 13489.0, 0.0, 3574.0], [6964.0, 13490.0, 0.0, 3575.0], [6968.0, 13491.0, 0.0, 3576.0], [6971.0, 13492.0, 0.0, 3577.0], [6972.0, 13493.0, 0.0, 3578.0], [6974.0, 13494.0, 0.0, 3579.0], [6979.0, 13495.0, 0.0, 3580.0], [6984.0, 13496.0, 0.0, 3581.0], [6985.0, 13497.0, 0.0, 3582.0], [6990.0, 13498.0, 0.0, 3583.0], [6993.0, 13499.0, 0.0, 3584.0], [6996.0, 13500.0, 0.0, 3585.0], [6998.0, 13501.0, 0.0, 3586.0], [7001.0, 13502.0, 0.0, 3587.0], [7002.0, 13503.0, 0.0, 3588.0], [7003.0, 13504.0, 0.0, 3589.0], [7005.0, 13505.0, 0.0, 3590.0], [7012.0, 13506.0, 0.0, 3591.0], [7013.0, 13507.0, 0.0, 3592.0], [7014.0, 13508.0, 0.0, 3593.0], [7015.0, 13509.0, 0.0, 3594.0], [7016.0, 13510.0, 0.0, 3595.0], [7017.0, 13511.0, 0.0, 3596.0], [7018.0, 13512.0, 0.0, 3597.0], [7020.0, 13513.0, 0.0, 3598.0], [7022.0, 13514.0, 0.0, 3599.0], [7024.0, 13515.0, 0.0, 3600.0], [7028.0, 13516.0, 0.0, 3601.0], [7029.0, 13517.0, 0.0, 3602.0], [7030.0, 13518.0, 0.0, 3603.0], [7031.0, 13519.0, 0.0, 3604.0], [7033.0, 13520.0, 0.0, 3605.0], [7034.0, 13521.0, 0.0, 3606.0], [7036.0, 13522.0, 0.0, 3607.0], [7037.0, 13523.0, 0.0, 3608.0], [7038.0, 13524.0, 0.0, 3609.0], [7045.0, 13525.0, 0.0, 3610.0], [7046.0, 13526.0, 0.0, 3611.0], [7047.0, 13527.0, 0.0, 3612.0], [7049.0, 13528.0, 0.0, 3613.0], [7052.0, 13529.0, 0.0, 3614.0], [7054.0, 13530.0, 0.0, 3615.0], [7055.0, 13531.0, 0.0, 3616.0], [7056.0, 13532.0, 0.0, 3617.0], [7060.0, 13533.0, 0.0, 3618.0], [7061.0, 13534.0, 0.0, 3619.0], [7063.0, 13535.0, 0.0, 3620.0], [7064.0, 13536.0, 0.0, 3621.0], [7065.0, 13537.0, 0.0, 3622.0], [7069.0, 13538.0, 0.0, 3623.0], [7070.0, 13539.0, 0.0, 3624.0], [7071.0, 13540.0, 0.0, 3625.0], [7073.0, 13541.0, 0.0, 3626.0], [7076.0, 13542.0, 0.0, 3627.0], [7077.0, 13543.0, 0.0, 3628.0], [7081.0, 13544.0, 0.0, 3629.0], [7082.0, 13545.0, 0.0, 3630.0], [7084.0, 13546.0, 0.0, 3631.0], [7085.0, 13547.0, 0.0, 3632.0], [7087.0, 13548.0, 0.0, 3633.0], [7088.0, 13549.0, 0.0, 3634.0], [7090.0, 13550.0, 0.0, 3635.0], [7092.0, 13551.0, 0.0, 3636.0], [7093.0, 13552.0, 0.0, 3637.0], [7094.0, 13553.0, 0.0, 3638.0], [7095.0, 13554.0, 0.0, 3639.0], [7097.0, 13555.0, 0.0, 3640.0], [7098.0, 13556.0, 0.0, 3641.0], [7102.0, 13557.0, 0.0, 3642.0], [7107.0, 13558.0, 0.0, 3643.0], [7108.0, 13559.0, 0.0, 3644.0], [7109.0, 13560.0, 0.0, 3645.0], [7114.0, 13561.0, 0.0, 3646.0], [7117.0, 13562.0, 0.0, 3647.0], [7118.0, 13563.0, 0.0, 3648.0], [7124.0, 13564.0, 0.0, 3649.0], [7126.0, 13565.0, 0.0, 3650.0], [7129.0, 13566.0, 0.0, 3651.0], [7130.0, 13567.0, 0.0, 3652.0], [7131.0, 13568.0, 0.0, 3653.0], [7135.0, 13569.0, 0.0, 3654.0], [7137.0, 13570.0, 0.0, 3655.0], [7138.0, 13571.0, 0.0, 3656.0], [7140.0, 13572.0, 0.0, 3657.0], [7141.0, 13573.0, 0.0, 3658.0], [7142.0, 13574.0, 0.0, 3659.0], [7143.0, 13575.0, 0.0, 3660.0], [7144.0, 13576.0, 0.0, 3661.0], [7147.0, 13577.0, 0.0, 3662.0], [7148.0, 13578.0, 0.0, 3663.0], [7151.0, 13579.0, 0.0, 3664.0], [7152.0, 13580.0, 0.0, 3665.0], [7155.0, 13581.0, 0.0, 3666.0], [7159.0, 13582.0, 0.0, 3667.0], [7160.0, 13583.0, 0.0, 3668.0], [7161.0, 13584.0, 0.0, 3669.0], [7162.0, 13585.0, 0.0, 3670.0], [7166.0, 13586.0, 0.0, 3671.0], [7167.0, 13587.0, 0.0, 3672.0], [7168.0, 13588.0, 0.0, 3673.0], [7174.0, 13589.0, 0.0, 3674.0], [7176.0, 13590.0, 0.0, 3675.0], [7177.0, 13591.0, 0.0, 3676.0], [7178.0, 13592.0, 0.0, 3677.0], [7180.0, 13593.0, 0.0, 3678.0], [7182.0, 13594.0, 0.0, 3679.0], [7185.0, 13595.0, 0.0, 3680.0], [7186.0, 13596.0, 0.0, 3681.0], [7187.0, 13597.0, 0.0, 3682.0], [7188.0, 13598.0, 0.0, 3683.0], [7189.0, 13599.0, 0.0, 3684.0], [7191.0, 13600.0, 0.0, 3685.0], [7192.0, 13601.0, 0.0, 3686.0], [7193.0, 13602.0, 0.0, 3687.0], [7195.0, 13603.0, 0.0, 3688.0], [7203.0, 13604.0, 0.0, 3689.0], [7204.0, 13605.0, 0.0, 3690.0], [7205.0, 13606.0, 0.0, 3691.0], [7208.0, 13607.0, 0.0, 3692.0], [7209.0, 13608.0, 0.0, 3693.0], [7212.0, 13609.0, 0.0, 3694.0], [7213.0, 13610.0, 0.0, 3695.0], [7216.0, 13611.0, 0.0, 3696.0], [7217.0, 13612.0, 0.0, 3697.0], [7218.0, 13613.0, 0.0, 3698.0], [7221.0, 13614.0, 0.0, 3699.0], [7222.0, 13615.0, 0.0, 3700.0], [7224.0, 13616.0, 0.0, 3701.0], [7225.0, 13617.0, 0.0, 3702.0], [7226.0, 13618.0, 0.0, 3703.0], [7227.0, 13619.0, 0.0, 3704.0], [7229.0, 13620.0, 0.0, 3705.0], [7231.0, 13621.0, 0.0, 3706.0], [7234.0, 13622.0, 0.0, 3707.0], [7236.0, 13623.0, 0.0, 3708.0], [7238.0, 13624.0, 0.0, 3709.0], [7239.0, 13625.0, 0.0, 3710.0], [7240.0, 13626.0, 0.0, 3711.0], [7241.0, 13627.0, 0.0, 3712.0], [7242.0, 13628.0, 0.0, 3713.0], [7243.0, 13629.0, 0.0, 3714.0], [7247.0, 13630.0, 0.0, 3715.0], [7249.0, 13631.0, 0.0, 3716.0], [7251.0, 13632.0, 0.0, 3717.0], [7253.0, 13633.0, 0.0, 3718.0], [7257.0, 13634.0, 0.0, 3719.0], [7258.0, 13635.0, 0.0, 3720.0], [7259.0, 13636.0, 0.0, 3721.0], [7260.0, 13637.0, 0.0, 3722.0], [7262.0, 13638.0, 0.0, 3723.0], [7265.0, 13639.0, 0.0, 3724.0], [7266.0, 13640.0, 0.0, 3725.0], [7267.0, 13641.0, 0.0, 3726.0], [7268.0, 13642.0, 0.0, 3727.0], [7270.0, 13643.0, 0.0, 3728.0], [7271.0, 13644.0, 0.0, 3729.0], [7272.0, 13645.0, 0.0, 3730.0], [7274.0, 13646.0, 0.0, 3731.0], [7275.0, 13647.0, 0.0, 3732.0], [7276.0, 13648.0, 0.0, 3733.0], [7277.0, 13649.0, 0.0, 3734.0], [7278.0, 13650.0, 0.0, 3735.0], [7279.0, 13651.0, 0.0, 3736.0], [7280.0, 13652.0, 0.0, 3737.0], [7283.0, 13653.0, 0.0, 3738.0], [7286.0, 13654.0, 0.0, 3739.0], [7289.0, 13655.0, 0.0, 3740.0], [7292.0, 13656.0, 0.0, 3741.0], [7293.0, 13657.0, 0.0, 3742.0], [7294.0, 13658.0, 0.0, 3743.0], [7295.0, 13659.0, 0.0, 3744.0], [7300.0, 13660.0, 0.0, 3745.0], [7301.0, 13661.0, 0.0, 3746.0], [7303.0, 13662.0, 0.0, 3747.0], [7304.0, 13663.0, 0.0, 3748.0], [7306.0, 13664.0, 0.0, 3749.0], [7310.0, 13665.0, 0.0, 3750.0], [7312.0, 13666.0, 0.0, 3751.0], [7317.0, 13667.0, 0.0, 3752.0], [7318.0, 13668.0, 0.0, 3753.0], [7320.0, 13669.0, 0.0, 3754.0], [7321.0, 13670.0, 0.0, 3755.0], [7322.0, 13671.0, 0.0, 3756.0], [7323.0, 13672.0, 0.0, 3757.0], [7326.0, 13673.0, 0.0, 3758.0], [7327.0, 13674.0, 0.0, 3759.0], [7331.0, 13675.0, 0.0, 3760.0], [7333.0, 13676.0, 0.0, 3761.0], [7334.0, 13677.0, 0.0, 3762.0], [7335.0, 13678.0, 0.0, 3763.0], [7336.0, 13679.0, 0.0, 3764.0], [7337.0, 13680.0, 0.0, 3765.0], [7338.0, 13681.0, 0.0, 3766.0], [7339.0, 13682.0, 0.0, 3767.0], [7340.0, 13683.0, 0.0, 3768.0], [7342.0, 13684.0, 0.0, 3769.0], [7343.0, 13685.0, 0.0, 3770.0], [7344.0, 13686.0, 0.0, 3771.0], [7346.0, 13687.0, 0.0, 3772.0], [7349.0, 13688.0, 0.0, 3773.0], [7351.0, 13689.0, 0.0, 3774.0], [7353.0, 13690.0, 0.0, 3775.0], [7354.0, 13691.0, 0.0, 3776.0], [7355.0, 13692.0, 0.0, 3777.0], [7363.0, 13693.0, 0.0, 3778.0], [7364.0, 13694.0, 0.0, 3779.0], [7367.0, 13695.0, 0.0, 3780.0], [7372.0, 13696.0, 0.0, 3781.0], [7373.0, 13697.0, 0.0, 3782.0], [7374.0, 13698.0, 0.0, 3783.0], [7376.0, 13699.0, 0.0, 3784.0], [7378.0, 13700.0, 0.0, 3785.0], [7379.0, 13701.0, 0.0, 3786.0], [7380.0, 13702.0, 0.0, 3787.0], [7382.0, 13703.0, 0.0, 3788.0], [7383.0, 13704.0, 0.0, 3789.0], [7385.0, 13705.0, 0.0, 3790.0], [7386.0, 13706.0, 0.0, 3791.0], [7387.0, 13707.0, 0.0, 3792.0], [7389.0, 13708.0, 0.0, 3793.0], [7391.0, 13709.0, 0.0, 3794.0], [7393.0, 13710.0, 0.0, 3795.0], [7394.0, 13711.0, 0.0, 3796.0], [7396.0, 13712.0, 0.0, 3797.0], [7399.0, 13713.0, 0.0, 3798.0], [7401.0, 13714.0, 0.0, 3799.0], [7403.0, 13715.0, 0.0, 3800.0], [7406.0, 13716.0, 0.0, 3801.0], [7409.0, 13717.0, 0.0, 3802.0], [7410.0, 13718.0, 0.0, 3803.0], [7411.0, 13719.0, 0.0, 3804.0], [7414.0, 13720.0, 0.0, 3805.0], [7415.0, 13721.0, 0.0, 3806.0], [7419.0, 13722.0, 0.0, 3807.0], [7422.0, 13723.0, 0.0, 3808.0], [7423.0, 13724.0, 0.0, 3809.0], [7425.0, 13725.0, 0.0, 3810.0], [7426.0, 13726.0, 0.0, 3811.0], [7427.0, 13727.0, 0.0, 3812.0], [7428.0, 13728.0, 0.0, 3813.0], [7429.0, 13729.0, 0.0, 3814.0], [7432.0, 13730.0, 0.0, 3815.0], [7433.0, 13731.0, 0.0, 3816.0], [7435.0, 13732.0, 0.0, 3817.0], [7436.0, 13733.0, 0.0, 3818.0], [7437.0, 13734.0, 0.0, 3819.0], [7438.0, 13735.0, 0.0, 3820.0], [7440.0, 13736.0, 0.0, 3821.0], [7441.0, 13737.0, 0.0, 3822.0], [7442.0, 13738.0, 0.0, 3823.0], [7444.0, 13739.0, 0.0, 3824.0], [7445.0, 13740.0, 0.0, 3825.0], [7446.0, 13741.0, 0.0, 3826.0], [7448.0, 13742.0, 0.0, 3827.0], [7449.0, 13743.0, 0.0, 3828.0], [7450.0, 13744.0, 0.0, 3829.0], [7451.0, 13745.0, 0.0, 3830.0], [7452.0, 13746.0, 0.0, 3831.0], [7454.0, 13747.0, 0.0, 3832.0], [7455.0, 13748.0, 0.0, 3833.0], [7457.0, 13749.0, 0.0, 3834.0], [7458.0, 13750.0, 0.0, 3835.0], [7460.0, 13751.0, 0.0, 3836.0], [7461.0, 13752.0, 0.0, 3837.0], [7462.0, 13753.0, 0.0, 3838.0], [7465.0, 13754.0, 0.0, 3839.0], [7466.0, 13755.0, 0.0, 3840.0], [7468.0, 13756.0, 0.0, 3841.0], [7471.0, 13757.0, 0.0, 3842.0], [7472.0, 13758.0, 0.0, 3843.0], [7474.0, 13759.0, 0.0, 3844.0], [7475.0, 13760.0, 0.0, 3845.0], [7476.0, 13761.0, 0.0, 3846.0], [7479.0, 13762.0, 0.0, 3847.0], [7481.0, 13763.0, 0.0, 3848.0], [7485.0, 13764.0, 0.0, 3849.0], [7487.0, 13765.0, 0.0, 3850.0], [7488.0, 13766.0, 0.0, 3851.0], [7490.0, 13767.0, 0.0, 3852.0], [7491.0, 13768.0, 0.0, 3853.0], [7492.0, 13769.0, 0.0, 3854.0], [7497.0, 13770.0, 0.0, 3855.0], [7500.0, 13771.0, 0.0, 3856.0], [7501.0, 13772.0, 0.0, 3857.0], [7503.0, 13773.0, 0.0, 3858.0], [7505.0, 13774.0, 0.0, 3859.0], [7506.0, 13775.0, 0.0, 3860.0], [7507.0, 13776.0, 0.0, 3861.0], [7508.0, 13777.0, 0.0, 3862.0], [7512.0, 13778.0, 0.0, 3863.0], [7516.0, 13779.0, 0.0, 3864.0], [7519.0, 13780.0, 0.0, 3865.0], [7520.0, 13781.0, 0.0, 3866.0], [7523.0, 13782.0, 0.0, 3867.0], [7524.0, 13783.0, 0.0, 3868.0], [7525.0, 13784.0, 0.0, 3869.0], [7526.0, 13785.0, 0.0, 3870.0], [7528.0, 13786.0, 0.0, 3871.0], [7531.0, 13787.0, 0.0, 3872.0], [7536.0, 13788.0, 0.0, 3873.0], [7537.0, 13789.0, 0.0, 3874.0], [7538.0, 13790.0, 0.0, 3875.0], [7539.0, 13791.0, 0.0, 3876.0], [7540.0, 13792.0, 0.0, 3877.0], [7542.0, 13793.0, 0.0, 3878.0], [7543.0, 13794.0, 0.0, 3879.0], [7544.0, 13795.0, 0.0, 3880.0], [7545.0, 13796.0, 0.0, 3881.0], [7546.0, 13797.0, 0.0, 3882.0], [7549.0, 13798.0, 0.0, 3883.0], [7554.0, 13799.0, 0.0, 3884.0], [7556.0, 13800.0, 0.0, 3885.0], [7559.0, 13801.0, 0.0, 3886.0], [7560.0, 13802.0, 0.0, 3887.0], [7562.0, 13803.0, 0.0, 3888.0], [7564.0, 13804.0, 0.0, 3889.0], [7565.0, 13805.0, 0.0, 3890.0], [7567.0, 13806.0, 0.0, 3891.0], [7569.0, 13807.0, 0.0, 3892.0], [7571.0, 13808.0, 0.0, 3893.0], [7572.0, 13809.0, 0.0, 3894.0], [7573.0, 13810.0, 0.0, 3895.0], [7574.0, 13811.0, 0.0, 3896.0], [7575.0, 13812.0, 0.0, 3897.0], [7579.0, 13813.0, 0.0, 3898.0], [7580.0, 13814.0, 0.0, 3899.0], [7581.0, 13815.0, 0.0, 3900.0], [7582.0, 13816.0, 0.0, 3901.0], [7585.0, 13817.0, 0.0, 3902.0], [7586.0, 13818.0, 0.0, 3903.0], [7588.0, 13819.0, 0.0, 3904.0], [7589.0, 13820.0, 0.0, 3905.0], [7590.0, 13821.0, 0.0, 3906.0], [7591.0, 13822.0, 0.0, 3907.0], [7593.0, 13823.0, 0.0, 3908.0], [7595.0, 13824.0, 0.0, 3909.0], [7597.0, 13825.0, 0.0, 3910.0], [7604.0, 13826.0, 0.0, 3911.0], [7605.0, 13827.0, 0.0, 3912.0], [7608.0, 13828.0, 0.0, 3913.0], [7610.0, 13829.0, 0.0, 3914.0], [7611.0, 13830.0, 0.0, 3915.0], [7612.0, 13831.0, 0.0, 3916.0], [7614.0, 13832.0, 0.0, 3917.0], [7616.0, 13833.0, 0.0, 3918.0], [7617.0, 13834.0, 0.0, 3919.0], [7618.0, 13835.0, 0.0, 3920.0], [7620.0, 13836.0, 0.0, 3921.0], [7621.0, 13837.0, 0.0, 3922.0], [7623.0, 13838.0, 0.0, 3923.0], [7624.0, 13839.0, 0.0, 3924.0], [7627.0, 13840.0, 0.0, 3925.0], [7629.0, 13841.0, 0.0, 3926.0], [7630.0, 13842.0, 0.0, 3927.0], [7631.0, 13843.0, 0.0, 3928.0], [7637.0, 13844.0, 0.0, 3929.0], [7639.0, 13845.0, 0.0, 3930.0], [7641.0, 13846.0, 0.0, 3931.0], [7643.0, 13847.0, 0.0, 3932.0], [7645.0, 13848.0, 0.0, 3933.0], [7647.0, 13849.0, 0.0, 3934.0], [7649.0, 13850.0, 0.0, 3935.0], [7650.0, 13851.0, 0.0, 3936.0], [7652.0, 13852.0, 0.0, 3937.0], [7656.0, 13853.0, 0.0, 3938.0], [7657.0, 13854.0, 0.0, 3939.0], [7659.0, 13855.0, 0.0, 3940.0], [7661.0, 13856.0, 0.0, 3941.0], [7662.0, 13857.0, 0.0, 3942.0], [7664.0, 13858.0, 0.0, 3943.0], [7665.0, 13859.0, 0.0, 3944.0], [7666.0, 13860.0, 0.0, 3945.0], [7667.0, 13861.0, 0.0, 3946.0], [7670.0, 13862.0, 0.0, 3947.0], [7673.0, 13863.0, 0.0, 3948.0], [7674.0, 13864.0, 0.0, 3949.0], [7676.0, 13865.0, 0.0, 3950.0], [7681.0, 13866.0, 0.0, 3951.0], [7685.0, 13867.0, 0.0, 3952.0], [7688.0, 13868.0, 0.0, 3953.0], [7690.0, 13869.0, 0.0, 3954.0], [7692.0, 13870.0, 0.0, 3955.0], [7693.0, 13871.0, 0.0, 3956.0], [7695.0, 13872.0, 0.0, 3957.0], [7698.0, 13873.0, 0.0, 3958.0], [7704.0, 13874.0, 0.0, 3959.0], [7705.0, 13875.0, 0.0, 3960.0], [7707.0, 13876.0, 0.0, 3961.0], [7710.0, 13877.0, 0.0, 3962.0], [7711.0, 13878.0, 0.0, 3963.0], [7713.0, 13879.0, 0.0, 3964.0], [7714.0, 13880.0, 0.0, 3965.0], [7715.0, 13881.0, 0.0, 3966.0], [7718.0, 13882.0, 0.0, 3967.0], [7719.0, 13883.0, 0.0, 3968.0], [7720.0, 13884.0, 0.0, 3969.0], [7721.0, 13885.0, 0.0, 3970.0], [7722.0, 13886.0, 0.0, 3971.0], [7723.0, 13887.0, 0.0, 3972.0], [7725.0, 13888.0, 0.0, 3973.0], [7727.0, 13889.0, 0.0, 3974.0], [7728.0, 13890.0, 0.0, 3975.0], [7730.0, 13891.0, 0.0, 3976.0], [7731.0, 13892.0, 0.0, 3977.0], [7733.0, 13893.0, 0.0, 3978.0], [7736.0, 13894.0, 0.0, 3979.0], [7742.0, 13895.0, 0.0, 3980.0], [7745.0, 13896.0, 0.0, 3981.0], [7746.0, 13897.0, 0.0, 3982.0], [7747.0, 13898.0, 0.0, 3983.0], [7748.0, 13899.0, 0.0, 3984.0], [7749.0, 13900.0, 0.0, 3985.0], [7750.0, 13901.0, 0.0, 3986.0], [7753.0, 13902.0, 0.0, 3987.0], [7754.0, 13903.0, 0.0, 3988.0], [7756.0, 13904.0, 0.0, 3989.0], [7757.0, 13905.0, 0.0, 3990.0], [7758.0, 13906.0, 0.0, 3991.0], [7759.0, 13907.0, 0.0, 3992.0], [7762.0, 13908.0, 0.0, 3993.0], [7763.0, 13909.0, 0.0, 3994.0], [7764.0, 13910.0, 0.0, 3995.0], [7765.0, 13911.0, 0.0, 3996.0], [7766.0, 13912.0, 0.0, 3997.0], [7767.0, 13913.0, 0.0, 3998.0], [7773.0, 13914.0, 0.0, 3999.0], [7774.0, 13915.0, 0.0, 4000.0], [7776.0, 13916.0, 0.0, 4001.0], [7779.0, 13917.0, 0.0, 4002.0], [7780.0, 13918.0, 0.0, 4003.0], [7782.0, 13919.0, 0.0, 4004.0], [7784.0, 13920.0, 0.0, 4005.0], [7790.0, 13921.0, 0.0, 4006.0], [7791.0, 13922.0, 0.0, 4007.0], [7793.0, 13923.0, 0.0, 4008.0], [7794.0, 13924.0, 0.0, 4009.0], [7796.0, 13925.0, 0.0, 4010.0], [7801.0, 13926.0, 0.0, 4011.0], [7802.0, 13927.0, 0.0, 4012.0], [7805.0, 13928.0, 0.0, 4013.0], [7807.0, 13929.0, 0.0, 4014.0], [7809.0, 13930.0, 0.0, 4015.0], [7810.0, 13931.0, 0.0, 4016.0], [7812.0, 13932.0, 0.0, 4017.0], [7813.0, 13933.0, 0.0, 4018.0], [7814.0, 13934.0, 0.0, 4019.0], [7819.0, 13935.0, 0.0, 4020.0], [7820.0, 13936.0, 0.0, 4021.0], [7823.0, 13937.0, 0.0, 4022.0], [7824.0, 13938.0, 0.0, 4023.0], [7825.0, 13939.0, 0.0, 4024.0], [7827.0, 13940.0, 0.0, 4025.0], [7828.0, 13941.0, 0.0, 4026.0], [7829.0, 13942.0, 0.0, 4027.0], [7830.0, 13943.0, 0.0, 4028.0], [7832.0, 13944.0, 0.0, 4029.0], [7833.0, 13945.0, 0.0, 4030.0], [2238.0, 5641.0, 0.0, 2.0], [5153.0, 7522.0, 0.0, 2.0], [6254.0, 7806.0, 0.0, 2.0], [2573.0, 5702.0, 0.0, 2.0], [5178.0, 6485.0, 0.0, 2.0], [3668.0, 6969.0, 0.0, 2.0], [7000.0, 13952.0, 0.0, 3.0], [2638.0, 10255.0, 0.0, 9.0], [3064.0, 13954.0, 0.0, 10.0], [3233.0, 13955.0, 0.0, 11.0], [3505.0, 13956.0, 0.0, 12.0], [3930.0, 13957.0, 0.0, 13.0], [3951.0, 13958.0, 0.0, 14.0], [3989.0, 13959.0, 0.0, 15.0], [4144.0, 13960.0, 0.0, 16.0], [4354.0, 13961.0, 0.0, 17.0], [4455.0, 13962.0, 0.0, 18.0], [4564.0, 13963.0, 0.0, 19.0], [4620.0, 13964.0, 0.0, 20.0], [4640.0, 13965.0, 0.0, 21.0], [4904.0, 13966.0, 0.0, 22.0], [5008.0, 13967.0, 0.0, 23.0], [5785.0, 13968.0, 0.0, 24.0], [5858.0, 13969.0, 0.0, 25.0], [6159.0, 13970.0, 0.0, 26.0], [6233.0, 13971.0, 0.0, 27.0], [6324.0, 13972.0, 0.0, 28.0], [6445.0, 13973.0, 0.0, 29.0], [6552.0, 13974.0, 0.0, 30.0], [6682.0, 13975.0, 0.0, 31.0], [6907.0, 13976.0, 0.0, 32.0], [7025.0, 13977.0, 0.0, 33.0], [7397.0, 13978.0, 0.0, 34.0], [7434.0, 13979.0, 0.0, 35.0], [7634.0, 13980.0, 0.0, 36.0], [4389.0, 9875.0, 0.0, 5.0], [4438.0, 13982.0, 0.0, 6.0], [5524.0, 13983.0, 0.0, 7.0], [5935.0, 13984.0, 0.0, 8.0], [3384.0, 10269.0, 0.0, 7.0], [3759.0, 13986.0, 0.0, 8.0], [3790.0, 13987.0, 0.0, 9.0], [4393.0, 13988.0, 0.0, 10.0], [5856.0, 13989.0, 0.0, 11.0], [5932.0, 13990.0, 0.0, 12.0], [5978.0, 13991.0, 0.0, 13.0], [2175.0, 10470.0, 0.0, 12.0], [2189.0, 13993.0, 0.0, 13.0], [2290.0, 13994.0, 0.0, 14.0], [2647.0, 13995.0, 0.0, 15.0], [3351.0, 13996.0, 0.0, 16.0], [3398.0, 13997.0, 0.0, 17.0], [3554.0, 13998.0, 0.0, 18.0], [4199.0, 13999.0, 0.0, 19.0], [4271.0, 14000.0, 0.0, 20.0], [4603.0, 14001.0, 0.0, 21.0], [4695.0, 14002.0, 0.0, 22.0], [4729.0, 14003.0, 0.0, 23.0], [5078.0, 14004.0, 0.0, 24.0], [5183.0, 14005.0, 0.0, 25.0], [5318.0, 14006.0, 0.0, 26.0], [5321.0, 14007.0, 0.0, 27.0], [5336.0, 14008.0, 0.0, 28.0], [5371.0, 14009.0, 0.0, 29.0], [5428.0, 14010.0, 0.0, 30.0], [5523.0, 14011.0, 0.0, 31.0], [6003.0, 14012.0, 0.0, 32.0], [6117.0, 14013.0, 0.0, 33.0], [6368.0, 14014.0, 0.0, 34.0], [6394.0, 14015.0, 0.0, 35.0], [6481.0, 14016.0, 0.0, 36.0], [6680.0, 14017.0, 0.0, 37.0], [6778.0, 14018.0, 0.0, 38.0], [6877.0, 14019.0, 0.0, 39.0], [6994.0, 14020.0, 0.0, 40.0], [7228.0, 14021.0, 0.0, 41.0], [6479.0, 7804.0, 0.0, 2.0], [3510.0, 7358.0, 0.0, 2.0], [2025.0, 2073.0, 0.0, 2.0], [2198.0, 10533.0, 0.0, 22.0], [2060.0, 10643.0, 0.0, 100.0], [2089.0, 14027.0, 0.0, 101.0], [4205.0, 14025.0, 0.0, 3.0], [2094.0, 10632.0, 0.0, 115.0], [2130.0, 14028.0, 0.0, 102.0], [2106.0, 14030.0, 0.0, 116.0], [7356.0, 9690.0, 0.0, 3.0], [2112.0, 14032.0, 0.0, 117.0], [2218.0, 10218.0, 0.0, 5.0], [2133.0, 14034.0, 0.0, 118.0], [2132.0, 14031.0, 0.0, 103.0], [2139.0, 14037.0, 0.0, 104.0], [2142.0, 14036.0, 0.0, 119.0], [2151.0, 14038.0, 0.0, 105.0], [2156.0, 14039.0, 0.0, 120.0], [2166.0, 14040.0, 0.0, 106.0], [2173.0, 14041.0, 0.0, 121.0], [4666.0, 10275.0, 0.0, 5.0], [2167.0, 14042.0, 0.0, 107.0], [2169.0, 14045.0, 0.0, 108.0], [2186.0, 14046.0, 0.0, 109.0], [2187.0, 14043.0, 0.0, 122.0], [2215.0, 14047.0, 0.0, 110.0], [2195.0, 14048.0, 0.0, 123.0], [2203.0, 14050.0, 0.0, 124.0], [2276.0, 14026.0, 0.0, 23.0], [2260.0, 14051.0, 0.0, 125.0], [3565.0, 4234.0, 0.0, 2.0], [2854.0, 3312.0, 0.0, 2.0], [5755.0, 14055.0, 0.0, 3.0], [6306.0, 14056.0, 0.0, 4.0], [2217.0, 14049.0, 0.0, 111.0], [2232.0, 14058.0, 0.0, 112.0], [2550.0, 14035.0, 0.0, 6.0], [2287.0, 14059.0, 0.0, 113.0], [2938.0, 10058.0, 0.0, 4.0], [2261.0, 14053.0, 0.0, 126.0], [2273.0, 14063.0, 0.0, 127.0], [2309.0, 14064.0, 0.0, 128.0], [2279.0, 14052.0, 0.0, 24.0], [2291.0, 14066.0, 0.0, 25.0], [2299.0, 14061.0, 0.0, 114.0], [2337.0, 14067.0, 0.0, 26.0], [2302.0, 14068.0, 0.0, 115.0], [2307.0, 14070.0, 0.0, 116.0], [2321.0, 14071.0, 0.0, 117.0], [2317.0, 14065.0, 0.0, 129.0], [2325.0, 14073.0, 0.0, 130.0], [2330.0, 14072.0, 0.0, 118.0], [2339.0, 14074.0, 0.0, 131.0], [2335.0, 14075.0, 0.0, 119.0], [2361.0, 14077.0, 0.0, 120.0], [2605.0, 10196.0, 0.0, 5.0], [2340.0, 14069.0, 0.0, 27.0], [2357.0, 14076.0, 0.0, 132.0], [2400.0, 14080.0, 0.0, 28.0], [2362.0, 14081.0, 0.0, 133.0], [2387.0, 14078.0, 0.0, 121.0], [2365.0, 14083.0, 0.0, 134.0], [2367.0, 14085.0, 0.0, 135.0], [2382.0, 14086.0, 0.0, 136.0], [2410.0, 14087.0, 0.0, 137.0], [2392.0, 14084.0, 0.0, 122.0], [2397.0, 14089.0, 0.0, 123.0], [2432.0, 14090.0, 0.0, 124.0], [2467.0, 14082.0, 0.0, 29.0], [2418.0, 14088.0, 0.0, 138.0], [2444.0, 14093.0, 0.0, 139.0], [2449.0, 14091.0, 0.0, 125.0], [2445.0, 10347.0, 0.0, 22.0], [2459.0, 14094.0, 0.0, 140.0], [2542.0, 14096.0, 0.0, 23.0], [2457.0, 14095.0, 0.0, 126.0], [2471.0, 14099.0, 0.0, 127.0], [2472.0, 14097.0, 0.0, 141.0], [2503.0, 14092.0, 0.0, 30.0], [2486.0, 14100.0, 0.0, 128.0], [2487.0, 14101.0, 0.0, 142.0], [2525.0, 14103.0, 0.0, 129.0], [2566.0, 14104.0, 0.0, 143.0], [2509.0, 14102.0, 0.0, 31.0], [2604.0, 14107.0, 0.0, 32.0], [2544.0, 14105.0, 0.0, 130.0], [2592.0, 14098.0, 0.0, 24.0], [2562.0, 14109.0, 0.0, 131.0], [3817.0, 14060.0, 0.0, 7.0], [3902.0, 9674.0, 0.0, 3.0], [6484.0, 14113.0, 0.0, 4.0], [2820.0, 14079.0, 0.0, 6.0], [3032.0, 14115.0, 0.0, 7.0], [5135.0, 14116.0, 0.0, 8.0], [7563.0, 14117.0, 0.0, 9.0], [2779.0, 2809.0, 0.0, 2.0], [2585.0, 14111.0, 0.0, 132.0], [2588.0, 14106.0, 0.0, 144.0], [2599.0, 14120.0, 0.0, 133.0], [2640.0, 14121.0, 0.0, 145.0], [2596.0, 14110.0, 0.0, 25.0], [2737.0, 14124.0, 0.0, 26.0], [2597.0, 2755.0, 0.0, 2.0], [2632.0, 14122.0, 0.0, 134.0], [2699.0, 14108.0, 0.0, 33.0], [2639.0, 14127.0, 0.0, 135.0], [2649.0, 14129.0, 0.0, 136.0], [2650.0, 14123.0, 0.0, 146.0], [2654.0, 14130.0, 0.0, 137.0], [2659.0, 14131.0, 0.0, 147.0], [2664.0, 14132.0, 0.0, 138.0], [2665.0, 14133.0, 0.0, 148.0], [2668.0, 14134.0, 0.0, 139.0], [2667.0, 14135.0, 0.0, 149.0], [2695.0, 14137.0, 0.0, 150.0], [2674.0, 14136.0, 0.0, 140.0], [2746.0, 14139.0, 0.0, 141.0], [2700.0, 14138.0, 0.0, 151.0], [2797.0, 14128.0, 0.0, 34.0], [2710.0, 14141.0, 0.0, 152.0], [2711.0, 14143.0, 0.0, 153.0], [2749.0, 14144.0, 0.0, 154.0], [2832.0, 14125.0, 0.0, 27.0], [2759.0, 14140.0, 0.0, 142.0], [2781.0, 14145.0, 0.0, 155.0], [5071.0, 14126.0, 0.0, 3.0], [2777.0, 14147.0, 0.0, 143.0], [2783.0, 14150.0, 0.0, 144.0], [2796.0, 14148.0, 0.0, 156.0], [2786.0, 14151.0, 0.0, 145.0], [2787.0, 14153.0, 0.0, 146.0], [2805.0, 14154.0, 0.0, 147.0], [2821.0, 14152.0, 0.0, 157.0], [2830.0, 14142.0, 0.0, 35.0], [2808.0, 14155.0, 0.0, 148.0], [2815.0, 14158.0, 0.0, 149.0], [2859.0, 14159.0, 0.0, 150.0], [2822.0, 14156.0, 0.0, 158.0], [2841.0, 14161.0, 0.0, 159.0], [2837.0, 14157.0, 0.0, 36.0], [2853.0, 14146.0, 0.0, 28.0], [2874.0, 14163.0, 0.0, 37.0], [2865.0, 14162.0, 0.0, 160.0], [2870.0, 14164.0, 0.0, 29.0], [2861.0, 14160.0, 0.0, 151.0], [2868.0, 14168.0, 0.0, 152.0], [2942.0, 14165.0, 0.0, 38.0], [2982.0, 14170.0, 0.0, 39.0], [3007.0, 14171.0, 0.0, 40.0], [3024.0, 14172.0, 0.0, 41.0], [3175.0, 14173.0, 0.0, 42.0], [3249.0, 14174.0, 0.0, 43.0], [3320.0, 14175.0, 0.0, 44.0], [3380.0, 14176.0, 0.0, 45.0], [3401.0, 14177.0, 0.0, 46.0], [3437.0, 14178.0, 0.0, 47.0], [3445.0, 14179.0, 0.0, 48.0], [3582.0, 14180.0, 0.0, 49.0], [3822.0, 14181.0, 0.0, 50.0], [3992.0, 14182.0, 0.0, 51.0], [4027.0, 14183.0, 0.0, 52.0], [4108.0, 14184.0, 0.0, 53.0], [4185.0, 14185.0, 0.0, 54.0], [4307.0, 14186.0, 0.0, 55.0], [4767.0, 14187.0, 0.0, 56.0], [4773.0, 14188.0, 0.0, 57.0], [4848.0, 14189.0, 0.0, 58.0], [4903.0, 14190.0, 0.0, 59.0], [4910.0, 14191.0, 0.0, 60.0], [4917.0, 14192.0, 0.0, 61.0], [4971.0, 14193.0, 0.0, 62.0], [5043.0, 14194.0, 0.0, 63.0], [5115.0, 14195.0, 0.0, 64.0], [5142.0, 14196.0, 0.0, 65.0], [5196.0, 14197.0, 0.0, 66.0], [5272.0, 14198.0, 0.0, 67.0], [5393.0, 14199.0, 0.0, 68.0], [5401.0, 14200.0, 0.0, 69.0], [5469.0, 14201.0, 0.0, 70.0], [5520.0, 14202.0, 0.0, 71.0], [5529.0, 14203.0, 0.0, 72.0], [5573.0, 14204.0, 0.0, 73.0], [5603.0, 14205.0, 0.0, 74.0], [5747.0, 14206.0, 0.0, 75.0], [5833.0, 14207.0, 0.0, 76.0], [5946.0, 14208.0, 0.0, 77.0], [6005.0, 14209.0, 0.0, 78.0], [6287.0, 14210.0, 0.0, 79.0], [6415.0, 14211.0, 0.0, 80.0], [6422.0, 14212.0, 0.0, 81.0], [6450.0, 14213.0, 0.0, 82.0], [6520.0, 14214.0, 0.0, 83.0], [6576.0, 14215.0, 0.0, 84.0], [6637.0, 14216.0, 0.0, 85.0], [6700.0, 14217.0, 0.0, 86.0], [6706.0, 14218.0, 0.0, 87.0], [6721.0, 14219.0, 0.0, 88.0], [7132.0, 14220.0, 0.0, 89.0], [7480.0, 14221.0, 0.0, 90.0], [7499.0, 14222.0, 0.0, 91.0], [7530.0, 14223.0, 0.0, 92.0], [7826.0, 14224.0, 0.0, 93.0], [2896.0, 14166.0, 0.0, 161.0], [2883.0, 14169.0, 0.0, 153.0], [2927.0, 14167.0, 0.0, 30.0], [2916.0, 14227.0, 0.0, 154.0], [2932.0, 14226.0, 0.0, 162.0], [2917.0, 14229.0, 0.0, 155.0], [2937.0, 14231.0, 0.0, 156.0], [3083.0, 14228.0, 0.0, 31.0], [2955.0, 14230.0, 0.0, 163.0], [2963.0, 14232.0, 0.0, 157.0], [3848.0, 14062.0, 0.0, 5.0], [2971.0, 14234.0, 0.0, 164.0], [2984.0, 14235.0, 0.0, 158.0], [2975.0, 14237.0, 0.0, 165.0], [2992.0, 14239.0, 0.0, 166.0], [2987.0, 14238.0, 0.0, 159.0], [3001.0, 14241.0, 0.0, 160.0], [3000.0, 14240.0, 0.0, 167.0], [3025.0, 14243.0, 0.0, 168.0], [3034.0, 14242.0, 0.0, 161.0], [3048.0, 14244.0, 0.0, 169.0], [3035.0, 14245.0, 0.0, 162.0], [3044.0, 14247.0, 0.0, 163.0], [3054.0, 14248.0, 0.0, 164.0], [3057.0, 14246.0, 0.0, 170.0], [3059.0, 14249.0, 0.0, 165.0], [3063.0, 14250.0, 0.0, 171.0], [3089.0, 14251.0, 0.0, 166.0], [3142.0, 14252.0, 0.0, 172.0], [4824.0, 14236.0, 0.0, 6.0], [5095.0, 14255.0, 0.0, 7.0], [5123.0, 14256.0, 0.0, 8.0], [6125.0, 14257.0, 0.0, 9.0], [7083.0, 14258.0, 0.0, 10.0], [5879.0, 9657.0, 0.0, 3.0], [6997.0, 14260.0, 0.0, 4.0], [3107.0, 14233.0, 0.0, 32.0], [3102.0, 14253.0, 0.0, 167.0], [3115.0, 14263.0, 0.0, 168.0], [3221.0, 14262.0, 0.0, 33.0], [3119.0, 14264.0, 0.0, 169.0], [3125.0, 14266.0, 0.0, 170.0], [3130.0, 14267.0, 0.0, 171.0], [3139.0, 14268.0, 0.0, 172.0], [3140.0, 14269.0, 0.0, 173.0], [3143.0, 14270.0, 0.0, 174.0], [3181.0, 14254.0, 0.0, 173.0], [3168.0, 14271.0, 0.0, 175.0], [3314.0, 14273.0, 0.0, 176.0], [3189.0, 14272.0, 0.0, 174.0], [3227.0, 14275.0, 0.0, 175.0], [3220.0, 3493.0, 0.0, 2.0], [3271.0, 14265.0, 0.0, 34.0], [3234.0, 14276.0, 0.0, 176.0], [3251.0, 14279.0, 0.0, 177.0], [3257.0, 14280.0, 0.0, 178.0], [3277.0, 14281.0, 0.0, 179.0], [3377.0, 14278.0, 0.0, 35.0], [3287.0, 14282.0, 0.0, 180.0], [3315.0, 14284.0, 0.0, 181.0], [3336.0, 14274.0, 0.0, 177.0], [3332.0, 14285.0, 0.0, 182.0], [3333.0, 14287.0, 0.0, 183.0], [3355.0, 14288.0, 0.0, 184.0], [3366.0, 14286.0, 0.0, 178.0], [3367.0, 14289.0, 0.0, 185.0], [3375.0, 14290.0, 0.0, 179.0], [3389.0, 14291.0, 0.0, 186.0], [3378.0, 14292.0, 0.0, 180.0], [3408.0, 14283.0, 0.0, 36.0], [3409.0, 14294.0, 0.0, 181.0], [3429.0, 14293.0, 0.0, 187.0], [3433.0, 14295.0, 0.0, 37.0], [3419.0, 14296.0, 0.0, 182.0], [3426.0, 14299.0, 0.0, 183.0], [3460.0, 14300.0, 0.0, 184.0], [3503.0, 14297.0, 0.0, 188.0], [3446.0, 14298.0, 0.0, 38.0], [3479.0, 14303.0, 0.0, 39.0], [3492.0, 14301.0, 0.0, 185.0], [3637.0, 14304.0, 0.0, 40.0], [3500.0, 14305.0, 0.0, 186.0], [4911.0, 14277.0, 0.0, 3.0], [3517.0, 14307.0, 0.0, 187.0], [3504.0, 14302.0, 0.0, 189.0], [3538.0, 14310.0, 0.0, 190.0], [3520.0, 14309.0, 0.0, 188.0], [3528.0, 14312.0, 0.0, 189.0], [3641.0, 14313.0, 0.0, 190.0], [3543.0, 14311.0, 0.0, 191.0], [3655.0, 14306.0, 0.0, 41.0], [3721.0, 14316.0, 0.0, 42.0], [4012.0, 14317.0, 0.0, 43.0], [4105.0, 14318.0, 0.0, 44.0], [4125.0, 14319.0, 0.0, 45.0], [4230.0, 14320.0, 0.0, 46.0], [4481.0, 14321.0, 0.0, 47.0], [4509.0, 14322.0, 0.0, 48.0], [4572.0, 14323.0, 0.0, 49.0], [4614.0, 14324.0, 0.0, 50.0], [4670.0, 14325.0, 0.0, 51.0], [4765.0, 14326.0, 0.0, 52.0], [4802.0, 14327.0, 0.0, 53.0], [4882.0, 14328.0, 0.0, 54.0], [5198.0, 14329.0, 0.0, 55.0], [5208.0, 14330.0, 0.0, 56.0], [5326.0, 14331.0, 0.0, 57.0], [5335.0, 14332.0, 0.0, 58.0], [5364.0, 14333.0, 0.0, 59.0], [5483.0, 14334.0, 0.0, 60.0], [5528.0, 14335.0, 0.0, 61.0], [5651.0, 14336.0, 0.0, 62.0], [5708.0, 14337.0, 0.0, 63.0], [5728.0, 14338.0, 0.0, 64.0], [5864.0, 14339.0, 0.0, 65.0], [5889.0, 14340.0, 0.0, 66.0], [5969.0, 14341.0, 0.0, 67.0], [6053.0, 14342.0, 0.0, 68.0], [6065.0, 14343.0, 0.0, 69.0], [6088.0, 14344.0, 0.0, 70.0], [6182.0, 14345.0, 0.0, 71.0], [6303.0, 14346.0, 0.0, 72.0], [6412.0, 14347.0, 0.0, 73.0], [6664.0, 14348.0, 0.0, 74.0], [6666.0, 14349.0, 0.0, 75.0], [6786.0, 14350.0, 0.0, 76.0], [6795.0, 14351.0, 0.0, 77.0], [6834.0, 14352.0, 0.0, 78.0], [7057.0, 14353.0, 0.0, 79.0], [7149.0, 14354.0, 0.0, 80.0], [7302.0, 14355.0, 0.0, 81.0], [7307.0, 14356.0, 0.0, 82.0], [7370.0, 14357.0, 0.0, 83.0], [7417.0, 14358.0, 0.0, 84.0], [7555.0, 14359.0, 0.0, 85.0], [7717.0, 14360.0, 0.0, 86.0], [4702.0, 10348.0, 0.0, 5.0], [5076.0, 14362.0, 0.0, 6.0], [5213.0, 14363.0, 0.0, 7.0], [5562.0, 14364.0, 0.0, 8.0], [6975.0, 14365.0, 0.0, 9.0], [7557.0, 14366.0, 0.0, 10.0], [6987.0, 10113.0, 0.0, 3.0], [7619.0, 14368.0, 0.0, 4.0], [3601.0, 14315.0, 0.0, 192.0], [3614.0, 14370.0, 0.0, 193.0], [3622.0, 14371.0, 0.0, 194.0], [3626.0, 14372.0, 0.0, 195.0], [3640.0, 14373.0, 0.0, 196.0], [3658.0, 14374.0, 0.0, 197.0], [3656.0, 14314.0, 0.0, 191.0], [3677.0, 14376.0, 0.0, 192.0], [3660.0, 14375.0, 0.0, 198.0], [3678.0, 14378.0, 0.0, 199.0], [3733.0, 14377.0, 0.0, 193.0], [3680.0, 14379.0, 0.0, 200.0], [3695.0, 14381.0, 0.0, 201.0], [3709.0, 14382.0, 0.0, 202.0], [3728.0, 14383.0, 0.0, 203.0], [3746.0, 14384.0, 0.0, 204.0], [3742.0, 14380.0, 0.0, 194.0], [3805.0, 14386.0, 0.0, 195.0], [3748.0, 14385.0, 0.0, 205.0], [3757.0, 14388.0, 0.0, 206.0], [3763.0, 14389.0, 0.0, 207.0], [3764.0, 14390.0, 0.0, 208.0], [3770.0, 14391.0, 0.0, 209.0], [3803.0, 14392.0, 0.0, 210.0], [3809.0, 14393.0, 0.0, 211.0], [3806.0, 14387.0, 0.0, 196.0], [3811.0, 14395.0, 0.0, 197.0], [3810.0, 14394.0, 0.0, 212.0], [3855.0, 14397.0, 0.0, 213.0], [3843.0, 14396.0, 0.0, 198.0], [4357.0, 14112.0, 0.0, 8.0], [3893.0, 14399.0, 0.0, 199.0], [3868.0, 14398.0, 0.0, 214.0], [3876.0, 14402.0, 0.0, 215.0], [3896.0, 14403.0, 0.0, 216.0], [3884.0, 4637.0, 0.0, 2.0], [3898.0, 14401.0, 0.0, 200.0], [3900.0, 14404.0, 0.0, 217.0], [3907.0, 14406.0, 0.0, 201.0], [3901.0, 14407.0, 0.0, 218.0], [3910.0, 14409.0, 0.0, 219.0], [3931.0, 14408.0, 0.0, 202.0], [3921.0, 14410.0, 0.0, 220.0], [3942.0, 14412.0, 0.0, 221.0], [3945.0, 14411.0, 0.0, 203.0], [3973.0, 14413.0, 0.0, 222.0], [3949.0, 14414.0, 0.0, 204.0], [3952.0, 14416.0, 0.0, 205.0], [3958.0, 14417.0, 0.0, 206.0], [3977.0, 14418.0, 0.0, 207.0], [3974.0, 14415.0, 0.0, 223.0], [3983.0, 14420.0, 0.0, 224.0], [4002.0, 14419.0, 0.0, 208.0], [3985.0, 14421.0, 0.0, 225.0], [4008.0, 14423.0, 0.0, 226.0], [4039.0, 14422.0, 0.0, 209.0], [4037.0, 14424.0, 0.0, 227.0], [4126.0, 14426.0, 0.0, 228.0], [4090.0, 14425.0, 0.0, 210.0], [4096.0, 14428.0, 0.0, 211.0], [4102.0, 14429.0, 0.0, 212.0], [4134.0, 14430.0, 0.0, 213.0], [4142.0, 14431.0, 0.0, 214.0], [4143.0, 14432.0, 0.0, 215.0], [4154.0, 14433.0, 0.0, 216.0], [4163.0, 14434.0, 0.0, 217.0], [4229.0, 14435.0, 0.0, 218.0], [4239.0, 14436.0, 0.0, 219.0], [4253.0, 14437.0, 0.0, 220.0], [4306.0, 14438.0, 0.0, 221.0], [4342.0, 14439.0, 0.0, 222.0], [4352.0, 14440.0, 0.0, 223.0], [4359.0, 14441.0, 0.0, 224.0], [4372.0, 14442.0, 0.0, 225.0], [4377.0, 14443.0, 0.0, 226.0], [4411.0, 14444.0, 0.0, 227.0], [4433.0, 14445.0, 0.0, 228.0], [4456.0, 14446.0, 0.0, 229.0], [4463.0, 14447.0, 0.0, 230.0], [4468.0, 14448.0, 0.0, 231.0], [4491.0, 14449.0, 0.0, 232.0], [4493.0, 14450.0, 0.0, 233.0], [4496.0, 14451.0, 0.0, 234.0], [4517.0, 14452.0, 0.0, 235.0], [4559.0, 14453.0, 0.0, 236.0], [4576.0, 14454.0, 0.0, 237.0], [4581.0, 14455.0, 0.0, 238.0], [4585.0, 14456.0, 0.0, 239.0], [4608.0, 14457.0, 0.0, 240.0], [4660.0, 14458.0, 0.0, 241.0], [4661.0, 14459.0, 0.0, 242.0], [4734.0, 14460.0, 0.0, 243.0], [4785.0, 14461.0, 0.0, 244.0], [4787.0, 14462.0, 0.0, 245.0], [4846.0, 14463.0, 0.0, 246.0], [4851.0, 14464.0, 0.0, 247.0], [4894.0, 14465.0, 0.0, 248.0], [4906.0, 14466.0, 0.0, 249.0], [4908.0, 14467.0, 0.0, 250.0], [4921.0, 14468.0, 0.0, 251.0], [4945.0, 14469.0, 0.0, 252.0], [4957.0, 14470.0, 0.0, 253.0], [4965.0, 14471.0, 0.0, 254.0], [4979.0, 14472.0, 0.0, 255.0], [5023.0, 14473.0, 0.0, 256.0], [5024.0, 14474.0, 0.0, 257.0], [5035.0, 14475.0, 0.0, 258.0], [5083.0, 14476.0, 0.0, 259.0], [5088.0, 14477.0, 0.0, 260.0], [5101.0, 14478.0, 0.0, 261.0], [5131.0, 14479.0, 0.0, 262.0], [5151.0, 14480.0, 0.0, 263.0], [5194.0, 14481.0, 0.0, 264.0], [5212.0, 14482.0, 0.0, 265.0], [5216.0, 14483.0, 0.0, 266.0], [5228.0, 14484.0, 0.0, 267.0], [5254.0, 14485.0, 0.0, 268.0], [5273.0, 14486.0, 0.0, 269.0], [5280.0, 14487.0, 0.0, 270.0], [5308.0, 14488.0, 0.0, 271.0], [5342.0, 14489.0, 0.0, 272.0], [5359.0, 14490.0, 0.0, 273.0], [5368.0, 14491.0, 0.0, 274.0], [5370.0, 14492.0, 0.0, 275.0], [5378.0, 14493.0, 0.0, 276.0], [5388.0, 14494.0, 0.0, 277.0], [5390.0, 14495.0, 0.0, 278.0], [5440.0, 14496.0, 0.0, 279.0], [5448.0, 14497.0, 0.0, 280.0], [5458.0, 14498.0, 0.0, 281.0], [5467.0, 14499.0, 0.0, 282.0], [5484.0, 14500.0, 0.0, 283.0], [5495.0, 14501.0, 0.0, 284.0], [5508.0, 14502.0, 0.0, 285.0], [5518.0, 14503.0, 0.0, 286.0], [5521.0, 14504.0, 0.0, 287.0], [5522.0, 14505.0, 0.0, 288.0], [5543.0, 14506.0, 0.0, 289.0], [5557.0, 14507.0, 0.0, 290.0], [5614.0, 14508.0, 0.0, 291.0], [5633.0, 14509.0, 0.0, 292.0], [5660.0, 14510.0, 0.0, 293.0], [5670.0, 14511.0, 0.0, 294.0], [5698.0, 14512.0, 0.0, 295.0], [5780.0, 14513.0, 0.0, 296.0], [5783.0, 14514.0, 0.0, 297.0], [5786.0, 14515.0, 0.0, 298.0], [5799.0, 14516.0, 0.0, 299.0], [5838.0, 14517.0, 0.0, 300.0], [5853.0, 14518.0, 0.0, 301.0], [5869.0, 14519.0, 0.0, 302.0], [5884.0, 14520.0, 0.0, 303.0], [5891.0, 14521.0, 0.0, 304.0], [5926.0, 14522.0, 0.0, 305.0], [5959.0, 14523.0, 0.0, 306.0], [5987.0, 14524.0, 0.0, 307.0], [5989.0, 14525.0, 0.0, 308.0], [6009.0, 14526.0, 0.0, 309.0], [6027.0, 14527.0, 0.0, 310.0], [6030.0, 14528.0, 0.0, 311.0], [6033.0, 14529.0, 0.0, 312.0], [6050.0, 14530.0, 0.0, 313.0], [6064.0, 14531.0, 0.0, 314.0], [6075.0, 14532.0, 0.0, 315.0], [6107.0, 14533.0, 0.0, 316.0], [6120.0, 14534.0, 0.0, 317.0], [6136.0, 14535.0, 0.0, 318.0], [6142.0, 14536.0, 0.0, 319.0], [6152.0, 14537.0, 0.0, 320.0], [6204.0, 14538.0, 0.0, 321.0], [6205.0, 14539.0, 0.0, 322.0], [6222.0, 14540.0, 0.0, 323.0], [6235.0, 14541.0, 0.0, 324.0], [6357.0, 14542.0, 0.0, 325.0], [6364.0, 14543.0, 0.0, 326.0], [6376.0, 14544.0, 0.0, 327.0], [6379.0, 14545.0, 0.0, 328.0], [6392.0, 14546.0, 0.0, 329.0], [6429.0, 14547.0, 0.0, 330.0], [6443.0, 14548.0, 0.0, 331.0], [6448.0, 14549.0, 0.0, 332.0], [6465.0, 14550.0, 0.0, 333.0], [6482.0, 14551.0, 0.0, 334.0], [6490.0, 14552.0, 0.0, 335.0], [6499.0, 14553.0, 0.0, 336.0], [6523.0, 14554.0, 0.0, 337.0], [6557.0, 14555.0, 0.0, 338.0], [6569.0, 14556.0, 0.0, 339.0], [6597.0, 14557.0, 0.0, 340.0], [6612.0, 14558.0, 0.0, 341.0], [6630.0, 14559.0, 0.0, 342.0], [6662.0, 14560.0, 0.0, 343.0], [6678.0, 14561.0, 0.0, 344.0], [6685.0, 14562.0, 0.0, 345.0], [6704.0, 14563.0, 0.0, 346.0], [6733.0, 14564.0, 0.0, 347.0], [6763.0, 14565.0, 0.0, 348.0], [6774.0, 14566.0, 0.0, 349.0], [6779.0, 14567.0, 0.0, 350.0], [6782.0, 14568.0, 0.0, 351.0], [6813.0, 14569.0, 0.0, 352.0], [6814.0, 14570.0, 0.0, 353.0], [6860.0, 14571.0, 0.0, 354.0], [6876.0, 14572.0, 0.0, 355.0], [6894.0, 14573.0, 0.0, 356.0], [6897.0, 14574.0, 0.0, 357.0], [6934.0, 14575.0, 0.0, 358.0], [6945.0, 14576.0, 0.0, 359.0], [6966.0, 14577.0, 0.0, 360.0], [6970.0, 14578.0, 0.0, 361.0], [6973.0, 14579.0, 0.0, 362.0], [6976.0, 14580.0, 0.0, 363.0], [6980.0, 14581.0, 0.0, 364.0], [6982.0, 14582.0, 0.0, 365.0], [6992.0, 14583.0, 0.0, 366.0], [7008.0, 14584.0, 0.0, 367.0], [7040.0, 14585.0, 0.0, 368.0], [7044.0, 14586.0, 0.0, 369.0], [7048.0, 14587.0, 0.0, 370.0], [7079.0, 14588.0, 0.0, 371.0], [7080.0, 14589.0, 0.0, 372.0], [7089.0, 14590.0, 0.0, 373.0], [7103.0, 14591.0, 0.0, 374.0], [7104.0, 14592.0, 0.0, 375.0], [7106.0, 14593.0, 0.0, 376.0], [7111.0, 14594.0, 0.0, 377.0], [7116.0, 14595.0, 0.0, 378.0], [7122.0, 14596.0, 0.0, 379.0], [7134.0, 14597.0, 0.0, 380.0], [7146.0, 14598.0, 0.0, 381.0], [7154.0, 14599.0, 0.0, 382.0], [7172.0, 14600.0, 0.0, 383.0], [7181.0, 14601.0, 0.0, 384.0], [7196.0, 14602.0, 0.0, 385.0], [7223.0, 14603.0, 0.0, 386.0], [7254.0, 14604.0, 0.0, 387.0], [7299.0, 14605.0, 0.0, 388.0], [7308.0, 14606.0, 0.0, 389.0], [7328.0, 14607.0, 0.0, 390.0], [7330.0, 14608.0, 0.0, 391.0], [7345.0, 14609.0, 0.0, 392.0], [7371.0, 14610.0, 0.0, 393.0], [7392.0, 14611.0, 0.0, 394.0], [7412.0, 14612.0, 0.0, 395.0], [7484.0, 14613.0, 0.0, 396.0], [7486.0, 14614.0, 0.0, 397.0], [7515.0, 14615.0, 0.0, 398.0], [7529.0, 14616.0, 0.0, 399.0], [7533.0, 14617.0, 0.0, 400.0], [7552.0, 14618.0, 0.0, 401.0], [7578.0, 14619.0, 0.0, 402.0], [7603.0, 14620.0, 0.0, 403.0], [7606.0, 14621.0, 0.0, 404.0], [7613.0, 14622.0, 0.0, 405.0], [7632.0, 14623.0, 0.0, 406.0], [7636.0, 14624.0, 0.0, 407.0], [7638.0, 14625.0, 0.0, 408.0], [7644.0, 14626.0, 0.0, 409.0], [7648.0, 14627.0, 0.0, 410.0], [7669.0, 14628.0, 0.0, 411.0], [7679.0, 14629.0, 0.0, 412.0], [7682.0, 14630.0, 0.0, 413.0], [7729.0, 14631.0, 0.0, 414.0], [7737.0, 14632.0, 0.0, 415.0], [7761.0, 14633.0, 0.0, 416.0], [7770.0, 14634.0, 0.0, 417.0], [7783.0, 14635.0, 0.0, 418.0], [4133.0, 14427.0, 0.0, 229.0], [4136.0, 14637.0, 0.0, 230.0], [4160.0, 14638.0, 0.0, 231.0], [4190.0, 14639.0, 0.0, 232.0], [4344.0, 14640.0, 0.0, 233.0], [5632.0, 14029.0, 0.0, 4.0], [4350.0, 14641.0, 0.0, 234.0], [4395.0, 14643.0, 0.0, 235.0], [5294.0, 14400.0, 0.0, 9.0], [4396.0, 14644.0, 0.0, 236.0], [4403.0, 14646.0, 0.0, 237.0], [4405.0, 14647.0, 0.0, 238.0], [4406.0, 14648.0, 0.0, 239.0], [4407.0, 14649.0, 0.0, 240.0], [4472.0, 14650.0, 0.0, 241.0], [4474.0, 14651.0, 0.0, 242.0], [4483.0, 14652.0, 0.0, 243.0], [4485.0, 14653.0, 0.0, 244.0], [4489.0, 14654.0, 0.0, 245.0], [4506.0, 14655.0, 0.0, 246.0], [4999.0, 5257.0, 0.0, 2.0], [4565.0, 14656.0, 0.0, 247.0], [4573.0, 14658.0, 0.0, 248.0], [4595.0, 14659.0, 0.0, 249.0], [4602.0, 14660.0, 0.0, 250.0], [4613.0, 14661.0, 0.0, 251.0], [4641.0, 14662.0, 0.0, 252.0], [4786.0, 5638.0, 0.0, 2.0], [4681.0, 14663.0, 0.0, 253.0], [5487.0, 14044.0, 0.0, 6.0], [4684.0, 14665.0, 0.0, 254.0], [4687.0, 14667.0, 0.0, 255.0], [4688.0, 14668.0, 0.0, 256.0], [4694.0, 14669.0, 0.0, 257.0], [4784.0, 14670.0, 0.0, 258.0], [4793.0, 14671.0, 0.0, 259.0], [4814.0, 14672.0, 0.0, 260.0], [4825.0, 14673.0, 0.0, 261.0], [4829.0, 14674.0, 0.0, 262.0], [4839.0, 14675.0, 0.0, 263.0], [4871.0, 14676.0, 0.0, 264.0], [4924.0, 14677.0, 0.0, 265.0], [5881.0, 10640.0, 0.0, 6.0], [4943.0, 14678.0, 0.0, 266.0], [5017.0, 14680.0, 0.0, 267.0], [5042.0, 14681.0, 0.0, 268.0], [5064.0, 14682.0, 0.0, 269.0], [5066.0, 14683.0, 0.0, 270.0], [5106.0, 14684.0, 0.0, 271.0], [6293.0, 14149.0, 0.0, 4.0], [5109.0, 14685.0, 0.0, 272.0], [5118.0, 14687.0, 0.0, 273.0], [5124.0, 14688.0, 0.0, 274.0], [5136.0, 14689.0, 0.0, 275.0], [5141.0, 14690.0, 0.0, 276.0], [5180.0, 14691.0, 0.0, 277.0], [5199.0, 14692.0, 0.0, 278.0], [5218.0, 14693.0, 0.0, 279.0], [5222.0, 14694.0, 0.0, 280.0], [5227.0, 14695.0, 0.0, 281.0], [5246.0, 14696.0, 0.0, 282.0], [5275.0, 14697.0, 0.0, 283.0], [6902.0, 9434.0, 0.0, 3.0], [5282.0, 14698.0, 0.0, 284.0], [5292.0, 14700.0, 0.0, 285.0], [5301.0, 14701.0, 0.0, 286.0], [5324.0, 14702.0, 0.0, 287.0], [5325.0, 14703.0, 0.0, 288.0], [5349.0, 14704.0, 0.0, 289.0], [5377.0, 14705.0, 0.0, 290.0], [5419.0, 14706.0, 0.0, 291.0], [5427.0, 14707.0, 0.0, 292.0], [5442.0, 14708.0, 0.0, 293.0], [5444.0, 14709.0, 0.0, 294.0], [5454.0, 14710.0, 0.0, 295.0], [5491.0, 14711.0, 0.0, 296.0], [5492.0, 14712.0, 0.0, 297.0], [5537.0, 14713.0, 0.0, 298.0], [5542.0, 14714.0, 0.0, 299.0], [5544.0, 14715.0, 0.0, 300.0], [5568.0, 14716.0, 0.0, 301.0], [5571.0, 14717.0, 0.0, 302.0], [5575.0, 14718.0, 0.0, 303.0], [5576.0, 14719.0, 0.0, 304.0], [5577.0, 14720.0, 0.0, 305.0], [5582.0, 14721.0, 0.0, 306.0], [5613.0, 14722.0, 0.0, 307.0], [5646.0, 14723.0, 0.0, 308.0], [5656.0, 14724.0, 0.0, 309.0], [5665.0, 14725.0, 0.0, 310.0], [5669.0, 14726.0, 0.0, 311.0], [5681.0, 14727.0, 0.0, 312.0], [5714.0, 14728.0, 0.0, 313.0], [5718.0, 14729.0, 0.0, 314.0], [5735.0, 14730.0, 0.0, 315.0], [5736.0, 14731.0, 0.0, 316.0], [5740.0, 14732.0, 0.0, 317.0], [5756.0, 14733.0, 0.0, 318.0], [5760.0, 14734.0, 0.0, 319.0], [5772.0, 14735.0, 0.0, 320.0], [5773.0, 14736.0, 0.0, 321.0], [5819.0, 14737.0, 0.0, 322.0], [5835.0, 14738.0, 0.0, 323.0], [5851.0, 14739.0, 0.0, 324.0], [5907.0, 14740.0, 0.0, 325.0], [5933.0, 14741.0, 0.0, 326.0], [5953.0, 14742.0, 0.0, 327.0], [5974.0, 14743.0, 0.0, 328.0], [5991.0, 14744.0, 0.0, 329.0], [6057.0, 14745.0, 0.0, 330.0], [6133.0, 14746.0, 0.0, 331.0], [6145.0, 14747.0, 0.0, 332.0], [6158.0, 14748.0, 0.0, 333.0], [6166.0, 14749.0, 0.0, 334.0], [6168.0, 14750.0, 0.0, 335.0], [6174.0, 14751.0, 0.0, 336.0], [6189.0, 14752.0, 0.0, 337.0], [6200.0, 14753.0, 0.0, 338.0], [6223.0, 14754.0, 0.0, 339.0], [6237.0, 14755.0, 0.0, 340.0], [6248.0, 14756.0, 0.0, 341.0], [6283.0, 14757.0, 0.0, 342.0], [6288.0, 14758.0, 0.0, 343.0], [6289.0, 14759.0, 0.0, 344.0], [6309.0, 14760.0, 0.0, 345.0], [6314.0, 14761.0, 0.0, 346.0], [6326.0, 14762.0, 0.0, 347.0], [6336.0, 14763.0, 0.0, 348.0], [6344.0, 14764.0, 0.0, 349.0], [6405.0, 14765.0, 0.0, 350.0], [6466.0, 14766.0, 0.0, 351.0], [6480.0, 14767.0, 0.0, 352.0], [6487.0, 14768.0, 0.0, 353.0], [6525.0, 14769.0, 0.0, 354.0], [6527.0, 14770.0, 0.0, 355.0], [6536.0, 14771.0, 0.0, 356.0], [6550.0, 14772.0, 0.0, 357.0], [6588.0, 14773.0, 0.0, 358.0], [6598.0, 14774.0, 0.0, 359.0], [6607.0, 14775.0, 0.0, 360.0], [6617.0, 14776.0, 0.0, 361.0], [6638.0, 14777.0, 0.0, 362.0], [6652.0, 14778.0, 0.0, 363.0], [6701.0, 14779.0, 0.0, 364.0], [6783.0, 14780.0, 0.0, 365.0], [6792.0, 14781.0, 0.0, 366.0], [6794.0, 14782.0, 0.0, 367.0], [6798.0, 14783.0, 0.0, 368.0], [6803.0, 14784.0, 0.0, 369.0], [6815.0, 14785.0, 0.0, 370.0], [6843.0, 14786.0, 0.0, 371.0], [6872.0, 14787.0, 0.0, 372.0], [6883.0, 14788.0, 0.0, 373.0], [6885.0, 14789.0, 0.0, 374.0], [6896.0, 14790.0, 0.0, 375.0], [6926.0, 14791.0, 0.0, 376.0], [6940.0, 14792.0, 0.0, 377.0], [6941.0, 14793.0, 0.0, 378.0], [6951.0, 14794.0, 0.0, 379.0], [6978.0, 14795.0, 0.0, 380.0], [6991.0, 14796.0, 0.0, 381.0], [7019.0, 14797.0, 0.0, 382.0], [7035.0, 14798.0, 0.0, 383.0], [7041.0, 14799.0, 0.0, 384.0], [7043.0, 14800.0, 0.0, 385.0], [7053.0, 14801.0, 0.0, 386.0], [7074.0, 14802.0, 0.0, 387.0], [7075.0, 14803.0, 0.0, 388.0], [7133.0, 14804.0, 0.0, 389.0], [7153.0, 14805.0, 0.0, 390.0], [7156.0, 14806.0, 0.0, 391.0], [7237.0, 14807.0, 0.0, 392.0], [7244.0, 14808.0, 0.0, 393.0], [7264.0, 14809.0, 0.0, 394.0], [7290.0, 14810.0, 0.0, 395.0], [7296.0, 14811.0, 0.0, 396.0], [7297.0, 14812.0, 0.0, 397.0], [7329.0, 14813.0, 0.0, 398.0], [7352.0, 14814.0, 0.0, 399.0], [7368.0, 14815.0, 0.0, 400.0], [7369.0, 14816.0, 0.0, 401.0], [7390.0, 14817.0, 0.0, 402.0], [7407.0, 14818.0, 0.0, 403.0], [7456.0, 14819.0, 0.0, 404.0], [7459.0, 14820.0, 0.0, 405.0], [7464.0, 14821.0, 0.0, 406.0], [7469.0, 14822.0, 0.0, 407.0], [7478.0, 14823.0, 0.0, 408.0], [7517.0, 14824.0, 0.0, 409.0], [7599.0, 14825.0, 0.0, 410.0], [7609.0, 14826.0, 0.0, 411.0], [7615.0, 14827.0, 0.0, 412.0], [7635.0, 14828.0, 0.0, 413.0], [7663.0, 14829.0, 0.0, 414.0], [7694.0, 14830.0, 0.0, 415.0], [7696.0, 14831.0, 0.0, 416.0], [7700.0, 14832.0, 0.0, 417.0], [7703.0, 14833.0, 0.0, 418.0], [7724.0, 14834.0, 0.0, 419.0], [7760.0, 14835.0, 0.0, 420.0], [7785.0, 14836.0, 0.0, 421.0], [7815.0, 14837.0, 0.0, 422.0], [7817.0, 14838.0, 0.0, 423.0], [5434.0, 14645.0, 0.0, 10.0], [6067.0, 14840.0, 0.0, 11.0], [6172.0, 14841.0, 0.0, 12.0], [7136.0, 14842.0, 0.0, 13.0], [7786.0, 14843.0, 0.0, 14.0], [6458.0, 14666.0, 0.0, 7.0], [7007.0, 14845.0, 0.0, 8.0], [6185.0, 14642.0, 0.0, 5.0], [7493.0, 8857.0, 0.0, 4.0], [6554.0, 14679.0, 0.0, 7.0], [7653.0, 14847.0, 0.0, 6.0], [7164.0, 14849.0, 0.0, 8.0], [7210.0, 14851.0, 0.0, 9.0], [3379.0, 9123.0, 0.002613177668981121, 3.0], [1861.0, 1987.0, 0.002633782597335932, 2.0], [4662.0, 5647.0, 0.007121101089317072, 2.0], [1279.0, 7495.0, 0.007333439075030263, 2.0], [8788.0, 10768.0, 0.009911990288686506, 4.0], [4502.0, 10770.0, 0.013023109946187824, 4.0], [1287.0, 9721.0, 0.013303145589391238, 3.0], [4550.0, 6542.0, 0.013665176685187633, 2.0], [19.0, 4900.0, 0.016303039992696396, 2.0], [2701.0, 7424.0, 0.01741213672070231, 2.0], [7062.0, 14850.0, 0.023884597009387755, 7.0], [6924.0, 14369.0, 0.02825687467165663, 5.0], [4553.0, 7576.0, 0.028658238723548828, 2.0], [8711.0, 8713.0, 0.02966061741133617, 6.0], [3515.0, 4932.0, 0.029912302612036125, 2.0], [5599.0, 10816.0, 0.031597921798251584, 3.0], [5594.0, 5878.0, 0.03279557713909709, 2.0], [7821.0, 8716.0, 0.033528377973164984, 5.0], [5220.0, 6262.0, 0.03479649594742895, 2.0], [1590.0, 1681.0, 0.0364832798666941, 2.0], [1552.0, 8673.0, 0.03680742280662494, 3.0], [5973.0, 7190.0, 0.03780882781307682, 2.0], [5501.0, 8543.0, 0.038521279980056444, 3.0], [10858.0, 10870.0, 0.0394402450469967, 22.0], [6959.0, 10767.0, 0.03955261839613384, 3.0], [9126.0, 14853.0, 0.04031765595649368, 7.0], [5310.0, 7958.0, 0.04260995291397557, 3.0], [657.0, 3937.0, 0.045714652295428815, 2.0], [6811.0, 6831.0, 0.046201253499386884, 2.0], [5844.0, 10853.0, 0.04640191786626429, 3.0], [3906.0, 14864.0, 0.04724263089540764, 6.0], [6048.0, 6247.0, 0.04827343718839241, 2.0], [619.0, 14867.0, 0.04962200467997415, 3.0], [1251.0, 4632.0, 0.05094162456274713, 2.0], [688.0, 14861.0, 0.05125561270058562, 3.0], [3027.0, 6734.0, 0.053344807526080555, 2.0], [1481.0, 10063.0, 0.055626107445696335, 4.0], [4328.0, 14875.0, 0.05563497163583284, 4.0], [7668.0, 14848.0, 0.055645483286481605, 5.0], [5589.0, 9767.0, 0.055792152101060775, 3.0], [4288.0, 10822.0, 0.058775044704718275, 3.0], [3198.0, 4615.0, 0.058825922335564246, 2.0], [997.0, 2954.0, 0.05974444946300239, 2.0], [1781.0, 7101.0, 0.06108899708713443, 2.0], [7986.0, 8440.0, 0.061470895632161696, 471.0], [14054.0, 14057.0, 0.06151311800941433, 6.0], [680.0, 7818.0, 0.06253400725945134, 2.0], [53.0, 136.0, 0.06356772267745292, 2.0], [1689.0, 4761.0, 0.06497570081391839, 2.0], [1603.0, 2879.0, 0.06826996136797404, 2.0], [6880.0, 7866.0, 0.06898694796010084, 3.0], [4879.0, 6688.0, 0.07012324292277954, 2.0], [1134.0, 8672.0, 0.07110741946647331, 3.0], [875.0, 6848.0, 0.0730756243008256, 2.0], [14878.0, 14899.0, 0.07350932465766727, 9.0], [3586.0, 14869.0, 0.07548052177112756, 3.0], [7314.0, 14876.0, 0.07652348199961, 23.0], [4808.0, 8458.0, 0.08138660972290189, 4.0], [8649.0, 14895.0, 0.08157391744473423, 5.0], [508.0, 2206.0, 0.08529247912970132, 2.0], [607.0, 14885.0, 0.08591582933108034, 4.0], [3875.0, 6586.0, 0.08645748665104087, 2.0], [7214.0, 7246.0, 0.08675527124658824, 2.0], [7248.0, 14858.0, 0.08836447243888686, 5.0], [2358.0, 10165.0, 0.08916946559734949, 3.0], [614.0, 3688.0, 0.09017051386651824, 2.0], [10819.0, 14855.0, 0.09051098250141187, 6.0], [448.0, 1961.0, 0.09087711800916598, 2.0], [1828.0, 14901.0, 0.0920890641147615, 3.0], [1217.0, 14886.0, 0.09333852653612111, 3.0], [4847.0, 9071.0, 0.09334483021168595, 3.0], [2969.0, 4655.0, 0.09493758445375931, 2.0], [1767.0, 4062.0, 0.09557278251645802, 2.0], [3111.0, 14879.0, 0.09794382413954411, 4.0], [5417.0, 8700.0, 0.098089685096703, 7.0], [14860.0, 14877.0, 0.09839741129090412, 5.0], [14308.0, 14873.0, 0.09942035678197488, 6.0], [1734.0, 8695.0, 0.09976997716464293, 23.0], [7787.0, 10626.0, 0.10070092010402794, 6.0], [1696.0, 3326.0, 0.10587692907297373, 2.0], [3607.0, 4631.0, 0.10752320265118678, 2.0], [2349.0, 9227.0, 0.10775228431368704, 8.0], [9387.0, 10182.0, 0.10854022745886376, 5.0], [4215.0, 14880.0, 0.10991997764564214, 3.0], [4976.0, 6084.0, 0.11388011158199185, 2.0], [2228.0, 10766.0, 0.115495937447927, 3.0], [4915.0, 9377.0, 0.11634742335582743, 4.0], [4817.0, 10815.0, 0.11709544597000346, 3.0], [3478.0, 3501.0, 0.11740931016800178, 2.0], [179.0, 2268.0, 0.11845213763000789, 2.0], [4498.0, 14657.0, 0.11905530228386528, 3.0], [765.0, 3866.0, 0.11938829072228915, 2.0], [4854.0, 9209.0, 0.12077111835518733, 3.0], [569.0, 8934.0, 0.12181624788949857, 6.0], [7687.0, 14846.0, 0.12231763231864375, 9.0], [14862.0, 14887.0, 0.12255394103673406, 5.0], [6191.0, 14259.0, 0.125582466450308, 11.0], [1235.0, 6102.0, 0.12640422229933188, 2.0], [7781.0, 10820.0, 0.12655101373273214, 3.0], [2052.0, 8674.0, 0.12664469090227903, 3.0], [1197.0, 14892.0, 0.1271902434088259, 4.0], [4089.0, 14636.0, 0.1313111421162681, 419.0], [3046.0, 9232.0, 0.13146443351516196, 5.0], [4574.0, 9158.0, 0.13464591188342856, 7.0], [776.0, 9277.0, 0.13490163982576175, 26.0], [6986.0, 10826.0, 0.1356363169344644, 3.0], [7672.0, 14935.0, 0.1368808995656401, 6.0], [2990.0, 3513.0, 0.1382405111348206, 2.0], [14367.0, 14881.0, 0.1394687219569516, 12.0], [3498.0, 9931.0, 0.13951158626713414, 3.0], [1787.0, 9647.0, 0.13978356749259427, 3.0], [1204.0, 9789.0, 0.14027868942971755, 20.0], [4220.0, 5903.0, 0.14147584868455146, 2.0], [5354.0, 10495.0, 0.14166456972258332, 4.0], [1083.0, 9669.0, 0.142019651351474, 10.0], [6497.0, 14854.0, 0.14235605866087667, 3.0], [2257.0, 10276.0, 0.14373622334657263, 3.0], [10380.0, 10383.0, 0.149264899005534, 27.0], [7772.0, 10758.0, 0.15144995454159962, 3.0], [14405.0, 14664.0, 0.15200339385191106, 4.0], [113.0, 7952.0, 0.15248384704133375, 3.0], [3448.0, 7496.0, 0.15275697742525685, 2.0], [14261.0, 14884.0, 0.15363103849006024, 6.0], [1621.0, 2347.0, 0.15517543566751207, 2.0], [2539.0, 8912.0, 0.15580901813101855, 3.0], [239.0, 2233.0, 0.15746219855547539, 2.0], [4926.0, 6564.0, 0.15843126942323218, 2.0], [14865.0, 14906.0, 0.16001513299365433, 4.0], [2159.0, 10714.0, 0.16191890366144415, 3.0], [3720.0, 4487.0, 0.16351238165988344, 2.0], [5278.0, 13992.0, 0.16386931017795278, 14.0], [718.0, 8882.0, 0.16503525480442155, 5.0], [2833.0, 10789.0, 0.16644443051357635, 4.0], [7058.0, 7739.0, 0.16846336629835476, 2.0], [1249.0, 8720.0, 0.16943568886561886, 7.0], [481.0, 14927.0, 0.17120449713741473, 8.0], [3068.0, 10341.0, 0.1733504529068723, 4.0], [70.0, 14912.0, 0.1740716109594962, 3.0], [2138.0, 14932.0, 0.17807004132263904, 3.0], [3854.0, 10825.0, 0.17863818877051468, 5.0], [3187.0, 8850.0, 0.17868299549186187, 3.0], [10408.0, 10412.0, 0.17913112327788605, 27.0], [3976.0, 10759.0, 0.17991535625536356, 3.0], [3508.0, 6715.0, 0.18151584714700897, 2.0], [9278.0, 14957.0, 0.18171112346857737, 28.0], [1216.0, 9798.0, 0.1817283258330381, 3.0], [1329.0, 14962.0, 0.18188470439426763, 4.0], [2895.0, 6211.0, 0.18234545189078696, 2.0], [8575.0, 14889.0, 0.18272429579254018, 6.0], [232.0, 2957.0, 0.18328611881926604, 2.0], [1378.0, 9969.0, 0.18727011741681698, 4.0], [4778.0, 14922.0, 0.18809550132268105, 4.0], [4916.0, 5015.0, 0.1885241810175792, 2.0], [7042.0, 10075.0, 0.1917727819763143, 3.0], [5605.0, 6676.0, 0.19191211077145864, 2.0], [3078.0, 10791.0, 0.19212875700881435, 5.0], [14893.0, 14904.0, 0.19247898130069216, 5.0], [1440.0, 7298.0, 0.1929274371190355, 2.0], [73.0, 719.0, 0.19343429878102977, 2.0], [14959.0, 14976.0, 0.1939888501823451, 8.0], [7740.0, 8704.0, 0.19560139210487934, 6.0], [6965.0, 14897.0, 0.1962656128350602, 472.0], [4656.0, 14114.0, 0.19647148080273916, 5.0], [119.0, 14926.0, 0.1984546844830659, 5.0], [2064.0, 4555.0, 0.20293209199139448, 2.0], [1002.0, 6764.0, 0.20568535978257402, 2.0], [7798.0, 9218.0, 0.2065924819419963, 3.0], [14928.0, 14936.0, 0.20725869152849577, 8.0], [841.0, 9338.0, 0.20753846035501491, 3.0], [4189.0, 14956.0, 0.20871885218638708, 8.0], [167.0, 8492.0, 0.21086150108028137, 3.0], [5972.0, 10804.0, 0.21277266737421374, 8.0], [14916.0, 14948.0, 0.21333798025263376, 10.0], [14923.0, 14942.0, 0.21555546363683575, 5.0], [7977.0, 14908.0, 0.21574540270179277, 7.0], [3522.0, 6802.0, 0.21752591370081975, 2.0], [4427.0, 10784.0, 0.21789140832528361, 3.0], [3551.0, 4939.0, 0.21872132567688746, 2.0], [2478.0, 10091.0, 0.21936936320712055, 5.0], [2492.0, 3715.0, 0.21960702740669324, 2.0], [6346.0, 7026.0, 0.2211958722122242, 2.0], [2750.0, 14965.0, 0.22140757539236722, 3.0], [7233.0, 10173.0, 0.22457368159549707, 3.0], [9619.0, 14872.0, 0.22544169716303025, 4.0], [2619.0, 4676.0, 0.22545965625640652, 2.0], [9067.0, 13947.0, 0.22612654132124188, 4.0], [9050.0, 14225.0, 0.2287056416000433, 95.0], [9221.0, 14918.0, 0.22947375644693183, 4.0], [2816.0, 14919.0, 0.23151855218363201, 7.0], [4409.0, 5406.0, 0.23227818284459242, 2.0], [1169.0, 7511.0, 0.23244281332278854, 2.0], [4570.0, 9452.0, 0.2325105423644712, 6.0], [1167.0, 4867.0, 0.23888763989481682, 2.0], [5798.0, 9584.0, 0.24126946146559955, 109.0], [1031.0, 9607.0, 0.24496234561725966, 4.0], [2507.0, 14888.0, 0.24515203646002737, 3.0], [8708.0, 14925.0, 0.24569506902569302, 4.0], [3018.0, 4753.0, 0.24676045360488194, 2.0], [6851.0, 9646.0, 0.24697669791303076, 6.0], [1991.0, 10623.0, 0.2476972489624346, 3.0], [3965.0, 6852.0, 0.2482817169845599, 2.0], [5365.0, 7032.0, 0.24964270991157392, 2.0], [603.0, 5639.0, 0.2538223842094537, 2.0], [10162.0, 14958.0, 0.254935227051159, 6.0], [4898.0, 9293.0, 0.2556801638461791, 4.0], [6832.0, 14874.0, 0.25667979702251476, 3.0], [9608.0, 10978.0, 0.2567903379528789, 108.0], [5713.0, 5777.0, 0.2567999251198251, 2.0], [6089.0, 7583.0, 0.2583343997238713, 2.0], [1746.0, 10278.0, 0.2596209480691733, 3.0], [5145.0, 9307.0, 0.2630433741791233, 4.0], [5429.0, 8924.0, 0.2639543191056797, 9.0], [3135.0, 14924.0, 0.26749896265341383, 3.0], [3211.0, 10897.0, 0.2686803361024335, 11.0], [8671.0, 14952.0, 0.2693317939485486, 8.0], [2977.0, 3583.0, 0.2714396741524269, 2.0], [5046.0, 5404.0, 0.27252826372441374, 2.0], [917.0, 5848.0, 0.275738319800566, 2.0], [10823.0, 14857.0, 0.27712256781996114, 7.0], [721.0, 9176.0, 0.2788693506345595, 10.0], [4629.0, 7105.0, 0.27908269397059865, 2.0], [14980.0, 15025.0, 0.2791818460535866, 14.0], [2620.0, 5679.0, 0.2792732915812737, 2.0], [3576.0, 10837.0, 0.28014340737650517, 3.0], [7587.0, 10493.0, 0.2833303415142118, 4.0], [2522.0, 7934.0, 0.28357518216695665, 3.0], [6031.0, 14977.0, 0.28393082199253084, 4.0], [220.0, 3302.0, 0.284013974784299, 2.0], [1652.0, 7453.0, 0.28423852437966296, 2.0], [1382.0, 7261.0, 0.28461682966380447, 2.0], [77.0, 4034.0, 0.28526612568182597, 2.0], [274.0, 2332.0, 0.2855723990075291, 2.0], [4966.0, 9255.0, 0.286118485367802, 11.0], [8709.0, 14866.0, 0.28645159592323505, 8.0], [14905.0, 15037.0, 0.29324516659805594, 5.0], [4929.0, 10664.0, 0.294370168855471, 5.0], [14699.0, 14839.0, 0.29561614153101007, 426.0], [14944.0, 14955.0, 0.297023046232295, 7.0], [14870.0, 14907.0, 0.29714174486123635, 14.0], [138.0, 2637.0, 0.2971620784180299, 2.0], [5552.0, 7870.0, 0.29943876472305087, 3.0], [1017.0, 7027.0, 0.2994481599957958, 2.0], [14902.0, 14960.0, 0.299679482413173, 4.0], [7418.0, 14938.0, 0.3005275714055982, 4.0], [266.0, 6928.0, 0.3016626734688373, 2.0], [7678.0, 10873.0, 0.3018375392347508, 3.0], [2915.0, 8976.0, 0.30327152091977905, 34.0], [1043.0, 9618.0, 0.3041440774679674, 5.0], [104.0, 2643.0, 0.30505383155385996, 2.0], [10849.0, 10852.0, 0.3054155039907932, 6.0], [14868.0, 14953.0, 0.3055036648666872, 7.0], [8631.0, 8647.0, 0.30578130159257333, 6.0], [3070.0, 14949.0, 0.3102282943908362, 12.0], [5818.0, 14894.0, 0.31153957208033684, 3.0], [2204.0, 14970.0, 0.312138614849773, 28.0], [201.0, 2126.0, 0.3125704217517389, 2.0], [319.0, 14968.0, 0.3129860129013855, 4.0], [6577.0, 14940.0, 0.31323719947643314, 4.0], [14914.0, 14933.0, 0.31418845614936475, 4.0], [2014.0, 4857.0, 0.31522807424347615, 2.0], [14951.0, 14985.0, 0.31663016164376934, 7.0], [5119.0, 13949.0, 0.3199677653657139, 3.0], [3232.0, 8462.0, 0.3213368803433046, 6.0], [493.0, 14984.0, 0.32189938694753556, 6.0], [7532.0, 9179.0, 0.322664934795075, 3.0], [2115.0, 10884.0, 0.32723466032270365, 5.0], [1224.0, 3453.0, 0.330577371714389, 2.0], [10670.0, 10671.0, 0.33079296928759755, 7.0], [4586.0, 15026.0, 0.3313289567070723, 6.0], [4654.0, 5981.0, 0.33353144749100005, 2.0], [2172.0, 4417.0, 0.3358054537139237, 2.0], [7086.0, 8770.0, 0.3358498012905581, 3.0], [7752.0, 15050.0, 0.33988494917625867, 3.0], [14913.0, 14915.0, 0.3428829144541429, 6.0], [10771.0, 15095.0, 0.34305371743969804, 6.0], [4225.0, 9215.0, 0.34781790647468014, 3.0], [7157.0, 7561.0, 0.34949466547516317, 2.0], [1244.0, 3106.0, 0.3498392599576852, 2.0], [6502.0, 7697.0, 0.3544004490080686, 2.0], [682.0, 3341.0, 0.35793247338251555, 2.0], [2502.0, 7281.0, 0.3616584718873838, 2.0], [6437.0, 15035.0, 0.3624846358274699, 4.0], [1486.0, 6498.0, 0.36329701805876935, 2.0], [2484.0, 6866.0, 0.3638879613453681, 2.0], [14024.0, 15075.0, 0.3661900212995533, 4.0], [2040.0, 7622.0, 0.3665809505926714, 2.0], [15031.0, 15110.0, 0.36932705043202163, 9.0], [10736.0, 10737.0, 0.3726742678253109, 12.0], [14896.0, 14898.0, 0.37317595657263136, 8.0], [2524.0, 8930.0, 0.376682943500574, 8.0], [1948.0, 7919.0, 0.37682494708805214, 3.0], [14921.0, 15009.0, 0.37703011512096796, 8.0], [15000.0, 15053.0, 0.3774863018409786, 4.0], [4364.0, 15067.0, 0.3785886291986231, 9.0], [1790.0, 2726.0, 0.3818661035055451, 2.0], [7808.0, 9697.0, 0.3853832477691519, 4.0], [712.0, 15061.0, 0.3854902080150601, 3.0], [3971.0, 15032.0, 0.38864741001662517, 3.0], [648.0, 15104.0, 0.39022934317499164, 7.0], [15007.0, 15011.0, 0.39039825356749236, 4.0], [2819.0, 7822.0, 0.3906718427239204, 2.0], [780.0, 9284.0, 0.3952893164659341, 5.0], [8667.0, 14988.0, 0.4052639275675307, 15.0], [2278.0, 15043.0, 0.40542021507002535, 3.0], [7273.0, 10213.0, 0.40894461458066883, 3.0], [14033.0, 14975.0, 0.410815659356361, 9.0], [10787.0, 15029.0, 0.41173648491352377, 8.0], [10887.0, 14931.0, 0.4153737156508696, 12.0], [5219.0, 15083.0, 0.41557026452826185, 3.0], [14900.0, 15027.0, 0.4159521861456448, 9.0], [5861.0, 15006.0, 0.41698138110525423, 4.0], [2045.0, 2157.0, 0.41927109070756186, 2.0], [156.0, 14990.0, 0.42376673030453205, 4.0], [2621.0, 15056.0, 0.4237811548053791, 7.0], [14996.0, 15103.0, 0.4238825586570036, 9.0], [7119.0, 8871.0, 0.4283829924892421, 3.0], [4349.0, 5013.0, 0.43093077609277275, 2.0], [5975.0, 14934.0, 0.43503988914044683, 9.0], [6024.0, 15152.0, 0.4350771777927243, 5.0], [6385.0, 8569.0, 0.43582313667352146, 3.0], [6575.0, 10750.0, 0.4392592205715368, 19.0], [242.0, 8558.0, 0.44555932592058517, 3.0], [5985.0, 7654.0, 0.44875617080996855, 2.0], [4818.0, 14950.0, 0.4500002033503188, 3.0], [1368.0, 14991.0, 0.4519252746579053, 4.0], [1359.0, 3368.0, 0.45334656383396577, 2.0], [2974.0, 7831.0, 0.45615587029709964, 2.0], [5825.0, 6765.0, 0.4584420263494905, 2.0], [15018.0, 15112.0, 0.45880859846623434, 4.0], [2945.0, 10386.0, 0.4592779866980656, 6.0], [632.0, 7527.0, 0.4621222600022238, 2.0], [1125.0, 14979.0, 0.4630375004697718, 3.0], [6697.0, 7309.0, 0.4630910319480662, 2.0], [5317.0, 15003.0, 0.46488900463152366, 5.0], [14856.0, 15072.0, 0.4696467702984759, 12.0], [1606.0, 15019.0, 0.46995291178482146, 4.0], [4173.0, 10821.0, 0.47110305837122696, 3.0], [10389.0, 10783.0, 0.472344157335532, 22.0], [1361.0, 5137.0, 0.47356158343424215, 2.0], [15071.0, 15091.0, 0.4755372820446752, 21.0], [14911.0, 15151.0, 0.47685321741095765, 12.0], [4047.0, 7502.0, 0.4777896199593627, 2.0], [5334.0, 5996.0, 0.4779765501685474, 2.0], [1433.0, 15122.0, 0.4782481017496712, 3.0], [6767.0, 15070.0, 0.47880890909867035, 3.0], [3364.0, 7169.0, 0.4815244142045866, 2.0], [5244.0, 14903.0, 0.48225021881765406, 4.0], [423.0, 8819.0, 0.48398380713255607, 7.0], [3659.0, 15108.0, 0.4871589486967877, 3.0], [3689.0, 15139.0, 0.4893009684314018, 10.0], [6457.0, 6677.0, 0.4922792029029245, 2.0], [2671.0, 10845.0, 0.49514649866729377, 5.0], [2249.0, 15092.0, 0.49560199661543, 3.0], [23.0, 7858.0, 0.4969334206874319, 4.0], [15042.0, 15102.0, 0.4978893597390808, 8.0], [1191.0, 9762.0, 0.4980566068036773, 5.0], [7202.0, 15171.0, 0.4990328838687015, 6.0], [9234.0, 15090.0, 0.500532366730255, 10.0], [7675.0, 15084.0, 0.5019302120204915, 3.0], [7626.0, 10366.0, 0.5032663907300481, 3.0], [6500.0, 9217.0, 0.5035062857603163, 3.0], [10056.0, 10842.0, 0.5051561688509327, 6.0], [4043.0, 4623.0, 0.5056697726848007, 2.0], [2878.0, 15023.0, 0.5125086151726838, 4.0], [3486.0, 9229.0, 0.5142166168730307, 4.0], [14118.0, 14119.0, 0.5191855527798446, 11.0], [964.0, 7256.0, 0.5195072603498065, 2.0], [404.0, 6671.0, 0.5247452804907876, 2.0], [1446.0, 6407.0, 0.5259752321519093, 2.0], [2860.0, 4507.0, 0.5269335069753852, 2.0], [3410.0, 15116.0, 0.5292742878857397, 7.0], [7911.0, 15161.0, 0.5422755305283895, 7.0], [14978.0, 15212.0, 0.5428377963717365, 5.0], [1636.0, 5846.0, 0.5457908000787871, 2.0], [6316.0, 10834.0, 0.5457988056842418, 3.0], [1996.0, 10630.0, 0.5514011417723493, 5.0], [14910.0, 15012.0, 0.5533696297355989, 12.0], [2735.0, 15010.0, 0.5535291150026199, 3.0], [1694.0, 2554.0, 0.5550488955461959, 2.0], [1005.0, 9486.0, 0.561876093239284, 3.0], [14891.0, 15016.0, 0.5631263984893484, 10.0], [2375.0, 14871.0, 0.5712948503446443, 3.0], [4449.0, 9859.0, 0.5765446529299845, 65.0], [4308.0, 7568.0, 0.5777388806810706, 2.0], [456.0, 2743.0, 0.5835823028018213, 2.0], [373.0, 15124.0, 0.587148312868094, 4.0], [2129.0, 8945.0, 0.5878003666639035, 3.0], [1171.0, 15054.0, 0.588465272996055, 3.0], [15020.0, 15033.0, 0.5886977031868792, 10.0], [315.0, 15155.0, 0.5918191561852905, 16.0], [4340.0, 7625.0, 0.5920260572372918, 2.0], [14987.0, 15055.0, 0.5938470296516651, 9.0], [14022.0, 14945.0, 0.5966914117062764, 44.0], [15017.0, 15119.0, 0.5981971571937041, 4.0], [6173.0, 7709.0, 0.6002478987764526, 2.0], [1064.0, 9643.0, 0.6007338912161161, 8.0], [661.0, 15220.0, 0.608501435834331, 3.0], [14883.0, 14929.0, 0.6109429310828715, 12.0], [4762.0, 15168.0, 0.6126891989780533, 4.0], [15079.0, 15199.0, 0.6135268404347684, 8.0], [14999.0, 15113.0, 0.6153659010369178, 11.0], [10806.0, 10833.0, 0.6212532892085846, 7.0], [2308.0, 9222.0, 0.6241577333345104, 3.0], [5992.0, 14941.0, 0.6256645794270499, 3.0], [15002.0, 15148.0, 0.6266563336175682, 6.0], [1252.0, 15169.0, 0.6268601284443903, 3.0], [6613.0, 7834.0, 0.6276629315467827, 2.0], [10805.0, 15005.0, 0.6313100525741404, 4.0], [2902.0, 14971.0, 0.6332038004224393, 4.0], [463.0, 8854.0, 0.6337467119767904, 5.0], [3482.0, 6769.0, 0.6405836039372258, 2.0], [14998.0, 15105.0, 0.6408443676151543, 15.0], [14023.0, 15021.0, 0.6411674990481262, 5.0], [4977.0, 6904.0, 0.6426711900599252, 2.0], [395.0, 8791.0, 0.6468975721740805, 3.0], [253.0, 15172.0, 0.6489478646438563, 4.0], [10872.0, 14909.0, 0.649533027884759, 26.0], [2234.0, 4296.0, 0.6600775630025371, 2.0], [15052.0, 15160.0, 0.6612540722687539, 15.0], [7936.0, 15078.0, 0.6650594271665382, 5.0], [6590.0, 14937.0, 0.6654826430290975, 3.0], [15022.0, 15241.0, 0.6670455175148244, 18.0], [4584.0, 15198.0, 0.6711233739326541, 3.0], [1060.0, 7194.0, 0.6742539784512531, 2.0], [13948.0, 15114.0, 0.6842318116224703, 5.0], [14995.0, 15121.0, 0.6897741226445477, 9.0], [7518.0, 15057.0, 0.6902915840300151, 5.0], [15049.0, 15109.0, 0.6908294335548901, 8.0], [10673.0, 15203.0, 0.6913028766935315, 5.0], [4431.0, 15101.0, 0.6921760162574996, 3.0], [10073.0, 15136.0, 0.6954062013221405, 4.0], [15004.0, 15130.0, 0.6961708054008563, 6.0], [15145.0, 15149.0, 0.7019142008637342, 7.0], [15133.0, 15135.0, 0.7020239814567943, 4.0], [15106.0, 15188.0, 0.7078772347422283, 7.0], [15128.0, 15213.0, 0.7092927688672129, 6.0], [3049.0, 14983.0, 0.7151308549344854, 15.0], [4052.0, 15156.0, 0.7213452832633425, 4.0], [14890.0, 15127.0, 0.7292659140505133, 10.0], [15158.0, 15264.0, 0.7305738374296061, 24.0], [3750.0, 15064.0, 0.7321906185230121, 10.0], [10668.0, 15129.0, 0.7325369903120799, 4.0], [4415.0, 9246.0, 0.7329189506155326, 5.0], [14972.0, 15126.0, 0.7334576060267546, 10.0], [2020.0, 2489.0, 0.737141721117371, 2.0], [2892.0, 15214.0, 0.7396408803351723, 7.0], [14844.0, 14947.0, 0.7419352088987159, 23.0], [1401.0, 7255.0, 0.7483159365867935, 2.0], [790.0, 1490.0, 0.7536508140134762, 2.0], [282.0, 4448.0, 0.7677710746316493, 2.0], [1515.0, 10097.0, 0.7765610882765774, 4.0], [4028.0, 15251.0, 0.7782613433086263, 5.0], [7935.0, 7940.0, 0.7783503435535584, 7.0], [14930.0, 14961.0, 0.7797360180154048, 35.0], [15062.0, 15125.0, 0.7799971515362766, 6.0], [14859.0, 15058.0, 0.7908276884140418, 6.0], [15041.0, 15189.0, 0.7970710750738632, 10.0], [14966.0, 15123.0, 0.7972655142922993, 6.0], [3393.0, 15097.0, 0.7985792062216092, 3.0], [600.0, 15132.0, 0.8020189561324849, 3.0], [4719.0, 6725.0, 0.80247624581187, 2.0], [15111.0, 15250.0, 0.8025393312613874, 16.0], [10721.0, 14981.0, 0.8039911394174087, 17.0], [5511.0, 15256.0, 0.8044767966068525, 4.0], [3708.0, 14939.0, 0.8063741813622268, 5.0], [1022.0, 15177.0, 0.8075877842907239, 5.0], [15001.0, 15141.0, 0.8085933133174823, 14.0], [8483.0, 15115.0, 0.809431913845028, 29.0], [14982.0, 15060.0, 0.8104577427200078, 4.0], [10799.0, 15216.0, 0.8157146272455039, 17.0], [1859.0, 15225.0, 0.8175726865979265, 6.0], [1269.0, 6496.0, 0.8266609083765559, 2.0], [6134.0, 14917.0, 0.8274624653841196, 4.0], [774.0, 5945.0, 0.8345089727107273, 2.0], [10830.0, 14992.0, 0.8387627701648219, 11.0], [15008.0, 15144.0, 0.8442311340709397, 13.0], [15131.0, 15186.0, 0.8471558625494057, 7.0], [654.0, 9104.0, 0.8542481619714088, 6.0], [543.0, 6170.0, 0.8573111133102649, 2.0], [14969.0, 15205.0, 0.8592816658140061, 6.0], [10907.0, 10910.0, 0.8605282032657353, 22.0], [4063.0, 15246.0, 0.8625773167660169, 5.0], [2718.0, 15235.0, 0.8652070505822561, 66.0], [9220.0, 15255.0, 0.8657524083305164, 6.0], [14967.0, 15085.0, 0.866709369289869, 21.0], [7359.0, 15048.0, 0.8668142101932086, 4.0], [14686.0, 15154.0, 0.8676155762464652, 9.0], [1239.0, 6871.0, 0.8688378969217094, 2.0], [7566.0, 15221.0, 0.8764033092733403, 3.0], [15164.0, 15227.0, 0.8822477221763455, 5.0], [14882.0, 15166.0, 0.9000263991688492, 10.0], [10072.0, 15283.0, 0.901007259820296, 9.0], [8936.0, 15142.0, 0.9028619821657938, 11.0], [10839.0, 15069.0, 0.9046518692814471, 7.0], [1754.0, 15080.0, 0.9056538155744033, 3.0], [10074.0, 15234.0, 0.9067258174291002, 5.0], [15086.0, 15280.0, 0.9136804403823742, 16.0], [15036.0, 15100.0, 0.9162559067297648, 9.0], [10713.0, 15063.0, 0.9199170524533905, 25.0], [15051.0, 15118.0, 0.92319872128593, 11.0], [268.0, 3013.0, 0.925297826785142, 2.0], [4079.0, 15093.0, 0.9254509887147645, 4.0], [15068.0, 15181.0, 0.9289486001856995, 6.0], [6302.0, 15268.0, 0.9323770051441569, 5.0], [13951.0, 15295.0, 0.9329831804804459, 7.0], [1268.0, 9882.0, 0.9452487796796631, 3.0], [14920.0, 15232.0, 0.9489572791427985, 5.0], [1439.0, 10030.0, 0.9630826186743555, 21.0], [580.0, 15230.0, 0.9700692440391258, 4.0], [15117.0, 15150.0, 0.9711852240935837, 6.0], [2549.0, 15153.0, 0.9717052874976213, 3.0], [15175.0, 15222.0, 0.9783344068090486, 4.0], [15034.0, 15309.0, 0.9818129252815947, 13.0], [15157.0, 15315.0, 0.9821944112960553, 20.0], [6615.0, 7381.0, 0.9856896048945828, 2.0], [8619.0, 15211.0, 0.9863533064686096, 39.0], [15194.0, 15236.0, 0.9874957237957944, 4.0], [15217.0, 15336.0, 0.9905712877443842, 10.0], [9883.0, 15286.0, 0.9926746290172566, 6.0], [15087.0, 15146.0, 0.9976609858149177, 14.0], [15030.0, 15207.0, 0.9994086046336972, 10.0], [13950.0, 15228.0, 1.0035160849020797, 7.0], [15185.0, 15259.0, 1.0129610186366413, 4.0], [10843.0, 15180.0, 1.0142696787179224, 4.0], [15074.0, 15192.0, 1.0163951158491957, 35.0], [10847.0, 15307.0, 1.0165293718618313, 9.0], [15173.0, 15215.0, 1.0166571311399388, 21.0], [15096.0, 15244.0, 1.0207277877917635, 13.0], [15165.0, 15320.0, 1.0242594198880663, 33.0], [147.0, 5268.0, 1.0251323795818914, 2.0], [6533.0, 9869.0, 1.0305755092110878, 4.0], [14963.0, 15248.0, 1.0332276201724002, 11.0], [4705.0, 15195.0, 1.0404354361294568, 3.0], [9627.0, 10667.0, 1.0442896501895134, 10.0], [14986.0, 15247.0, 1.0463384832274172, 4.0], [2483.0, 5745.0, 1.0463527527527692, 2.0], [6060.0, 6286.0, 1.0552815050037263, 2.0], [2380.0, 10032.0, 1.055788804507267, 5.0], [9626.0, 15094.0, 1.058521200746534, 6.0], [2790.0, 9624.0, 1.058637938614472, 3.0], [9168.0, 15209.0, 1.0616847066937862, 14.0], [1371.0, 6209.0, 1.0686524254711085, 2.0], [8982.0, 15239.0, 1.087316009994303, 10.0], [532.0, 14946.0, 1.092360308012679, 7.0], [15073.0, 15306.0, 1.0956836313033924, 37.0], [6565.0, 15275.0, 1.1002103502194764, 4.0], [15257.0, 15278.0, 1.1023527082083793, 15.0], [4256.0, 9178.0, 1.1082614983793022, 3.0], [7199.0, 15134.0, 1.117661774601204, 5.0], [6398.0, 15178.0, 1.1251659551603703, 3.0], [10844.0, 15298.0, 1.1317587106251221, 9.0], [15291.0, 15328.0, 1.1380918902270842, 23.0], [13953.0, 13981.0, 1.1402878112782662, 39.0], [452.0, 1672.0, 1.1445717086807792, 2.0], [15229.0, 15319.0, 1.1537656555461309, 26.0], [15167.0, 15252.0, 1.156730699027784, 17.0], [15044.0, 15219.0, 1.170117146056918, 8.0], [15107.0, 15323.0, 1.181196958236991, 34.0], [15197.0, 15288.0, 1.1817118132297892, 9.0], [15163.0, 15334.0, 1.1875562655874352, 9.0], [7207.0, 15347.0, 1.1894577802136808, 4.0], [8869.0, 10513.0, 1.1919772358543068, 27.0], [14943.0, 15039.0, 1.1954590711223905, 98.0], [15015.0, 15316.0, 1.2077765162306824, 9.0], [15184.0, 15260.0, 1.2080714443681098, 7.0], [14993.0, 15099.0, 1.2098653278228448, 37.0], [15279.0, 15301.0, 1.2183171420424894, 7.0], [15077.0, 15310.0, 1.218640700418122, 10.0], [10788.0, 15311.0, 1.225586043111567, 5.0], [15258.0, 15383.0, 1.2296057868397114, 7.0], [15013.0, 15290.0, 1.2405220721008, 10.0], [10662.0, 15088.0, 1.2621338826004311, 25.0], [10031.0, 15238.0, 1.2662283105099432, 6.0], [15045.0, 15361.0, 1.2687532301291828, 6.0], [14997.0, 15147.0, 1.2714092943447814, 30.0], [15038.0, 15059.0, 1.2731702122116173, 112.0], [9216.0, 15297.0, 1.276816969877094, 4.0], [15081.0, 15351.0, 1.2802955788172763, 27.0], [7252.0, 15243.0, 1.292800261316342, 3.0], [14974.0, 15245.0, 1.3028949246876478, 46.0], [10700.0, 15281.0, 1.3076776594015187, 46.0], [763.0, 15385.0, 1.3215658144816658, 4.0], [100.0, 15302.0, 1.3304848126457125, 3.0], [15040.0, 15287.0, 1.3307664184962502, 11.0], [15387.0, 15431.0, 1.3575157834597635, 7.0], [9660.0, 15329.0, 1.3623600397120579, 10.0], [6164.0, 15394.0, 1.3643901608268738, 3.0], [15253.0, 15285.0, 1.3659575009962595, 18.0], [15261.0, 15399.0, 1.3670188185346324, 19.0], [15179.0, 15267.0, 1.3814862336741123, 5.0], [15233.0, 15296.0, 1.3845522246440296, 20.0], [14973.0, 15405.0, 1.3849517437299315, 42.0], [10814.0, 15028.0, 1.3876646565882351, 13.0], [10848.0, 15373.0, 1.3917531812456032, 13.0], [15182.0, 15321.0, 1.4028064182939293, 10.0], [15293.0, 15396.0, 1.4164917788127096, 17.0], [15174.0, 15322.0, 1.4378223005563768, 20.0], [15226.0, 15389.0, 1.4611699182165918, 4.0], [15159.0, 15355.0, 1.4898509075165969, 14.0], [4682.0, 15391.0, 1.5104623794969279, 7.0], [15340.0, 15375.0, 1.5211525985415812, 6.0], [15263.0, 15273.0, 1.5269275872431523, 5.0], [8752.0, 15376.0, 1.529878131639519, 6.0], [15367.0, 15406.0, 1.5361199081248138, 4.0], [9741.0, 15430.0, 1.5394002056368552, 35.0], [15270.0, 15318.0, 1.544223306645116, 7.0], [723.0, 1053.0, 1.5459461537235188, 2.0], [1827.0, 15183.0, 1.5519537465660715, 3.0], [14989.0, 15240.0, 1.556137952586855, 7.0], [15024.0, 15390.0, 1.5619949966165216, 13.0], [15342.0, 15354.0, 1.5699688774793807, 9.0], [8561.0, 13985.0, 1.5763430592445633, 11.0], [15224.0, 15237.0, 1.5988580961792327, 9.0], [15082.0, 15369.0, 1.6029978081156384, 6.0], [14964.0, 15098.0, 1.611589971309385, 23.0], [4437.0, 15312.0, 1.6203059485761298, 4.0], [15014.0, 15271.0, 1.6282940871801355, 487.0], [15326.0, 15357.0, 1.6558414632182819, 9.0], [9100.0, 15330.0, 1.6604815122399683, 39.0], [15065.0, 15337.0, 1.6693964665465204, 24.0], [7200.0, 10647.0, 1.6711642255940276, 5.0], [2303.0, 15353.0, 1.6782826135571982, 3.0], [15289.0, 15427.0, 1.678340678998036, 45.0], [15254.0, 15327.0, 1.6947026590783163, 18.0], [15284.0, 15408.0, 1.700956649215344, 23.0], [957.0, 3300.0, 1.7235774153859376, 2.0], [15223.0, 15393.0, 1.7493179317645395, 21.0], [15349.0, 15377.0, 1.75277337713938, 51.0], [15196.0, 15421.0, 1.775108681007119, 8.0], [15303.0, 15341.0, 1.7801454279488553, 7.0], [15324.0, 15458.0, 1.8231856417328092, 9.0], [15170.0, 15370.0, 1.824902971297217, 19.0], [15137.0, 15292.0, 1.8293981241154993, 28.0], [15143.0, 15417.0, 1.830744271173554, 10.0], [15314.0, 15372.0, 1.8516691534852967, 30.0], [15204.0, 15422.0, 1.8543891326281317, 12.0], [10888.0, 15401.0, 1.8560765341892154, 7.0], [10763.0, 15206.0, 1.8572633541195376, 9.0], [7686.0, 15382.0, 1.8609850787713087, 3.0], [15201.0, 15365.0, 1.8636505921700988, 16.0], [15266.0, 15272.0, 1.868036602643505, 7.0], [15202.0, 15445.0, 1.8968849633134708, 23.0], [14852.0, 15277.0, 1.9264265558651048, 14.0], [15358.0, 15363.0, 1.9373520801227142, 6.0], [5453.0, 15294.0, 1.9828117328799073, 5.0], [15047.0, 15089.0, 1.99368478527592, 430.0], [10728.0, 15140.0, 2.013505615882014, 20.0], [15066.0, 15308.0, 2.0187572902044217, 17.0], [15193.0, 15438.0, 2.0910155825651264, 22.0], [15200.0, 15262.0, 2.0991316609683595, 12.0], [15274.0, 15380.0, 2.1123298441140714, 31.0], [15466.0, 15493.0, 2.115282812131718, 13.0], [15249.0, 15473.0, 2.1334104526854163, 8.0], [15348.0, 15419.0, 2.134189062067539, 12.0], [15276.0, 15339.0, 2.142962364704974, 11.0], [15335.0, 15364.0, 2.1526522382453837, 70.0], [15345.0, 15448.0, 2.1566904828282705, 28.0], [15411.0, 15436.0, 2.1581520640778935, 20.0], [15344.0, 15449.0, 2.161471082352794, 29.0], [15046.0, 15359.0, 2.1752463898535432, 114.0], [15400.0, 15459.0, 2.1968902640378483, 5.0], [15138.0, 15434.0, 2.198076285152821, 6.0], [15346.0, 15398.0, 2.22679503059228, 11.0], [15190.0, 15440.0, 2.237087541836808, 40.0], [15371.0, 15465.0, 2.250296793163393, 15.0], [15120.0, 15304.0, 2.2650852724868753, 12.0], [5872.0, 15409.0, 2.275945983281685, 9.0], [1048.0, 2021.0, 2.2829599364754896, 2.0], [15242.0, 15332.0, 2.3043269235635457, 22.0], [15231.0, 15432.0, 2.304474397449503, 48.0], [15162.0, 15469.0, 2.3076454439906895, 496.0], [15343.0, 15446.0, 2.319345903264461, 23.0], [15325.0, 15416.0, 2.3309134536572875, 13.0], [15282.0, 15455.0, 2.3571866757869664, 9.0], [4913.0, 15362.0, 2.36926338951119, 7.0], [15331.0, 15395.0, 2.4074965169107445, 12.0], [15208.0, 15392.0, 2.4397243249929548, 8.0], [15176.0, 15368.0, 2.4520678954848356, 42.0], [10836.0, 15497.0, 2.482252019622377, 8.0], [15313.0, 15386.0, 2.523094762835443, 12.0], [15450.0, 15491.0, 2.5240278108371585, 7.0], [10765.0, 15356.0, 2.5293097015037023, 8.0], [15402.0, 15464.0, 2.5395670765167453, 14.0], [15187.0, 15420.0, 2.5802752391126167, 22.0], [15265.0, 15522.0, 2.6167040593202797, 53.0], [15425.0, 15447.0, 2.6348243069709376, 16.0], [15378.0, 15524.0, 2.646751444474372, 32.0], [14361.0, 15379.0, 2.6489899437271145, 107.0], [882.0, 7510.0, 2.685261066310173, 2.0], [15499.0, 15507.0, 2.6987982044831127, 31.0], [15480.0, 15503.0, 2.7047688596341994, 82.0], [15191.0, 15439.0, 2.705783197153775, 5.0], [15352.0, 15384.0, 2.719744001932213, 22.0], [15412.0, 15506.0, 2.7635532535735834, 21.0], [15429.0, 15514.0, 2.822087446082587, 10.0], [15388.0, 15413.0, 2.8322396288236455, 6.0], [15317.0, 15478.0, 2.8389728695509073, 7.0], [14863.0, 14954.0, 2.892537901699845, 426.0], [10757.0, 15534.0, 2.89805787364658, 18.0], [15269.0, 15467.0, 2.904748083545636, 49.0], [15435.0, 15468.0, 2.926143434787506, 7.0], [15300.0, 15483.0, 2.934020570394836, 11.0], [15441.0, 15479.0, 2.997380206860697, 40.0], [15414.0, 15512.0, 3.0033103963088412, 141.0], [14994.0, 15516.0, 3.0519325211381325, 67.0], [15210.0, 15484.0, 3.0864155909198443, 29.0], [15418.0, 15470.0, 3.096175709656756, 46.0], [15299.0, 15415.0, 3.101139637513782, 121.0], [15333.0, 15428.0, 3.1043673607368425, 134.0], [10881.0, 15305.0, 3.1375424596990378, 16.0], [15374.0, 15528.0, 3.1951843865201717, 19.0], [15476.0, 15486.0, 3.243324645446433, 28.0], [15460.0, 15461.0, 3.246083710691831, 10.0], [2150.0, 15500.0, 3.2833463964784384, 18.0], [15366.0, 15433.0, 3.3424279729499453, 66.0], [15442.0, 15490.0, 3.3581971857178914, 14.0], [15451.0, 15511.0, 3.3685152077571248, 43.0], [15404.0, 15543.0, 3.573404732061328, 105.0], [15454.0, 15463.0, 3.6190833540381964, 14.0], [15527.0, 15563.0, 3.633392582893838, 26.0], [15481.0, 15501.0, 3.649702392005529, 30.0], [15360.0, 15462.0, 3.665250073108635, 34.0], [15423.0, 15521.0, 3.6907687236017046, 32.0], [15076.0, 15526.0, 3.7063934848005555, 12.0], [15443.0, 15536.0, 3.7272581140174132, 42.0], [15453.0, 15504.0, 3.755745565530954, 19.0], [15510.0, 15558.0, 3.774259266557717, 49.0], [15338.0, 15489.0, 3.9872877993916105, 11.0], [15477.0, 15492.0, 4.1067302899819, 39.0], [15474.0, 15496.0, 4.145478770508578, 9.0], [15518.0, 15565.0, 4.151546835312948, 22.0], [15452.0, 15532.0, 4.16073778774858, 19.0], [15350.0, 15531.0, 4.211901848941496, 17.0], [15218.0, 15525.0, 4.279555184550714, 24.0], [15381.0, 15407.0, 4.314363799787903, 59.0], [15515.0, 15554.0, 4.417218304891403, 22.0], [15456.0, 15548.0, 4.518641217774994, 10.0], [15517.0, 15568.0, 4.522361575890066, 29.0], [15397.0, 15487.0, 4.552040138972573, 67.0], [15509.0, 15529.0, 4.564381377300592, 36.0], [15482.0, 15505.0, 4.584041022802254, 15.0], [15403.0, 15544.0, 4.67831840536162, 14.0], [15488.0, 15564.0, 5.044745203189094, 40.0], [15475.0, 15545.0, 5.0918902948718365, 67.0], [15485.0, 15577.0, 5.09588706727958, 70.0], [15424.0, 15530.0, 5.309938562801246, 67.0], [15513.0, 15541.0, 5.4528074281595815, 7.0], [15426.0, 15547.0, 5.634606190181549, 16.0], [15437.0, 15539.0, 5.789248353931122, 39.0], [15584.0, 15589.0, 5.826279108086152, 29.0], [15472.0, 15587.0, 5.903179982283463, 83.0], [15538.0, 15581.0, 5.934205593501496, 55.0], [15520.0, 15593.0, 6.215132557865118, 17.0], [15553.0, 15594.0, 6.244562903798777, 21.0], [15582.0, 15600.0, 6.405781349612828, 25.0], [15444.0, 15535.0, 6.433020067689203, 56.0], [15471.0, 15551.0, 6.486435179006462, 57.0], [15495.0, 15560.0, 6.529963792111982, 135.0], [15546.0, 15573.0, 6.605565063797261, 51.0], [15562.0, 15574.0, 6.641738117680095, 50.0], [15575.0, 15591.0, 6.653733175765435, 99.0], [15494.0, 15595.0, 6.702957006471748, 63.0], [15502.0, 15549.0, 6.767284622611335, 19.0], [15580.0, 15599.0, 7.0388507491071985, 18.0], [15410.0, 15555.0, 7.530521311184188, 74.0], [15571.0, 15612.0, 7.615926520930021, 64.0], [15519.0, 15552.0, 7.713580309703624, 58.0], [15557.0, 15570.0, 8.00958367896002, 172.0], [15561.0, 15566.0, 8.11857564177458, 152.0], [15579.0, 15607.0, 8.218230126190939, 74.0], [15540.0, 15542.0, 8.266555237214915, 138.0], [15592.0, 15605.0, 8.683299686343082, 53.0], [15559.0, 15572.0, 8.865379222126773, 72.0], [15578.0, 15601.0, 9.138114204285188, 58.0], [15569.0, 15604.0, 9.362494955946273, 98.0], [15567.0, 15583.0, 9.596368605007912, 88.0], [15576.0, 15596.0, 10.005484355290283, 79.0], [15614.0, 15626.0, 10.014694853187931, 121.0], [15533.0, 15625.0, 10.077301101727306, 79.0], [15590.0, 15622.0, 10.215800639268828, 103.0], [15556.0, 15586.0, 11.06907953818854, 165.0], [10622.0, 15523.0, 11.626376999634807, 603.0], [15457.0, 15585.0, 11.731242672849431, 52.0], [15617.0, 15620.0, 12.09532509722433, 246.0], [15602.0, 15606.0, 12.69334775081886, 50.0], [15588.0, 15611.0, 12.992892375786269, 73.0], [15598.0, 15624.0, 14.606257550137528, 120.0], [15508.0, 15609.0, 14.6147284450983, 127.0], [15537.0, 15629.0, 14.778557026196433, 132.0], [15627.0, 15636.0, 16.24567630508189, 344.0], [15618.0, 15638.0, 18.16662444878641, 137.0], [15628.0, 15635.0, 18.34763514174826, 140.0], [15608.0, 15616.0, 18.564944415479307, 74.0], [15615.0, 15641.0, 19.58462076050937, 151.0], [15498.0, 15610.0, 20.732281036419614, 565.0], [15619.0, 15634.0, 21.627655802857, 661.0], [15603.0, 15631.0, 21.74332851853739, 162.0], [15597.0, 15633.0, 22.535282549183453, 235.0], [15550.0, 15621.0, 22.66259751180979, 578.0], [15613.0, 15623.0, 24.209030183766014, 237.0], [15637.0, 15640.0, 25.83591117195941, 177.0], [15645.0, 15649.0, 27.899317864472273, 236.0], [15632.0, 15639.0, 29.077751137164274, 223.0], [15644.0, 15652.0, 30.24619094199248, 377.0], [15630.0, 15653.0, 32.354476152989484, 298.0], [15646.0, 15650.0, 34.95571173370427, 386.0], [15643.0, 15657.0, 43.588333934321376, 435.0], [15655.0, 15659.0, 53.9387405771032, 658.0], [15642.0, 15660.0, 58.232831441860334, 1002.0], [15647.0, 15654.0, 134.00192803522884, 801.0], [15651.0, 15658.0, 148.79078394733634, 964.0], [15648.0, 15656.0, 165.65411917867337, 1038.0], [15661.0, 15662.0, 266.55789599255877, 1803.0], [15664.0, 15665.0, 282.4138605987721, 2841.0], [15663.0, 15666.0, 291.4367916705556, 3805.0], [13946.0, 15667.0, 481.28312978396184, 7835.0]]"
data =json.loads(datastr)
row_tree = sch.dendrogram(data, no_plot=True)"><pre class="notranslate"><code class="notranslate">import json
import scipy.cluster.hierarchy as sch
datastr = "[[0.0, 5.0, 0.0, 2.0], [1.0, 2.0, 0.0, 2.0], [4.0, 7836.0, 0.0, 3.0], [3.0, 245.0, 0.0, 2.0], [6.0, 7837.0, 0.0, 4.0], [8.0, 7835.0, 0.0, 3.0], [7.0, 7839.0, 0.0, 5.0], [9.0, 7841.0, 0.0, 6.0], [40.0, 7840.0, 0.0, 4.0], [10.0, 7842.0, 0.0, 7.0], [14.0, 7844.0, 0.0, 8.0], [11.0, 565.0, 0.0, 2.0], [12.0, 26.0, 0.0, 2.0], [13.0, 442.0, 0.0, 2.0], [15.0, 7845.0, 0.0, 9.0], [16.0, 7849.0, 0.0, 10.0], [17.0, 7850.0, 0.0, 11.0], [18.0, 7851.0, 0.0, 12.0], [20.0, 7852.0, 0.0, 13.0], [21.0, 7853.0, 0.0, 14.0], [22.0, 7854.0, 0.0, 15.0], [24.0, 7855.0, 0.0, 16.0], [2922.0, 3903.0, 0.0, 2.0], [4454.0, 7857.0, 0.0, 3.0], [25.0, 7856.0, 0.0, 17.0], [27.0, 7859.0, 0.0, 18.0], [33.0, 7847.0, 0.0, 3.0], [28.0, 7860.0, 0.0, 19.0], [29.0, 7862.0, 0.0, 20.0], [30.0, 7863.0, 0.0, 21.0], [32.0, 7864.0, 0.0, 22.0], [31.0, 6953.0, 0.0, 2.0], [34.0, 7865.0, 0.0, 23.0], [81.0, 7861.0, 0.0, 4.0], [36.0, 7867.0, 0.0, 24.0], [35.0, 1063.0, 0.0, 2.0], [37.0, 7869.0, 0.0, 25.0], [39.0, 7871.0, 0.0, 26.0], [38.0, 60.0, 0.0, 2.0], [41.0, 7872.0, 0.0, 27.0], [47.0, 7843.0, 0.0, 5.0], [42.0, 7874.0, 0.0, 28.0], [43.0, 7876.0, 0.0, 29.0], [44.0, 7877.0, 0.0, 30.0], [45.0, 7878.0, 0.0, 31.0], [46.0, 7879.0, 0.0, 32.0], [48.0, 7880.0, 0.0, 33.0], [57.0, 7875.0, 0.0, 6.0], [50.0, 7881.0, 0.0, 34.0], [49.0, 450.0, 0.0, 2.0], [51.0, 7883.0, 0.0, 35.0], [52.0, 7885.0, 0.0, 36.0], [55.0, 7886.0, 0.0, 37.0], [54.0, 217.0, 0.0, 2.0], [56.0, 7887.0, 0.0, 38.0], [59.0, 7889.0, 0.0, 39.0], [61.0, 7882.0, 0.0, 7.0], [58.0, 1149.0, 0.0, 2.0], [62.0, 7890.0, 0.0, 40.0], [132.0, 7873.0, 0.0, 3.0], [82.0, 7891.0, 0.0, 8.0], [64.0, 7893.0, 0.0, 41.0], [63.0, 839.0, 0.0, 2.0], [65.0, 7896.0, 0.0, 42.0], [66.0, 7898.0, 0.0, 43.0], [67.0, 7899.0, 0.0, 44.0], [68.0, 7900.0, 0.0, 45.0], [69.0, 7901.0, 0.0, 46.0], [72.0, 7902.0, 0.0, 47.0], [71.0, 135.0, 0.0, 2.0], [74.0, 7903.0, 0.0, 48.0], [75.0, 7905.0, 0.0, 49.0], [76.0, 7906.0, 0.0, 50.0], [78.0, 7907.0, 0.0, 51.0], [616.0, 6267.0, 0.0, 2.0], [6732.0, 7909.0, 0.0, 3.0], [7120.0, 7910.0, 0.0, 4.0], [79.0, 7908.0, 0.0, 52.0], [80.0, 7912.0, 0.0, 53.0], [83.0, 7913.0, 0.0, 54.0], [127.0, 7868.0, 0.0, 5.0], [99.0, 7895.0, 0.0, 9.0], [84.0, 7914.0, 0.0, 55.0], [87.0, 7917.0, 0.0, 56.0], [85.0, 3630.0, 0.0, 2.0], [86.0, 4270.0, 0.0, 2.0], [88.0, 7918.0, 0.0, 57.0], [89.0, 7921.0, 0.0, 58.0], [91.0, 7922.0, 0.0, 59.0], [90.0, 677.0, 0.0, 2.0], [92.0, 7923.0, 0.0, 60.0], [93.0, 7925.0, 0.0, 61.0], [94.0, 7926.0, 0.0, 62.0], [95.0, 7927.0, 0.0, 63.0], [96.0, 7928.0, 0.0, 64.0], [97.0, 7929.0, 0.0, 65.0], [98.0, 7930.0, 0.0, 66.0], [102.0, 7931.0, 0.0, 67.0], [110.0, 7916.0, 0.0, 10.0], [6829.0, 7291.0, 0.0, 2.0], [874.0, 5171.0, 0.0, 2.0], [1219.0, 1819.0, 0.0, 2.0], [1112.0, 1353.0, 0.0, 2.0], [2286.0, 7937.0, 0.0, 3.0], [4972.0, 7938.0, 0.0, 4.0], [5741.0, 7939.0, 0.0, 5.0], [101.0, 806.0, 0.0, 2.0], [103.0, 7932.0, 0.0, 68.0], [105.0, 7942.0, 0.0, 69.0], [106.0, 7943.0, 0.0, 70.0], [107.0, 7944.0, 0.0, 71.0], [108.0, 7945.0, 0.0, 72.0], [109.0, 7946.0, 0.0, 73.0], [112.0, 7947.0, 0.0, 74.0], [122.0, 7933.0, 0.0, 11.0], [111.0, 123.0, 0.0, 2.0], [114.0, 7948.0, 0.0, 75.0], [4618.0, 7405.0, 0.0, 2.0], [115.0, 7951.0, 0.0, 76.0], [116.0, 7953.0, 0.0, 77.0], [118.0, 7954.0, 0.0, 78.0], [117.0, 770.0, 0.0, 2.0], [120.0, 7955.0, 0.0, 79.0], [5682.0, 5968.0, 0.0, 2.0], [121.0, 7957.0, 0.0, 80.0], [124.0, 7959.0, 0.0, 81.0], [126.0, 7949.0, 0.0, 12.0], [130.0, 7950.0, 0.0, 3.0], [125.0, 7960.0, 0.0, 82.0], [129.0, 7963.0, 0.0, 83.0], [131.0, 7961.0, 0.0, 13.0], [128.0, 7915.0, 0.0, 6.0], [141.0, 7966.0, 0.0, 7.0], [139.0, 7964.0, 0.0, 84.0], [153.0, 7962.0, 0.0, 4.0], [140.0, 7965.0, 0.0, 14.0], [170.0, 7894.0, 0.0, 4.0], [133.0, 465.0, 0.0, 2.0], [134.0, 1557.0, 0.0, 2.0], [204.0, 7904.0, 0.0, 3.0], [1135.0, 1762.0, 0.0, 2.0], [4196.0, 7975.0, 0.0, 3.0], [5900.0, 7976.0, 0.0, 4.0], [708.0, 920.0, 0.0, 2.0], [2350.0, 7978.0, 0.0, 3.0], [3184.0, 7979.0, 0.0, 4.0], [3185.0, 7980.0, 0.0, 5.0], [3797.0, 7981.0, 0.0, 6.0], [4599.0, 7982.0, 0.0, 7.0], [6920.0, 7983.0, 0.0, 8.0], [7004.0, 7984.0, 0.0, 9.0], [7803.0, 7985.0, 0.0, 10.0], [161.0, 7967.0, 0.0, 8.0], [162.0, 7987.0, 0.0, 9.0], [180.0, 7988.0, 0.0, 10.0], [194.0, 7989.0, 0.0, 11.0], [212.0, 7990.0, 0.0, 12.0], [216.0, 7991.0, 0.0, 13.0], [262.0, 7992.0, 0.0, 14.0], [265.0, 7993.0, 0.0, 15.0], [348.0, 7994.0, 0.0, 16.0], [350.0, 7995.0, 0.0, 17.0], [368.0, 7996.0, 0.0, 18.0], [370.0, 7997.0, 0.0, 19.0], [390.0, 7998.0, 0.0, 20.0], [416.0, 7999.0, 0.0, 21.0], [443.0, 8000.0, 0.0, 22.0], [446.0, 8001.0, 0.0, 23.0], [449.0, 8002.0, 0.0, 24.0], [466.0, 8003.0, 0.0, 25.0], [487.0, 8004.0, 0.0, 26.0], [497.0, 8005.0, 0.0, 27.0], [537.0, 8006.0, 0.0, 28.0], [540.0, 8007.0, 0.0, 29.0], [549.0, 8008.0, 0.0, 30.0], [561.0, 8009.0, 0.0, 31.0], [596.0, 8010.0, 0.0, 32.0], [599.0, 8011.0, 0.0, 33.0], [618.0, 8012.0, 0.0, 34.0], [645.0, 8013.0, 0.0, 35.0], [652.0, 8014.0, 0.0, 36.0], [656.0, 8015.0, 0.0, 37.0], [659.0, 8016.0, 0.0, 38.0], [662.0, 8017.0, 0.0, 39.0], [696.0, 8018.0, 0.0, 40.0], [733.0, 8019.0, 0.0, 41.0], [735.0, 8020.0, 0.0, 42.0], [740.0, 8021.0, 0.0, 43.0], [784.0, 8022.0, 0.0, 44.0], [812.0, 8023.0, 0.0, 45.0], [822.0, 8024.0, 0.0, 46.0], [824.0, 8025.0, 0.0, 47.0], [837.0, 8026.0, 0.0, 48.0], [872.0, 8027.0, 0.0, 49.0], [891.0, 8028.0, 0.0, 50.0], [903.0, 8029.0, 0.0, 51.0], [928.0, 8030.0, 0.0, 52.0], [961.0, 8031.0, 0.0, 53.0], [972.0, 8032.0, 0.0, 54.0], [982.0, 8033.0, 0.0, 55.0], [984.0, 8034.0, 0.0, 56.0], [1020.0, 8035.0, 0.0, 57.0], [1032.0, 8036.0, 0.0, 58.0], [1034.0, 8037.0, 0.0, 59.0], [1056.0, 8038.0, 0.0, 60.0], [1088.0, 8039.0, 0.0, 61.0], [1106.0, 8040.0, 0.0, 62.0], [1114.0, 8041.0, 0.0, 63.0], [1137.0, 8042.0, 0.0, 64.0], [1141.0, 8043.0, 0.0, 65.0], [1143.0, 8044.0, 0.0, 66.0], [1153.0, 8045.0, 0.0, 67.0], [1161.0, 8046.0, 0.0, 68.0], [1165.0, 8047.0, 0.0, 69.0], [1215.0, 8048.0, 0.0, 70.0], [1255.0, 8049.0, 0.0, 71.0], [1266.0, 8050.0, 0.0, 72.0], [1274.0, 8051.0, 0.0, 73.0], [1280.0, 8052.0, 0.0, 74.0], [1285.0, 8053.0, 0.0, 75.0], [1289.0, 8054.0, 0.0, 76.0], [1290.0, 8055.0, 0.0, 77.0], [1322.0, 8056.0, 0.0, 78.0], [1323.0, 8057.0, 0.0, 79.0], [1327.0, 8058.0, 0.0, 80.0], [1337.0, 8059.0, 0.0, 81.0], [1340.0, 8060.0, 0.0, 82.0], [1354.0, 8061.0, 0.0, 83.0], [1374.0, 8062.0, 0.0, 84.0], [1376.0, 8063.0, 0.0, 85.0], [1388.0, 8064.0, 0.0, 86.0], [1389.0, 8065.0, 0.0, 87.0], [1400.0, 8066.0, 0.0, 88.0], [1407.0, 8067.0, 0.0, 89.0], [1408.0, 8068.0, 0.0, 90.0], [1409.0, 8069.0, 0.0, 91.0], [1420.0, 8070.0, 0.0, 92.0], [1423.0, 8071.0, 0.0, 93.0], [1428.0, 8072.0, 0.0, 94.0], [1441.0, 8073.0, 0.0, 95.0], [1448.0, 8074.0, 0.0, 96.0], [1457.0, 8075.0, 0.0, 97.0], [1463.0, 8076.0, 0.0, 98.0], [1467.0, 8077.0, 0.0, 99.0], [1537.0, 8078.0, 0.0, 100.0], [1547.0, 8079.0, 0.0, 101.0], [1559.0, 8080.0, 0.0, 102.0], [1563.0, 8081.0, 0.0, 103.0], [1569.0, 8082.0, 0.0, 104.0], [1674.0, 8083.0, 0.0, 105.0], [1703.0, 8084.0, 0.0, 106.0], [1714.0, 8085.0, 0.0, 107.0], [1719.0, 8086.0, 0.0, 108.0], [1760.0, 8087.0, 0.0, 109.0], [1792.0, 8088.0, 0.0, 110.0], [1802.0, 8089.0, 0.0, 111.0], [1821.0, 8090.0, 0.0, 112.0], [1822.0, 8091.0, 0.0, 113.0], [1824.0, 8092.0, 0.0, 114.0], [1878.0, 8093.0, 0.0, 115.0], [1890.0, 8094.0, 0.0, 116.0], [1909.0, 8095.0, 0.0, 117.0], [1911.0, 8096.0, 0.0, 118.0], [1925.0, 8097.0, 0.0, 119.0], [1946.0, 8098.0, 0.0, 120.0], [1978.0, 8099.0, 0.0, 121.0], [1990.0, 8100.0, 0.0, 122.0], [2010.0, 8101.0, 0.0, 123.0], [2030.0, 8102.0, 0.0, 124.0], [2049.0, 8103.0, 0.0, 125.0], [2054.0, 8104.0, 0.0, 126.0], [2061.0, 8105.0, 0.0, 127.0], [2084.0, 8106.0, 0.0, 128.0], [2091.0, 8107.0, 0.0, 129.0], [2111.0, 8108.0, 0.0, 130.0], [2122.0, 8109.0, 0.0, 131.0], [2128.0, 8110.0, 0.0, 132.0], [2143.0, 8111.0, 0.0, 133.0], [2155.0, 8112.0, 0.0, 134.0], [2207.0, 8113.0, 0.0, 135.0], [2209.0, 8114.0, 0.0, 136.0], [2225.0, 8115.0, 0.0, 137.0], [2239.0, 8116.0, 0.0, 138.0], [2250.0, 8117.0, 0.0, 139.0], [2255.0, 8118.0, 0.0, 140.0], [2267.0, 8119.0, 0.0, 141.0], [2297.0, 8120.0, 0.0, 142.0], [2300.0, 8121.0, 0.0, 143.0], [2304.0, 8122.0, 0.0, 144.0], [2315.0, 8123.0, 0.0, 145.0], [2377.0, 8124.0, 0.0, 146.0], [2385.0, 8125.0, 0.0, 147.0], [2386.0, 8126.0, 0.0, 148.0], [2396.0, 8127.0, 0.0, 149.0], [2414.0, 8128.0, 0.0, 150.0], [2441.0, 8129.0, 0.0, 151.0], [2477.0, 8130.0, 0.0, 152.0], [2482.0, 8131.0, 0.0, 153.0], [2498.0, 8132.0, 0.0, 154.0], [2510.0, 8133.0, 0.0, 155.0], [2520.0, 8134.0, 0.0, 156.0], [2527.0, 8135.0, 0.0, 157.0], [2547.0, 8136.0, 0.0, 158.0], [2552.0, 8137.0, 0.0, 159.0], [2581.0, 8138.0, 0.0, 160.0], [2609.0, 8139.0, 0.0, 161.0], [2616.0, 8140.0, 0.0, 162.0], [2642.0, 8141.0, 0.0, 163.0], [2656.0, 8142.0, 0.0, 164.0], [2666.0, 8143.0, 0.0, 165.0], [2677.0, 8144.0, 0.0, 166.0], [2689.0, 8145.0, 0.0, 167.0], [2698.0, 8146.0, 0.0, 168.0], [2768.0, 8147.0, 0.0, 169.0], [2799.0, 8148.0, 0.0, 170.0], [2818.0, 8149.0, 0.0, 171.0], [2840.0, 8150.0, 0.0, 172.0], [2857.0, 8151.0, 0.0, 173.0], [2880.0, 8152.0, 0.0, 174.0], [2881.0, 8153.0, 0.0, 175.0], [2909.0, 8154.0, 0.0, 176.0], [2986.0, 8155.0, 0.0, 177.0], [3005.0, 8156.0, 0.0, 178.0], [3023.0, 8157.0, 0.0, 179.0], [3061.0, 8158.0, 0.0, 180.0], [3096.0, 8159.0, 0.0, 181.0], [3099.0, 8160.0, 0.0, 182.0], [3136.0, 8161.0, 0.0, 183.0], [3141.0, 8162.0, 0.0, 184.0], [3200.0, 8163.0, 0.0, 185.0], [3206.0, 8164.0, 0.0, 186.0], [3226.0, 8165.0, 0.0, 187.0], [3237.0, 8166.0, 0.0, 188.0], [3250.0, 8167.0, 0.0, 189.0], [3256.0, 8168.0, 0.0, 190.0], [3279.0, 8169.0, 0.0, 191.0], [3335.0, 8170.0, 0.0, 192.0], [3343.0, 8171.0, 0.0, 193.0], [3345.0, 8172.0, 0.0, 194.0], [3349.0, 8173.0, 0.0, 195.0], [3359.0, 8174.0, 0.0, 196.0], [3369.0, 8175.0, 0.0, 197.0], [3397.0, 8176.0, 0.0, 198.0], [3399.0, 8177.0, 0.0, 199.0], [3412.0, 8178.0, 0.0, 200.0], [3425.0, 8179.0, 0.0, 201.0], [3459.0, 8180.0, 0.0, 202.0], [3461.0, 8181.0, 0.0, 203.0], [3463.0, 8182.0, 0.0, 204.0], [3468.0, 8183.0, 0.0, 205.0], [3469.0, 8184.0, 0.0, 206.0], [3477.0, 8185.0, 0.0, 207.0], [3511.0, 8186.0, 0.0, 208.0], [3560.0, 8187.0, 0.0, 209.0], [3588.0, 8188.0, 0.0, 210.0], [3590.0, 8189.0, 0.0, 211.0], [3612.0, 8190.0, 0.0, 212.0], [3628.0, 8191.0, 0.0, 213.0], [3651.0, 8192.0, 0.0, 214.0], [3669.0, 8193.0, 0.0, 215.0], [3706.0, 8194.0, 0.0, 216.0], [3722.0, 8195.0, 0.0, 217.0], [3800.0, 8196.0, 0.0, 218.0], [3833.0, 8197.0, 0.0, 219.0], [3889.0, 8198.0, 0.0, 220.0], [3922.0, 8199.0, 0.0, 221.0], [3926.0, 8200.0, 0.0, 222.0], [3984.0, 8201.0, 0.0, 223.0], [3986.0, 8202.0, 0.0, 224.0], [3990.0, 8203.0, 0.0, 225.0], [3996.0, 8204.0, 0.0, 226.0], [3998.0, 8205.0, 0.0, 227.0], [4005.0, 8206.0, 0.0, 228.0], [4010.0, 8207.0, 0.0, 229.0], [4032.0, 8208.0, 0.0, 230.0], [4081.0, 8209.0, 0.0, 231.0], [4093.0, 8210.0, 0.0, 232.0], [4095.0, 8211.0, 0.0, 233.0], [4099.0, 8212.0, 0.0, 234.0], [4101.0, 8213.0, 0.0, 235.0], [4157.0, 8214.0, 0.0, 236.0], [4166.0, 8215.0, 0.0, 237.0], [4181.0, 8216.0, 0.0, 238.0], [4183.0, 8217.0, 0.0, 239.0], [4188.0, 8218.0, 0.0, 240.0], [4201.0, 8219.0, 0.0, 241.0], [4202.0, 8220.0, 0.0, 242.0], [4206.0, 8221.0, 0.0, 243.0], [4208.0, 8222.0, 0.0, 244.0], [4216.0, 8223.0, 0.0, 245.0], [4283.0, 8224.0, 0.0, 246.0], [4290.0, 8225.0, 0.0, 247.0], [4299.0, 8226.0, 0.0, 248.0], [4314.0, 8227.0, 0.0, 249.0], [4315.0, 8228.0, 0.0, 250.0], [4320.0, 8229.0, 0.0, 251.0], [4325.0, 8230.0, 0.0, 252.0], [4331.0, 8231.0, 0.0, 253.0], [4337.0, 8232.0, 0.0, 254.0], [4343.0, 8233.0, 0.0, 255.0], [4351.0, 8234.0, 0.0, 256.0], [4363.0, 8235.0, 0.0, 257.0], [4368.0, 8236.0, 0.0, 258.0], [4400.0, 8237.0, 0.0, 259.0], [4413.0, 8238.0, 0.0, 260.0], [4442.0, 8239.0, 0.0, 261.0], [4446.0, 8240.0, 0.0, 262.0], [4451.0, 8241.0, 0.0, 263.0], [4459.0, 8242.0, 0.0, 264.0], [4501.0, 8243.0, 0.0, 265.0], [4513.0, 8244.0, 0.0, 266.0], [4528.0, 8245.0, 0.0, 267.0], [4551.0, 8246.0, 0.0, 268.0], [4567.0, 8247.0, 0.0, 269.0], [4589.0, 8248.0, 0.0, 270.0], [4616.0, 8249.0, 0.0, 271.0], [4630.0, 8250.0, 0.0, 272.0], [4657.0, 8251.0, 0.0, 273.0], [4665.0, 8252.0, 0.0, 274.0], [4704.0, 8253.0, 0.0, 275.0], [4706.0, 8254.0, 0.0, 276.0], [4708.0, 8255.0, 0.0, 277.0], [4722.0, 8256.0, 0.0, 278.0], [4727.0, 8257.0, 0.0, 279.0], [4742.0, 8258.0, 0.0, 280.0], [4775.0, 8259.0, 0.0, 281.0], [4795.0, 8260.0, 0.0, 282.0], [4830.0, 8261.0, 0.0, 283.0], [4838.0, 8262.0, 0.0, 284.0], [4849.0, 8263.0, 0.0, 285.0], [4877.0, 8264.0, 0.0, 286.0], [4905.0, 8265.0, 0.0, 287.0], [4922.0, 8266.0, 0.0, 288.0], [4947.0, 8267.0, 0.0, 289.0], [4983.0, 8268.0, 0.0, 290.0], [5006.0, 8269.0, 0.0, 291.0], [5044.0, 8270.0, 0.0, 292.0], [5065.0, 8271.0, 0.0, 293.0], [5086.0, 8272.0, 0.0, 294.0], [5104.0, 8273.0, 0.0, 295.0], [5138.0, 8274.0, 0.0, 296.0], [5146.0, 8275.0, 0.0, 297.0], [5156.0, 8276.0, 0.0, 298.0], [5159.0, 8277.0, 0.0, 299.0], [5166.0, 8278.0, 0.0, 300.0], [5175.0, 8279.0, 0.0, 301.0], [5202.0, 8280.0, 0.0, 302.0], [5209.0, 8281.0, 0.0, 303.0], [5210.0, 8282.0, 0.0, 304.0], [5226.0, 8283.0, 0.0, 305.0], [5236.0, 8284.0, 0.0, 306.0], [5240.0, 8285.0, 0.0, 307.0], [5249.0, 8286.0, 0.0, 308.0], [5258.0, 8287.0, 0.0, 309.0], [5260.0, 8288.0, 0.0, 310.0], [5303.0, 8289.0, 0.0, 311.0], [5306.0, 8290.0, 0.0, 312.0], [5313.0, 8291.0, 0.0, 313.0], [5314.0, 8292.0, 0.0, 314.0], [5332.0, 8293.0, 0.0, 315.0], [5347.0, 8294.0, 0.0, 316.0], [5355.0, 8295.0, 0.0, 317.0], [5356.0, 8296.0, 0.0, 318.0], [5358.0, 8297.0, 0.0, 319.0], [5361.0, 8298.0, 0.0, 320.0], [5399.0, 8299.0, 0.0, 321.0], [5400.0, 8300.0, 0.0, 322.0], [5402.0, 8301.0, 0.0, 323.0], [5412.0, 8302.0, 0.0, 324.0], [5435.0, 8303.0, 0.0, 325.0], [5475.0, 8304.0, 0.0, 326.0], [5503.0, 8305.0, 0.0, 327.0], [5531.0, 8306.0, 0.0, 328.0], [5535.0, 8307.0, 0.0, 329.0], [5554.0, 8308.0, 0.0, 330.0], [5601.0, 8309.0, 0.0, 331.0], [5611.0, 8310.0, 0.0, 332.0], [5624.0, 8311.0, 0.0, 333.0], [5630.0, 8312.0, 0.0, 334.0], [5659.0, 8313.0, 0.0, 335.0], [5692.0, 8314.0, 0.0, 336.0], [5719.0, 8315.0, 0.0, 337.0], [5726.0, 8316.0, 0.0, 338.0], [5742.0, 8317.0, 0.0, 339.0], [5748.0, 8318.0, 0.0, 340.0], [5757.0, 8319.0, 0.0, 341.0], [5764.0, 8320.0, 0.0, 342.0], [5812.0, 8321.0, 0.0, 343.0], [5814.0, 8322.0, 0.0, 344.0], [5830.0, 8323.0, 0.0, 345.0], [5832.0, 8324.0, 0.0, 346.0], [5849.0, 8325.0, 0.0, 347.0], [5859.0, 8326.0, 0.0, 348.0], [5860.0, 8327.0, 0.0, 349.0], [5868.0, 8328.0, 0.0, 350.0], [5894.0, 8329.0, 0.0, 351.0], [5895.0, 8330.0, 0.0, 352.0], [5897.0, 8331.0, 0.0, 353.0], [5898.0, 8332.0, 0.0, 354.0], [5901.0, 8333.0, 0.0, 355.0], [5919.0, 8334.0, 0.0, 356.0], [5923.0, 8335.0, 0.0, 357.0], [5939.0, 8336.0, 0.0, 358.0], [5942.0, 8337.0, 0.0, 359.0], [5944.0, 8338.0, 0.0, 360.0], [5951.0, 8339.0, 0.0, 361.0], [5954.0, 8340.0, 0.0, 362.0], [6006.0, 8341.0, 0.0, 363.0], [6012.0, 8342.0, 0.0, 364.0], [6019.0, 8343.0, 0.0, 365.0], [6020.0, 8344.0, 0.0, 366.0], [6044.0, 8345.0, 0.0, 367.0], [6056.0, 8346.0, 0.0, 368.0], [6080.0, 8347.0, 0.0, 369.0], [6085.0, 8348.0, 0.0, 370.0], [6090.0, 8349.0, 0.0, 371.0], [6131.0, 8350.0, 0.0, 372.0], [6149.0, 8351.0, 0.0, 373.0], [6178.0, 8352.0, 0.0, 374.0], [6181.0, 8353.0, 0.0, 375.0], [6241.0, 8354.0, 0.0, 376.0], [6268.0, 8355.0, 0.0, 377.0], [6277.0, 8356.0, 0.0, 378.0], [6296.0, 8357.0, 0.0, 379.0], [6334.0, 8358.0, 0.0, 380.0], [6345.0, 8359.0, 0.0, 381.0], [6356.0, 8360.0, 0.0, 382.0], [6366.0, 8361.0, 0.0, 383.0], [6386.0, 8362.0, 0.0, 384.0], [6444.0, 8363.0, 0.0, 385.0], [6446.0, 8364.0, 0.0, 386.0], [6473.0, 8365.0, 0.0, 387.0], [6489.0, 8366.0, 0.0, 388.0], [6539.0, 8367.0, 0.0, 389.0], [6540.0, 8368.0, 0.0, 390.0], [6541.0, 8369.0, 0.0, 391.0], [6553.0, 8370.0, 0.0, 392.0], [6567.0, 8371.0, 0.0, 393.0], [6581.0, 8372.0, 0.0, 394.0], [6592.0, 8373.0, 0.0, 395.0], [6632.0, 8374.0, 0.0, 396.0], [6645.0, 8375.0, 0.0, 397.0], [6690.0, 8376.0, 0.0, 398.0], [6691.0, 8377.0, 0.0, 399.0], [6731.0, 8378.0, 0.0, 400.0], [6740.0, 8379.0, 0.0, 401.0], [6746.0, 8380.0, 0.0, 402.0], [6770.0, 8381.0, 0.0, 403.0], [6781.0, 8382.0, 0.0, 404.0], [6788.0, 8383.0, 0.0, 405.0], [6797.0, 8384.0, 0.0, 406.0], [6825.0, 8385.0, 0.0, 407.0], [6840.0, 8386.0, 0.0, 408.0], [6846.0, 8387.0, 0.0, 409.0], [6870.0, 8388.0, 0.0, 410.0], [6931.0, 8389.0, 0.0, 411.0], [6944.0, 8390.0, 0.0, 412.0], [6950.0, 8391.0, 0.0, 413.0], [6967.0, 8392.0, 0.0, 414.0], [6988.0, 8393.0, 0.0, 415.0], [7010.0, 8394.0, 0.0, 416.0], [7011.0, 8395.0, 0.0, 417.0], [7023.0, 8396.0, 0.0, 418.0], [7050.0, 8397.0, 0.0, 419.0], [7066.0, 8398.0, 0.0, 420.0], [7067.0, 8399.0, 0.0, 421.0], [7091.0, 8400.0, 0.0, 422.0], [7100.0, 8401.0, 0.0, 423.0], [7121.0, 8402.0, 0.0, 424.0], [7123.0, 8403.0, 0.0, 425.0], [7150.0, 8404.0, 0.0, 426.0], [7170.0, 8405.0, 0.0, 427.0], [7179.0, 8406.0, 0.0, 428.0], [7184.0, 8407.0, 0.0, 429.0], [7198.0, 8408.0, 0.0, 430.0], [7206.0, 8409.0, 0.0, 431.0], [7219.0, 8410.0, 0.0, 432.0], [7230.0, 8411.0, 0.0, 433.0], [7245.0, 8412.0, 0.0, 434.0], [7285.0, 8413.0, 0.0, 435.0], [7315.0, 8414.0, 0.0, 436.0], [7332.0, 8415.0, 0.0, 437.0], [7362.0, 8416.0, 0.0, 438.0], [7384.0, 8417.0, 0.0, 439.0], [7395.0, 8418.0, 0.0, 440.0], [7404.0, 8419.0, 0.0, 441.0], [7431.0, 8420.0, 0.0, 442.0], [7439.0, 8421.0, 0.0, 443.0], [7443.0, 8422.0, 0.0, 444.0], [7470.0, 8423.0, 0.0, 445.0], [7473.0, 8424.0, 0.0, 446.0], [7489.0, 8425.0, 0.0, 447.0], [7504.0, 8426.0, 0.0, 448.0], [7514.0, 8427.0, 0.0, 449.0], [7535.0, 8428.0, 0.0, 450.0], [7547.0, 8429.0, 0.0, 451.0], [7550.0, 8430.0, 0.0, 452.0], [7592.0, 8431.0, 0.0, 453.0], [7600.0, 8432.0, 0.0, 454.0], [7607.0, 8433.0, 0.0, 455.0], [7671.0, 8434.0, 0.0, 456.0], [7701.0, 8435.0, 0.0, 457.0], [7712.0, 8436.0, 0.0, 458.0], [7744.0, 8437.0, 0.0, 459.0], [7778.0, 8438.0, 0.0, 460.0], [7816.0, 8439.0, 0.0, 461.0], [137.0, 663.0, 0.0, 2.0], [144.0, 7968.0, 0.0, 85.0], [142.0, 7970.0, 0.0, 15.0], [169.0, 8443.0, 0.0, 16.0], [143.0, 358.0, 0.0, 2.0], [145.0, 8442.0, 0.0, 86.0], [148.0, 8446.0, 0.0, 87.0], [146.0, 1633.0, 0.0, 2.0], [149.0, 8447.0, 0.0, 88.0], [150.0, 8449.0, 0.0, 89.0], [151.0, 8450.0, 0.0, 90.0], [154.0, 8451.0, 0.0, 91.0], [152.0, 263.0, 0.0, 2.0], [168.0, 7969.0, 0.0, 5.0], [155.0, 8452.0, 0.0, 92.0], [157.0, 8455.0, 0.0, 93.0], [1100.0, 6918.0, 0.0, 2.0], [7691.0, 8457.0, 0.0, 3.0], [1069.0, 1892.0, 0.0, 2.0], [3309.0, 8459.0, 0.0, 3.0], [5148.0, 8460.0, 0.0, 4.0], [5792.0, 8461.0, 0.0, 5.0], [1080.0, 7846.0, 0.0, 3.0], [1635.0, 8463.0, 0.0, 4.0], [1657.0, 8464.0, 0.0, 5.0], [2145.0, 8465.0, 0.0, 6.0], [2213.0, 8466.0, 0.0, 7.0], [2289.0, 8467.0, 0.0, 8.0], [2346.0, 8468.0, 0.0, 9.0], [2939.0, 8469.0, 0.0, 10.0], [3392.0, 8470.0, 0.0, 11.0], [3454.0, 8471.0, 0.0, 12.0], [4633.0, 8472.0, 0.0, 13.0], [4731.0, 8473.0, 0.0, 14.0], [5114.0, 8474.0, 0.0, 15.0], [5486.0, 8475.0, 0.0, 16.0], [5620.0, 8476.0, 0.0, 17.0], [5791.0, 8477.0, 0.0, 18.0], [6236.0, 8478.0, 0.0, 19.0], [7096.0, 8479.0, 0.0, 20.0], [7288.0, 8480.0, 0.0, 21.0], [7341.0, 8481.0, 0.0, 22.0], [7421.0, 8482.0, 0.0, 23.0], [158.0, 8456.0, 0.0, 94.0], [159.0, 8484.0, 0.0, 95.0], [160.0, 8485.0, 0.0, 96.0], [163.0, 8486.0, 0.0, 97.0], [164.0, 8487.0, 0.0, 98.0], [165.0, 8488.0, 0.0, 99.0], [166.0, 8489.0, 0.0, 100.0], [171.0, 8490.0, 0.0, 101.0], [478.0, 5230.0, 0.0, 2.0], [192.0, 8454.0, 0.0, 6.0], [178.0, 8444.0, 0.0, 17.0], [222.0, 7971.0, 0.0, 5.0], [173.0, 8491.0, 0.0, 102.0], [172.0, 541.0, 0.0, 2.0], [174.0, 8496.0, 0.0, 103.0], [175.0, 8498.0, 0.0, 104.0], [176.0, 8499.0, 0.0, 105.0], [181.0, 8500.0, 0.0, 106.0], [177.0, 271.0, 0.0, 2.0], [200.0, 8494.0, 0.0, 18.0], [182.0, 8501.0, 0.0, 107.0], [183.0, 8504.0, 0.0, 108.0], [184.0, 8505.0, 0.0, 109.0], [186.0, 8506.0, 0.0, 110.0], [185.0, 819.0, 0.0, 2.0], [188.0, 8507.0, 0.0, 111.0], [187.0, 2804.0, 0.0, 2.0], [189.0, 8509.0, 0.0, 112.0], [190.0, 8511.0, 0.0, 113.0], [191.0, 8512.0, 0.0, 114.0], [195.0, 8513.0, 0.0, 115.0], [202.0, 8493.0, 0.0, 7.0], [193.0, 947.0, 0.0, 2.0], [197.0, 8514.0, 0.0, 116.0], [196.0, 586.0, 0.0, 2.0], [198.0, 8517.0, 0.0, 117.0], [199.0, 8519.0, 0.0, 118.0], [203.0, 8520.0, 0.0, 119.0], [210.0, 8503.0, 0.0, 19.0], [205.0, 8515.0, 0.0, 8.0], [207.0, 8521.0, 0.0, 120.0], [321.0, 7974.0, 0.0, 4.0], [227.0, 8523.0, 0.0, 9.0], [206.0, 1993.0, 0.0, 2.0], [208.0, 8524.0, 0.0, 121.0], [211.0, 8528.0, 0.0, 122.0], [209.0, 804.0, 0.0, 2.0], [213.0, 8522.0, 0.0, 20.0], [214.0, 8529.0, 0.0, 123.0], [224.0, 8531.0, 0.0, 21.0], [221.0, 8532.0, 0.0, 124.0], [215.0, 560.0, 0.0, 2.0], [415.0, 7888.0, 0.0, 3.0], [218.0, 941.0, 0.0, 2.0], [219.0, 270.0, 0.0, 2.0], [223.0, 8534.0, 0.0, 125.0], [453.0, 8495.0, 0.0, 6.0], [226.0, 8539.0, 0.0, 126.0], [241.0, 8533.0, 0.0, 22.0], [225.0, 3527.0, 0.0, 2.0], [228.0, 8541.0, 0.0, 127.0], [273.0, 8526.0, 0.0, 10.0], [229.0, 8544.0, 0.0, 128.0], [230.0, 8546.0, 0.0, 129.0], [233.0, 8547.0, 0.0, 130.0], [231.0, 275.0, 0.0, 2.0], [234.0, 8548.0, 0.0, 131.0], [235.0, 8550.0, 0.0, 132.0], [236.0, 8551.0, 0.0, 133.0], [237.0, 8552.0, 0.0, 134.0], [238.0, 8553.0, 0.0, 135.0], [240.0, 8554.0, 0.0, 136.0], [243.0, 8555.0, 0.0, 137.0], [251.0, 8542.0, 0.0, 23.0], [1625.0, 4192.0, 0.0, 2.0], [244.0, 8556.0, 0.0, 138.0], [246.0, 8559.0, 0.0, 139.0], [3066.0, 7838.0, 0.0, 3.0], [247.0, 8560.0, 0.0, 140.0], [249.0, 8562.0, 0.0, 141.0], [248.0, 261.0, 0.0, 2.0], [250.0, 8563.0, 0.0, 142.0], [252.0, 8565.0, 0.0, 143.0], [255.0, 8557.0, 0.0, 24.0], [254.0, 8566.0, 0.0, 144.0], [3836.0, 4353.0, 0.0, 2.0], [256.0, 8568.0, 0.0, 145.0], [260.0, 8567.0, 0.0, 25.0], [257.0, 8570.0, 0.0, 146.0], [258.0, 8572.0, 0.0, 147.0], [264.0, 8573.0, 0.0, 148.0], [259.0, 7113.0, 0.0, 2.0], [296.0, 8571.0, 0.0, 26.0], [1743.0, 8564.0, 0.0, 3.0], [324.0, 8453.0, 0.0, 3.0], [267.0, 8574.0, 0.0, 149.0], [269.0, 8579.0, 0.0, 150.0], [272.0, 8580.0, 0.0, 151.0], [796.0, 8538.0, 0.0, 3.0], [380.0, 8502.0, 0.0, 3.0], [276.0, 8581.0, 0.0, 152.0], [277.0, 8545.0, 0.0, 11.0], [1303.0, 8441.0, 0.0, 3.0], [1523.0, 8586.0, 0.0, 4.0], [1617.0, 8587.0, 0.0, 5.0], [1656.0, 8588.0, 0.0, 6.0], [2160.0, 8589.0, 0.0, 7.0], [2242.0, 8590.0, 0.0, 8.0], [2422.0, 8591.0, 0.0, 9.0], [2517.0, 8592.0, 0.0, 10.0], [2546.0, 8593.0, 0.0, 11.0], [2591.0, 8594.0, 0.0, 12.0], [2824.0, 8595.0, 0.0, 13.0], [2966.0, 8596.0, 0.0, 14.0], [3176.0, 8597.0, 0.0, 15.0], [3440.0, 8598.0, 0.0, 16.0], [3784.0, 8599.0, 0.0, 17.0], [4212.0, 8600.0, 0.0, 18.0], [4475.0, 8601.0, 0.0, 19.0], [4768.0, 8602.0, 0.0, 20.0], [4844.0, 8603.0, 0.0, 21.0], [4981.0, 8604.0, 0.0, 22.0], [5140.0, 8605.0, 0.0, 23.0], [5360.0, 8606.0, 0.0, 24.0], [5549.0, 8607.0, 0.0, 25.0], [5847.0, 8608.0, 0.0, 26.0], [6393.0, 8609.0, 0.0, 27.0], [6753.0, 8610.0, 0.0, 28.0], [6793.0, 8611.0, 0.0, 29.0], [6856.0, 8612.0, 0.0, 30.0], [6977.0, 8613.0, 0.0, 31.0], [7110.0, 8614.0, 0.0, 32.0], [7145.0, 8615.0, 0.0, 33.0], [7235.0, 8616.0, 0.0, 34.0], [7400.0, 8617.0, 0.0, 35.0], [7792.0, 8618.0, 0.0, 36.0], [336.0, 8549.0, 0.0, 3.0], [279.0, 8584.0, 0.0, 153.0], [280.0, 8585.0, 0.0, 12.0], [278.0, 775.0, 0.0, 2.0], [283.0, 8621.0, 0.0, 154.0], [327.0, 8622.0, 0.0, 13.0], [281.0, 362.0, 0.0, 2.0], [284.0, 8624.0, 0.0, 155.0], [286.0, 8627.0, 0.0, 156.0], [285.0, 467.0, 0.0, 2.0], [288.0, 8628.0, 0.0, 157.0], [287.0, 301.0, 0.0, 2.0], [289.0, 8630.0, 0.0, 158.0], [290.0, 8632.0, 0.0, 159.0], [291.0, 8633.0, 0.0, 160.0], [292.0, 8634.0, 0.0, 161.0], [293.0, 8635.0, 0.0, 162.0], [294.0, 8636.0, 0.0, 163.0], [295.0, 8637.0, 0.0, 164.0], [297.0, 8638.0, 0.0, 165.0], [300.0, 8576.0, 0.0, 27.0], [299.0, 8639.0, 0.0, 166.0], [298.0, 334.0, 0.0, 2.0], [302.0, 8641.0, 0.0, 167.0], [304.0, 8640.0, 0.0, 28.0], [406.0, 641.0, 0.0, 2.0], [7211.0, 8645.0, 0.0, 3.0], [7324.0, 8646.0, 0.0, 4.0], [2355.0, 5038.0, 0.0, 2.0], [6017.0, 8648.0, 0.0, 3.0], [303.0, 8643.0, 0.0, 168.0], [305.0, 8650.0, 0.0, 169.0], [341.0, 8644.0, 0.0, 29.0], [306.0, 8651.0, 0.0, 170.0], [307.0, 8653.0, 0.0, 171.0], [308.0, 8654.0, 0.0, 172.0], [309.0, 8655.0, 0.0, 173.0], [310.0, 8656.0, 0.0, 174.0], [311.0, 8657.0, 0.0, 175.0], [312.0, 8658.0, 0.0, 176.0], [313.0, 8659.0, 0.0, 177.0], [314.0, 8660.0, 0.0, 178.0], [316.0, 8661.0, 0.0, 179.0], [2900.0, 8510.0, 0.0, 3.0], [2999.0, 8663.0, 0.0, 4.0], [3485.0, 8664.0, 0.0, 5.0], [3635.0, 8665.0, 0.0, 6.0], [4068.0, 8666.0, 0.0, 7.0], [521.0, 1498.0, 0.0, 2.0], [3735.0, 8668.0, 0.0, 3.0], [3918.0, 8669.0, 0.0, 4.0], [6511.0, 8670.0, 0.0, 5.0], [1247.0, 4040.0, 0.0, 2.0], [3026.0, 6768.0, 0.0, 2.0], [2109.0, 7716.0, 0.0, 2.0], [426.0, 670.0, 0.0, 2.0], [1160.0, 8675.0, 0.0, 3.0], [1842.0, 8676.0, 0.0, 4.0], [2063.0, 8677.0, 0.0, 5.0], [2074.0, 8678.0, 0.0, 6.0], [2331.0, 8679.0, 0.0, 7.0], [2559.0, 8680.0, 0.0, 8.0], [3434.0, 8681.0, 0.0, 9.0], [3726.0, 8682.0, 0.0, 10.0], [3778.0, 8683.0, 0.0, 11.0], [3948.0, 8684.0, 0.0, 12.0], [4172.0, 8685.0, 0.0, 13.0], [4461.0, 8686.0, 0.0, 14.0], [4782.0, 8687.0, 0.0, 15.0], [4788.0, 8688.0, 0.0, 16.0], [4914.0, 8689.0, 0.0, 17.0], [6105.0, 8690.0, 0.0, 18.0], [6232.0, 8691.0, 0.0, 19.0], [6796.0, 8692.0, 0.0, 20.0], [6855.0, 8693.0, 0.0, 21.0], [7282.0, 8694.0, 0.0, 22.0], [1910.0, 5033.0, 0.0, 2.0], [5143.0, 8696.0, 0.0, 3.0], [5345.0, 8697.0, 0.0, 4.0], [6007.0, 8698.0, 0.0, 5.0], [6936.0, 8699.0, 0.0, 6.0], [1538.0, 1922.0, 0.0, 2.0], [2224.0, 8701.0, 0.0, 3.0], [2813.0, 8702.0, 0.0, 4.0], [5784.0, 8703.0, 0.0, 5.0], [317.0, 8662.0, 0.0, 180.0], [318.0, 8705.0, 0.0, 181.0], [320.0, 8706.0, 0.0, 182.0], [2973.0, 6410.0, 0.0, 2.0], [1405.0, 2119.0, 0.0, 2.0], [3556.0, 6325.0, 0.0, 2.0], [6863.0, 8710.0, 0.0, 3.0], [2148.0, 2925.0, 0.0, 2.0], [4949.0, 8712.0, 0.0, 3.0], [2681.0, 4644.0, 0.0, 2.0], [4855.0, 8714.0, 0.0, 3.0], [6308.0, 8715.0, 0.0, 4.0], [3167.0, 7897.0, 0.0, 3.0], [3599.0, 8717.0, 0.0, 4.0], [5967.0, 8718.0, 0.0, 5.0], [7735.0, 8719.0, 0.0, 6.0], [322.0, 8707.0, 0.0, 183.0], [427.0, 8525.0, 0.0, 5.0], [323.0, 8721.0, 0.0, 184.0], [325.0, 8723.0, 0.0, 185.0], [329.0, 8578.0, 0.0, 4.0], [326.0, 8724.0, 0.0, 186.0], [328.0, 8726.0, 0.0, 187.0], [331.0, 8625.0, 0.0, 14.0], [330.0, 8727.0, 0.0, 188.0], [364.0, 8725.0, 0.0, 5.0], [332.0, 8729.0, 0.0, 189.0], [376.0, 8728.0, 0.0, 15.0], [333.0, 8731.0, 0.0, 190.0], [335.0, 8733.0, 0.0, 191.0], [435.0, 8642.0, 0.0, 3.0], [337.0, 8734.0, 0.0, 192.0], [725.0, 8620.0, 0.0, 4.0], [338.0, 8736.0, 0.0, 193.0], [339.0, 8738.0, 0.0, 194.0], [340.0, 8739.0, 0.0, 195.0], [342.0, 8740.0, 0.0, 196.0], [360.0, 8652.0, 0.0, 30.0], [343.0, 8741.0, 0.0, 197.0], [344.0, 8743.0, 0.0, 198.0], [345.0, 8744.0, 0.0, 199.0], [346.0, 8745.0, 0.0, 200.0], [347.0, 8746.0, 0.0, 201.0], [349.0, 8747.0, 0.0, 202.0], [351.0, 8748.0, 0.0, 203.0], [352.0, 8749.0, 0.0, 204.0], [354.0, 8750.0, 0.0, 205.0], [353.0, 4852.0, 0.0, 2.0], [356.0, 8751.0, 0.0, 206.0], [355.0, 2016.0, 0.0, 2.0], [357.0, 8753.0, 0.0, 207.0], [359.0, 8755.0, 0.0, 208.0], [760.0, 8445.0, 0.0, 3.0], [363.0, 8756.0, 0.0, 209.0], [361.0, 8742.0, 0.0, 31.0], [403.0, 8759.0, 0.0, 32.0], [831.0, 8626.0, 0.0, 3.0], [365.0, 8758.0, 0.0, 210.0], [441.0, 8730.0, 0.0, 6.0], [366.0, 8762.0, 0.0, 211.0], [367.0, 8764.0, 0.0, 212.0], [372.0, 8765.0, 0.0, 213.0], [369.0, 1275.0, 0.0, 2.0], [371.0, 1624.0, 0.0, 2.0], [374.0, 8766.0, 0.0, 214.0], [985.0, 7548.0, 0.0, 2.0], [377.0, 8769.0, 0.0, 215.0], [375.0, 1118.0, 0.0, 2.0], [381.0, 8732.0, 0.0, 16.0], [378.0, 8771.0, 0.0, 216.0], [379.0, 8774.0, 0.0, 217.0], [382.0, 8775.0, 0.0, 218.0], [486.0, 8583.0, 0.0, 4.0], [401.0, 8773.0, 0.0, 17.0], [383.0, 8776.0, 0.0, 219.0], [384.0, 8779.0, 0.0, 220.0], [386.0, 8780.0, 0.0, 221.0], [385.0, 2762.0, 0.0, 2.0], [387.0, 8781.0, 0.0, 222.0], [389.0, 8783.0, 0.0, 223.0], [388.0, 468.0, 0.0, 2.0], [391.0, 8784.0, 0.0, 224.0], [394.0, 8786.0, 0.0, 225.0], [392.0, 3813.0, 0.0, 2.0], [393.0, 421.0, 0.0, 2.0], [396.0, 8787.0, 0.0, 226.0], [3703.0, 6847.0, 0.0, 2.0], [397.0, 8790.0, 0.0, 227.0], [398.0, 8792.0, 0.0, 228.0], [399.0, 8793.0, 0.0, 229.0], [400.0, 8794.0, 0.0, 230.0], [402.0, 8795.0, 0.0, 231.0], [407.0, 8778.0, 0.0, 18.0], [405.0, 8796.0, 0.0, 232.0], [409.0, 8760.0, 0.0, 33.0], [412.0, 8798.0, 0.0, 233.0], [408.0, 8797.0, 0.0, 19.0], [432.0, 8801.0, 0.0, 20.0], [410.0, 8799.0, 0.0, 34.0], [414.0, 8803.0, 0.0, 35.0], [411.0, 686.0, 0.0, 2.0], [413.0, 8800.0, 0.0, 234.0], [417.0, 8806.0, 0.0, 235.0], [424.0, 8804.0, 0.0, 36.0], [494.0, 8536.0, 0.0, 4.0], [418.0, 8807.0, 0.0, 236.0], [420.0, 8810.0, 0.0, 237.0], [419.0, 1079.0, 0.0, 2.0], [422.0, 8811.0, 0.0, 238.0], [535.0, 8789.0, 0.0, 3.0], [425.0, 8813.0, 0.0, 239.0], [2490.0, 8527.0, 0.0, 3.0], [3462.0, 8816.0, 0.0, 4.0], [6029.0, 8817.0, 0.0, 5.0], [6459.0, 8818.0, 0.0, 6.0], [430.0, 8808.0, 0.0, 37.0], [428.0, 8815.0, 0.0, 240.0], [438.0, 8722.0, 0.0, 6.0], [429.0, 8821.0, 0.0, 241.0], [431.0, 8823.0, 0.0, 242.0], [454.0, 8820.0, 0.0, 38.0], [433.0, 8824.0, 0.0, 243.0], [434.0, 8802.0, 0.0, 21.0], [437.0, 8826.0, 0.0, 244.0], [439.0, 8827.0, 0.0, 22.0], [637.0, 8735.0, 0.0, 4.0], [436.0, 885.0, 0.0, 2.0], [444.0, 8828.0, 0.0, 245.0], [817.0, 8822.0, 0.0, 7.0], [440.0, 8829.0, 0.0, 23.0], [482.0, 8834.0, 0.0, 24.0], [628.0, 8763.0, 0.0, 7.0], [687.0, 7848.0, 0.0, 3.0], [445.0, 8832.0, 0.0, 246.0], [447.0, 8838.0, 0.0, 247.0], [451.0, 8839.0, 0.0, 248.0], [777.0, 7884.0, 0.0, 3.0], [457.0, 8840.0, 0.0, 249.0], [496.0, 8540.0, 0.0, 7.0], [455.0, 8825.0, 0.0, 39.0], [458.0, 8844.0, 0.0, 40.0], [459.0, 8842.0, 0.0, 250.0], [462.0, 8845.0, 0.0, 41.0], [460.0, 8846.0, 0.0, 251.0], [464.0, 8848.0, 0.0, 252.0], [461.0, 6307.0, 0.0, 2.0], [471.0, 8847.0, 0.0, 42.0], [3201.0, 3959.0, 0.0, 2.0], [4426.0, 8852.0, 0.0, 3.0], [7628.0, 8853.0, 0.0, 4.0], [469.0, 8849.0, 0.0, 253.0], [1144.0, 7972.0, 0.0, 3.0], [6491.0, 8629.0, 0.0, 3.0], [530.0, 8785.0, 0.0, 3.0], [470.0, 8855.0, 0.0, 254.0], [473.0, 8859.0, 0.0, 255.0], [472.0, 8851.0, 0.0, 43.0], [474.0, 8861.0, 0.0, 44.0], [475.0, 8860.0, 0.0, 256.0], [476.0, 8862.0, 0.0, 45.0], [477.0, 8863.0, 0.0, 257.0], [498.0, 8864.0, 0.0, 46.0], [479.0, 8865.0, 0.0, 258.0], [484.0, 8867.0, 0.0, 259.0], [480.0, 7127.0, 0.0, 2.0], [503.0, 8835.0, 0.0, 25.0], [483.0, 1117.0, 0.0, 2.0], [485.0, 8868.0, 0.0, 260.0], [488.0, 8872.0, 0.0, 261.0], [504.0, 8777.0, 0.0, 5.0], [489.0, 8873.0, 0.0, 262.0], [490.0, 8875.0, 0.0, 263.0], [491.0, 8876.0, 0.0, 264.0], [492.0, 8877.0, 0.0, 265.0], [495.0, 8878.0, 0.0, 266.0], [2086.0, 3595.0, 0.0, 2.0], [5031.0, 8880.0, 0.0, 3.0], [7311.0, 8881.0, 0.0, 4.0], [605.0, 8809.0, 0.0, 5.0], [499.0, 8879.0, 0.0, 267.0], [523.0, 8843.0, 0.0, 8.0], [507.0, 8866.0, 0.0, 47.0], [500.0, 8884.0, 0.0, 268.0], [501.0, 8887.0, 0.0, 269.0], [502.0, 8888.0, 0.0, 270.0], [505.0, 8889.0, 0.0, 271.0], [520.0, 8870.0, 0.0, 26.0], [522.0, 8874.0, 0.0, 6.0], [506.0, 8890.0, 0.0, 272.0], [509.0, 8893.0, 0.0, 273.0], [571.0, 8886.0, 0.0, 48.0], [510.0, 8894.0, 0.0, 274.0], [511.0, 8896.0, 0.0, 275.0], [512.0, 8897.0, 0.0, 276.0], [513.0, 8898.0, 0.0, 277.0], [514.0, 8899.0, 0.0, 278.0], [515.0, 8900.0, 0.0, 279.0], [516.0, 8901.0, 0.0, 280.0], [517.0, 8902.0, 0.0, 281.0], [518.0, 8903.0, 0.0, 282.0], [519.0, 8904.0, 0.0, 283.0], [524.0, 8905.0, 0.0, 284.0], [558.0, 8891.0, 0.0, 27.0], [544.0, 8892.0, 0.0, 7.0], [572.0, 8885.0, 0.0, 9.0], [525.0, 8906.0, 0.0, 285.0], [527.0, 8910.0, 0.0, 286.0], [526.0, 783.0, 0.0, 2.0], [528.0, 8911.0, 0.0, 287.0], [529.0, 8913.0, 0.0, 288.0], [531.0, 8914.0, 0.0, 289.0], [568.0, 8858.0, 0.0, 4.0], [533.0, 8915.0, 0.0, 290.0], [1798.0, 2208.0, 0.0, 2.0], [2565.0, 8918.0, 0.0, 3.0], [4260.0, 8919.0, 0.0, 4.0], [4886.0, 8920.0, 0.0, 5.0], [5323.0, 8921.0, 0.0, 6.0], [6070.0, 8922.0, 0.0, 7.0], [7348.0, 8923.0, 0.0, 8.0], [742.0, 1843.0, 0.0, 2.0], [2055.0, 8925.0, 0.0, 3.0], [3969.0, 8926.0, 0.0, 4.0], [4841.0, 8927.0, 0.0, 5.0], [6512.0, 8928.0, 0.0, 6.0], [6546.0, 8929.0, 0.0, 7.0], [1028.0, 1817.0, 0.0, 2.0], [5265.0, 8931.0, 0.0, 3.0], [5281.0, 8932.0, 0.0, 4.0], [7743.0, 8933.0, 0.0, 5.0], [1880.0, 3938.0, 0.0, 2.0], [5653.0, 8935.0, 0.0, 3.0], [534.0, 8917.0, 0.0, 291.0], [536.0, 8937.0, 0.0, 292.0], [1194.0, 8814.0, 0.0, 4.0], [538.0, 8938.0, 0.0, 293.0], [539.0, 8940.0, 0.0, 294.0], [542.0, 8941.0, 0.0, 295.0], [1260.0, 8497.0, 0.0, 3.0], [545.0, 8942.0, 0.0, 296.0], [2023.0, 4995.0, 0.0, 2.0], [934.0, 8535.0, 0.0, 3.0], [1201.0, 8946.0, 0.0, 4.0], [1574.0, 8947.0, 0.0, 5.0], [1586.0, 8948.0, 0.0, 6.0], [1623.0, 8949.0, 0.0, 7.0], [1648.0, 8950.0, 0.0, 8.0], [1835.0, 8951.0, 0.0, 9.0], [2044.0, 8952.0, 0.0, 10.0], [2103.0, 8953.0, 0.0, 11.0], [2456.0, 8954.0, 0.0, 12.0], [2528.0, 8955.0, 0.0, 13.0], [2553.0, 8956.0, 0.0, 14.0], [2577.0, 8957.0, 0.0, 15.0], [2889.0, 8958.0, 0.0, 16.0], [2908.0, 8959.0, 0.0, 17.0], [3514.0, 8960.0, 0.0, 18.0], [3684.0, 8961.0, 0.0, 19.0], [3940.0, 8962.0, 0.0, 20.0], [4003.0, 8963.0, 0.0, 21.0], [4031.0, 8964.0, 0.0, 22.0], [4168.0, 8965.0, 0.0, 23.0], [4219.0, 8966.0, 0.0, 24.0], [4650.0, 8967.0, 0.0, 25.0], [4651.0, 8968.0, 0.0, 26.0], [5167.0, 8969.0, 0.0, 27.0], [5627.0, 8970.0, 0.0, 28.0], [6549.0, 8971.0, 0.0, 29.0], [6710.0, 8972.0, 0.0, 30.0], [6922.0, 8973.0, 0.0, 31.0], [7494.0, 8974.0, 0.0, 32.0], [7811.0, 8975.0, 0.0, 33.0], [621.0, 2670.0, 0.0, 2.0], [4982.0, 8977.0, 0.0, 3.0], [5375.0, 8978.0, 0.0, 4.0], [7175.0, 8979.0, 0.0, 5.0], [7232.0, 8980.0, 0.0, 6.0], [7284.0, 8981.0, 0.0, 7.0], [649.0, 8908.0, 0.0, 8.0], [546.0, 8944.0, 0.0, 297.0], [547.0, 8984.0, 0.0, 298.0], [548.0, 8985.0, 0.0, 299.0], [550.0, 8986.0, 0.0, 300.0], [551.0, 8987.0, 0.0, 301.0], [552.0, 8988.0, 0.0, 302.0], [553.0, 8989.0, 0.0, 303.0], [554.0, 8990.0, 0.0, 304.0], [555.0, 8991.0, 0.0, 305.0], [556.0, 8992.0, 0.0, 306.0], [557.0, 8993.0, 0.0, 307.0], [559.0, 8994.0, 0.0, 308.0], [611.0, 8907.0, 0.0, 28.0], [562.0, 8995.0, 0.0, 309.0], [563.0, 8997.0, 0.0, 310.0], [564.0, 8998.0, 0.0, 311.0], [566.0, 8999.0, 0.0, 312.0], [567.0, 9000.0, 0.0, 313.0], [570.0, 9001.0, 0.0, 314.0], [741.0, 8916.0, 0.0, 5.0], [574.0, 9002.0, 0.0, 315.0], [594.0, 8895.0, 0.0, 49.0], [604.0, 8909.0, 0.0, 10.0], [573.0, 1761.0, 0.0, 2.0], [575.0, 9004.0, 0.0, 316.0], [576.0, 9008.0, 0.0, 317.0], [577.0, 9009.0, 0.0, 318.0], [578.0, 9010.0, 0.0, 319.0], [581.0, 9011.0, 0.0, 320.0], [579.0, 1245.0, 0.0, 2.0], [582.0, 9012.0, 0.0, 321.0], [583.0, 9014.0, 0.0, 322.0], [584.0, 9015.0, 0.0, 323.0], [585.0, 9016.0, 0.0, 324.0], [587.0, 9017.0, 0.0, 325.0], [748.0, 8518.0, 0.0, 3.0], [588.0, 9018.0, 0.0, 326.0], [589.0, 9020.0, 0.0, 327.0], [590.0, 9021.0, 0.0, 328.0], [591.0, 9022.0, 0.0, 329.0], [592.0, 9023.0, 0.0, 330.0], [593.0, 9024.0, 0.0, 331.0], [595.0, 9025.0, 0.0, 332.0], [624.0, 9005.0, 0.0, 50.0], [597.0, 9026.0, 0.0, 333.0], [598.0, 9028.0, 0.0, 334.0], [601.0, 9029.0, 0.0, 335.0], [602.0, 9030.0, 0.0, 336.0], [606.0, 9031.0, 0.0, 337.0], [754.0, 9006.0, 0.0, 11.0], [608.0, 8883.0, 0.0, 6.0], [609.0, 9032.0, 0.0, 338.0], [639.0, 9034.0, 0.0, 7.0], [610.0, 9035.0, 0.0, 339.0], [613.0, 9037.0, 0.0, 340.0], [634.0, 8996.0, 0.0, 29.0], [612.0, 953.0, 0.0, 2.0], [615.0, 9038.0, 0.0, 341.0], [617.0, 9041.0, 0.0, 342.0], [620.0, 9042.0, 0.0, 343.0], [622.0, 9043.0, 0.0, 344.0], [623.0, 9044.0, 0.0, 345.0], [629.0, 9045.0, 0.0, 346.0], [625.0, 9027.0, 0.0, 51.0], [626.0, 9047.0, 0.0, 52.0], [675.0, 9048.0, 0.0, 53.0], [627.0, 2862.0, 0.0, 2.0], [736.0, 8836.0, 0.0, 8.0], [630.0, 9046.0, 0.0, 347.0], [633.0, 9052.0, 0.0, 348.0], [631.0, 756.0, 0.0, 2.0], [636.0, 9053.0, 0.0, 349.0], [635.0, 9039.0, 0.0, 30.0], [672.0, 9056.0, 0.0, 31.0], [638.0, 9055.0, 0.0, 350.0], [666.0, 8830.0, 0.0, 5.0], [642.0, 9058.0, 0.0, 351.0], [683.0, 9036.0, 0.0, 8.0], [640.0, 1834.0, 0.0, 2.0], [643.0, 9060.0, 0.0, 352.0], [644.0, 9063.0, 0.0, 353.0], [646.0, 9064.0, 0.0, 354.0], [650.0, 9065.0, 0.0, 355.0], [647.0, 3859.0, 0.0, 2.0], [667.0, 8983.0, 0.0, 9.0], [651.0, 9066.0, 0.0, 356.0], [655.0, 9069.0, 0.0, 357.0], [653.0, 4933.0, 0.0, 2.0], [1214.0, 8939.0, 0.0, 5.0], [1684.0, 9072.0, 0.0, 6.0], [1905.0, 9073.0, 0.0, 7.0], [2435.0, 9074.0, 0.0, 8.0], [2618.0, 9075.0, 0.0, 9.0], [2863.0, 9076.0, 0.0, 10.0], [2962.0, 9077.0, 0.0, 11.0], [3247.0, 9078.0, 0.0, 12.0], [3488.0, 9079.0, 0.0, 13.0], [3555.0, 9080.0, 0.0, 14.0], [3691.0, 9081.0, 0.0, 15.0], [3769.0, 9082.0, 0.0, 16.0], [3864.0, 9083.0, 0.0, 17.0], [4019.0, 9084.0, 0.0, 18.0], [4569.0, 9085.0, 0.0, 19.0], [4617.0, 9086.0, 0.0, 20.0], [4944.0, 9087.0, 0.0, 21.0], [5007.0, 9088.0, 0.0, 22.0], [5238.0, 9089.0, 0.0, 23.0], [5414.0, 9090.0, 0.0, 24.0], [5831.0, 9091.0, 0.0, 25.0], [6096.0, 9092.0, 0.0, 26.0], [6179.0, 9093.0, 0.0, 27.0], [6312.0, 9094.0, 0.0, 28.0], [6349.0, 9095.0, 0.0, 29.0], [7051.0, 9096.0, 0.0, 30.0], [7347.0, 9097.0, 0.0, 31.0], [7477.0, 9098.0, 0.0, 32.0], [7771.0, 9099.0, 0.0, 33.0], [1072.0, 1199.0, 0.0, 2.0], [2662.0, 9101.0, 0.0, 3.0], [5016.0, 9102.0, 0.0, 4.0], [6387.0, 9103.0, 0.0, 5.0], [658.0, 9070.0, 0.0, 358.0], [660.0, 9105.0, 0.0, 359.0], [664.0, 9106.0, 0.0, 360.0], [665.0, 9107.0, 0.0, 361.0], [668.0, 9108.0, 0.0, 362.0], [676.0, 9059.0, 0.0, 6.0], [674.0, 9068.0, 0.0, 10.0], [669.0, 9109.0, 0.0, 363.0], [673.0, 9112.0, 0.0, 364.0], [671.0, 2101.0, 0.0, 2.0], [679.0, 9057.0, 0.0, 32.0], [678.0, 9113.0, 0.0, 365.0], [720.0, 9111.0, 0.0, 11.0], [681.0, 9049.0, 0.0, 54.0], [758.0, 9110.0, 0.0, 7.0], [988.0, 7924.0, 0.0, 3.0], [685.0, 9116.0, 0.0, 366.0], [713.0, 9115.0, 0.0, 33.0], [3925.0, 4358.0, 0.0, 2.0], [2254.0, 2451.0, 0.0, 2.0], [6276.0, 9124.0, 0.0, 3.0], [6999.0, 9125.0, 0.0, 4.0], [699.0, 9118.0, 0.0, 55.0], [705.0, 9061.0, 0.0, 9.0], [684.0, 3325.0, 0.0, 2.0], [689.0, 9121.0, 0.0, 367.0], [1661.0, 8805.0, 0.0, 3.0], [1090.0, 8837.0, 0.0, 4.0], [690.0, 9130.0, 0.0, 368.0], [691.0, 9133.0, 0.0, 369.0], [692.0, 9134.0, 0.0, 370.0], [693.0, 9135.0, 0.0, 371.0], [695.0, 9136.0, 0.0, 372.0], [694.0, 2778.0, 0.0, 2.0], [697.0, 9137.0, 0.0, 373.0], [698.0, 9139.0, 0.0, 374.0], [700.0, 9140.0, 0.0, 375.0], [704.0, 9127.0, 0.0, 56.0], [702.0, 9141.0, 0.0, 376.0], [701.0, 709.0, 0.0, 2.0], [703.0, 9143.0, 0.0, 377.0], [706.0, 9145.0, 0.0, 378.0], [716.0, 9142.0, 0.0, 57.0], [764.0, 9128.0, 0.0, 10.0], [707.0, 9146.0, 0.0, 379.0], [710.0, 9149.0, 0.0, 380.0], [1757.0, 9144.0, 0.0, 3.0], [711.0, 9150.0, 0.0, 381.0], [714.0, 9152.0, 0.0, 382.0], [2183.0, 2766.0, 0.0, 2.0], [3097.0, 9154.0, 0.0, 3.0], [3411.0, 9155.0, 0.0, 4.0], [3755.0, 9156.0, 0.0, 5.0], [7596.0, 9157.0, 0.0, 6.0], [744.0, 9122.0, 0.0, 34.0], [715.0, 9153.0, 0.0, 383.0], [717.0, 9160.0, 0.0, 384.0], [749.0, 9147.0, 0.0, 58.0], [722.0, 9161.0, 0.0, 385.0], [5767.0, 9151.0, 0.0, 4.0], [5862.0, 9164.0, 0.0, 5.0], [5941.0, 9165.0, 0.0, 6.0], [6025.0, 9166.0, 0.0, 7.0], [7350.0, 9167.0, 0.0, 8.0], [1068.0, 9117.0, 0.0, 12.0], [2341.0, 8448.0, 0.0, 3.0], [3350.0, 9170.0, 0.0, 4.0], [4466.0, 9171.0, 0.0, 5.0], [4516.0, 9172.0, 0.0, 6.0], [6225.0, 9173.0, 0.0, 7.0], [6873.0, 9174.0, 0.0, 8.0], [6895.0, 9175.0, 0.0, 9.0], [726.0, 9163.0, 0.0, 386.0], [3686.0, 7413.0, 0.0, 2.0], [5779.0, 6859.0, 0.0, 2.0], [724.0, 1475.0, 0.0, 2.0], [886.0, 8737.0, 0.0, 5.0], [727.0, 9177.0, 0.0, 387.0], [728.0, 9182.0, 0.0, 388.0], [729.0, 9183.0, 0.0, 389.0], [730.0, 9184.0, 0.0, 390.0], [731.0, 9185.0, 0.0, 391.0], [732.0, 9186.0, 0.0, 392.0], [734.0, 9187.0, 0.0, 393.0], [737.0, 9188.0, 0.0, 394.0], [813.0, 9051.0, 0.0, 9.0], [738.0, 9189.0, 0.0, 395.0], [739.0, 9191.0, 0.0, 396.0], [743.0, 9192.0, 0.0, 397.0], [1373.0, 9003.0, 0.0, 6.0], [745.0, 9193.0, 0.0, 398.0], [750.0, 9159.0, 0.0, 35.0], [746.0, 9195.0, 0.0, 399.0], [747.0, 9197.0, 0.0, 400.0], [752.0, 9198.0, 0.0, 401.0], [1098.0, 9019.0, 0.0, 4.0], [786.0, 9162.0, 0.0, 59.0], [772.0, 9196.0, 0.0, 36.0], [751.0, 3002.0, 0.0, 2.0], [753.0, 9199.0, 0.0, 402.0], [755.0, 9204.0, 0.0, 403.0], [814.0, 9033.0, 0.0, 12.0], [759.0, 9205.0, 0.0, 404.0], [983.0, 9054.0, 0.0, 3.0], [757.0, 2227.0, 0.0, 2.0], [800.0, 9119.0, 0.0, 8.0], [761.0, 9207.0, 0.0, 405.0], [991.0, 8757.0, 0.0, 4.0], [762.0, 9211.0, 0.0, 406.0], [766.0, 9213.0, 0.0, 407.0], [2545.0, 5684.0, 0.0, 2.0], [1688.0, 7699.0, 0.0, 2.0], [2264.0, 3785.0, 0.0, 2.0], [3844.0, 5685.0, 0.0, 2.0], [826.0, 2912.0, 0.0, 2.0], [4864.0, 9219.0, 0.0, 3.0], [2134.0, 5410.0, 0.0, 2.0], [4863.0, 7319.0, 0.0, 2.0], [1673.0, 8767.0, 0.0, 3.0], [1733.0, 9223.0, 0.0, 4.0], [2936.0, 9224.0, 0.0, 5.0], [6063.0, 9225.0, 0.0, 6.0], [7408.0, 9226.0, 0.0, 7.0], [1921.0, 2002.0, 0.0, 2.0], [4210.0, 9228.0, 0.0, 3.0], [1555.0, 4056.0, 0.0, 2.0], [4116.0, 9230.0, 0.0, 3.0], [7078.0, 9231.0, 0.0, 4.0], [1236.0, 2675.0, 0.0, 2.0], [7463.0, 9233.0, 0.0, 3.0], [828.0, 9148.0, 0.0, 11.0], [768.0, 9214.0, 0.0, 408.0], [767.0, 1445.0, 0.0, 2.0], [769.0, 9236.0, 0.0, 409.0], [771.0, 9238.0, 0.0, 410.0], [887.0, 7956.0, 0.0, 3.0], [773.0, 9239.0, 0.0, 411.0], [857.0, 9202.0, 0.0, 37.0], [778.0, 9241.0, 0.0, 412.0], [2274.0, 2732.0, 0.0, 2.0], [4391.0, 9244.0, 0.0, 3.0], [5201.0, 9245.0, 0.0, 4.0], [1812.0, 2200.0, 0.0, 2.0], [2426.0, 9247.0, 0.0, 3.0], [2461.0, 9248.0, 0.0, 4.0], [3681.0, 9249.0, 0.0, 5.0], [3862.0, 9250.0, 0.0, 6.0], [4059.0, 9251.0, 0.0, 7.0], [5579.0, 9252.0, 0.0, 8.0], [7115.0, 9253.0, 0.0, 9.0], [7125.0, 9254.0, 0.0, 10.0], [3834.0, 8623.0, 0.0, 3.0], [1430.0, 9212.0, 0.0, 5.0], [1610.0, 9257.0, 0.0, 6.0], [2252.0, 9258.0, 0.0, 7.0], [2319.0, 9259.0, 0.0, 8.0], [2364.0, 9260.0, 0.0, 9.0], [2505.0, 9261.0, 0.0, 10.0], [2537.0, 9262.0, 0.0, 11.0], [3008.0, 9263.0, 0.0, 12.0], [3606.0, 9264.0, 0.0, 13.0], [3702.0, 9265.0, 0.0, 14.0], [3982.0, 9266.0, 0.0, 15.0], [4151.0, 9267.0, 0.0, 16.0], [4777.0, 9268.0, 0.0, 17.0], [5457.0, 9269.0, 0.0, 18.0], [5723.0, 9270.0, 0.0, 19.0], [6041.0, 9271.0, 0.0, 20.0], [6103.0, 9272.0, 0.0, 21.0], [7483.0, 9273.0, 0.0, 22.0], [7509.0, 9274.0, 0.0, 23.0], [7577.0, 9275.0, 0.0, 24.0], [7706.0, 9276.0, 0.0, 25.0], [1949.0, 2404.0, 0.0, 2.0], [835.0, 8841.0, 0.0, 4.0], [779.0, 9243.0, 0.0, 413.0], [781.0, 9280.0, 0.0, 414.0], [6081.0, 6748.0, 0.0, 2.0], [6957.0, 9282.0, 0.0, 3.0], [7430.0, 9283.0, 0.0, 4.0], [782.0, 9281.0, 0.0, 415.0], [785.0, 9285.0, 0.0, 416.0], [787.0, 9286.0, 0.0, 417.0], [859.0, 9201.0, 0.0, 60.0], [788.0, 9287.0, 0.0, 418.0], [789.0, 9289.0, 0.0, 419.0], [791.0, 9290.0, 0.0, 420.0], [2469.0, 2633.0, 0.0, 2.0], [3073.0, 9292.0, 0.0, 3.0], [792.0, 9291.0, 0.0, 421.0], [793.0, 9294.0, 0.0, 422.0], [794.0, 9295.0, 0.0, 423.0], [795.0, 9296.0, 0.0, 424.0], [797.0, 9297.0, 0.0, 425.0], [1381.0, 8582.0, 0.0, 4.0], [798.0, 9298.0, 0.0, 426.0], [799.0, 9300.0, 0.0, 427.0], [801.0, 9301.0, 0.0, 428.0], [809.0, 9210.0, 0.0, 9.0], [802.0, 9302.0, 0.0, 429.0], [803.0, 9304.0, 0.0, 430.0], [805.0, 9305.0, 0.0, 431.0], [1920.0, 8530.0, 0.0, 3.0], [807.0, 9306.0, 0.0, 432.0], [1510.0, 7941.0, 0.0, 3.0], [808.0, 9308.0, 0.0, 433.0], [810.0, 9310.0, 0.0, 434.0], [873.0, 9303.0, 0.0, 10.0], [811.0, 9311.0, 0.0, 435.0], [815.0, 9313.0, 0.0, 436.0], [861.0, 9190.0, 0.0, 10.0], [883.0, 9206.0, 0.0, 13.0], [816.0, 9314.0, 0.0, 437.0], [818.0, 9317.0, 0.0, 438.0], [898.0, 8833.0, 0.0, 8.0], [820.0, 9318.0, 0.0, 439.0], [1839.0, 8508.0, 0.0, 3.0], [823.0, 9320.0, 0.0, 440.0], [821.0, 1791.0, 0.0, 2.0], [825.0, 9322.0, 0.0, 441.0], [827.0, 9324.0, 0.0, 442.0], [829.0, 9325.0, 0.0, 443.0], [848.0, 9235.0, 0.0, 12.0], [830.0, 9326.0, 0.0, 444.0], [832.0, 9328.0, 0.0, 445.0], [1517.0, 8761.0, 0.0, 4.0], [833.0, 9329.0, 0.0, 446.0], [834.0, 9331.0, 0.0, 447.0], [836.0, 9332.0, 0.0, 448.0], [999.0, 9279.0, 0.0, 5.0], [838.0, 9333.0, 0.0, 449.0], [840.0, 9335.0, 0.0, 450.0], [842.0, 9336.0, 0.0, 451.0], [5496.0, 5609.0, 0.0, 2.0], [843.0, 9337.0, 0.0, 452.0], [844.0, 9339.0, 0.0, 453.0], [845.0, 9340.0, 0.0, 454.0], [846.0, 9341.0, 0.0, 455.0], [847.0, 9342.0, 0.0, 456.0], [849.0, 9343.0, 0.0, 457.0], [869.0, 9327.0, 0.0, 13.0], [850.0, 9344.0, 0.0, 458.0], [851.0, 9346.0, 0.0, 459.0], [852.0, 9347.0, 0.0, 460.0], [853.0, 9348.0, 0.0, 461.0], [855.0, 9349.0, 0.0, 462.0], [854.0, 4450.0, 0.0, 2.0], [856.0, 9350.0, 0.0, 463.0], [858.0, 9352.0, 0.0, 464.0], [860.0, 9242.0, 0.0, 38.0], [862.0, 9353.0, 0.0, 465.0], [881.0, 9288.0, 0.0, 61.0], [914.0, 9354.0, 0.0, 39.0], [949.0, 9315.0, 0.0, 11.0], [863.0, 9355.0, 0.0, 466.0], [864.0, 9359.0, 0.0, 467.0], [865.0, 9360.0, 0.0, 468.0], [866.0, 9361.0, 0.0, 469.0], [867.0, 9362.0, 0.0, 470.0], [868.0, 9363.0, 0.0, 471.0], [870.0, 9364.0, 0.0, 472.0], [871.0, 9345.0, 0.0, 14.0], [876.0, 9365.0, 0.0, 473.0], [877.0, 9366.0, 0.0, 15.0], [912.0, 9312.0, 0.0, 11.0], [878.0, 9367.0, 0.0, 474.0], [1026.0, 9368.0, 0.0, 16.0], [880.0, 9370.0, 0.0, 475.0], [879.0, 3828.0, 0.0, 2.0], [884.0, 9372.0, 0.0, 476.0], [902.0, 9356.0, 0.0, 62.0], [932.0, 5527.0, 0.0, 2.0], [6695.0, 9376.0, 0.0, 3.0], [894.0, 9316.0, 0.0, 14.0], [888.0, 9374.0, 0.0, 477.0], [1262.0, 8831.0, 0.0, 3.0], [1078.0, 9181.0, 0.0, 6.0], [1062.0, 9240.0, 0.0, 4.0], [889.0, 9379.0, 0.0, 478.0], [890.0, 9383.0, 0.0, 479.0], [892.0, 9384.0, 0.0, 480.0], [895.0, 9385.0, 0.0, 481.0], [893.0, 4813.0, 0.0, 2.0], [930.0, 9378.0, 0.0, 15.0], [896.0, 9386.0, 0.0, 482.0], [897.0, 9389.0, 0.0, 483.0], [899.0, 9390.0, 0.0, 484.0], [978.0, 9319.0, 0.0, 9.0], [900.0, 9391.0, 0.0, 485.0], [901.0, 9393.0, 0.0, 486.0], [904.0, 9394.0, 0.0, 487.0], [923.0, 9375.0, 0.0, 63.0], [905.0, 9395.0, 0.0, 488.0], [906.0, 9397.0, 0.0, 489.0], [907.0, 9398.0, 0.0, 490.0], [908.0, 9399.0, 0.0, 491.0], [909.0, 9400.0, 0.0, 492.0], [910.0, 9401.0, 0.0, 493.0], [911.0, 9402.0, 0.0, 494.0], [913.0, 9403.0, 0.0, 495.0], [986.0, 9369.0, 0.0, 12.0], [915.0, 9404.0, 0.0, 496.0], [935.0, 9357.0, 0.0, 40.0], [916.0, 9406.0, 0.0, 497.0], [918.0, 9408.0, 0.0, 498.0], [919.0, 9409.0, 0.0, 499.0], [921.0, 9410.0, 0.0, 500.0], [922.0, 9411.0, 0.0, 501.0], [924.0, 9412.0, 0.0, 502.0], [977.0, 9396.0, 0.0, 64.0], [925.0, 9413.0, 0.0, 503.0], [926.0, 9415.0, 0.0, 504.0], [927.0, 9416.0, 0.0, 505.0], [929.0, 9417.0, 0.0, 506.0], [931.0, 9418.0, 0.0, 507.0], [1058.0, 9388.0, 0.0, 16.0], [933.0, 9419.0, 0.0, 508.0], [936.0, 9421.0, 0.0, 509.0], [938.0, 9407.0, 0.0, 41.0], [937.0, 9422.0, 0.0, 510.0], [939.0, 9424.0, 0.0, 511.0], [942.0, 9423.0, 0.0, 42.0], [940.0, 9425.0, 0.0, 512.0], [943.0, 9427.0, 0.0, 513.0], [1383.0, 8537.0, 0.0, 3.0], [962.0, 9426.0, 0.0, 43.0], [944.0, 9428.0, 0.0, 514.0], [948.0, 9431.0, 0.0, 515.0], [945.0, 4798.0, 0.0, 2.0], [946.0, 5998.0, 0.0, 2.0], [1755.0, 8516.0, 0.0, 3.0], [951.0, 9432.0, 0.0, 516.0], [1010.0, 9358.0, 0.0, 12.0], [950.0, 4521.0, 0.0, 2.0], [952.0, 9436.0, 0.0, 517.0], [954.0, 9439.0, 0.0, 518.0], [2704.0, 9040.0, 0.0, 3.0], [955.0, 9440.0, 0.0, 519.0], [956.0, 9442.0, 0.0, 520.0], [958.0, 9443.0, 0.0, 521.0], [959.0, 9444.0, 0.0, 522.0], [960.0, 9445.0, 0.0, 523.0], [963.0, 9446.0, 0.0, 524.0], [967.0, 9430.0, 0.0, 44.0], [965.0, 9447.0, 0.0, 525.0], [5618.0, 9351.0, 0.0, 3.0], [5918.0, 9450.0, 0.0, 4.0], [6621.0, 9451.0, 0.0, 5.0], [966.0, 9449.0, 0.0, 526.0], [968.0, 9453.0, 0.0, 527.0], [996.0, 9448.0, 0.0, 45.0], [970.0, 9454.0, 0.0, 528.0], [969.0, 3292.0, 0.0, 2.0], [971.0, 9456.0, 0.0, 529.0], [973.0, 9458.0, 0.0, 530.0], [974.0, 9459.0, 0.0, 531.0], [975.0, 9460.0, 0.0, 532.0], [976.0, 9461.0, 0.0, 533.0], [979.0, 9462.0, 0.0, 534.0], [1019.0, 9414.0, 0.0, 65.0], [1081.0, 9392.0, 0.0, 10.0], [980.0, 9463.0, 0.0, 535.0], [987.0, 9466.0, 0.0, 536.0], [981.0, 3917.0, 0.0, 2.0], [1713.0, 9208.0, 0.0, 4.0], [1095.0, 9405.0, 0.0, 13.0], [989.0, 9467.0, 0.0, 537.0], [1339.0, 9120.0, 0.0, 4.0], [990.0, 9471.0, 0.0, 538.0], [992.0, 9473.0, 0.0, 539.0], [993.0, 9474.0, 0.0, 540.0], [994.0, 9475.0, 0.0, 541.0], [995.0, 9476.0, 0.0, 542.0], [998.0, 9477.0, 0.0, 543.0], [1021.0, 9455.0, 0.0, 46.0], [1000.0, 9478.0, 0.0, 544.0], [1434.0, 9334.0, 0.0, 6.0], [1001.0, 9480.0, 0.0, 545.0], [1003.0, 9482.0, 0.0, 546.0], [1004.0, 9483.0, 0.0, 547.0], [1006.0, 9484.0, 0.0, 548.0], [1139.0, 7402.0, 0.0, 2.0], [1104.0, 9465.0, 0.0, 11.0], [1148.0, 9487.0, 0.0, 12.0], [1385.0, 9488.0, 0.0, 13.0], [1393.0, 9489.0, 0.0, 14.0], [1443.0, 9490.0, 0.0, 15.0], [1461.0, 9491.0, 0.0, 16.0], [1484.0, 9492.0, 0.0, 17.0], [1496.0, 9493.0, 0.0, 18.0], [1550.0, 9494.0, 0.0, 19.0], [1568.0, 9495.0, 0.0, 20.0], [1588.0, 9496.0, 0.0, 21.0], [1602.0, 9497.0, 0.0, 22.0], [1725.0, 9498.0, 0.0, 23.0], [1864.0, 9499.0, 0.0, 24.0], [1886.0, 9500.0, 0.0, 25.0], [2019.0, 9501.0, 0.0, 26.0], [2042.0, 9502.0, 0.0, 27.0], [2092.0, 9503.0, 0.0, 28.0], [2154.0, 9504.0, 0.0, 29.0], [2196.0, 9505.0, 0.0, 30.0], [2226.0, 9506.0, 0.0, 31.0], [2277.0, 9507.0, 0.0, 32.0], [2288.0, 9508.0, 0.0, 33.0], [2298.0, 9509.0, 0.0, 34.0], [2313.0, 9510.0, 0.0, 35.0], [2366.0, 9511.0, 0.0, 36.0], [2379.0, 9512.0, 0.0, 37.0], [2615.0, 9513.0, 0.0, 38.0], [2763.0, 9514.0, 0.0, 39.0], [2775.0, 9515.0, 0.0, 40.0], [2849.0, 9516.0, 0.0, 41.0], [2876.0, 9517.0, 0.0, 42.0], [2996.0, 9518.0, 0.0, 43.0], [3062.0, 9519.0, 0.0, 44.0], [3154.0, 9520.0, 0.0, 45.0], [3180.0, 9521.0, 0.0, 46.0], [3207.0, 9522.0, 0.0, 47.0], [3360.0, 9523.0, 0.0, 48.0], [3432.0, 9524.0, 0.0, 49.0], [3480.0, 9525.0, 0.0, 50.0], [3496.0, 9526.0, 0.0, 51.0], [3499.0, 9527.0, 0.0, 52.0], [3537.0, 9528.0, 0.0, 53.0], [3584.0, 9529.0, 0.0, 54.0], [3871.0, 9530.0, 0.0, 55.0], [3916.0, 9531.0, 0.0, 56.0], [4097.0, 9532.0, 0.0, 57.0], [4100.0, 9533.0, 0.0, 58.0], [4224.0, 9534.0, 0.0, 59.0], [4250.0, 9535.0, 0.0, 60.0], [4457.0, 9536.0, 0.0, 61.0], [4542.0, 9537.0, 0.0, 62.0], [4649.0, 9538.0, 0.0, 63.0], [4763.0, 9539.0, 0.0, 64.0], [4776.0, 9540.0, 0.0, 65.0], [4948.0, 9541.0, 0.0, 66.0], [4952.0, 9542.0, 0.0, 67.0], [4985.0, 9543.0, 0.0, 68.0], [4986.0, 9544.0, 0.0, 69.0], [5255.0, 9545.0, 0.0, 70.0], [5263.0, 9546.0, 0.0, 71.0], [5264.0, 9547.0, 0.0, 72.0], [5295.0, 9548.0, 0.0, 73.0], [5315.0, 9549.0, 0.0, 74.0], [5619.0, 9550.0, 0.0, 75.0], [5635.0, 9551.0, 0.0, 76.0], [5667.0, 9552.0, 0.0, 77.0], [5724.0, 9553.0, 0.0, 78.0], [5762.0, 9554.0, 0.0, 79.0], [5885.0, 9555.0, 0.0, 80.0], [5929.0, 9556.0, 0.0, 81.0], [5999.0, 9557.0, 0.0, 82.0], [6069.0, 9558.0, 0.0, 83.0], [6171.0, 9559.0, 0.0, 84.0], [6195.0, 9560.0, 0.0, 85.0], [6215.0, 9561.0, 0.0, 86.0], [6216.0, 9562.0, 0.0, 87.0], [6281.0, 9563.0, 0.0, 88.0], [6310.0, 9564.0, 0.0, 89.0], [6317.0, 9565.0, 0.0, 90.0], [6439.0, 9566.0, 0.0, 91.0], [6453.0, 9567.0, 0.0, 92.0], [6460.0, 9568.0, 0.0, 93.0], [6656.0, 9569.0, 0.0, 94.0], [6892.0, 9570.0, 0.0, 95.0], [6938.0, 9571.0, 0.0, 96.0], [6963.0, 9572.0, 0.0, 97.0], [6989.0, 9573.0, 0.0, 98.0], [6995.0, 9574.0, 0.0, 99.0], [7139.0, 9575.0, 0.0, 100.0], [7287.0, 9576.0, 0.0, 101.0], [7313.0, 9577.0, 0.0, 102.0], [7325.0, 9578.0, 0.0, 103.0], [7602.0, 9579.0, 0.0, 104.0], [7726.0, 9580.0, 0.0, 105.0], [7777.0, 9581.0, 0.0, 106.0], [7789.0, 9582.0, 0.0, 107.0], [7795.0, 9583.0, 0.0, 108.0], [1007.0, 9485.0, 0.0, 549.0], [1008.0, 9585.0, 0.0, 550.0], [1009.0, 9586.0, 0.0, 551.0], [1011.0, 9587.0, 0.0, 552.0], [1128.0, 9437.0, 0.0, 13.0], [1012.0, 9588.0, 0.0, 553.0], [1013.0, 9590.0, 0.0, 554.0], [1014.0, 9591.0, 0.0, 555.0], [1015.0, 9592.0, 0.0, 556.0], [1016.0, 9593.0, 0.0, 557.0], [1018.0, 9594.0, 0.0, 558.0], [1023.0, 9595.0, 0.0, 559.0], [1027.0, 9464.0, 0.0, 66.0], [1054.0, 9479.0, 0.0, 47.0], [1024.0, 9596.0, 0.0, 560.0], [1025.0, 9599.0, 0.0, 561.0], [1029.0, 9600.0, 0.0, 562.0], [1073.0, 9371.0, 0.0, 17.0], [1105.0, 9597.0, 0.0, 67.0], [1035.0, 9601.0, 0.0, 563.0], [1030.0, 3088.0, 0.0, 2.0], [3547.0, 3604.0, 0.0, 2.0], [6842.0, 9606.0, 0.0, 3.0], [1033.0, 5805.0, 0.0, 2.0], [1036.0, 9604.0, 0.0, 564.0], [1037.0, 9609.0, 0.0, 565.0], [1038.0, 9610.0, 0.0, 566.0], [1039.0, 9611.0, 0.0, 567.0], [1041.0, 9612.0, 0.0, 568.0], [1040.0, 1596.0, 0.0, 2.0], [1042.0, 9613.0, 0.0, 569.0], [1044.0, 9615.0, 0.0, 570.0], [5352.0, 9457.0, 0.0, 3.0], [7708.0, 9617.0, 0.0, 4.0], [1831.0, 2420.0, 0.0, 2.0], [1045.0, 9616.0, 0.0, 571.0], [1046.0, 9620.0, 0.0, 572.0], [1047.0, 9621.0, 0.0, 573.0], [1049.0, 9622.0, 0.0, 574.0], [3285.0, 6693.0, 0.0, 2.0], [4960.0, 8782.0, 0.0, 3.0], [5661.0, 9625.0, 0.0, 4.0], [3208.0, 9062.0, 0.0, 3.0], [1050.0, 9623.0, 0.0, 575.0], [1051.0, 9628.0, 0.0, 576.0], [1052.0, 9629.0, 0.0, 577.0], [1055.0, 9630.0, 0.0, 578.0], [1057.0, 9598.0, 0.0, 48.0], [1059.0, 9631.0, 0.0, 579.0], [1093.0, 9632.0, 0.0, 49.0], [1065.0, 9420.0, 0.0, 17.0], [1061.0, 9633.0, 0.0, 580.0], [1067.0, 9636.0, 0.0, 581.0], [1066.0, 9382.0, 0.0, 5.0], [2161.0, 9007.0, 0.0, 3.0], [4458.0, 9639.0, 0.0, 4.0], [5149.0, 9640.0, 0.0, 5.0], [7377.0, 9641.0, 0.0, 6.0], [7598.0, 9642.0, 0.0, 7.0], [2811.0, 9114.0, 0.0, 3.0], [3801.0, 9644.0, 0.0, 4.0], [6659.0, 9645.0, 0.0, 5.0], [1379.0, 4653.0, 0.0, 2.0], [1071.0, 9635.0, 0.0, 18.0], [1651.0, 9638.0, 0.0, 6.0], [1070.0, 9637.0, 0.0, 582.0], [1074.0, 9169.0, 0.0, 13.0], [1075.0, 9650.0, 0.0, 583.0], [1082.0, 9648.0, 0.0, 19.0], [1157.0, 9602.0, 0.0, 18.0], [1412.0, 9651.0, 0.0, 14.0], [1077.0, 9652.0, 0.0, 584.0], [1076.0, 5157.0, 0.0, 2.0], [1084.0, 9656.0, 0.0, 585.0], [1233.0, 9381.0, 0.0, 7.0], [2680.0, 8812.0, 0.0, 3.0], [1097.0, 9653.0, 0.0, 20.0], [1213.0, 1577.0, 0.0, 2.0], [1838.0, 9662.0, 0.0, 3.0], [1933.0, 9663.0, 0.0, 4.0], [3646.0, 9664.0, 0.0, 5.0], [4257.0, 9665.0, 0.0, 6.0], [5152.0, 9666.0, 0.0, 7.0], [5622.0, 9667.0, 0.0, 8.0], [5822.0, 9668.0, 0.0, 9.0], [1085.0, 9658.0, 0.0, 586.0], [1086.0, 9670.0, 0.0, 587.0], [1091.0, 9671.0, 0.0, 588.0], [1087.0, 4919.0, 0.0, 2.0], [1089.0, 3012.0, 0.0, 2.0], [1352.0, 9132.0, 0.0, 5.0], [1092.0, 9672.0, 0.0, 589.0], [1094.0, 9676.0, 0.0, 590.0], [1115.0, 9634.0, 0.0, 50.0], [1096.0, 9677.0, 0.0, 591.0], [1350.0, 9470.0, 0.0, 14.0], [1099.0, 9679.0, 0.0, 592.0], [1196.0, 9661.0, 0.0, 21.0], [1187.0, 9200.0, 0.0, 5.0], [1101.0, 9681.0, 0.0, 593.0], [1102.0, 9684.0, 0.0, 594.0], [1103.0, 9685.0, 0.0, 595.0], [1107.0, 9686.0, 0.0, 596.0], [1113.0, 9603.0, 0.0, 68.0], [1110.0, 9687.0, 0.0, 597.0], [1108.0, 2099.0, 0.0, 2.0], [1109.0, 1241.0, 0.0, 2.0], [1111.0, 9689.0, 0.0, 598.0], [1116.0, 9692.0, 0.0, 599.0], [1142.0, 9688.0, 0.0, 69.0], [1132.0, 9678.0, 0.0, 51.0], [1120.0, 9693.0, 0.0, 600.0], [7316.0, 8772.0, 0.0, 3.0], [1119.0, 1994.0, 0.0, 2.0], [1121.0, 9696.0, 0.0, 601.0], [1122.0, 9699.0, 0.0, 602.0], [1123.0, 9700.0, 0.0, 603.0], [1124.0, 9701.0, 0.0, 604.0], [1126.0, 9702.0, 0.0, 605.0], [1127.0, 9703.0, 0.0, 606.0], [1129.0, 9704.0, 0.0, 607.0], [1138.0, 9589.0, 0.0, 14.0], [1130.0, 9705.0, 0.0, 608.0], [1131.0, 9707.0, 0.0, 609.0], [1133.0, 9708.0, 0.0, 610.0], [1136.0, 9695.0, 0.0, 52.0], [1140.0, 9709.0, 0.0, 611.0], [1170.0, 9710.0, 0.0, 53.0], [1231.0, 9706.0, 0.0, 15.0], [1145.0, 9711.0, 0.0, 612.0], [1147.0, 9694.0, 0.0, 70.0], [1449.0, 8856.0, 0.0, 4.0], [1146.0, 9714.0, 0.0, 613.0], [1151.0, 9717.0, 0.0, 614.0], [1172.0, 9715.0, 0.0, 71.0], [3869.0, 7892.0, 0.0, 3.0], [1150.0, 6660.0, 0.0, 2.0], [1152.0, 9718.0, 0.0, 615.0], [1154.0, 9722.0, 0.0, 616.0], [1155.0, 9723.0, 0.0, 617.0], [1156.0, 9724.0, 0.0, 618.0], [1158.0, 9725.0, 0.0, 619.0], [1238.0, 9654.0, 0.0, 19.0], [1159.0, 9726.0, 0.0, 620.0], [1162.0, 9728.0, 0.0, 621.0], [1163.0, 9729.0, 0.0, 622.0], [1166.0, 9730.0, 0.0, 623.0], [1164.0, 1675.0, 0.0, 2.0], [1168.0, 9731.0, 0.0, 624.0], [1173.0, 9733.0, 0.0, 625.0], [1203.0, 9712.0, 0.0, 54.0], [3941.0, 9138.0, 0.0, 3.0], [4868.0, 9736.0, 0.0, 4.0], [6110.0, 9737.0, 0.0, 5.0], [6956.0, 9738.0, 0.0, 6.0], [7039.0, 9739.0, 0.0, 7.0], [7513.0, 9740.0, 0.0, 8.0], [1174.0, 9719.0, 0.0, 72.0], [1175.0, 9734.0, 0.0, 626.0], [1177.0, 9742.0, 0.0, 73.0], [1176.0, 9743.0, 0.0, 627.0], [1178.0, 9745.0, 0.0, 628.0], [1188.0, 9744.0, 0.0, 74.0], [1179.0, 9746.0, 0.0, 629.0], [1180.0, 9748.0, 0.0, 630.0], [1181.0, 9749.0, 0.0, 631.0], [1182.0, 9750.0, 0.0, 632.0], [1183.0, 9751.0, 0.0, 633.0], [1184.0, 9752.0, 0.0, 634.0], [1185.0, 9753.0, 0.0, 635.0], [1186.0, 9754.0, 0.0, 636.0], [1189.0, 9755.0, 0.0, 637.0], [1277.0, 9683.0, 0.0, 6.0], [1208.0, 9747.0, 0.0, 75.0], [1190.0, 9756.0, 0.0, 638.0], [1192.0, 9759.0, 0.0, 639.0], [2046.0, 9698.0, 0.0, 3.0], [4539.0, 9761.0, 0.0, 4.0], [1193.0, 9760.0, 0.0, 640.0], [1195.0, 9763.0, 0.0, 641.0], [1198.0, 9764.0, 0.0, 642.0], [1209.0, 9682.0, 0.0, 22.0], [3081.0, 7128.0, 0.0, 2.0], [1202.0, 9765.0, 0.0, 643.0], [1200.0, 1304.0, 0.0, 2.0], [1205.0, 9768.0, 0.0, 644.0], [1206.0, 9735.0, 0.0, 55.0], [1500.0, 1632.0, 0.0, 2.0], [1863.0, 9772.0, 0.0, 3.0], [2201.0, 9773.0, 0.0, 4.0], [2311.0, 9774.0, 0.0, 5.0], [2381.0, 9775.0, 0.0, 6.0], [2691.0, 9776.0, 0.0, 7.0], [3525.0, 9777.0, 0.0, 8.0], [4332.0, 9778.0, 0.0, 9.0], [5059.0, 9779.0, 0.0, 10.0], [5158.0, 9780.0, 0.0, 11.0], [5634.0, 9781.0, 0.0, 12.0], [5906.0, 9782.0, 0.0, 13.0], [6072.0, 9783.0, 0.0, 14.0], [6397.0, 9784.0, 0.0, 15.0], [6838.0, 9785.0, 0.0, 16.0], [7482.0, 9786.0, 0.0, 17.0], [7541.0, 9787.0, 0.0, 18.0], [7594.0, 9788.0, 0.0, 19.0], [1207.0, 9770.0, 0.0, 645.0], [1223.0, 9771.0, 0.0, 56.0], [1210.0, 9790.0, 0.0, 646.0], [1212.0, 9758.0, 0.0, 76.0], [1225.0, 9766.0, 0.0, 23.0], [1211.0, 9792.0, 0.0, 647.0], [1218.0, 9795.0, 0.0, 648.0], [1256.0, 9793.0, 0.0, 77.0], [5163.0, 7021.0, 0.0, 2.0], [1220.0, 9796.0, 0.0, 649.0], [1221.0, 9799.0, 0.0, 650.0], [1222.0, 9800.0, 0.0, 651.0], [1226.0, 9801.0, 0.0, 652.0], [1227.0, 9791.0, 0.0, 57.0], [1232.0, 9794.0, 0.0, 24.0], [1228.0, 9802.0, 0.0, 653.0], [1237.0, 9803.0, 0.0, 58.0], [1229.0, 9805.0, 0.0, 654.0], [1230.0, 9807.0, 0.0, 655.0], [1234.0, 9808.0, 0.0, 656.0], [1334.0, 9713.0, 0.0, 16.0], [1403.0, 9804.0, 0.0, 25.0], [1276.0, 9659.0, 0.0, 8.0], [1240.0, 9809.0, 0.0, 657.0], [1263.0, 9806.0, 0.0, 59.0], [1253.0, 9727.0, 0.0, 20.0], [1346.0, 9815.0, 0.0, 21.0], [1413.0, 9816.0, 0.0, 22.0], [1468.0, 9817.0, 0.0, 23.0], [1478.0, 9818.0, 0.0, 24.0], [1666.0, 9819.0, 0.0, 25.0], [1704.0, 9820.0, 0.0, 26.0], [1898.0, 9821.0, 0.0, 27.0], [2600.0, 9822.0, 0.0, 28.0], [3124.0, 9823.0, 0.0, 29.0], [3230.0, 9824.0, 0.0, 30.0], [3274.0, 9825.0, 0.0, 31.0], [3310.0, 9826.0, 0.0, 32.0], [3402.0, 9827.0, 0.0, 33.0], [3617.0, 9828.0, 0.0, 34.0], [3618.0, 9829.0, 0.0, 35.0], [3717.0, 9830.0, 0.0, 36.0], [3767.0, 9831.0, 0.0, 37.0], [3792.0, 9832.0, 0.0, 38.0], [3846.0, 9833.0, 0.0, 39.0], [3857.0, 9834.0, 0.0, 40.0], [4267.0, 9835.0, 0.0, 41.0], [4311.0, 9836.0, 0.0, 42.0], [4421.0, 9837.0, 0.0, 43.0], [4750.0, 9838.0, 0.0, 44.0], [4796.0, 9839.0, 0.0, 45.0], [4803.0, 9840.0, 0.0, 46.0], [4998.0, 9841.0, 0.0, 47.0], [5009.0, 9842.0, 0.0, 48.0], [5049.0, 9843.0, 0.0, 49.0], [5164.0, 9844.0, 0.0, 50.0], [5396.0, 9845.0, 0.0, 51.0], [5507.0, 9846.0, 0.0, 52.0], [5510.0, 9847.0, 0.0, 53.0], [6646.0, 9848.0, 0.0, 54.0], [6665.0, 9849.0, 0.0, 55.0], [6718.0, 9850.0, 0.0, 56.0], [6755.0, 9851.0, 0.0, 57.0], [6828.0, 9852.0, 0.0, 58.0], [7072.0, 9853.0, 0.0, 59.0], [7220.0, 9854.0, 0.0, 60.0], [7366.0, 9855.0, 0.0, 61.0], [7521.0, 9856.0, 0.0, 62.0], [7584.0, 9857.0, 0.0, 63.0], [7800.0, 9858.0, 0.0, 64.0], [1242.0, 9813.0, 0.0, 658.0], [2266.0, 9691.0, 0.0, 3.0], [1243.0, 9860.0, 0.0, 659.0], [1246.0, 9862.0, 0.0, 660.0], [1593.0, 9013.0, 0.0, 3.0], [1248.0, 9863.0, 0.0, 661.0], [1250.0, 9865.0, 0.0, 662.0], [1254.0, 9866.0, 0.0, 663.0], [5224.0, 5680.0, 0.0, 2.0], [6140.0, 9868.0, 0.0, 3.0], [1257.0, 9867.0, 0.0, 664.0], [1284.0, 9797.0, 0.0, 78.0], [1258.0, 9870.0, 0.0, 665.0], [1259.0, 9872.0, 0.0, 666.0], [1261.0, 9873.0, 0.0, 667.0], [2430.0, 8943.0, 0.0, 4.0], [1264.0, 9874.0, 0.0, 668.0], [1748.0, 9380.0, 0.0, 4.0], [1282.0, 9814.0, 0.0, 60.0], [1265.0, 9876.0, 0.0, 669.0], [1267.0, 9879.0, 0.0, 670.0], [1270.0, 9880.0, 0.0, 671.0], [5650.0, 7416.0, 0.0, 2.0], [5274.0, 5775.0, 0.0, 2.0], [1271.0, 9881.0, 0.0, 672.0], [1272.0, 9884.0, 0.0, 673.0], [1273.0, 9885.0, 0.0, 674.0], [1278.0, 9886.0, 0.0, 675.0], [1396.0, 9812.0, 0.0, 9.0], [1397.0, 9757.0, 0.0, 7.0], [1281.0, 9887.0, 0.0, 676.0], [1286.0, 9890.0, 0.0, 677.0], [1294.0, 9878.0, 0.0, 61.0], [1283.0, 2223.0, 0.0, 2.0], [1288.0, 9871.0, 0.0, 79.0], [1291.0, 9891.0, 0.0, 678.0], [1293.0, 9894.0, 0.0, 80.0], [1292.0, 9895.0, 0.0, 679.0], [1296.0, 9897.0, 0.0, 680.0], [1305.0, 9896.0, 0.0, 81.0], [1295.0, 9892.0, 0.0, 62.0], [1312.0, 9900.0, 0.0, 63.0], [1297.0, 9898.0, 0.0, 681.0], [1298.0, 9902.0, 0.0, 682.0], [1299.0, 9903.0, 0.0, 683.0], [1300.0, 9904.0, 0.0, 684.0], [1301.0, 9905.0, 0.0, 685.0], [1302.0, 9906.0, 0.0, 686.0], [1306.0, 9907.0, 0.0, 687.0], [5072.0, 9769.0, 0.0, 3.0], [1317.0, 9899.0, 0.0, 82.0], [1307.0, 9908.0, 0.0, 688.0], [1308.0, 9911.0, 0.0, 689.0], [1309.0, 9912.0, 0.0, 690.0], [1310.0, 9913.0, 0.0, 691.0], [1311.0, 9914.0, 0.0, 692.0], [1313.0, 9915.0, 0.0, 693.0], [1328.0, 9901.0, 0.0, 64.0], [1314.0, 9916.0, 0.0, 694.0], [1315.0, 9918.0, 0.0, 695.0], [1316.0, 9919.0, 0.0, 696.0], [1318.0, 9920.0, 0.0, 697.0], [1319.0, 9910.0, 0.0, 83.0], [1320.0, 9921.0, 0.0, 698.0], [1357.0, 9922.0, 0.0, 84.0], [1321.0, 9923.0, 0.0, 699.0], [1324.0, 9925.0, 0.0, 700.0], [1325.0, 9926.0, 0.0, 701.0], [1326.0, 9927.0, 0.0, 702.0], [1330.0, 9928.0, 0.0, 703.0], [1348.0, 9917.0, 0.0, 65.0], [1638.0, 4774.0, 0.0, 2.0], [1331.0, 9929.0, 0.0, 704.0], [1332.0, 9932.0, 0.0, 705.0], [1335.0, 9933.0, 0.0, 706.0], [1333.0, 2210.0, 0.0, 2.0], [1431.0, 9810.0, 0.0, 17.0], [1336.0, 9934.0, 0.0, 707.0], [1338.0, 9937.0, 0.0, 708.0], [1341.0, 9938.0, 0.0, 709.0], [1365.0, 9472.0, 0.0, 5.0], [1342.0, 9939.0, 0.0, 710.0], [1343.0, 9941.0, 0.0, 711.0], [1344.0, 9942.0, 0.0, 712.0], [1347.0, 9943.0, 0.0, 713.0], [1345.0, 2622.0, 0.0, 2.0], [1349.0, 9944.0, 0.0, 714.0], [1369.0, 9930.0, 0.0, 66.0], [1351.0, 9946.0, 0.0, 715.0], [1427.0, 9680.0, 0.0, 15.0], [1355.0, 9948.0, 0.0, 716.0], [2428.0, 9675.0, 0.0, 6.0], [1356.0, 9950.0, 0.0, 717.0], [1358.0, 9952.0, 0.0, 718.0], [1362.0, 9924.0, 0.0, 85.0], [1360.0, 9953.0, 0.0, 719.0], [1363.0, 9955.0, 0.0, 720.0], [1470.0, 9954.0, 0.0, 86.0], [1364.0, 9956.0, 0.0, 721.0], [1366.0, 9958.0, 0.0, 722.0], [1565.0, 9940.0, 0.0, 6.0], [1370.0, 9959.0, 0.0, 723.0], [1367.0, 4114.0, 0.0, 2.0], [1387.0, 9947.0, 0.0, 67.0], [1372.0, 9961.0, 0.0, 724.0], [1377.0, 9964.0, 0.0, 725.0], [1885.0, 9194.0, 0.0, 7.0], [1375.0, 2316.0, 0.0, 2.0], [1380.0, 9965.0, 0.0, 726.0], [6587.0, 9438.0, 0.0, 3.0], [1384.0, 9968.0, 0.0, 727.0], [1520.0, 9299.0, 0.0, 5.0], [2496.0, 9429.0, 0.0, 4.0], [1386.0, 9970.0, 0.0, 728.0], [1390.0, 9973.0, 0.0, 729.0], [1460.0, 9963.0, 0.0, 68.0], [1391.0, 9974.0, 0.0, 730.0], [1392.0, 9976.0, 0.0, 731.0], [1394.0, 9977.0, 0.0, 732.0], [1395.0, 9978.0, 0.0, 733.0], [1398.0, 9979.0, 0.0, 734.0], [1466.0, 9888.0, 0.0, 10.0], [1581.0, 9889.0, 0.0, 8.0], [1399.0, 9980.0, 0.0, 735.0], [1402.0, 9983.0, 0.0, 736.0], [1404.0, 9984.0, 0.0, 737.0], [1499.0, 9811.0, 0.0, 26.0], [1406.0, 9985.0, 0.0, 738.0], [1410.0, 9987.0, 0.0, 739.0], [1411.0, 9988.0, 0.0, 740.0], [1414.0, 9989.0, 0.0, 741.0], [1436.0, 9655.0, 0.0, 15.0], [1415.0, 9990.0, 0.0, 742.0], [1416.0, 9992.0, 0.0, 743.0], [1417.0, 9993.0, 0.0, 744.0], [1418.0, 9994.0, 0.0, 745.0], [1419.0, 9995.0, 0.0, 746.0], [1421.0, 9996.0, 0.0, 747.0], [1424.0, 9997.0, 0.0, 748.0], [1422.0, 2149.0, 0.0, 2.0], [1425.0, 9998.0, 0.0, 749.0], [1426.0, 10000.0, 0.0, 750.0], [1429.0, 10001.0, 0.0, 751.0], [1564.0, 9949.0, 0.0, 16.0], [1432.0, 10002.0, 0.0, 752.0], [1435.0, 9936.0, 0.0, 18.0], [1437.0, 10004.0, 0.0, 753.0], [1720.0, 9481.0, 0.0, 7.0], [1453.0, 10005.0, 0.0, 19.0], [1554.0, 9991.0, 0.0, 16.0], [1438.0, 10006.0, 0.0, 754.0], [1442.0, 10010.0, 0.0, 755.0], [1509.0, 1901.0, 0.0, 2.0], [2294.0, 10012.0, 0.0, 3.0], [2721.0, 10013.0, 0.0, 4.0], [2836.0, 10014.0, 0.0, 5.0], [2943.0, 10015.0, 0.0, 6.0], [3747.0, 10016.0, 0.0, 7.0], [4248.0, 10017.0, 0.0, 8.0], [4313.0, 10018.0, 0.0, 9.0], [4366.0, 10019.0, 0.0, 10.0], [4477.0, 10020.0, 0.0, 11.0], [4596.0, 10021.0, 0.0, 12.0], [4680.0, 10022.0, 0.0, 13.0], [5047.0, 10023.0, 0.0, 14.0], [5739.0, 10024.0, 0.0, 15.0], [6226.0, 10025.0, 0.0, 16.0], [6505.0, 10026.0, 0.0, 17.0], [6509.0, 10027.0, 0.0, 18.0], [6760.0, 10028.0, 0.0, 19.0], [7755.0, 10029.0, 0.0, 20.0], [3222.0, 6442.0, 0.0, 2.0], [5854.0, 9909.0, 0.0, 4.0], [1444.0, 10011.0, 0.0, 756.0], [1447.0, 10033.0, 0.0, 757.0], [1669.0, 9237.0, 0.0, 3.0], [1450.0, 10034.0, 0.0, 758.0], [2131.0, 9716.0, 0.0, 5.0], [1451.0, 10036.0, 0.0, 759.0], [1452.0, 10038.0, 0.0, 760.0], [1454.0, 10039.0, 0.0, 761.0], [1749.0, 10008.0, 0.0, 20.0], [1455.0, 10040.0, 0.0, 762.0], [1456.0, 10042.0, 0.0, 763.0], [1458.0, 10043.0, 0.0, 764.0], [1459.0, 10044.0, 0.0, 765.0], [1462.0, 10045.0, 0.0, 766.0], [1465.0, 9975.0, 0.0, 69.0], [1464.0, 10046.0, 0.0, 767.0], [1469.0, 10048.0, 0.0, 768.0], [1477.0, 10047.0, 0.0, 70.0], [1479.0, 9981.0, 0.0, 11.0], [1471.0, 10049.0, 0.0, 769.0], [1493.0, 9957.0, 0.0, 87.0], [1472.0, 10052.0, 0.0, 770.0], [1474.0, 10054.0, 0.0, 771.0], [1473.0, 6563.0, 0.0, 2.0], [1476.0, 10055.0, 0.0, 772.0], [2245.0, 9180.0, 0.0, 3.0], [1480.0, 10057.0, 0.0, 773.0], [1483.0, 10050.0, 0.0, 71.0], [1691.0, 10051.0, 0.0, 12.0], [1482.0, 10059.0, 0.0, 774.0], [5437.0, 9468.0, 0.0, 3.0], [1485.0, 10062.0, 0.0, 775.0], [1511.0, 10060.0, 0.0, 72.0], [1487.0, 10064.0, 0.0, 776.0], [1488.0, 10066.0, 0.0, 777.0], [1489.0, 10067.0, 0.0, 778.0], [1491.0, 10068.0, 0.0, 779.0], [5245.0, 9732.0, 0.0, 3.0], [6417.0, 10070.0, 0.0, 4.0], [7375.0, 10071.0, 0.0, 5.0], [2446.0, 3636.0, 0.0, 2.0], [4893.0, 5097.0, 0.0, 2.0], [3112.0, 7702.0, 0.0, 2.0], [1492.0, 10069.0, 0.0, 780.0], [1494.0, 10076.0, 0.0, 781.0], [1497.0, 10053.0, 0.0, 88.0], [1495.0, 10077.0, 0.0, 782.0], [1501.0, 10079.0, 0.0, 783.0], [1516.0, 10078.0, 0.0, 89.0], [1527.0, 9986.0, 0.0, 27.0], [1502.0, 10080.0, 0.0, 784.0], [1503.0, 10083.0, 0.0, 785.0], [1504.0, 10084.0, 0.0, 786.0], [1505.0, 10085.0, 0.0, 787.0], [1506.0, 10086.0, 0.0, 788.0], [1507.0, 10087.0, 0.0, 789.0], [1508.0, 10088.0, 0.0, 790.0], [1512.0, 10089.0, 0.0, 791.0], [2452.0, 9309.0, 0.0, 4.0], [1582.0, 10065.0, 0.0, 73.0], [1513.0, 10090.0, 0.0, 792.0], [1514.0, 10093.0, 0.0, 793.0], [1518.0, 10094.0, 0.0, 794.0], [2488.0, 3518.0, 0.0, 2.0], [7689.0, 10096.0, 0.0, 3.0], [1542.0, 10081.0, 0.0, 90.0], [2081.0, 9330.0, 0.0, 5.0], [1521.0, 10095.0, 0.0, 795.0], [1519.0, 3307.0, 0.0, 2.0], [1738.0, 9971.0, 0.0, 6.0], [1522.0, 10100.0, 0.0, 796.0], [1524.0, 10103.0, 0.0, 797.0], [1525.0, 10104.0, 0.0, 798.0], [1526.0, 10105.0, 0.0, 799.0], [1528.0, 10106.0, 0.0, 800.0], [1530.0, 10082.0, 0.0, 28.0], [1531.0, 10107.0, 0.0, 801.0], [1529.0, 2738.0, 0.0, 2.0], [1570.0, 10108.0, 0.0, 29.0], [1533.0, 10109.0, 0.0, 802.0], [1532.0, 5286.0, 0.0, 2.0], [1534.0, 10112.0, 0.0, 803.0], [1535.0, 10114.0, 0.0, 804.0], [1536.0, 10115.0, 0.0, 805.0], [1539.0, 10116.0, 0.0, 806.0], [1540.0, 10117.0, 0.0, 807.0], [1541.0, 10118.0, 0.0, 808.0], [1543.0, 10119.0, 0.0, 809.0], [1562.0, 10098.0, 0.0, 91.0], [1545.0, 10120.0, 0.0, 810.0], [1544.0, 1549.0, 0.0, 2.0], [1546.0, 10122.0, 0.0, 811.0], [1548.0, 10124.0, 0.0, 812.0], [1551.0, 10125.0, 0.0, 813.0], [2844.0, 10123.0, 0.0, 3.0], [1553.0, 10126.0, 0.0, 814.0], [1556.0, 10128.0, 0.0, 815.0], [1605.0, 10009.0, 0.0, 17.0], [1558.0, 10129.0, 0.0, 816.0], [1642.0, 7973.0, 0.0, 3.0], [1560.0, 10131.0, 0.0, 817.0], [1561.0, 10133.0, 0.0, 818.0], [1566.0, 10134.0, 0.0, 819.0], [1573.0, 10121.0, 0.0, 92.0], [1587.0, 10003.0, 0.0, 17.0], [2105.0, 9960.0, 0.0, 7.0], [1567.0, 10135.0, 0.0, 820.0], [1571.0, 10139.0, 0.0, 821.0], [1579.0, 10111.0, 0.0, 30.0], [1572.0, 10140.0, 0.0, 822.0], [1575.0, 10142.0, 0.0, 823.0], [1578.0, 10136.0, 0.0, 93.0], [1576.0, 10143.0, 0.0, 824.0], [1580.0, 10145.0, 0.0, 825.0], [1612.0, 10144.0, 0.0, 94.0], [1693.0, 10141.0, 0.0, 31.0], [1583.0, 10146.0, 0.0, 826.0], [1806.0, 9982.0, 0.0, 9.0], [1643.0, 10092.0, 0.0, 74.0], [1584.0, 10149.0, 0.0, 827.0], [1585.0, 10152.0, 0.0, 828.0], [1589.0, 10153.0, 0.0, 829.0], [1607.0, 10137.0, 0.0, 18.0], [1591.0, 10154.0, 0.0, 830.0], [1592.0, 10156.0, 0.0, 831.0], [1594.0, 10157.0, 0.0, 832.0], [2018.0, 9864.0, 0.0, 4.0], [1595.0, 10158.0, 0.0, 833.0], [1597.0, 10160.0, 0.0, 834.0], [5673.0, 9614.0, 0.0, 3.0], [1598.0, 10161.0, 0.0, 835.0], [1600.0, 10163.0, 0.0, 836.0], [1599.0, 2913.0, 0.0, 2.0], [1601.0, 10164.0, 0.0, 837.0], [1604.0, 10166.0, 0.0, 838.0], [1609.0, 10167.0, 0.0, 839.0], [1608.0, 10130.0, 0.0, 18.0], [1732.0, 10155.0, 0.0, 19.0], [1923.0, 10169.0, 0.0, 19.0], [1614.0, 10168.0, 0.0, 840.0], [1611.0, 6304.0, 0.0, 2.0], [1613.0, 10147.0, 0.0, 95.0], [1620.0, 10174.0, 0.0, 96.0], [1615.0, 10172.0, 0.0, 841.0], [1616.0, 10176.0, 0.0, 842.0], [1618.0, 10177.0, 0.0, 843.0], [1619.0, 10178.0, 0.0, 844.0], [1622.0, 10179.0, 0.0, 845.0], [1631.0, 10175.0, 0.0, 97.0], [7173.0, 9935.0, 0.0, 3.0], [1626.0, 10180.0, 0.0, 846.0], [2001.0, 8768.0, 0.0, 3.0], [1627.0, 10183.0, 0.0, 847.0], [1628.0, 10185.0, 0.0, 848.0], [1629.0, 10186.0, 0.0, 849.0], [1630.0, 10187.0, 0.0, 850.0], [1634.0, 10188.0, 0.0, 851.0], [1637.0, 10181.0, 0.0, 98.0], [1639.0, 10189.0, 0.0, 852.0], [1677.0, 10190.0, 0.0, 99.0], [1640.0, 10191.0, 0.0, 853.0], [1641.0, 10193.0, 0.0, 854.0], [1644.0, 10194.0, 0.0, 855.0], [2336.0, 10132.0, 0.0, 4.0], [1658.0, 10151.0, 0.0, 75.0], [1645.0, 10195.0, 0.0, 856.0], [1646.0, 10198.0, 0.0, 857.0], [1647.0, 10199.0, 0.0, 858.0], [1649.0, 10200.0, 0.0, 859.0], [1650.0, 10201.0, 0.0, 860.0], [1653.0, 10202.0, 0.0, 861.0], [1685.0, 9649.0, 0.0, 7.0], [1654.0, 10203.0, 0.0, 862.0], [1655.0, 10205.0, 0.0, 863.0], [1659.0, 10206.0, 0.0, 864.0], [1667.0, 10197.0, 0.0, 76.0], [1660.0, 10207.0, 0.0, 865.0], [1662.0, 10209.0, 0.0, 866.0], [2530.0, 9131.0, 0.0, 4.0], [1664.0, 10210.0, 0.0, 867.0], [1663.0, 6743.0, 0.0, 2.0], [1665.0, 10212.0, 0.0, 868.0], [1668.0, 10214.0, 0.0, 869.0], [1679.0, 10208.0, 0.0, 77.0], [1670.0, 10215.0, 0.0, 870.0], [2108.0, 10035.0, 0.0, 4.0], [1671.0, 10217.0, 0.0, 871.0], [1676.0, 10219.0, 0.0, 872.0], [1678.0, 10220.0, 0.0, 873.0], [1729.0, 10192.0, 0.0, 100.0], [1680.0, 10221.0, 0.0, 874.0], [1690.0, 10216.0, 0.0, 78.0], [1682.0, 10223.0, 0.0, 875.0], [1683.0, 10225.0, 0.0, 876.0], [1686.0, 10226.0, 0.0, 877.0], [2437.0, 10204.0, 0.0, 8.0], [1687.0, 10227.0, 0.0, 878.0], [1692.0, 10229.0, 0.0, 879.0], [1695.0, 10224.0, 0.0, 79.0], [1805.0, 10061.0, 0.0, 13.0], [1697.0, 10230.0, 0.0, 880.0], [1726.0, 10148.0, 0.0, 32.0], [1699.0, 10231.0, 0.0, 80.0], [1698.0, 10233.0, 0.0, 881.0], [1700.0, 10236.0, 0.0, 882.0], [1773.0, 10235.0, 0.0, 81.0], [1701.0, 10237.0, 0.0, 883.0], [1705.0, 10239.0, 0.0, 884.0], [1702.0, 2724.0, 0.0, 2.0], [1706.0, 10240.0, 0.0, 885.0], [1707.0, 10242.0, 0.0, 886.0], [1708.0, 10243.0, 0.0, 887.0], [1709.0, 10244.0, 0.0, 888.0], [1710.0, 10245.0, 0.0, 889.0], [1711.0, 10246.0, 0.0, 890.0], [1712.0, 10247.0, 0.0, 891.0], [1715.0, 10248.0, 0.0, 892.0], [1737.0, 9469.0, 0.0, 5.0], [1716.0, 10249.0, 0.0, 893.0], [1717.0, 10251.0, 0.0, 894.0], [1718.0, 10252.0, 0.0, 895.0], [1721.0, 10253.0, 0.0, 896.0], [2147.0, 10007.0, 0.0, 8.0], [1722.0, 10254.0, 0.0, 897.0], [1723.0, 10256.0, 0.0, 898.0], [1724.0, 10257.0, 0.0, 899.0], [1727.0, 10258.0, 0.0, 900.0], [1813.0, 10234.0, 0.0, 33.0], [1728.0, 10259.0, 0.0, 901.0], [1730.0, 10261.0, 0.0, 902.0], [1740.0, 10222.0, 0.0, 101.0], [1731.0, 10262.0, 0.0, 903.0], [1735.0, 10264.0, 0.0, 904.0], [1837.0, 10170.0, 0.0, 20.0], [1736.0, 10265.0, 0.0, 905.0], [1739.0, 10267.0, 0.0, 906.0], [2067.0, 10250.0, 0.0, 6.0], [2301.0, 10102.0, 0.0, 7.0], [1741.0, 10268.0, 0.0, 907.0], [1753.0, 10263.0, 0.0, 102.0], [1742.0, 10271.0, 0.0, 908.0], [1745.0, 10273.0, 0.0, 909.0], [2163.0, 8577.0, 0.0, 4.0], [1744.0, 3540.0, 0.0, 2.0], [1747.0, 10274.0, 0.0, 910.0], [3299.0, 4881.0, 0.0, 2.0], [1750.0, 10277.0, 0.0, 911.0], [2685.0, 9877.0, 0.0, 5.0], [1784.0, 10041.0, 0.0, 21.0], [1751.0, 10279.0, 0.0, 912.0], [1752.0, 10282.0, 0.0, 913.0], [1756.0, 10283.0, 0.0, 914.0], [1771.0, 10272.0, 0.0, 103.0], [2008.0, 9435.0, 0.0, 4.0], [1758.0, 10284.0, 0.0, 915.0], [1759.0, 10287.0, 0.0, 916.0], [1763.0, 10288.0, 0.0, 917.0], [1764.0, 10289.0, 0.0, 918.0], [1765.0, 10290.0, 0.0, 919.0], [1766.0, 10291.0, 0.0, 920.0], [1768.0, 10292.0, 0.0, 921.0], [1769.0, 10293.0, 0.0, 922.0], [1770.0, 10294.0, 0.0, 923.0], [1772.0, 10295.0, 0.0, 924.0], [1788.0, 10285.0, 0.0, 104.0], [1774.0, 10296.0, 0.0, 925.0], [1818.0, 10238.0, 0.0, 82.0], [1775.0, 10298.0, 0.0, 926.0], [1776.0, 10300.0, 0.0, 927.0], [1777.0, 10301.0, 0.0, 928.0], [1778.0, 10302.0, 0.0, 929.0], [1779.0, 10303.0, 0.0, 930.0], [1780.0, 10304.0, 0.0, 931.0], [1782.0, 10305.0, 0.0, 932.0], [1783.0, 10306.0, 0.0, 933.0], [1785.0, 10307.0, 0.0, 934.0], [1865.0, 10281.0, 0.0, 22.0], [1786.0, 10308.0, 0.0, 935.0], [1789.0, 10310.0, 0.0, 936.0], [1820.0, 10297.0, 0.0, 105.0], [1793.0, 10311.0, 0.0, 937.0], [4453.0, 9323.0, 0.0, 3.0], [1794.0, 10313.0, 0.0, 938.0], [1795.0, 10315.0, 0.0, 939.0], [1796.0, 10316.0, 0.0, 940.0], [1797.0, 10317.0, 0.0, 941.0], [1799.0, 10318.0, 0.0, 942.0], [1800.0, 10319.0, 0.0, 943.0], [1801.0, 10320.0, 0.0, 944.0], [1803.0, 10321.0, 0.0, 945.0], [1804.0, 10322.0, 0.0, 946.0], [1807.0, 10323.0, 0.0, 947.0], [2170.0, 10232.0, 0.0, 14.0], [1936.0, 10150.0, 0.0, 10.0], [1808.0, 10324.0, 0.0, 948.0], [1809.0, 10327.0, 0.0, 949.0], [1810.0, 10328.0, 0.0, 950.0], [1811.0, 10329.0, 0.0, 951.0], [1814.0, 10330.0, 0.0, 952.0], [1851.0, 10260.0, 0.0, 34.0], [1815.0, 10331.0, 0.0, 953.0], [1816.0, 10333.0, 0.0, 954.0], [1823.0, 10334.0, 0.0, 955.0], [1845.0, 10299.0, 0.0, 83.0], [1847.0, 10312.0, 0.0, 106.0], [1825.0, 10335.0, 0.0, 956.0], [1826.0, 10338.0, 0.0, 957.0], [1829.0, 10339.0, 0.0, 958.0], [5644.0, 9999.0, 0.0, 3.0], [1830.0, 10340.0, 0.0, 959.0], [1832.0, 10342.0, 0.0, 960.0], [1833.0, 10343.0, 0.0, 961.0], [1836.0, 10344.0, 0.0, 962.0], [1840.0, 10345.0, 0.0, 963.0], [2442.0, 10266.0, 0.0, 21.0], [4441.0, 9321.0, 0.0, 4.0], [1841.0, 10346.0, 0.0, 964.0], [1844.0, 10349.0, 0.0, 965.0], [1846.0, 10350.0, 0.0, 966.0], [1853.0, 10336.0, 0.0, 84.0], [1848.0, 10351.0, 0.0, 967.0], [1852.0, 10337.0, 0.0, 107.0], [1849.0, 10353.0, 0.0, 968.0], [1850.0, 10355.0, 0.0, 969.0], [1854.0, 10356.0, 0.0, 970.0], [1947.0, 10332.0, 0.0, 35.0], [1884.0, 10354.0, 0.0, 108.0], [1881.0, 10352.0, 0.0, 85.0], [1855.0, 10357.0, 0.0, 971.0], [1856.0, 10361.0, 0.0, 972.0], [1857.0, 10362.0, 0.0, 973.0], [1860.0, 10363.0, 0.0, 974.0], [1858.0, 2230.0, 0.0, 2.0], [2523.0, 4018.0, 0.0, 2.0], [2514.0, 10228.0, 0.0, 9.0], [2715.0, 10367.0, 0.0, 10.0], [2848.0, 10368.0, 0.0, 11.0], [2852.0, 10369.0, 0.0, 12.0], [3491.0, 10370.0, 0.0, 13.0], [3780.0, 10371.0, 0.0, 14.0], [3825.0, 10372.0, 0.0, 15.0], [4021.0, 10373.0, 0.0, 16.0], [4460.0, 10374.0, 0.0, 17.0], [5489.0, 10375.0, 0.0, 18.0], [6919.0, 10376.0, 0.0, 19.0], [7006.0, 10377.0, 0.0, 20.0], [7163.0, 10378.0, 0.0, 21.0], [7680.0, 10379.0, 0.0, 22.0], [3870.0, 10110.0, 0.0, 3.0], [4558.0, 10381.0, 0.0, 4.0], [6923.0, 10382.0, 0.0, 5.0], [4745.0, 9893.0, 0.0, 3.0], [5887.0, 10384.0, 0.0, 4.0], [6899.0, 10385.0, 0.0, 5.0], [2660.0, 3571.0, 0.0, 2.0], [4646.0, 10387.0, 0.0, 3.0], [7601.0, 10388.0, 0.0, 4.0], [2236.0, 10184.0, 0.0, 4.0], [2265.0, 10390.0, 0.0, 5.0], [2352.0, 10391.0, 0.0, 6.0], [2540.0, 10392.0, 0.0, 7.0], [3286.0, 10393.0, 0.0, 8.0], [3334.0, 10394.0, 0.0, 9.0], [3753.0, 10395.0, 0.0, 10.0], [4049.0, 10396.0, 0.0, 11.0], [4141.0, 10397.0, 0.0, 12.0], [4530.0, 10398.0, 0.0, 13.0], [5628.0, 10399.0, 0.0, 14.0], [5977.0, 10400.0, 0.0, 15.0], [6202.0, 10401.0, 0.0, 16.0], [6240.0, 10402.0, 0.0, 17.0], [6244.0, 10403.0, 0.0, 18.0], [6477.0, 10404.0, 0.0, 19.0], [6584.0, 10405.0, 0.0, 20.0], [6789.0, 10406.0, 0.0, 21.0], [7498.0, 10407.0, 0.0, 22.0], [2015.0, 5039.0, 0.0, 2.0], [6153.0, 10409.0, 0.0, 3.0], [6611.0, 10410.0, 0.0, 4.0], [6932.0, 10411.0, 0.0, 5.0], [1862.0, 10364.0, 0.0, 975.0], [1866.0, 10413.0, 0.0, 976.0], [1900.0, 10309.0, 0.0, 23.0], [1867.0, 10414.0, 0.0, 977.0], [1868.0, 10416.0, 0.0, 978.0], [1869.0, 10417.0, 0.0, 979.0], [1870.0, 10418.0, 0.0, 980.0], [1871.0, 10419.0, 0.0, 981.0], [1872.0, 10420.0, 0.0, 982.0], [1873.0, 10421.0, 0.0, 983.0], [1875.0, 10422.0, 0.0, 984.0], [1874.0, 2871.0, 0.0, 2.0], [1876.0, 10423.0, 0.0, 985.0], [1877.0, 10425.0, 0.0, 986.0], [1879.0, 10426.0, 0.0, 987.0], [1882.0, 10427.0, 0.0, 988.0], [1895.0, 10360.0, 0.0, 86.0], [1883.0, 10428.0, 0.0, 989.0], [1887.0, 10430.0, 0.0, 990.0], [1951.0, 10359.0, 0.0, 109.0], [2512.0, 9966.0, 0.0, 8.0], [1888.0, 10431.0, 0.0, 991.0], [1889.0, 10434.0, 0.0, 992.0], [1891.0, 10435.0, 0.0, 993.0], [1893.0, 10436.0, 0.0, 994.0], [1894.0, 10437.0, 0.0, 995.0], [1896.0, 10438.0, 0.0, 996.0], [1899.0, 10429.0, 0.0, 87.0], [1897.0, 10439.0, 0.0, 997.0], [1903.0, 10441.0, 0.0, 998.0], [1904.0, 10440.0, 0.0, 88.0], [2017.0, 10415.0, 0.0, 24.0], [1902.0, 3202.0, 0.0, 2.0], [1906.0, 10442.0, 0.0, 999.0], [1930.0, 10443.0, 0.0, 89.0], [1907.0, 10446.0, 0.0, 1000.0], [1908.0, 10448.0, 0.0, 1001.0], [1912.0, 10449.0, 0.0, 1002.0], [1913.0, 10450.0, 0.0, 1003.0], [1914.0, 10451.0, 0.0, 1004.0], [1915.0, 10452.0, 0.0, 1005.0], [1916.0, 10453.0, 0.0, 1006.0], [1917.0, 10454.0, 0.0, 1007.0], [1918.0, 10455.0, 0.0, 1008.0], [1919.0, 10456.0, 0.0, 1009.0], [1924.0, 10457.0, 0.0, 1010.0], [1982.0, 10171.0, 0.0, 20.0], [1926.0, 10458.0, 0.0, 1011.0], [1927.0, 10460.0, 0.0, 1012.0], [1928.0, 10461.0, 0.0, 1013.0], [1929.0, 10462.0, 0.0, 1014.0], [1931.0, 10463.0, 0.0, 1015.0], [1932.0, 10447.0, 0.0, 90.0], [1934.0, 10464.0, 0.0, 1016.0], [1943.0, 10465.0, 0.0, 91.0], [1935.0, 10466.0, 0.0, 1017.0], [1937.0, 10468.0, 0.0, 1018.0], [2144.0, 10326.0, 0.0, 11.0], [1938.0, 10469.0, 0.0, 1019.0], [1939.0, 10471.0, 0.0, 1020.0], [1940.0, 10472.0, 0.0, 1021.0], [1941.0, 10473.0, 0.0, 1022.0], [1942.0, 10474.0, 0.0, 1023.0], [1944.0, 10475.0, 0.0, 1024.0], [1952.0, 10467.0, 0.0, 92.0], [1945.0, 10476.0, 0.0, 1025.0], [1950.0, 10478.0, 0.0, 1026.0], [1971.0, 10358.0, 0.0, 36.0], [1953.0, 10479.0, 0.0, 1027.0], [1969.0, 10432.0, 0.0, 110.0], [1955.0, 10477.0, 0.0, 93.0], [1954.0, 10481.0, 0.0, 1028.0], [1956.0, 10484.0, 0.0, 1029.0], [1957.0, 10483.0, 0.0, 94.0], [1958.0, 10485.0, 0.0, 1030.0], [1960.0, 10486.0, 0.0, 95.0], [1959.0, 10487.0, 0.0, 1031.0], [1962.0, 10489.0, 0.0, 1032.0], [1965.0, 10488.0, 0.0, 96.0], [3827.0, 4394.0, 0.0, 2.0], [4606.0, 10492.0, 0.0, 3.0], [5293.0, 5636.0, 0.0, 2.0], [7398.0, 10494.0, 0.0, 3.0], [2661.0, 10270.0, 0.0, 8.0], [2858.0, 10496.0, 0.0, 9.0], [3127.0, 10497.0, 0.0, 10.0], [3215.0, 10498.0, 0.0, 11.0], [3476.0, 10499.0, 0.0, 12.0], [4050.0, 10500.0, 0.0, 13.0], [4078.0, 10501.0, 0.0, 14.0], [4244.0, 10502.0, 0.0, 15.0], [4323.0, 10503.0, 0.0, 16.0], [4440.0, 10504.0, 0.0, 17.0], [5539.0, 10505.0, 0.0, 18.0], [5578.0, 10506.0, 0.0, 19.0], [5657.0, 10507.0, 0.0, 20.0], [5914.0, 10508.0, 0.0, 21.0], [6052.0, 10509.0, 0.0, 22.0], [6420.0, 10510.0, 0.0, 23.0], [6561.0, 10511.0, 0.0, 24.0], [7388.0, 10512.0, 0.0, 25.0], [1963.0, 10490.0, 0.0, 1033.0], [1964.0, 10514.0, 0.0, 1034.0], [1966.0, 10515.0, 0.0, 1035.0], [2006.0, 10491.0, 0.0, 97.0], [1967.0, 10516.0, 0.0, 1036.0], [1968.0, 10518.0, 0.0, 1037.0], [1970.0, 10519.0, 0.0, 1038.0], [1984.0, 10482.0, 0.0, 111.0], [1973.0, 10520.0, 0.0, 1039.0], [1979.0, 10480.0, 0.0, 37.0], [1972.0, 3424.0, 0.0, 2.0], [1974.0, 10522.0, 0.0, 1040.0], [1975.0, 10525.0, 0.0, 1041.0], [1976.0, 10526.0, 0.0, 1042.0], [1977.0, 10527.0, 0.0, 1043.0], [1980.0, 10528.0, 0.0, 1044.0], [2028.0, 10523.0, 0.0, 38.0], [1981.0, 10529.0, 0.0, 1045.0], [1983.0, 10531.0, 0.0, 1046.0], [2039.0, 10459.0, 0.0, 21.0], [1986.0, 10532.0, 0.0, 1047.0], [1985.0, 10521.0, 0.0, 112.0], [1998.0, 10535.0, 0.0, 113.0], [1988.0, 10534.0, 0.0, 1048.0], [1989.0, 10537.0, 0.0, 1049.0], [1992.0, 10538.0, 0.0, 1050.0], [2038.0, 10444.0, 0.0, 25.0], [2116.0, 10540.0, 0.0, 26.0], [2399.0, 10541.0, 0.0, 27.0], [2419.0, 10542.0, 0.0, 28.0], [2538.0, 10543.0, 0.0, 29.0], [2563.0, 10544.0, 0.0, 30.0], [2595.0, 10545.0, 0.0, 31.0], [2687.0, 10546.0, 0.0, 32.0], [2697.0, 10547.0, 0.0, 33.0], [2930.0, 10548.0, 0.0, 34.0], [3004.0, 10549.0, 0.0, 35.0], [3037.0, 10550.0, 0.0, 36.0], [3091.0, 10551.0, 0.0, 37.0], [3137.0, 10552.0, 0.0, 38.0], [3171.0, 10553.0, 0.0, 39.0], [3216.0, 10554.0, 0.0, 40.0], [3252.0, 10555.0, 0.0, 41.0], [3269.0, 10556.0, 0.0, 42.0], [3273.0, 10557.0, 0.0, 43.0], [3295.0, 10558.0, 0.0, 44.0], [3385.0, 10559.0, 0.0, 45.0], [3387.0, 10560.0, 0.0, 46.0], [3404.0, 10561.0, 0.0, 47.0], [3466.0, 10562.0, 0.0, 48.0], [3559.0, 10563.0, 0.0, 49.0], [3592.0, 10564.0, 0.0, 50.0], [3609.0, 10565.0, 0.0, 51.0], [3649.0, 10566.0, 0.0, 52.0], [3819.0, 10567.0, 0.0, 53.0], [3987.0, 10568.0, 0.0, 54.0], [4091.0, 10569.0, 0.0, 55.0], [4113.0, 10570.0, 0.0, 56.0], [4153.0, 10571.0, 0.0, 57.0], [4169.0, 10572.0, 0.0, 58.0], [4254.0, 10573.0, 0.0, 59.0], [4266.0, 10574.0, 0.0, 60.0], [4277.0, 10575.0, 0.0, 61.0], [4375.0, 10576.0, 0.0, 62.0], [4424.0, 10577.0, 0.0, 63.0], [4566.0, 10578.0, 0.0, 64.0], [4730.0, 10579.0, 0.0, 65.0], [4790.0, 10580.0, 0.0, 66.0], [4888.0, 10581.0, 0.0, 67.0], [5018.0, 10582.0, 0.0, 68.0], [5099.0, 10583.0, 0.0, 69.0], [5126.0, 10584.0, 0.0, 70.0], [5193.0, 10585.0, 0.0, 71.0], [5203.0, 10586.0, 0.0, 72.0], [5288.0, 10587.0, 0.0, 73.0], [5312.0, 10588.0, 0.0, 74.0], [5322.0, 10589.0, 0.0, 75.0], [5369.0, 10590.0, 0.0, 76.0], [5425.0, 10591.0, 0.0, 77.0], [5439.0, 10592.0, 0.0, 78.0], [5547.0, 10593.0, 0.0, 79.0], [5643.0, 10594.0, 0.0, 80.0], [5721.0, 10595.0, 0.0, 81.0], [5727.0, 10596.0, 0.0, 82.0], [5796.0, 10597.0, 0.0, 83.0], [5840.0, 10598.0, 0.0, 84.0], [5966.0, 10599.0, 0.0, 85.0], [5970.0, 10600.0, 0.0, 86.0], [5990.0, 10601.0, 0.0, 87.0], [6098.0, 10602.0, 0.0, 88.0], [6160.0, 10603.0, 0.0, 89.0], [6187.0, 10604.0, 0.0, 90.0], [6217.0, 10605.0, 0.0, 91.0], [6295.0, 10606.0, 0.0, 92.0], [6333.0, 10607.0, 0.0, 93.0], [6424.0, 10608.0, 0.0, 94.0], [6433.0, 10609.0, 0.0, 95.0], [6619.0, 10610.0, 0.0, 96.0], [6744.0, 10611.0, 0.0, 97.0], [6806.0, 10612.0, 0.0, 98.0], [7165.0, 10613.0, 0.0, 99.0], [7183.0, 10614.0, 0.0, 100.0], [7360.0, 10615.0, 0.0, 101.0], [7361.0, 10616.0, 0.0, 102.0], [7365.0, 10617.0, 0.0, 103.0], [7447.0, 10618.0, 0.0, 104.0], [7640.0, 10619.0, 0.0, 105.0], [7677.0, 10620.0, 0.0, 106.0], [7775.0, 10621.0, 0.0, 107.0], [4161.0, 6123.0, 0.0, 2.0], [3353.0, 10241.0, 0.0, 3.0], [3882.0, 10624.0, 0.0, 4.0], [6340.0, 10625.0, 0.0, 5.0], [1995.0, 10539.0, 0.0, 1051.0], [1997.0, 10627.0, 0.0, 1052.0], [6221.0, 9673.0, 0.0, 3.0], [6952.0, 10629.0, 0.0, 4.0], [1999.0, 10628.0, 0.0, 1053.0], [2083.0, 10536.0, 0.0, 114.0], [2000.0, 10631.0, 0.0, 1054.0], [2003.0, 10633.0, 0.0, 1055.0], [2004.0, 10634.0, 0.0, 1056.0], [2005.0, 10635.0, 0.0, 1057.0], [2007.0, 10636.0, 0.0, 1058.0], [2012.0, 10517.0, 0.0, 98.0], [2009.0, 10637.0, 0.0, 1059.0], [4896.0, 10286.0, 0.0, 5.0], [2011.0, 10639.0, 0.0, 1060.0], [2013.0, 10641.0, 0.0, 1061.0], [2056.0, 10638.0, 0.0, 99.0], [2022.0, 10642.0, 0.0, 1062.0], [2454.0, 8754.0, 0.0, 3.0], [2197.0, 10159.0, 0.0, 5.0], [4305.0, 9256.0, 0.0, 4.0], [3150.0, 10099.0, 0.0, 6.0], [3179.0, 10648.0, 0.0, 7.0], [3240.0, 10649.0, 0.0, 8.0], [3696.0, 10650.0, 0.0, 9.0], [4104.0, 10651.0, 0.0, 10.0], [4452.0, 10652.0, 0.0, 11.0], [4759.0, 10653.0, 0.0, 12.0], [4821.0, 10654.0, 0.0, 13.0], [4946.0, 10655.0, 0.0, 14.0], [5084.0, 10656.0, 0.0, 15.0], [5235.0, 10657.0, 0.0, 16.0], [5788.0, 10658.0, 0.0, 17.0], [6046.0, 10659.0, 0.0, 18.0], [6635.0, 10660.0, 0.0, 19.0], [7788.0, 10661.0, 0.0, 20.0], [4009.0, 9945.0, 0.0, 3.0], [5915.0, 10663.0, 0.0, 4.0], [3265.0, 9972.0, 0.0, 5.0], [4748.0, 10665.0, 0.0, 6.0], [5383.0, 10666.0, 0.0, 7.0], [4195.0, 6881.0, 0.0, 2.0], [5621.0, 9129.0, 0.0, 3.0], [7112.0, 10669.0, 0.0, 4.0], [4723.0, 10101.0, 0.0, 3.0], [2202.0, 2398.0, 0.0, 2.0], [6522.0, 10672.0, 0.0, 3.0], [2499.0, 10325.0, 0.0, 15.0], [2582.0, 10674.0, 0.0, 16.0], [2634.0, 10675.0, 0.0, 17.0], [2873.0, 10676.0, 0.0, 18.0], [3169.0, 10677.0, 0.0, 19.0], [3242.0, 10678.0, 0.0, 20.0], [3245.0, 10679.0, 0.0, 21.0], [3381.0, 10680.0, 0.0, 22.0], [3400.0, 10681.0, 0.0, 23.0], [3532.0, 10682.0, 0.0, 24.0], [3694.0, 10683.0, 0.0, 25.0], [3712.0, 10684.0, 0.0, 26.0], [3754.0, 10685.0, 0.0, 27.0], [4017.0, 10686.0, 0.0, 28.0], [4341.0, 10687.0, 0.0, 29.0], [4374.0, 10688.0, 0.0, 30.0], [5407.0, 10689.0, 0.0, 31.0], [5971.0, 10690.0, 0.0, 32.0], [6350.0, 10691.0, 0.0, 33.0], [6537.0, 10692.0, 0.0, 34.0], [6578.0, 10693.0, 0.0, 35.0], [6983.0, 10694.0, 0.0, 36.0], [7420.0, 10695.0, 0.0, 37.0], [7534.0, 10696.0, 0.0, 38.0], [7553.0, 10697.0, 0.0, 39.0], [7651.0, 10698.0, 0.0, 40.0], [7738.0, 10699.0, 0.0, 41.0], [2606.0, 10433.0, 0.0, 9.0], [2771.0, 10701.0, 0.0, 10.0], [3337.0, 10702.0, 0.0, 11.0], [3605.0, 10703.0, 0.0, 12.0], [3832.0, 10704.0, 0.0, 13.0], [3955.0, 10705.0, 0.0, 14.0], [4499.0, 10706.0, 0.0, 15.0], [4659.0, 10707.0, 0.0, 16.0], [5003.0, 10708.0, 0.0, 17.0], [5672.0, 10709.0, 0.0, 18.0], [6720.0, 10710.0, 0.0, 19.0], [6921.0, 10711.0, 0.0, 20.0], [7797.0, 10712.0, 0.0, 21.0], [5709.0, 6817.0, 0.0, 2.0], [2658.0, 10138.0, 0.0, 8.0], [3134.0, 10715.0, 0.0, 9.0], [5395.0, 10716.0, 0.0, 10.0], [6113.0, 10717.0, 0.0, 11.0], [6589.0, 10718.0, 0.0, 12.0], [7009.0, 10719.0, 0.0, 13.0], [7269.0, 10720.0, 0.0, 14.0], [3357.0, 3566.0, 0.0, 2.0], [3572.0, 10722.0, 0.0, 3.0], [4361.0, 10723.0, 0.0, 4.0], [5305.0, 10724.0, 0.0, 5.0], [6148.0, 10725.0, 0.0, 6.0], [6749.0, 10726.0, 0.0, 7.0], [7305.0, 10727.0, 0.0, 8.0], [2534.0, 10365.0, 0.0, 3.0], [2765.0, 10729.0, 0.0, 4.0], [4098.0, 10730.0, 0.0, 5.0], [5021.0, 10731.0, 0.0, 6.0], [6055.0, 10732.0, 0.0, 7.0], [7201.0, 10733.0, 0.0, 8.0], [7357.0, 10734.0, 0.0, 9.0], [7768.0, 10735.0, 0.0, 10.0], [6981.0, 7734.0, 0.0, 2.0], [2136.0, 10037.0, 0.0, 6.0], [3195.0, 10738.0, 0.0, 7.0], [3342.0, 10739.0, 0.0, 8.0], [3414.0, 10740.0, 0.0, 9.0], [4700.0, 10741.0, 0.0, 10.0], [5701.0, 10742.0, 0.0, 11.0], [5934.0, 10743.0, 0.0, 12.0], [6251.0, 10744.0, 0.0, 13.0], [6377.0, 10745.0, 0.0, 14.0], [6713.0, 10746.0, 0.0, 15.0], [6805.0, 10747.0, 0.0, 16.0], [7158.0, 10748.0, 0.0, 17.0], [7250.0, 10749.0, 0.0, 18.0], [3970.0, 9861.0, 0.0, 4.0], [4135.0, 10751.0, 0.0, 5.0], [4149.0, 10752.0, 0.0, 6.0], [5177.0, 10753.0, 0.0, 7.0], [6372.0, 10754.0, 0.0, 8.0], [6776.0, 10755.0, 0.0, 9.0], [7197.0, 10756.0, 0.0, 10.0], [3223.0, 4697.0, 0.0, 2.0], [3021.0, 4121.0, 0.0, 2.0], [2628.0, 4272.0, 0.0, 2.0], [5338.0, 10760.0, 0.0, 3.0], [5850.0, 10761.0, 0.0, 4.0], [6914.0, 10762.0, 0.0, 5.0], [3382.0, 4853.0, 0.0, 2.0], [5921.0, 10764.0, 0.0, 3.0], [2657.0, 3676.0, 0.0, 2.0], [2578.0, 6604.0, 0.0, 2.0], [5795.0, 6600.0, 0.0, 2.0], [3829.0, 4538.0, 0.0, 2.0], [6112.0, 10769.0, 0.0, 3.0], [3967.0, 6265.0, 0.0, 2.0], [3131.0, 9951.0, 0.0, 7.0], [3374.0, 10772.0, 0.0, 8.0], [3732.0, 10773.0, 0.0, 9.0], [4546.0, 10774.0, 0.0, 10.0], [5019.0, 10775.0, 0.0, 11.0], [5801.0, 10776.0, 0.0, 12.0], [5826.0, 10777.0, 0.0, 13.0], [6169.0, 10778.0, 0.0, 14.0], [6492.0, 10779.0, 0.0, 15.0], [6504.0, 10780.0, 0.0, 16.0], [6624.0, 10781.0, 0.0, 17.0], [6629.0, 10782.0, 0.0, 18.0], [6555.0, 6582.0, 0.0, 2.0], [4643.0, 9203.0, 0.0, 3.0], [7570.0, 10785.0, 0.0, 4.0], [7769.0, 10786.0, 0.0, 5.0], [5925.0, 6383.0, 0.0, 2.0], [6716.0, 7920.0, 0.0, 3.0], [3170.0, 9967.0, 0.0, 3.0], [6824.0, 10790.0, 0.0, 4.0], [2951.0, 10646.0, 0.0, 6.0], [2997.0, 10792.0, 0.0, 7.0], [3457.0, 10793.0, 0.0, 8.0], [4120.0, 10794.0, 0.0, 9.0], [4261.0, 10795.0, 0.0, 10.0], [4934.0, 10796.0, 0.0, 11.0], [6001.0, 10797.0, 0.0, 12.0], [6464.0, 10798.0, 0.0, 13.0], [3317.0, 10424.0, 0.0, 3.0], [3539.0, 10800.0, 0.0, 4.0], [4535.0, 10801.0, 0.0, 5.0], [4560.0, 10802.0, 0.0, 6.0], [5048.0, 10803.0, 0.0, 7.0], [4436.0, 6603.0, 0.0, 2.0], [4022.0, 5640.0, 0.0, 2.0], [2629.0, 10645.0, 0.0, 4.0], [2769.0, 10807.0, 0.0, 5.0], [2806.0, 10808.0, 0.0, 6.0], [2899.0, 10809.0, 0.0, 7.0], [3887.0, 10810.0, 0.0, 8.0], [4023.0, 10811.0, 0.0, 9.0], [5597.0, 10812.0, 0.0, 10.0], [6927.0, 10813.0, 0.0, 11.0], [2168.0, 3830.0, 0.0, 2.0], [5105.0, 6373.0, 0.0, 2.0], [3177.0, 3483.0, 0.0, 2.0], [3773.0, 10817.0, 0.0, 3.0], [4612.0, 10818.0, 0.0, 4.0], [5036.0, 5081.0, 0.0, 2.0], [5811.0, 7658.0, 0.0, 2.0], [2515.0, 6147.0, 0.0, 2.0], [3929.0, 10445.0, 0.0, 3.0], [5261.0, 9433.0, 0.0, 3.0], [6245.0, 10824.0, 0.0, 4.0], [7059.0, 7642.0, 0.0, 2.0], [4805.0, 10524.0, 0.0, 3.0], [5181.0, 10827.0, 0.0, 4.0], [7633.0, 10828.0, 0.0, 5.0], [7683.0, 10829.0, 0.0, 6.0], [4223.0, 9373.0, 0.0, 3.0], [5376.0, 10831.0, 0.0, 4.0], [6441.0, 10832.0, 0.0, 5.0], [2088.0, 7099.0, 0.0, 2.0], [2373.0, 4527.0, 0.0, 2.0], [5876.0, 10835.0, 0.0, 3.0], [3758.0, 6028.0, 0.0, 2.0], [4758.0, 10314.0, 0.0, 4.0], [6218.0, 10838.0, 0.0, 5.0], [2329.0, 4754.0, 0.0, 2.0], [4876.0, 10840.0, 0.0, 3.0], [6605.0, 10841.0, 0.0, 4.0], [3196.0, 5062.0, 0.0, 2.0], [2360.0, 6396.0, 0.0, 2.0], [7646.0, 10127.0, 0.0, 4.0], [2708.0, 5473.0, 0.0, 2.0], [7732.0, 10846.0, 0.0, 3.0], [4958.0, 9962.0, 0.0, 3.0], [3090.0, 3161.0, 0.0, 2.0], [5117.0, 6627.0, 0.0, 2.0], [6775.0, 10850.0, 0.0, 3.0], [7558.0, 10851.0, 0.0, 4.0], [5706.0, 5922.0, 0.0, 2.0], [4204.0, 9720.0, 0.0, 4.0], [5725.0, 10854.0, 0.0, 5.0], [6647.0, 10855.0, 0.0, 6.0], [6750.0, 10856.0, 0.0, 7.0], [6862.0, 10857.0, 0.0, 8.0], [3494.0, 9605.0, 0.0, 3.0], [4226.0, 10859.0, 0.0, 4.0], [4689.0, 10860.0, 0.0, 5.0], [4842.0, 10861.0, 0.0, 6.0], [4907.0, 10862.0, 0.0, 7.0], [5284.0, 10863.0, 0.0, 8.0], [5333.0, 10864.0, 0.0, 9.0], [5391.0, 10865.0, 0.0, 10.0], [5612.0, 10866.0, 0.0, 11.0], [5626.0, 10867.0, 0.0, 12.0], [6313.0, 10868.0, 0.0, 13.0], [6585.0, 10869.0, 0.0, 14.0], [3979.0, 5188.0, 0.0, 2.0], [5584.0, 10871.0, 0.0, 3.0], [4956.0, 7467.0, 0.0, 2.0], [2363.0, 3163.0, 0.0, 2.0], [3172.0, 10874.0, 0.0, 3.0], [4388.0, 10875.0, 0.0, 4.0], [5132.0, 10876.0, 0.0, 5.0], [5443.0, 10877.0, 0.0, 6.0], [6359.0, 10878.0, 0.0, 7.0], [6727.0, 10879.0, 0.0, 8.0], [7068.0, 10880.0, 0.0, 9.0], [3730.0, 4070.0, 0.0, 2.0], [4385.0, 10882.0, 0.0, 3.0], [5133.0, 10883.0, 0.0, 4.0], [3239.0, 9441.0, 0.0, 4.0], [3783.0, 10885.0, 0.0, 5.0], [6462.0, 10886.0, 0.0, 6.0], [3272.0, 3428.0, 0.0, 2.0], [2669.0, 2948.0, 0.0, 2.0], [3015.0, 10889.0, 0.0, 3.0], [4197.0, 10890.0, 0.0, 4.0], [4770.0, 10891.0, 0.0, 5.0], [5649.0, 10892.0, 0.0, 6.0], [5717.0, 10893.0, 0.0, 7.0], [5962.0, 10894.0, 0.0, 8.0], [6042.0, 10895.0, 0.0, 9.0], [6371.0, 10896.0, 0.0, 10.0], [2998.0, 10211.0, 0.0, 5.0], [4000.0, 10898.0, 0.0, 6.0], [4140.0, 10899.0, 0.0, 7.0], [5311.0, 10900.0, 0.0, 8.0], [5927.0, 10901.0, 0.0, 9.0], [5961.0, 10902.0, 0.0, 10.0], [6571.0, 10903.0, 0.0, 11.0], [6886.0, 10904.0, 0.0, 12.0], [7684.0, 10905.0, 0.0, 13.0], [7751.0, 10906.0, 0.0, 14.0], [5162.0, 10280.0, 0.0, 6.0], [7263.0, 10908.0, 0.0, 7.0], [7741.0, 10909.0, 0.0, 8.0], [2079.0, 10530.0, 0.0, 39.0], [2090.0, 10911.0, 0.0, 40.0], [2243.0, 10912.0, 0.0, 41.0], [2351.0, 10913.0, 0.0, 42.0], [2371.0, 10914.0, 0.0, 43.0], [2635.0, 10915.0, 0.0, 44.0], [2644.0, 10916.0, 0.0, 45.0], [2713.0, 10917.0, 0.0, 46.0], [2730.0, 10918.0, 0.0, 47.0], [2846.0, 10919.0, 0.0, 48.0], [2867.0, 10920.0, 0.0, 49.0], [2875.0, 10921.0, 0.0, 50.0], [2890.0, 10922.0, 0.0, 51.0], [2983.0, 10923.0, 0.0, 52.0], [3153.0, 10924.0, 0.0, 53.0], [3162.0, 10925.0, 0.0, 54.0], [3209.0, 10926.0, 0.0, 55.0], [3270.0, 10927.0, 0.0, 56.0], [3470.0, 10928.0, 0.0, 57.0], [3521.0, 10929.0, 0.0, 58.0], [3596.0, 10930.0, 0.0, 59.0], [3611.0, 10931.0, 0.0, 60.0], [3643.0, 10932.0, 0.0, 61.0], [3666.0, 10933.0, 0.0, 62.0], [3714.0, 10934.0, 0.0, 63.0], [4119.0, 10935.0, 0.0, 64.0], [4148.0, 10936.0, 0.0, 65.0], [4258.0, 10937.0, 0.0, 66.0], [4262.0, 10938.0, 0.0, 67.0], [4281.0, 10939.0, 0.0, 68.0], [4287.0, 10940.0, 0.0, 69.0], [4329.0, 10941.0, 0.0, 70.0], [4333.0, 10942.0, 0.0, 71.0], [4380.0, 10943.0, 0.0, 72.0], [4397.0, 10944.0, 0.0, 73.0], [4402.0, 10945.0, 0.0, 74.0], [4408.0, 10946.0, 0.0, 75.0], [4582.0, 10947.0, 0.0, 76.0], [4610.0, 10948.0, 0.0, 77.0], [4622.0, 10949.0, 0.0, 78.0], [4703.0, 10950.0, 0.0, 79.0], [4738.0, 10951.0, 0.0, 80.0], [4800.0, 10952.0, 0.0, 81.0], [4822.0, 10953.0, 0.0, 82.0], [4901.0, 10954.0, 0.0, 83.0], [4963.0, 10955.0, 0.0, 84.0], [5111.0, 10956.0, 0.0, 85.0], [5184.0, 10957.0, 0.0, 86.0], [5337.0, 10958.0, 0.0, 87.0], [5346.0, 10959.0, 0.0, 88.0], [5695.0, 10960.0, 0.0, 89.0], [5808.0, 10961.0, 0.0, 90.0], [6126.0, 10962.0, 0.0, 91.0], [6151.0, 10963.0, 0.0, 92.0], [6239.0, 10964.0, 0.0, 93.0], [6242.0, 10965.0, 0.0, 94.0], [6311.0, 10966.0, 0.0, 95.0], [6382.0, 10967.0, 0.0, 96.0], [6488.0, 10968.0, 0.0, 97.0], [6510.0, 10969.0, 0.0, 98.0], [6534.0, 10970.0, 0.0, 99.0], [6742.0, 10971.0, 0.0, 100.0], [7171.0, 10972.0, 0.0, 101.0], [7215.0, 10973.0, 0.0, 102.0], [7551.0, 10974.0, 0.0, 103.0], [7655.0, 10975.0, 0.0, 104.0], [7660.0, 10976.0, 0.0, 105.0], [7799.0, 10977.0, 0.0, 106.0], [2024.0, 10644.0, 0.0, 1063.0], [2026.0, 10979.0, 0.0, 1064.0], [2027.0, 10980.0, 0.0, 1065.0], [2029.0, 10981.0, 0.0, 1066.0], [2031.0, 10982.0, 0.0, 1067.0], [2032.0, 10983.0, 0.0, 1068.0], [2033.0, 10984.0, 0.0, 1069.0], [2034.0, 10985.0, 0.0, 1070.0], [2035.0, 10986.0, 0.0, 1071.0], [2036.0, 10987.0, 0.0, 1072.0], [2037.0, 10988.0, 0.0, 1073.0], [2041.0, 10989.0, 0.0, 1074.0], [2043.0, 10990.0, 0.0, 1075.0], [2047.0, 10991.0, 0.0, 1076.0], [2048.0, 10992.0, 0.0, 1077.0], [2050.0, 10993.0, 0.0, 1078.0], [2051.0, 10994.0, 0.0, 1079.0], [2053.0, 10995.0, 0.0, 1080.0], [2057.0, 10996.0, 0.0, 1081.0], [2058.0, 10997.0, 0.0, 1082.0], [2059.0, 10998.0, 0.0, 1083.0], [2062.0, 10999.0, 0.0, 1084.0], [2065.0, 11000.0, 0.0, 1085.0], [2066.0, 11001.0, 0.0, 1086.0], [2068.0, 11002.0, 0.0, 1087.0], [2069.0, 11003.0, 0.0, 1088.0], [2070.0, 11004.0, 0.0, 1089.0], [2071.0, 11005.0, 0.0, 1090.0], [2072.0, 11006.0, 0.0, 1091.0], [2075.0, 11007.0, 0.0, 1092.0], [2076.0, 11008.0, 0.0, 1093.0], [2077.0, 11009.0, 0.0, 1094.0], [2078.0, 11010.0, 0.0, 1095.0], [2080.0, 11011.0, 0.0, 1096.0], [2082.0, 11012.0, 0.0, 1097.0], [2085.0, 11013.0, 0.0, 1098.0], [2087.0, 11014.0, 0.0, 1099.0], [2093.0, 11015.0, 0.0, 1100.0], [2095.0, 11016.0, 0.0, 1101.0], [2096.0, 11017.0, 0.0, 1102.0], [2097.0, 11018.0, 0.0, 1103.0], [2098.0, 11019.0, 0.0, 1104.0], [2100.0, 11020.0, 0.0, 1105.0], [2102.0, 11021.0, 0.0, 1106.0], [2104.0, 11022.0, 0.0, 1107.0], [2107.0, 11023.0, 0.0, 1108.0], [2110.0, 11024.0, 0.0, 1109.0], [2113.0, 11025.0, 0.0, 1110.0], [2114.0, 11026.0, 0.0, 1111.0], [2117.0, 11027.0, 0.0, 1112.0], [2118.0, 11028.0, 0.0, 1113.0], [2120.0, 11029.0, 0.0, 1114.0], [2121.0, 11030.0, 0.0, 1115.0], [2123.0, 11031.0, 0.0, 1116.0], [2124.0, 11032.0, 0.0, 1117.0], [2125.0, 11033.0, 0.0, 1118.0], [2127.0, 11034.0, 0.0, 1119.0], [2135.0, 11035.0, 0.0, 1120.0], [2137.0, 11036.0, 0.0, 1121.0], [2140.0, 11037.0, 0.0, 1122.0], [2141.0, 11038.0, 0.0, 1123.0], [2146.0, 11039.0, 0.0, 1124.0], [2152.0, 11040.0, 0.0, 1125.0], [2153.0, 11041.0, 0.0, 1126.0], [2158.0, 11042.0, 0.0, 1127.0], [2162.0, 11043.0, 0.0, 1128.0], [2164.0, 11044.0, 0.0, 1129.0], [2165.0, 11045.0, 0.0, 1130.0], [2171.0, 11046.0, 0.0, 1131.0], [2174.0, 11047.0, 0.0, 1132.0], [2176.0, 11048.0, 0.0, 1133.0], [2177.0, 11049.0, 0.0, 1134.0], [2178.0, 11050.0, 0.0, 1135.0], [2179.0, 11051.0, 0.0, 1136.0], [2180.0, 11052.0, 0.0, 1137.0], [2181.0, 11053.0, 0.0, 1138.0], [2182.0, 11054.0, 0.0, 1139.0], [2184.0, 11055.0, 0.0, 1140.0], [2185.0, 11056.0, 0.0, 1141.0], [2188.0, 11057.0, 0.0, 1142.0], [2190.0, 11058.0, 0.0, 1143.0], [2191.0, 11059.0, 0.0, 1144.0], [2192.0, 11060.0, 0.0, 1145.0], [2193.0, 11061.0, 0.0, 1146.0], [2194.0, 11062.0, 0.0, 1147.0], [2199.0, 11063.0, 0.0, 1148.0], [2205.0, 11064.0, 0.0, 1149.0], [2211.0, 11065.0, 0.0, 1150.0], [2212.0, 11066.0, 0.0, 1151.0], [2214.0, 11067.0, 0.0, 1152.0], [2216.0, 11068.0, 0.0, 1153.0], [2219.0, 11069.0, 0.0, 1154.0], [2220.0, 11070.0, 0.0, 1155.0], [2221.0, 11071.0, 0.0, 1156.0], [2222.0, 11072.0, 0.0, 1157.0], [2229.0, 11073.0, 0.0, 1158.0], [2231.0, 11074.0, 0.0, 1159.0], [2235.0, 11075.0, 0.0, 1160.0], [2237.0, 11076.0, 0.0, 1161.0], [2240.0, 11077.0, 0.0, 1162.0], [2241.0, 11078.0, 0.0, 1163.0], [2244.0, 11079.0, 0.0, 1164.0], [2246.0, 11080.0, 0.0, 1165.0], [2247.0, 11081.0, 0.0, 1166.0], [2248.0, 11082.0, 0.0, 1167.0], [2251.0, 11083.0, 0.0, 1168.0], [2253.0, 11084.0, 0.0, 1169.0], [2256.0, 11085.0, 0.0, 1170.0], [2258.0, 11086.0, 0.0, 1171.0], [2259.0, 11087.0, 0.0, 1172.0], [2262.0, 11088.0, 0.0, 1173.0], [2263.0, 11089.0, 0.0, 1174.0], [2269.0, 11090.0, 0.0, 1175.0], [2270.0, 11091.0, 0.0, 1176.0], [2271.0, 11092.0, 0.0, 1177.0], [2272.0, 11093.0, 0.0, 1178.0], [2275.0, 11094.0, 0.0, 1179.0], [2280.0, 11095.0, 0.0, 1180.0], [2281.0, 11096.0, 0.0, 1181.0], [2282.0, 11097.0, 0.0, 1182.0], [2283.0, 11098.0, 0.0, 1183.0], [2284.0, 11099.0, 0.0, 1184.0], [2285.0, 11100.0, 0.0, 1185.0], [2292.0, 11101.0, 0.0, 1186.0], [2293.0, 11102.0, 0.0, 1187.0], [2295.0, 11103.0, 0.0, 1188.0], [2296.0, 11104.0, 0.0, 1189.0], [2305.0, 11105.0, 0.0, 1190.0], [2306.0, 11106.0, 0.0, 1191.0], [2310.0, 11107.0, 0.0, 1192.0], [2312.0, 11108.0, 0.0, 1193.0], [2314.0, 11109.0, 0.0, 1194.0], [2318.0, 11110.0, 0.0, 1195.0], [2320.0, 11111.0, 0.0, 1196.0], [2322.0, 11112.0, 0.0, 1197.0], [2323.0, 11113.0, 0.0, 1198.0], [2324.0, 11114.0, 0.0, 1199.0], [2326.0, 11115.0, 0.0, 1200.0], [2327.0, 11116.0, 0.0, 1201.0], [2328.0, 11117.0, 0.0, 1202.0], [2333.0, 11118.0, 0.0, 1203.0], [2334.0, 11119.0, 0.0, 1204.0], [2338.0, 11120.0, 0.0, 1205.0], [2342.0, 11121.0, 0.0, 1206.0], [2343.0, 11122.0, 0.0, 1207.0], [2344.0, 11123.0, 0.0, 1208.0], [2345.0, 11124.0, 0.0, 1209.0], [2348.0, 11125.0, 0.0, 1210.0], [2353.0, 11126.0, 0.0, 1211.0], [2354.0, 11127.0, 0.0, 1212.0], [2356.0, 11128.0, 0.0, 1213.0], [2359.0, 11129.0, 0.0, 1214.0], [2368.0, 11130.0, 0.0, 1215.0], [2369.0, 11131.0, 0.0, 1216.0], [2370.0, 11132.0, 0.0, 1217.0], [2372.0, 11133.0, 0.0, 1218.0], [2374.0, 11134.0, 0.0, 1219.0], [2376.0, 11135.0, 0.0, 1220.0], [2378.0, 11136.0, 0.0, 1221.0], [2383.0, 11137.0, 0.0, 1222.0], [2384.0, 11138.0, 0.0, 1223.0], [2388.0, 11139.0, 0.0, 1224.0], [2389.0, 11140.0, 0.0, 1225.0], [2390.0, 11141.0, 0.0, 1226.0], [2391.0, 11142.0, 0.0, 1227.0], [2393.0, 11143.0, 0.0, 1228.0], [2394.0, 11144.0, 0.0, 1229.0], [2395.0, 11145.0, 0.0, 1230.0], [2401.0, 11146.0, 0.0, 1231.0], [2402.0, 11147.0, 0.0, 1232.0], [2403.0, 11148.0, 0.0, 1233.0], [2405.0, 11149.0, 0.0, 1234.0], [2406.0, 11150.0, 0.0, 1235.0], [2407.0, 11151.0, 0.0, 1236.0], [2408.0, 11152.0, 0.0, 1237.0], [2409.0, 11153.0, 0.0, 1238.0], [2411.0, 11154.0, 0.0, 1239.0], [2412.0, 11155.0, 0.0, 1240.0], [2413.0, 11156.0, 0.0, 1241.0], [2415.0, 11157.0, 0.0, 1242.0], [2416.0, 11158.0, 0.0, 1243.0], [2417.0, 11159.0, 0.0, 1244.0], [2421.0, 11160.0, 0.0, 1245.0], [2423.0, 11161.0, 0.0, 1246.0], [2424.0, 11162.0, 0.0, 1247.0], [2425.0, 11163.0, 0.0, 1248.0], [2427.0, 11164.0, 0.0, 1249.0], [2429.0, 11165.0, 0.0, 1250.0], [2431.0, 11166.0, 0.0, 1251.0], [2433.0, 11167.0, 0.0, 1252.0], [2434.0, 11168.0, 0.0, 1253.0], [2436.0, 11169.0, 0.0, 1254.0], [2438.0, 11170.0, 0.0, 1255.0], [2439.0, 11171.0, 0.0, 1256.0], [2440.0, 11172.0, 0.0, 1257.0], [2443.0, 11173.0, 0.0, 1258.0], [2447.0, 11174.0, 0.0, 1259.0], [2448.0, 11175.0, 0.0, 1260.0], [2450.0, 11176.0, 0.0, 1261.0], [2453.0, 11177.0, 0.0, 1262.0], [2455.0, 11178.0, 0.0, 1263.0], [2458.0, 11179.0, 0.0, 1264.0], [2460.0, 11180.0, 0.0, 1265.0], [2462.0, 11181.0, 0.0, 1266.0], [2463.0, 11182.0, 0.0, 1267.0], [2464.0, 11183.0, 0.0, 1268.0], [2465.0, 11184.0, 0.0, 1269.0], [2466.0, 11185.0, 0.0, 1270.0], [2468.0, 11186.0, 0.0, 1271.0], [2470.0, 11187.0, 0.0, 1272.0], [2473.0, 11188.0, 0.0, 1273.0], [2474.0, 11189.0, 0.0, 1274.0], [2475.0, 11190.0, 0.0, 1275.0], [2476.0, 11191.0, 0.0, 1276.0], [2479.0, 11192.0, 0.0, 1277.0], [2480.0, 11193.0, 0.0, 1278.0], [2481.0, 11194.0, 0.0, 1279.0], [2485.0, 11195.0, 0.0, 1280.0], [2491.0, 11196.0, 0.0, 1281.0], [2493.0, 11197.0, 0.0, 1282.0], [2494.0, 11198.0, 0.0, 1283.0], [2495.0, 11199.0, 0.0, 1284.0], [2497.0, 11200.0, 0.0, 1285.0], [2500.0, 11201.0, 0.0, 1286.0], [2501.0, 11202.0, 0.0, 1287.0], [2504.0, 11203.0, 0.0, 1288.0], [2506.0, 11204.0, 0.0, 1289.0], [2508.0, 11205.0, 0.0, 1290.0], [2511.0, 11206.0, 0.0, 1291.0], [2513.0, 11207.0, 0.0, 1292.0], [2516.0, 11208.0, 0.0, 1293.0], [2518.0, 11209.0, 0.0, 1294.0], [2519.0, 11210.0, 0.0, 1295.0], [2521.0, 11211.0, 0.0, 1296.0], [2526.0, 11212.0, 0.0, 1297.0], [2529.0, 11213.0, 0.0, 1298.0], [2531.0, 11214.0, 0.0, 1299.0], [2532.0, 11215.0, 0.0, 1300.0], [2533.0, 11216.0, 0.0, 1301.0], [2535.0, 11217.0, 0.0, 1302.0], [2536.0, 11218.0, 0.0, 1303.0], [2541.0, 11219.0, 0.0, 1304.0], [2543.0, 11220.0, 0.0, 1305.0], [2548.0, 11221.0, 0.0, 1306.0], [2551.0, 11222.0, 0.0, 1307.0], [2555.0, 11223.0, 0.0, 1308.0], [2556.0, 11224.0, 0.0, 1309.0], [2557.0, 11225.0, 0.0, 1310.0], [2558.0, 11226.0, 0.0, 1311.0], [2560.0, 11227.0, 0.0, 1312.0], [2561.0, 11228.0, 0.0, 1313.0], [2564.0, 11229.0, 0.0, 1314.0], [2567.0, 11230.0, 0.0, 1315.0], [2568.0, 11231.0, 0.0, 1316.0], [2569.0, 11232.0, 0.0, 1317.0], [2570.0, 11233.0, 0.0, 1318.0], [2571.0, 11234.0, 0.0, 1319.0], [2572.0, 11235.0, 0.0, 1320.0], [2574.0, 11236.0, 0.0, 1321.0], [2575.0, 11237.0, 0.0, 1322.0], [2576.0, 11238.0, 0.0, 1323.0], [2579.0, 11239.0, 0.0, 1324.0], [2580.0, 11240.0, 0.0, 1325.0], [2583.0, 11241.0, 0.0, 1326.0], [2584.0, 11242.0, 0.0, 1327.0], [2586.0, 11243.0, 0.0, 1328.0], [2587.0, 11244.0, 0.0, 1329.0], [2589.0, 11245.0, 0.0, 1330.0], [2590.0, 11246.0, 0.0, 1331.0], [2593.0, 11247.0, 0.0, 1332.0], [2594.0, 11248.0, 0.0, 1333.0], [2598.0, 11249.0, 0.0, 1334.0], [2601.0, 11250.0, 0.0, 1335.0], [2602.0, 11251.0, 0.0, 1336.0], [2603.0, 11252.0, 0.0, 1337.0], [2607.0, 11253.0, 0.0, 1338.0], [2608.0, 11254.0, 0.0, 1339.0], [2610.0, 11255.0, 0.0, 1340.0], [2611.0, 11256.0, 0.0, 1341.0], [2612.0, 11257.0, 0.0, 1342.0], [2613.0, 11258.0, 0.0, 1343.0], [2614.0, 11259.0, 0.0, 1344.0], [2617.0, 11260.0, 0.0, 1345.0], [2623.0, 11261.0, 0.0, 1346.0], [2624.0, 11262.0, 0.0, 1347.0], [2625.0, 11263.0, 0.0, 1348.0], [2626.0, 11264.0, 0.0, 1349.0], [2627.0, 11265.0, 0.0, 1350.0], [2630.0, 11266.0, 0.0, 1351.0], [2631.0, 11267.0, 0.0, 1352.0], [2636.0, 11268.0, 0.0, 1353.0], [2641.0, 11269.0, 0.0, 1354.0], [2645.0, 11270.0, 0.0, 1355.0], [2646.0, 11271.0, 0.0, 1356.0], [2648.0, 11272.0, 0.0, 1357.0], [2651.0, 11273.0, 0.0, 1358.0], [2652.0, 11274.0, 0.0, 1359.0], [2653.0, 11275.0, 0.0, 1360.0], [2655.0, 11276.0, 0.0, 1361.0], [2663.0, 11277.0, 0.0, 1362.0], [2672.0, 11278.0, 0.0, 1363.0], [2673.0, 11279.0, 0.0, 1364.0], [2676.0, 11280.0, 0.0, 1365.0], [2678.0, 11281.0, 0.0, 1366.0], [2679.0, 11282.0, 0.0, 1367.0], [2682.0, 11283.0, 0.0, 1368.0], [2683.0, 11284.0, 0.0, 1369.0], [2684.0, 11285.0, 0.0, 1370.0], [2686.0, 11286.0, 0.0, 1371.0], [2688.0, 11287.0, 0.0, 1372.0], [2690.0, 11288.0, 0.0, 1373.0], [2692.0, 11289.0, 0.0, 1374.0], [2693.0, 11290.0, 0.0, 1375.0], [2694.0, 11291.0, 0.0, 1376.0], [2696.0, 11292.0, 0.0, 1377.0], [2702.0, 11293.0, 0.0, 1378.0], [2703.0, 11294.0, 0.0, 1379.0], [2705.0, 11295.0, 0.0, 1380.0], [2706.0, 11296.0, 0.0, 1381.0], [2707.0, 11297.0, 0.0, 1382.0], [2709.0, 11298.0, 0.0, 1383.0], [2712.0, 11299.0, 0.0, 1384.0], [2714.0, 11300.0, 0.0, 1385.0], [2716.0, 11301.0, 0.0, 1386.0], [2717.0, 11302.0, 0.0, 1387.0], [2719.0, 11303.0, 0.0, 1388.0], [2720.0, 11304.0, 0.0, 1389.0], [2722.0, 11305.0, 0.0, 1390.0], [2723.0, 11306.0, 0.0, 1391.0], [2725.0, 11307.0, 0.0, 1392.0], [2727.0, 11308.0, 0.0, 1393.0], [2728.0, 11309.0, 0.0, 1394.0], [2729.0, 11310.0, 0.0, 1395.0], [2731.0, 11311.0, 0.0, 1396.0], [2733.0, 11312.0, 0.0, 1397.0], [2734.0, 11313.0, 0.0, 1398.0], [2736.0, 11314.0, 0.0, 1399.0], [2739.0, 11315.0, 0.0, 1400.0], [2740.0, 11316.0, 0.0, 1401.0], [2741.0, 11317.0, 0.0, 1402.0], [2742.0, 11318.0, 0.0, 1403.0], [2744.0, 11319.0, 0.0, 1404.0], [2745.0, 11320.0, 0.0, 1405.0], [2747.0, 11321.0, 0.0, 1406.0], [2748.0, 11322.0, 0.0, 1407.0], [2751.0, 11323.0, 0.0, 1408.0], [2752.0, 11324.0, 0.0, 1409.0], [2753.0, 11325.0, 0.0, 1410.0], [2754.0, 11326.0, 0.0, 1411.0], [2756.0, 11327.0, 0.0, 1412.0], [2757.0, 11328.0, 0.0, 1413.0], [2758.0, 11329.0, 0.0, 1414.0], [2760.0, 11330.0, 0.0, 1415.0], [2761.0, 11331.0, 0.0, 1416.0], [2764.0, 11332.0, 0.0, 1417.0], [2767.0, 11333.0, 0.0, 1418.0], [2770.0, 11334.0, 0.0, 1419.0], [2772.0, 11335.0, 0.0, 1420.0], [2773.0, 11336.0, 0.0, 1421.0], [2774.0, 11337.0, 0.0, 1422.0], [2776.0, 11338.0, 0.0, 1423.0], [2780.0, 11339.0, 0.0, 1424.0], [2782.0, 11340.0, 0.0, 1425.0], [2784.0, 11341.0, 0.0, 1426.0], [2785.0, 11342.0, 0.0, 1427.0], [2788.0, 11343.0, 0.0, 1428.0], [2789.0, 11344.0, 0.0, 1429.0], [2791.0, 11345.0, 0.0, 1430.0], [2792.0, 11346.0, 0.0, 1431.0], [2793.0, 11347.0, 0.0, 1432.0], [2794.0, 11348.0, 0.0, 1433.0], [2795.0, 11349.0, 0.0, 1434.0], [2798.0, 11350.0, 0.0, 1435.0], [2800.0, 11351.0, 0.0, 1436.0], [2801.0, 11352.0, 0.0, 1437.0], [2802.0, 11353.0, 0.0, 1438.0], [2803.0, 11354.0, 0.0, 1439.0], [2807.0, 11355.0, 0.0, 1440.0], [2810.0, 11356.0, 0.0, 1441.0], [2812.0, 11357.0, 0.0, 1442.0], [2814.0, 11358.0, 0.0, 1443.0], [2817.0, 11359.0, 0.0, 1444.0], [2823.0, 11360.0, 0.0, 1445.0], [2825.0, 11361.0, 0.0, 1446.0], [2826.0, 11362.0, 0.0, 1447.0], [2827.0, 11363.0, 0.0, 1448.0], [2828.0, 11364.0, 0.0, 1449.0], [2829.0, 11365.0, 0.0, 1450.0], [2831.0, 11366.0, 0.0, 1451.0], [2834.0, 11367.0, 0.0, 1452.0], [2835.0, 11368.0, 0.0, 1453.0], [2838.0, 11369.0, 0.0, 1454.0], [2839.0, 11370.0, 0.0, 1455.0], [2842.0, 11371.0, 0.0, 1456.0], [2843.0, 11372.0, 0.0, 1457.0], [2845.0, 11373.0, 0.0, 1458.0], [2847.0, 11374.0, 0.0, 1459.0], [2850.0, 11375.0, 0.0, 1460.0], [2851.0, 11376.0, 0.0, 1461.0], [2855.0, 11377.0, 0.0, 1462.0], [2856.0, 11378.0, 0.0, 1463.0], [2864.0, 11379.0, 0.0, 1464.0], [2866.0, 11380.0, 0.0, 1465.0], [2869.0, 11381.0, 0.0, 1466.0], [2872.0, 11382.0, 0.0, 1467.0], [2877.0, 11383.0, 0.0, 1468.0], [2882.0, 11384.0, 0.0, 1469.0], [2884.0, 11385.0, 0.0, 1470.0], [2885.0, 11386.0, 0.0, 1471.0], [2886.0, 11387.0, 0.0, 1472.0], [2887.0, 11388.0, 0.0, 1473.0], [2888.0, 11389.0, 0.0, 1474.0], [2891.0, 11390.0, 0.0, 1475.0], [2893.0, 11391.0, 0.0, 1476.0], [2894.0, 11392.0, 0.0, 1477.0], [2897.0, 11393.0, 0.0, 1478.0], [2898.0, 11394.0, 0.0, 1479.0], [2901.0, 11395.0, 0.0, 1480.0], [2903.0, 11396.0, 0.0, 1481.0], [2904.0, 11397.0, 0.0, 1482.0], [2905.0, 11398.0, 0.0, 1483.0], [2906.0, 11399.0, 0.0, 1484.0], [2907.0, 11400.0, 0.0, 1485.0], [2910.0, 11401.0, 0.0, 1486.0], [2911.0, 11402.0, 0.0, 1487.0], [2914.0, 11403.0, 0.0, 1488.0], [2918.0, 11404.0, 0.0, 1489.0], [2919.0, 11405.0, 0.0, 1490.0], [2920.0, 11406.0, 0.0, 1491.0], [2921.0, 11407.0, 0.0, 1492.0], [2923.0, 11408.0, 0.0, 1493.0], [2924.0, 11409.0, 0.0, 1494.0], [2926.0, 11410.0, 0.0, 1495.0], [2928.0, 11411.0, 0.0, 1496.0], [2929.0, 11412.0, 0.0, 1497.0], [2931.0, 11413.0, 0.0, 1498.0], [2933.0, 11414.0, 0.0, 1499.0], [2934.0, 11415.0, 0.0, 1500.0], [2935.0, 11416.0, 0.0, 1501.0], [2940.0, 11417.0, 0.0, 1502.0], [2941.0, 11418.0, 0.0, 1503.0], [2944.0, 11419.0, 0.0, 1504.0], [2946.0, 11420.0, 0.0, 1505.0], [2947.0, 11421.0, 0.0, 1506.0], [2949.0, 11422.0, 0.0, 1507.0], [2950.0, 11423.0, 0.0, 1508.0], [2952.0, 11424.0, 0.0, 1509.0], [2953.0, 11425.0, 0.0, 1510.0], [2956.0, 11426.0, 0.0, 1511.0], [2958.0, 11427.0, 0.0, 1512.0], [2959.0, 11428.0, 0.0, 1513.0], [2960.0, 11429.0, 0.0, 1514.0], [2961.0, 11430.0, 0.0, 1515.0], [2964.0, 11431.0, 0.0, 1516.0], [2965.0, 11432.0, 0.0, 1517.0], [2967.0, 11433.0, 0.0, 1518.0], [2968.0, 11434.0, 0.0, 1519.0], [2970.0, 11435.0, 0.0, 1520.0], [2972.0, 11436.0, 0.0, 1521.0], [2976.0, 11437.0, 0.0, 1522.0], [2978.0, 11438.0, 0.0, 1523.0], [2979.0, 11439.0, 0.0, 1524.0], [2980.0, 11440.0, 0.0, 1525.0], [2981.0, 11441.0, 0.0, 1526.0], [2985.0, 11442.0, 0.0, 1527.0], [2988.0, 11443.0, 0.0, 1528.0], [2989.0, 11444.0, 0.0, 1529.0], [2991.0, 11445.0, 0.0, 1530.0], [2993.0, 11446.0, 0.0, 1531.0], [2994.0, 11447.0, 0.0, 1532.0], [2995.0, 11448.0, 0.0, 1533.0], [3003.0, 11449.0, 0.0, 1534.0], [3006.0, 11450.0, 0.0, 1535.0], [3009.0, 11451.0, 0.0, 1536.0], [3010.0, 11452.0, 0.0, 1537.0], [3011.0, 11453.0, 0.0, 1538.0], [3014.0, 11454.0, 0.0, 1539.0], [3016.0, 11455.0, 0.0, 1540.0], [3017.0, 11456.0, 0.0, 1541.0], [3019.0, 11457.0, 0.0, 1542.0], [3020.0, 11458.0, 0.0, 1543.0], [3022.0, 11459.0, 0.0, 1544.0], [3028.0, 11460.0, 0.0, 1545.0], [3029.0, 11461.0, 0.0, 1546.0], [3030.0, 11462.0, 0.0, 1547.0], [3031.0, 11463.0, 0.0, 1548.0], [3033.0, 11464.0, 0.0, 1549.0], [3036.0, 11465.0, 0.0, 1550.0], [3038.0, 11466.0, 0.0, 1551.0], [3039.0, 11467.0, 0.0, 1552.0], [3040.0, 11468.0, 0.0, 1553.0], [3041.0, 11469.0, 0.0, 1554.0], [3042.0, 11470.0, 0.0, 1555.0], [3043.0, 11471.0, 0.0, 1556.0], [3045.0, 11472.0, 0.0, 1557.0], [3047.0, 11473.0, 0.0, 1558.0], [3050.0, 11474.0, 0.0, 1559.0], [3051.0, 11475.0, 0.0, 1560.0], [3052.0, 11476.0, 0.0, 1561.0], [3053.0, 11477.0, 0.0, 1562.0], [3055.0, 11478.0, 0.0, 1563.0], [3056.0, 11479.0, 0.0, 1564.0], [3058.0, 11480.0, 0.0, 1565.0], [3060.0, 11481.0, 0.0, 1566.0], [3065.0, 11482.0, 0.0, 1567.0], [3067.0, 11483.0, 0.0, 1568.0], [3069.0, 11484.0, 0.0, 1569.0], [3071.0, 11485.0, 0.0, 1570.0], [3072.0, 11486.0, 0.0, 1571.0], [3074.0, 11487.0, 0.0, 1572.0], [3075.0, 11488.0, 0.0, 1573.0], [3076.0, 11489.0, 0.0, 1574.0], [3077.0, 11490.0, 0.0, 1575.0], [3079.0, 11491.0, 0.0, 1576.0], [3080.0, 11492.0, 0.0, 1577.0], [3082.0, 11493.0, 0.0, 1578.0], [3084.0, 11494.0, 0.0, 1579.0], [3085.0, 11495.0, 0.0, 1580.0], [3086.0, 11496.0, 0.0, 1581.0], [3087.0, 11497.0, 0.0, 1582.0], [3092.0, 11498.0, 0.0, 1583.0], [3093.0, 11499.0, 0.0, 1584.0], [3094.0, 11500.0, 0.0, 1585.0], [3095.0, 11501.0, 0.0, 1586.0], [3098.0, 11502.0, 0.0, 1587.0], [3100.0, 11503.0, 0.0, 1588.0], [3101.0, 11504.0, 0.0, 1589.0], [3103.0, 11505.0, 0.0, 1590.0], [3104.0, 11506.0, 0.0, 1591.0], [3105.0, 11507.0, 0.0, 1592.0], [3108.0, 11508.0, 0.0, 1593.0], [3109.0, 11509.0, 0.0, 1594.0], [3110.0, 11510.0, 0.0, 1595.0], [3113.0, 11511.0, 0.0, 1596.0], [3114.0, 11512.0, 0.0, 1597.0], [3116.0, 11513.0, 0.0, 1598.0], [3117.0, 11514.0, 0.0, 1599.0], [3118.0, 11515.0, 0.0, 1600.0], [3120.0, 11516.0, 0.0, 1601.0], [3121.0, 11517.0, 0.0, 1602.0], [3122.0, 11518.0, 0.0, 1603.0], [3123.0, 11519.0, 0.0, 1604.0], [3126.0, 11520.0, 0.0, 1605.0], [3128.0, 11521.0, 0.0, 1606.0], [3129.0, 11522.0, 0.0, 1607.0], [3132.0, 11523.0, 0.0, 1608.0], [3133.0, 11524.0, 0.0, 1609.0], [3138.0, 11525.0, 0.0, 1610.0], [3144.0, 11526.0, 0.0, 1611.0], [3145.0, 11527.0, 0.0, 1612.0], [3146.0, 11528.0, 0.0, 1613.0], [3147.0, 11529.0, 0.0, 1614.0], [3148.0, 11530.0, 0.0, 1615.0], [3149.0, 11531.0, 0.0, 1616.0], [3151.0, 11532.0, 0.0, 1617.0], [3152.0, 11533.0, 0.0, 1618.0], [3155.0, 11534.0, 0.0, 1619.0], [3156.0, 11535.0, 0.0, 1620.0], [3157.0, 11536.0, 0.0, 1621.0], [3158.0, 11537.0, 0.0, 1622.0], [3159.0, 11538.0, 0.0, 1623.0], [3160.0, 11539.0, 0.0, 1624.0], [3164.0, 11540.0, 0.0, 1625.0], [3165.0, 11541.0, 0.0, 1626.0], [3166.0, 11542.0, 0.0, 1627.0], [3173.0, 11543.0, 0.0, 1628.0], [3174.0, 11544.0, 0.0, 1629.0], [3178.0, 11545.0, 0.0, 1630.0], [3182.0, 11546.0, 0.0, 1631.0], [3183.0, 11547.0, 0.0, 1632.0], [3186.0, 11548.0, 0.0, 1633.0], [3188.0, 11549.0, 0.0, 1634.0], [3190.0, 11550.0, 0.0, 1635.0], [3191.0, 11551.0, 0.0, 1636.0], [3192.0, 11552.0, 0.0, 1637.0], [3193.0, 11553.0, 0.0, 1638.0], [3194.0, 11554.0, 0.0, 1639.0], [3197.0, 11555.0, 0.0, 1640.0], [3199.0, 11556.0, 0.0, 1641.0], [3203.0, 11557.0, 0.0, 1642.0], [3204.0, 11558.0, 0.0, 1643.0], [3205.0, 11559.0, 0.0, 1644.0], [3210.0, 11560.0, 0.0, 1645.0], [3212.0, 11561.0, 0.0, 1646.0], [3213.0, 11562.0, 0.0, 1647.0], [3214.0, 11563.0, 0.0, 1648.0], [3217.0, 11564.0, 0.0, 1649.0], [3218.0, 11565.0, 0.0, 1650.0], [3219.0, 11566.0, 0.0, 1651.0], [3224.0, 11567.0, 0.0, 1652.0], [3225.0, 11568.0, 0.0, 1653.0], [3228.0, 11569.0, 0.0, 1654.0], [3229.0, 11570.0, 0.0, 1655.0], [3231.0, 11571.0, 0.0, 1656.0], [3235.0, 11572.0, 0.0, 1657.0], [3236.0, 11573.0, 0.0, 1658.0], [3238.0, 11574.0, 0.0, 1659.0], [3241.0, 11575.0, 0.0, 1660.0], [3243.0, 11576.0, 0.0, 1661.0], [3244.0, 11577.0, 0.0, 1662.0], [3246.0, 11578.0, 0.0, 1663.0], [3248.0, 11579.0, 0.0, 1664.0], [3253.0, 11580.0, 0.0, 1665.0], [3254.0, 11581.0, 0.0, 1666.0], [3255.0, 11582.0, 0.0, 1667.0], [3258.0, 11583.0, 0.0, 1668.0], [3259.0, 11584.0, 0.0, 1669.0], [3260.0, 11585.0, 0.0, 1670.0], [3261.0, 11586.0, 0.0, 1671.0], [3262.0, 11587.0, 0.0, 1672.0], [3263.0, 11588.0, 0.0, 1673.0], [3264.0, 11589.0, 0.0, 1674.0], [3266.0, 11590.0, 0.0, 1675.0], [3267.0, 11591.0, 0.0, 1676.0], [3268.0, 11592.0, 0.0, 1677.0], [3275.0, 11593.0, 0.0, 1678.0], [3276.0, 11594.0, 0.0, 1679.0], [3278.0, 11595.0, 0.0, 1680.0], [3280.0, 11596.0, 0.0, 1681.0], [3281.0, 11597.0, 0.0, 1682.0], [3282.0, 11598.0, 0.0, 1683.0], [3283.0, 11599.0, 0.0, 1684.0], [3284.0, 11600.0, 0.0, 1685.0], [3288.0, 11601.0, 0.0, 1686.0], [3289.0, 11602.0, 0.0, 1687.0], [3290.0, 11603.0, 0.0, 1688.0], [3291.0, 11604.0, 0.0, 1689.0], [3293.0, 11605.0, 0.0, 1690.0], [3294.0, 11606.0, 0.0, 1691.0], [3296.0, 11607.0, 0.0, 1692.0], [3297.0, 11608.0, 0.0, 1693.0], [3298.0, 11609.0, 0.0, 1694.0], [3301.0, 11610.0, 0.0, 1695.0], [3303.0, 11611.0, 0.0, 1696.0], [3304.0, 11612.0, 0.0, 1697.0], [3305.0, 11613.0, 0.0, 1698.0], [3306.0, 11614.0, 0.0, 1699.0], [3308.0, 11615.0, 0.0, 1700.0], [3311.0, 11616.0, 0.0, 1701.0], [3313.0, 11617.0, 0.0, 1702.0], [3316.0, 11618.0, 0.0, 1703.0], [3318.0, 11619.0, 0.0, 1704.0], [3319.0, 11620.0, 0.0, 1705.0], [3321.0, 11621.0, 0.0, 1706.0], [3322.0, 11622.0, 0.0, 1707.0], [3323.0, 11623.0, 0.0, 1708.0], [3324.0, 11624.0, 0.0, 1709.0], [3327.0, 11625.0, 0.0, 1710.0], [3328.0, 11626.0, 0.0, 1711.0], [3329.0, 11627.0, 0.0, 1712.0], [3330.0, 11628.0, 0.0, 1713.0], [3331.0, 11629.0, 0.0, 1714.0], [3338.0, 11630.0, 0.0, 1715.0], [3339.0, 11631.0, 0.0, 1716.0], [3340.0, 11632.0, 0.0, 1717.0], [3344.0, 11633.0, 0.0, 1718.0], [3346.0, 11634.0, 0.0, 1719.0], [3347.0, 11635.0, 0.0, 1720.0], [3348.0, 11636.0, 0.0, 1721.0], [3352.0, 11637.0, 0.0, 1722.0], [3354.0, 11638.0, 0.0, 1723.0], [3356.0, 11639.0, 0.0, 1724.0], [3358.0, 11640.0, 0.0, 1725.0], [3361.0, 11641.0, 0.0, 1726.0], [3362.0, 11642.0, 0.0, 1727.0], [3363.0, 11643.0, 0.0, 1728.0], [3365.0, 11644.0, 0.0, 1729.0], [3370.0, 11645.0, 0.0, 1730.0], [3371.0, 11646.0, 0.0, 1731.0], [3372.0, 11647.0, 0.0, 1732.0], [3373.0, 11648.0, 0.0, 1733.0], [3376.0, 11649.0, 0.0, 1734.0], [3383.0, 11650.0, 0.0, 1735.0], [3386.0, 11651.0, 0.0, 1736.0], [3388.0, 11652.0, 0.0, 1737.0], [3390.0, 11653.0, 0.0, 1738.0], [3391.0, 11654.0, 0.0, 1739.0], [3394.0, 11655.0, 0.0, 1740.0], [3395.0, 11656.0, 0.0, 1741.0], [3396.0, 11657.0, 0.0, 1742.0], [3403.0, 11658.0, 0.0, 1743.0], [3405.0, 11659.0, 0.0, 1744.0], [3406.0, 11660.0, 0.0, 1745.0], [3407.0, 11661.0, 0.0, 1746.0], [3413.0, 11662.0, 0.0, 1747.0], [3415.0, 11663.0, 0.0, 1748.0], [3416.0, 11664.0, 0.0, 1749.0], [3417.0, 11665.0, 0.0, 1750.0], [3418.0, 11666.0, 0.0, 1751.0], [3420.0, 11667.0, 0.0, 1752.0], [3421.0, 11668.0, 0.0, 1753.0], [3422.0, 11669.0, 0.0, 1754.0], [3423.0, 11670.0, 0.0, 1755.0], [3427.0, 11671.0, 0.0, 1756.0], [3430.0, 11672.0, 0.0, 1757.0], [3431.0, 11673.0, 0.0, 1758.0], [3435.0, 11674.0, 0.0, 1759.0], [3436.0, 11675.0, 0.0, 1760.0], [3438.0, 11676.0, 0.0, 1761.0], [3439.0, 11677.0, 0.0, 1762.0], [3441.0, 11678.0, 0.0, 1763.0], [3442.0, 11679.0, 0.0, 1764.0], [3443.0, 11680.0, 0.0, 1765.0], [3444.0, 11681.0, 0.0, 1766.0], [3447.0, 11682.0, 0.0, 1767.0], [3449.0, 11683.0, 0.0, 1768.0], [3450.0, 11684.0, 0.0, 1769.0], [3451.0, 11685.0, 0.0, 1770.0], [3452.0, 11686.0, 0.0, 1771.0], [3455.0, 11687.0, 0.0, 1772.0], [3456.0, 11688.0, 0.0, 1773.0], [3458.0, 11689.0, 0.0, 1774.0], [3464.0, 11690.0, 0.0, 1775.0], [3465.0, 11691.0, 0.0, 1776.0], [3467.0, 11692.0, 0.0, 1777.0], [3471.0, 11693.0, 0.0, 1778.0], [3472.0, 11694.0, 0.0, 1779.0], [3473.0, 11695.0, 0.0, 1780.0], [3474.0, 11696.0, 0.0, 1781.0], [3475.0, 11697.0, 0.0, 1782.0], [3481.0, 11698.0, 0.0, 1783.0], [3484.0, 11699.0, 0.0, 1784.0], [3487.0, 11700.0, 0.0, 1785.0], [3489.0, 11701.0, 0.0, 1786.0], [3490.0, 11702.0, 0.0, 1787.0], [3495.0, 11703.0, 0.0, 1788.0], [3497.0, 11704.0, 0.0, 1789.0], [3502.0, 11705.0, 0.0, 1790.0], [3506.0, 11706.0, 0.0, 1791.0], [3507.0, 11707.0, 0.0, 1792.0], [3509.0, 11708.0, 0.0, 1793.0], [3512.0, 11709.0, 0.0, 1794.0], [3516.0, 11710.0, 0.0, 1795.0], [3519.0, 11711.0, 0.0, 1796.0], [3523.0, 11712.0, 0.0, 1797.0], [3524.0, 11713.0, 0.0, 1798.0], [3526.0, 11714.0, 0.0, 1799.0], [3529.0, 11715.0, 0.0, 1800.0], [3530.0, 11716.0, 0.0, 1801.0], [3531.0, 11717.0, 0.0, 1802.0], [3533.0, 11718.0, 0.0, 1803.0], [3534.0, 11719.0, 0.0, 1804.0], [3535.0, 11720.0, 0.0, 1805.0], [3536.0, 11721.0, 0.0, 1806.0], [3541.0, 11722.0, 0.0, 1807.0], [3542.0, 11723.0, 0.0, 1808.0], [3544.0, 11724.0, 0.0, 1809.0], [3545.0, 11725.0, 0.0, 1810.0], [3546.0, 11726.0, 0.0, 1811.0], [3548.0, 11727.0, 0.0, 1812.0], [3549.0, 11728.0, 0.0, 1813.0], [3550.0, 11729.0, 0.0, 1814.0], [3552.0, 11730.0, 0.0, 1815.0], [3553.0, 11731.0, 0.0, 1816.0], [3557.0, 11732.0, 0.0, 1817.0], [3558.0, 11733.0, 0.0, 1818.0], [3561.0, 11734.0, 0.0, 1819.0], [3562.0, 11735.0, 0.0, 1820.0], [3563.0, 11736.0, 0.0, 1821.0], [3564.0, 11737.0, 0.0, 1822.0], [3567.0, 11738.0, 0.0, 1823.0], [3568.0, 11739.0, 0.0, 1824.0], [3569.0, 11740.0, 0.0, 1825.0], [3570.0, 11741.0, 0.0, 1826.0], [3573.0, 11742.0, 0.0, 1827.0], [3574.0, 11743.0, 0.0, 1828.0], [3575.0, 11744.0, 0.0, 1829.0], [3577.0, 11745.0, 0.0, 1830.0], [3578.0, 11746.0, 0.0, 1831.0], [3579.0, 11747.0, 0.0, 1832.0], [3580.0, 11748.0, 0.0, 1833.0], [3581.0, 11749.0, 0.0, 1834.0], [3585.0, 11750.0, 0.0, 1835.0], [3587.0, 11751.0, 0.0, 1836.0], [3589.0, 11752.0, 0.0, 1837.0], [3591.0, 11753.0, 0.0, 1838.0], [3593.0, 11754.0, 0.0, 1839.0], [3594.0, 11755.0, 0.0, 1840.0], [3597.0, 11756.0, 0.0, 1841.0], [3598.0, 11757.0, 0.0, 1842.0], [3600.0, 11758.0, 0.0, 1843.0], [3602.0, 11759.0, 0.0, 1844.0], [3603.0, 11760.0, 0.0, 1845.0], [3608.0, 11761.0, 0.0, 1846.0], [3610.0, 11762.0, 0.0, 1847.0], [3613.0, 11763.0, 0.0, 1848.0], [3615.0, 11764.0, 0.0, 1849.0], [3616.0, 11765.0, 0.0, 1850.0], [3619.0, 11766.0, 0.0, 1851.0], [3620.0, 11767.0, 0.0, 1852.0], [3621.0, 11768.0, 0.0, 1853.0], [3623.0, 11769.0, 0.0, 1854.0], [3624.0, 11770.0, 0.0, 1855.0], [3625.0, 11771.0, 0.0, 1856.0], [3627.0, 11772.0, 0.0, 1857.0], [3629.0, 11773.0, 0.0, 1858.0], [3631.0, 11774.0, 0.0, 1859.0], [3632.0, 11775.0, 0.0, 1860.0], [3633.0, 11776.0, 0.0, 1861.0], [3634.0, 11777.0, 0.0, 1862.0], [3638.0, 11778.0, 0.0, 1863.0], [3639.0, 11779.0, 0.0, 1864.0], [3642.0, 11780.0, 0.0, 1865.0], [3644.0, 11781.0, 0.0, 1866.0], [3645.0, 11782.0, 0.0, 1867.0], [3647.0, 11783.0, 0.0, 1868.0], [3648.0, 11784.0, 0.0, 1869.0], [3650.0, 11785.0, 0.0, 1870.0], [3652.0, 11786.0, 0.0, 1871.0], [3653.0, 11787.0, 0.0, 1872.0], [3654.0, 11788.0, 0.0, 1873.0], [3657.0, 11789.0, 0.0, 1874.0], [3661.0, 11790.0, 0.0, 1875.0], [3662.0, 11791.0, 0.0, 1876.0], [3663.0, 11792.0, 0.0, 1877.0], [3664.0, 11793.0, 0.0, 1878.0], [3665.0, 11794.0, 0.0, 1879.0], [3667.0, 11795.0, 0.0, 1880.0], [3670.0, 11796.0, 0.0, 1881.0], [3671.0, 11797.0, 0.0, 1882.0], [3672.0, 11798.0, 0.0, 1883.0], [3673.0, 11799.0, 0.0, 1884.0], [3674.0, 11800.0, 0.0, 1885.0], [3675.0, 11801.0, 0.0, 1886.0], [3679.0, 11802.0, 0.0, 1887.0], [3682.0, 11803.0, 0.0, 1888.0], [3683.0, 11804.0, 0.0, 1889.0], [3685.0, 11805.0, 0.0, 1890.0], [3687.0, 11806.0, 0.0, 1891.0], [3690.0, 11807.0, 0.0, 1892.0], [3692.0, 11808.0, 0.0, 1893.0], [3693.0, 11809.0, 0.0, 1894.0], [3697.0, 11810.0, 0.0, 1895.0], [3698.0, 11811.0, 0.0, 1896.0], [3699.0, 11812.0, 0.0, 1897.0], [3700.0, 11813.0, 0.0, 1898.0], [3701.0, 11814.0, 0.0, 1899.0], [3704.0, 11815.0, 0.0, 1900.0], [3705.0, 11816.0, 0.0, 1901.0], [3707.0, 11817.0, 0.0, 1902.0], [3710.0, 11818.0, 0.0, 1903.0], [3711.0, 11819.0, 0.0, 1904.0], [3713.0, 11820.0, 0.0, 1905.0], [3716.0, 11821.0, 0.0, 1906.0], [3718.0, 11822.0, 0.0, 1907.0], [3719.0, 11823.0, 0.0, 1908.0], [3723.0, 11824.0, 0.0, 1909.0], [3724.0, 11825.0, 0.0, 1910.0], [3725.0, 11826.0, 0.0, 1911.0], [3727.0, 11827.0, 0.0, 1912.0], [3729.0, 11828.0, 0.0, 1913.0], [3731.0, 11829.0, 0.0, 1914.0], [3734.0, 11830.0, 0.0, 1915.0], [3736.0, 11831.0, 0.0, 1916.0], [3737.0, 11832.0, 0.0, 1917.0], [3738.0, 11833.0, 0.0, 1918.0], [3739.0, 11834.0, 0.0, 1919.0], [3740.0, 11835.0, 0.0, 1920.0], [3741.0, 11836.0, 0.0, 1921.0], [3743.0, 11837.0, 0.0, 1922.0], [3744.0, 11838.0, 0.0, 1923.0], [3745.0, 11839.0, 0.0, 1924.0], [3749.0, 11840.0, 0.0, 1925.0], [3751.0, 11841.0, 0.0, 1926.0], [3752.0, 11842.0, 0.0, 1927.0], [3756.0, 11843.0, 0.0, 1928.0], [3760.0, 11844.0, 0.0, 1929.0], [3761.0, 11845.0, 0.0, 1930.0], [3762.0, 11846.0, 0.0, 1931.0], [3765.0, 11847.0, 0.0, 1932.0], [3766.0, 11848.0, 0.0, 1933.0], [3768.0, 11849.0, 0.0, 1934.0], [3771.0, 11850.0, 0.0, 1935.0], [3772.0, 11851.0, 0.0, 1936.0], [3774.0, 11852.0, 0.0, 1937.0], [3775.0, 11853.0, 0.0, 1938.0], [3776.0, 11854.0, 0.0, 1939.0], [3777.0, 11855.0, 0.0, 1940.0], [3779.0, 11856.0, 0.0, 1941.0], [3781.0, 11857.0, 0.0, 1942.0], [3782.0, 11858.0, 0.0, 1943.0], [3786.0, 11859.0, 0.0, 1944.0], [3787.0, 11860.0, 0.0, 1945.0], [3788.0, 11861.0, 0.0, 1946.0], [3789.0, 11862.0, 0.0, 1947.0], [3791.0, 11863.0, 0.0, 1948.0], [3793.0, 11864.0, 0.0, 1949.0], [3794.0, 11865.0, 0.0, 1950.0], [3795.0, 11866.0, 0.0, 1951.0], [3796.0, 11867.0, 0.0, 1952.0], [3798.0, 11868.0, 0.0, 1953.0], [3799.0, 11869.0, 0.0, 1954.0], [3802.0, 11870.0, 0.0, 1955.0], [3804.0, 11871.0, 0.0, 1956.0], [3807.0, 11872.0, 0.0, 1957.0], [3808.0, 11873.0, 0.0, 1958.0], [3812.0, 11874.0, 0.0, 1959.0], [3814.0, 11875.0, 0.0, 1960.0], [3815.0, 11876.0, 0.0, 1961.0], [3816.0, 11877.0, 0.0, 1962.0], [3818.0, 11878.0, 0.0, 1963.0], [3820.0, 11879.0, 0.0, 1964.0], [3821.0, 11880.0, 0.0, 1965.0], [3823.0, 11881.0, 0.0, 1966.0], [3824.0, 11882.0, 0.0, 1967.0], [3826.0, 11883.0, 0.0, 1968.0], [3831.0, 11884.0, 0.0, 1969.0], [3835.0, 11885.0, 0.0, 1970.0], [3837.0, 11886.0, 0.0, 1971.0], [3838.0, 11887.0, 0.0, 1972.0], [3839.0, 11888.0, 0.0, 1973.0], [3840.0, 11889.0, 0.0, 1974.0], [3841.0, 11890.0, 0.0, 1975.0], [3842.0, 11891.0, 0.0, 1976.0], [3845.0, 11892.0, 0.0, 1977.0], [3847.0, 11893.0, 0.0, 1978.0], [3849.0, 11894.0, 0.0, 1979.0], [3850.0, 11895.0, 0.0, 1980.0], [3851.0, 11896.0, 0.0, 1981.0], [3852.0, 11897.0, 0.0, 1982.0], [3853.0, 11898.0, 0.0, 1983.0], [3856.0, 11899.0, 0.0, 1984.0], [3858.0, 11900.0, 0.0, 1985.0], [3860.0, 11901.0, 0.0, 1986.0], [3861.0, 11902.0, 0.0, 1987.0], [3863.0, 11903.0, 0.0, 1988.0], [3865.0, 11904.0, 0.0, 1989.0], [3867.0, 11905.0, 0.0, 1990.0], [3872.0, 11906.0, 0.0, 1991.0], [3873.0, 11907.0, 0.0, 1992.0], [3874.0, 11908.0, 0.0, 1993.0], [3877.0, 11909.0, 0.0, 1994.0], [3878.0, 11910.0, 0.0, 1995.0], [3879.0, 11911.0, 0.0, 1996.0], [3880.0, 11912.0, 0.0, 1997.0], [3881.0, 11913.0, 0.0, 1998.0], [3883.0, 11914.0, 0.0, 1999.0], [3885.0, 11915.0, 0.0, 2000.0], [3886.0, 11916.0, 0.0, 2001.0], [3888.0, 11917.0, 0.0, 2002.0], [3890.0, 11918.0, 0.0, 2003.0], [3891.0, 11919.0, 0.0, 2004.0], [3892.0, 11920.0, 0.0, 2005.0], [3894.0, 11921.0, 0.0, 2006.0], [3895.0, 11922.0, 0.0, 2007.0], [3897.0, 11923.0, 0.0, 2008.0], [3899.0, 11924.0, 0.0, 2009.0], [3904.0, 11925.0, 0.0, 2010.0], [3905.0, 11926.0, 0.0, 2011.0], [3908.0, 11927.0, 0.0, 2012.0], [3909.0, 11928.0, 0.0, 2013.0], [3911.0, 11929.0, 0.0, 2014.0], [3912.0, 11930.0, 0.0, 2015.0], [3913.0, 11931.0, 0.0, 2016.0], [3914.0, 11932.0, 0.0, 2017.0], [3915.0, 11933.0, 0.0, 2018.0], [3919.0, 11934.0, 0.0, 2019.0], [3920.0, 11935.0, 0.0, 2020.0], [3923.0, 11936.0, 0.0, 2021.0], [3924.0, 11937.0, 0.0, 2022.0], [3927.0, 11938.0, 0.0, 2023.0], [3928.0, 11939.0, 0.0, 2024.0], [3932.0, 11940.0, 0.0, 2025.0], [3933.0, 11941.0, 0.0, 2026.0], [3934.0, 11942.0, 0.0, 2027.0], [3935.0, 11943.0, 0.0, 2028.0], [3936.0, 11944.0, 0.0, 2029.0], [3939.0, 11945.0, 0.0, 2030.0], [3943.0, 11946.0, 0.0, 2031.0], [3944.0, 11947.0, 0.0, 2032.0], [3946.0, 11948.0, 0.0, 2033.0], [3947.0, 11949.0, 0.0, 2034.0], [3950.0, 11950.0, 0.0, 2035.0], [3953.0, 11951.0, 0.0, 2036.0], [3954.0, 11952.0, 0.0, 2037.0], [3956.0, 11953.0, 0.0, 2038.0], [3957.0, 11954.0, 0.0, 2039.0], [3960.0, 11955.0, 0.0, 2040.0], [3961.0, 11956.0, 0.0, 2041.0], [3962.0, 11957.0, 0.0, 2042.0], [3963.0, 11958.0, 0.0, 2043.0], [3964.0, 11959.0, 0.0, 2044.0], [3966.0, 11960.0, 0.0, 2045.0], [3968.0, 11961.0, 0.0, 2046.0], [3972.0, 11962.0, 0.0, 2047.0], [3975.0, 11963.0, 0.0, 2048.0], [3978.0, 11964.0, 0.0, 2049.0], [3980.0, 11965.0, 0.0, 2050.0], [3981.0, 11966.0, 0.0, 2051.0], [3988.0, 11967.0, 0.0, 2052.0], [3991.0, 11968.0, 0.0, 2053.0], [3993.0, 11969.0, 0.0, 2054.0], [3994.0, 11970.0, 0.0, 2055.0], [3995.0, 11971.0, 0.0, 2056.0], [3997.0, 11972.0, 0.0, 2057.0], [3999.0, 11973.0, 0.0, 2058.0], [4001.0, 11974.0, 0.0, 2059.0], [4004.0, 11975.0, 0.0, 2060.0], [4006.0, 11976.0, 0.0, 2061.0], [4007.0, 11977.0, 0.0, 2062.0], [4011.0, 11978.0, 0.0, 2063.0], [4013.0, 11979.0, 0.0, 2064.0], [4014.0, 11980.0, 0.0, 2065.0], [4015.0, 11981.0, 0.0, 2066.0], [4016.0, 11982.0, 0.0, 2067.0], [4020.0, 11983.0, 0.0, 2068.0], [4024.0, 11984.0, 0.0, 2069.0], [4025.0, 11985.0, 0.0, 2070.0], [4026.0, 11986.0, 0.0, 2071.0], [4029.0, 11987.0, 0.0, 2072.0], [4030.0, 11988.0, 0.0, 2073.0], [4033.0, 11989.0, 0.0, 2074.0], [4035.0, 11990.0, 0.0, 2075.0], [4036.0, 11991.0, 0.0, 2076.0], [4038.0, 11992.0, 0.0, 2077.0], [4041.0, 11993.0, 0.0, 2078.0], [4042.0, 11994.0, 0.0, 2079.0], [4044.0, 11995.0, 0.0, 2080.0], [4045.0, 11996.0, 0.0, 2081.0], [4046.0, 11997.0, 0.0, 2082.0], [4048.0, 11998.0, 0.0, 2083.0], [4051.0, 11999.0, 0.0, 2084.0], [4053.0, 12000.0, 0.0, 2085.0], [4054.0, 12001.0, 0.0, 2086.0], [4055.0, 12002.0, 0.0, 2087.0], [4057.0, 12003.0, 0.0, 2088.0], [4058.0, 12004.0, 0.0, 2089.0], [4060.0, 12005.0, 0.0, 2090.0], [4061.0, 12006.0, 0.0, 2091.0], [4064.0, 12007.0, 0.0, 2092.0], [4065.0, 12008.0, 0.0, 2093.0], [4066.0, 12009.0, 0.0, 2094.0], [4067.0, 12010.0, 0.0, 2095.0], [4069.0, 12011.0, 0.0, 2096.0], [4071.0, 12012.0, 0.0, 2097.0], [4072.0, 12013.0, 0.0, 2098.0], [4073.0, 12014.0, 0.0, 2099.0], [4074.0, 12015.0, 0.0, 2100.0], [4075.0, 12016.0, 0.0, 2101.0], [4076.0, 12017.0, 0.0, 2102.0], [4077.0, 12018.0, 0.0, 2103.0], [4080.0, 12019.0, 0.0, 2104.0], [4082.0, 12020.0, 0.0, 2105.0], [4083.0, 12021.0, 0.0, 2106.0], [4084.0, 12022.0, 0.0, 2107.0], [4085.0, 12023.0, 0.0, 2108.0], [4086.0, 12024.0, 0.0, 2109.0], [4087.0, 12025.0, 0.0, 2110.0], [4088.0, 12026.0, 0.0, 2111.0], [4092.0, 12027.0, 0.0, 2112.0], [4094.0, 12028.0, 0.0, 2113.0], [4103.0, 12029.0, 0.0, 2114.0], [4106.0, 12030.0, 0.0, 2115.0], [4107.0, 12031.0, 0.0, 2116.0], [4109.0, 12032.0, 0.0, 2117.0], [4110.0, 12033.0, 0.0, 2118.0], [4111.0, 12034.0, 0.0, 2119.0], [4112.0, 12035.0, 0.0, 2120.0], [4115.0, 12036.0, 0.0, 2121.0], [4117.0, 12037.0, 0.0, 2122.0], [4118.0, 12038.0, 0.0, 2123.0], [4122.0, 12039.0, 0.0, 2124.0], [4123.0, 12040.0, 0.0, 2125.0], [4124.0, 12041.0, 0.0, 2126.0], [4127.0, 12042.0, 0.0, 2127.0], [4128.0, 12043.0, 0.0, 2128.0], [4129.0, 12044.0, 0.0, 2129.0], [4130.0, 12045.0, 0.0, 2130.0], [4131.0, 12046.0, 0.0, 2131.0], [4132.0, 12047.0, 0.0, 2132.0], [4137.0, 12048.0, 0.0, 2133.0], [4138.0, 12049.0, 0.0, 2134.0], [4139.0, 12050.0, 0.0, 2135.0], [4145.0, 12051.0, 0.0, 2136.0], [4146.0, 12052.0, 0.0, 2137.0], [4147.0, 12053.0, 0.0, 2138.0], [4150.0, 12054.0, 0.0, 2139.0], [4152.0, 12055.0, 0.0, 2140.0], [4155.0, 12056.0, 0.0, 2141.0], [4156.0, 12057.0, 0.0, 2142.0], [4158.0, 12058.0, 0.0, 2143.0], [4159.0, 12059.0, 0.0, 2144.0], [4162.0, 12060.0, 0.0, 2145.0], [4164.0, 12061.0, 0.0, 2146.0], [4165.0, 12062.0, 0.0, 2147.0], [4167.0, 12063.0, 0.0, 2148.0], [4170.0, 12064.0, 0.0, 2149.0], [4171.0, 12065.0, 0.0, 2150.0], [4174.0, 12066.0, 0.0, 2151.0], [4175.0, 12067.0, 0.0, 2152.0], [4176.0, 12068.0, 0.0, 2153.0], [4177.0, 12069.0, 0.0, 2154.0], [4178.0, 12070.0, 0.0, 2155.0], [4179.0, 12071.0, 0.0, 2156.0], [4180.0, 12072.0, 0.0, 2157.0], [4182.0, 12073.0, 0.0, 2158.0], [4184.0, 12074.0, 0.0, 2159.0], [4186.0, 12075.0, 0.0, 2160.0], [4187.0, 12076.0, 0.0, 2161.0], [4191.0, 12077.0, 0.0, 2162.0], [4193.0, 12078.0, 0.0, 2163.0], [4194.0, 12079.0, 0.0, 2164.0], [4198.0, 12080.0, 0.0, 2165.0], [4200.0, 12081.0, 0.0, 2166.0], [4203.0, 12082.0, 0.0, 2167.0], [4207.0, 12083.0, 0.0, 2168.0], [4209.0, 12084.0, 0.0, 2169.0], [4211.0, 12085.0, 0.0, 2170.0], [4213.0, 12086.0, 0.0, 2171.0], [4214.0, 12087.0, 0.0, 2172.0], [4217.0, 12088.0, 0.0, 2173.0], [4218.0, 12089.0, 0.0, 2174.0], [4221.0, 12090.0, 0.0, 2175.0], [4222.0, 12091.0, 0.0, 2176.0], [4227.0, 12092.0, 0.0, 2177.0], [4228.0, 12093.0, 0.0, 2178.0], [4231.0, 12094.0, 0.0, 2179.0], [4232.0, 12095.0, 0.0, 2180.0], [4233.0, 12096.0, 0.0, 2181.0], [4235.0, 12097.0, 0.0, 2182.0], [4236.0, 12098.0, 0.0, 2183.0], [4237.0, 12099.0, 0.0, 2184.0], [4238.0, 12100.0, 0.0, 2185.0], [4240.0, 12101.0, 0.0, 2186.0], [4241.0, 12102.0, 0.0, 2187.0], [4242.0, 12103.0, 0.0, 2188.0], [4243.0, 12104.0, 0.0, 2189.0], [4245.0, 12105.0, 0.0, 2190.0], [4246.0, 12106.0, 0.0, 2191.0], [4247.0, 12107.0, 0.0, 2192.0], [4249.0, 12108.0, 0.0, 2193.0], [4251.0, 12109.0, 0.0, 2194.0], [4252.0, 12110.0, 0.0, 2195.0], [4255.0, 12111.0, 0.0, 2196.0], [4259.0, 12112.0, 0.0, 2197.0], [4263.0, 12113.0, 0.0, 2198.0], [4264.0, 12114.0, 0.0, 2199.0], [4265.0, 12115.0, 0.0, 2200.0], [4268.0, 12116.0, 0.0, 2201.0], [4269.0, 12117.0, 0.0, 2202.0], [4273.0, 12118.0, 0.0, 2203.0], [4274.0, 12119.0, 0.0, 2204.0], [4275.0, 12120.0, 0.0, 2205.0], [4276.0, 12121.0, 0.0, 2206.0], [4278.0, 12122.0, 0.0, 2207.0], [4279.0, 12123.0, 0.0, 2208.0], [4280.0, 12124.0, 0.0, 2209.0], [4282.0, 12125.0, 0.0, 2210.0], [4284.0, 12126.0, 0.0, 2211.0], [4285.0, 12127.0, 0.0, 2212.0], [4286.0, 12128.0, 0.0, 2213.0], [4289.0, 12129.0, 0.0, 2214.0], [4291.0, 12130.0, 0.0, 2215.0], [4292.0, 12131.0, 0.0, 2216.0], [4293.0, 12132.0, 0.0, 2217.0], [4294.0, 12133.0, 0.0, 2218.0], [4295.0, 12134.0, 0.0, 2219.0], [4297.0, 12135.0, 0.0, 2220.0], [4298.0, 12136.0, 0.0, 2221.0], [4300.0, 12137.0, 0.0, 2222.0], [4301.0, 12138.0, 0.0, 2223.0], [4302.0, 12139.0, 0.0, 2224.0], [4303.0, 12140.0, 0.0, 2225.0], [4304.0, 12141.0, 0.0, 2226.0], [4309.0, 12142.0, 0.0, 2227.0], [4310.0, 12143.0, 0.0, 2228.0], [4312.0, 12144.0, 0.0, 2229.0], [4316.0, 12145.0, 0.0, 2230.0], [4317.0, 12146.0, 0.0, 2231.0], [4318.0, 12147.0, 0.0, 2232.0], [4319.0, 12148.0, 0.0, 2233.0], [4321.0, 12149.0, 0.0, 2234.0], [4322.0, 12150.0, 0.0, 2235.0], [4324.0, 12151.0, 0.0, 2236.0], [4326.0, 12152.0, 0.0, 2237.0], [4327.0, 12153.0, 0.0, 2238.0], [4330.0, 12154.0, 0.0, 2239.0], [4334.0, 12155.0, 0.0, 2240.0], [4335.0, 12156.0, 0.0, 2241.0], [4336.0, 12157.0, 0.0, 2242.0], [4338.0, 12158.0, 0.0, 2243.0], [4339.0, 12159.0, 0.0, 2244.0], [4345.0, 12160.0, 0.0, 2245.0], [4346.0, 12161.0, 0.0, 2246.0], [4347.0, 12162.0, 0.0, 2247.0], [4348.0, 12163.0, 0.0, 2248.0], [4355.0, 12164.0, 0.0, 2249.0], [4356.0, 12165.0, 0.0, 2250.0], [4360.0, 12166.0, 0.0, 2251.0], [4362.0, 12167.0, 0.0, 2252.0], [4365.0, 12168.0, 0.0, 2253.0], [4367.0, 12169.0, 0.0, 2254.0], [4369.0, 12170.0, 0.0, 2255.0], [4370.0, 12171.0, 0.0, 2256.0], [4371.0, 12172.0, 0.0, 2257.0], [4373.0, 12173.0, 0.0, 2258.0], [4376.0, 12174.0, 0.0, 2259.0], [4378.0, 12175.0, 0.0, 2260.0], [4379.0, 12176.0, 0.0, 2261.0], [4381.0, 12177.0, 0.0, 2262.0], [4382.0, 12178.0, 0.0, 2263.0], [4383.0, 12179.0, 0.0, 2264.0], [4384.0, 12180.0, 0.0, 2265.0], [4386.0, 12181.0, 0.0, 2266.0], [4387.0, 12182.0, 0.0, 2267.0], [4390.0, 12183.0, 0.0, 2268.0], [4392.0, 12184.0, 0.0, 2269.0], [4398.0, 12185.0, 0.0, 2270.0], [4399.0, 12186.0, 0.0, 2271.0], [4401.0, 12187.0, 0.0, 2272.0], [4404.0, 12188.0, 0.0, 2273.0], [4410.0, 12189.0, 0.0, 2274.0], [4412.0, 12190.0, 0.0, 2275.0], [4414.0, 12191.0, 0.0, 2276.0], [4416.0, 12192.0, 0.0, 2277.0], [4418.0, 12193.0, 0.0, 2278.0], [4419.0, 12194.0, 0.0, 2279.0], [4420.0, 12195.0, 0.0, 2280.0], [4422.0, 12196.0, 0.0, 2281.0], [4423.0, 12197.0, 0.0, 2282.0], [4425.0, 12198.0, 0.0, 2283.0], [4428.0, 12199.0, 0.0, 2284.0], [4429.0, 12200.0, 0.0, 2285.0], [4430.0, 12201.0, 0.0, 2286.0], [4432.0, 12202.0, 0.0, 2287.0], [4434.0, 12203.0, 0.0, 2288.0], [4435.0, 12204.0, 0.0, 2289.0], [4439.0, 12205.0, 0.0, 2290.0], [4443.0, 12206.0, 0.0, 2291.0], [4444.0, 12207.0, 0.0, 2292.0], [4445.0, 12208.0, 0.0, 2293.0], [4447.0, 12209.0, 0.0, 2294.0], [4462.0, 12210.0, 0.0, 2295.0], [4464.0, 12211.0, 0.0, 2296.0], [4465.0, 12212.0, 0.0, 2297.0], [4467.0, 12213.0, 0.0, 2298.0], [4469.0, 12214.0, 0.0, 2299.0], [4470.0, 12215.0, 0.0, 2300.0], [4471.0, 12216.0, 0.0, 2301.0], [4473.0, 12217.0, 0.0, 2302.0], [4476.0, 12218.0, 0.0, 2303.0], [4478.0, 12219.0, 0.0, 2304.0], [4479.0, 12220.0, 0.0, 2305.0], [4480.0, 12221.0, 0.0, 2306.0], [4482.0, 12222.0, 0.0, 2307.0], [4484.0, 12223.0, 0.0, 2308.0], [4486.0, 12224.0, 0.0, 2309.0], [4488.0, 12225.0, 0.0, 2310.0], [4490.0, 12226.0, 0.0, 2311.0], [4492.0, 12227.0, 0.0, 2312.0], [4494.0, 12228.0, 0.0, 2313.0], [4495.0, 12229.0, 0.0, 2314.0], [4497.0, 12230.0, 0.0, 2315.0], [4500.0, 12231.0, 0.0, 2316.0], [4503.0, 12232.0, 0.0, 2317.0], [4504.0, 12233.0, 0.0, 2318.0], [4505.0, 12234.0, 0.0, 2319.0], [4508.0, 12235.0, 0.0, 2320.0], [4510.0, 12236.0, 0.0, 2321.0], [4511.0, 12237.0, 0.0, 2322.0], [4512.0, 12238.0, 0.0, 2323.0], [4514.0, 12239.0, 0.0, 2324.0], [4515.0, 12240.0, 0.0, 2325.0], [4518.0, 12241.0, 0.0, 2326.0], [4519.0, 12242.0, 0.0, 2327.0], [4520.0, 12243.0, 0.0, 2328.0], [4522.0, 12244.0, 0.0, 2329.0], [4523.0, 12245.0, 0.0, 2330.0], [4524.0, 12246.0, 0.0, 2331.0], [4525.0, 12247.0, 0.0, 2332.0], [4526.0, 12248.0, 0.0, 2333.0], [4529.0, 12249.0, 0.0, 2334.0], [4531.0, 12250.0, 0.0, 2335.0], [4532.0, 12251.0, 0.0, 2336.0], [4533.0, 12252.0, 0.0, 2337.0], [4534.0, 12253.0, 0.0, 2338.0], [4536.0, 12254.0, 0.0, 2339.0], [4537.0, 12255.0, 0.0, 2340.0], [4540.0, 12256.0, 0.0, 2341.0], [4541.0, 12257.0, 0.0, 2342.0], [4543.0, 12258.0, 0.0, 2343.0], [4544.0, 12259.0, 0.0, 2344.0], [4545.0, 12260.0, 0.0, 2345.0], [4547.0, 12261.0, 0.0, 2346.0], [4548.0, 12262.0, 0.0, 2347.0], [4549.0, 12263.0, 0.0, 2348.0], [4552.0, 12264.0, 0.0, 2349.0], [4554.0, 12265.0, 0.0, 2350.0], [4556.0, 12266.0, 0.0, 2351.0], [4557.0, 12267.0, 0.0, 2352.0], [4561.0, 12268.0, 0.0, 2353.0], [4562.0, 12269.0, 0.0, 2354.0], [4563.0, 12270.0, 0.0, 2355.0], [4568.0, 12271.0, 0.0, 2356.0], [4571.0, 12272.0, 0.0, 2357.0], [4575.0, 12273.0, 0.0, 2358.0], [4577.0, 12274.0, 0.0, 2359.0], [4578.0, 12275.0, 0.0, 2360.0], [4579.0, 12276.0, 0.0, 2361.0], [4580.0, 12277.0, 0.0, 2362.0], [4583.0, 12278.0, 0.0, 2363.0], [4587.0, 12279.0, 0.0, 2364.0], [4588.0, 12280.0, 0.0, 2365.0], [4590.0, 12281.0, 0.0, 2366.0], [4591.0, 12282.0, 0.0, 2367.0], [4592.0, 12283.0, 0.0, 2368.0], [4593.0, 12284.0, 0.0, 2369.0], [4594.0, 12285.0, 0.0, 2370.0], [4597.0, 12286.0, 0.0, 2371.0], [4598.0, 12287.0, 0.0, 2372.0], [4600.0, 12288.0, 0.0, 2373.0], [4601.0, 12289.0, 0.0, 2374.0], [4604.0, 12290.0, 0.0, 2375.0], [4605.0, 12291.0, 0.0, 2376.0], [4607.0, 12292.0, 0.0, 2377.0], [4609.0, 12293.0, 0.0, 2378.0], [4611.0, 12294.0, 0.0, 2379.0], [4619.0, 12295.0, 0.0, 2380.0], [4621.0, 12296.0, 0.0, 2381.0], [4624.0, 12297.0, 0.0, 2382.0], [4625.0, 12298.0, 0.0, 2383.0], [4626.0, 12299.0, 0.0, 2384.0], [4627.0, 12300.0, 0.0, 2385.0], [4628.0, 12301.0, 0.0, 2386.0], [4634.0, 12302.0, 0.0, 2387.0], [4635.0, 12303.0, 0.0, 2388.0], [4636.0, 12304.0, 0.0, 2389.0], [4638.0, 12305.0, 0.0, 2390.0], [4639.0, 12306.0, 0.0, 2391.0], [4642.0, 12307.0, 0.0, 2392.0], [4645.0, 12308.0, 0.0, 2393.0], [4647.0, 12309.0, 0.0, 2394.0], [4648.0, 12310.0, 0.0, 2395.0], [4652.0, 12311.0, 0.0, 2396.0], [4658.0, 12312.0, 0.0, 2397.0], [4663.0, 12313.0, 0.0, 2398.0], [4664.0, 12314.0, 0.0, 2399.0], [4667.0, 12315.0, 0.0, 2400.0], [4668.0, 12316.0, 0.0, 2401.0], [4669.0, 12317.0, 0.0, 2402.0], [4671.0, 12318.0, 0.0, 2403.0], [4672.0, 12319.0, 0.0, 2404.0], [4673.0, 12320.0, 0.0, 2405.0], [4674.0, 12321.0, 0.0, 2406.0], [4675.0, 12322.0, 0.0, 2407.0], [4677.0, 12323.0, 0.0, 2408.0], [4678.0, 12324.0, 0.0, 2409.0], [4679.0, 12325.0, 0.0, 2410.0], [4683.0, 12326.0, 0.0, 2411.0], [4685.0, 12327.0, 0.0, 2412.0], [4686.0, 12328.0, 0.0, 2413.0], [4690.0, 12329.0, 0.0, 2414.0], [4691.0, 12330.0, 0.0, 2415.0], [4692.0, 12331.0, 0.0, 2416.0], [4693.0, 12332.0, 0.0, 2417.0], [4696.0, 12333.0, 0.0, 2418.0], [4698.0, 12334.0, 0.0, 2419.0], [4699.0, 12335.0, 0.0, 2420.0], [4701.0, 12336.0, 0.0, 2421.0], [4707.0, 12337.0, 0.0, 2422.0], [4709.0, 12338.0, 0.0, 2423.0], [4710.0, 12339.0, 0.0, 2424.0], [4711.0, 12340.0, 0.0, 2425.0], [4712.0, 12341.0, 0.0, 2426.0], [4713.0, 12342.0, 0.0, 2427.0], [4714.0, 12343.0, 0.0, 2428.0], [4715.0, 12344.0, 0.0, 2429.0], [4716.0, 12345.0, 0.0, 2430.0], [4717.0, 12346.0, 0.0, 2431.0], [4718.0, 12347.0, 0.0, 2432.0], [4720.0, 12348.0, 0.0, 2433.0], [4721.0, 12349.0, 0.0, 2434.0], [4724.0, 12350.0, 0.0, 2435.0], [4725.0, 12351.0, 0.0, 2436.0], [4726.0, 12352.0, 0.0, 2437.0], [4728.0, 12353.0, 0.0, 2438.0], [4732.0, 12354.0, 0.0, 2439.0], [4733.0, 12355.0, 0.0, 2440.0], [4735.0, 12356.0, 0.0, 2441.0], [4736.0, 12357.0, 0.0, 2442.0], [4737.0, 12358.0, 0.0, 2443.0], [4739.0, 12359.0, 0.0, 2444.0], [4740.0, 12360.0, 0.0, 2445.0], [4741.0, 12361.0, 0.0, 2446.0], [4743.0, 12362.0, 0.0, 2447.0], [4744.0, 12363.0, 0.0, 2448.0], [4746.0, 12364.0, 0.0, 2449.0], [4747.0, 12365.0, 0.0, 2450.0], [4749.0, 12366.0, 0.0, 2451.0], [4751.0, 12367.0, 0.0, 2452.0], [4752.0, 12368.0, 0.0, 2453.0], [4755.0, 12369.0, 0.0, 2454.0], [4756.0, 12370.0, 0.0, 2455.0], [4757.0, 12371.0, 0.0, 2456.0], [4760.0, 12372.0, 0.0, 2457.0], [4764.0, 12373.0, 0.0, 2458.0], [4766.0, 12374.0, 0.0, 2459.0], [4769.0, 12375.0, 0.0, 2460.0], [4771.0, 12376.0, 0.0, 2461.0], [4772.0, 12377.0, 0.0, 2462.0], [4779.0, 12378.0, 0.0, 2463.0], [4780.0, 12379.0, 0.0, 2464.0], [4781.0, 12380.0, 0.0, 2465.0], [4783.0, 12381.0, 0.0, 2466.0], [4789.0, 12382.0, 0.0, 2467.0], [4791.0, 12383.0, 0.0, 2468.0], [4792.0, 12384.0, 0.0, 2469.0], [4794.0, 12385.0, 0.0, 2470.0], [4797.0, 12386.0, 0.0, 2471.0], [4799.0, 12387.0, 0.0, 2472.0], [4801.0, 12388.0, 0.0, 2473.0], [4804.0, 12389.0, 0.0, 2474.0], [4806.0, 12390.0, 0.0, 2475.0], [4807.0, 12391.0, 0.0, 2476.0], [4809.0, 12392.0, 0.0, 2477.0], [4810.0, 12393.0, 0.0, 2478.0], [4811.0, 12394.0, 0.0, 2479.0], [4812.0, 12395.0, 0.0, 2480.0], [4815.0, 12396.0, 0.0, 2481.0], [4816.0, 12397.0, 0.0, 2482.0], [4819.0, 12398.0, 0.0, 2483.0], [4820.0, 12399.0, 0.0, 2484.0], [4823.0, 12400.0, 0.0, 2485.0], [4826.0, 12401.0, 0.0, 2486.0], [4827.0, 12402.0, 0.0, 2487.0], [4828.0, 12403.0, 0.0, 2488.0], [4831.0, 12404.0, 0.0, 2489.0], [4832.0, 12405.0, 0.0, 2490.0], [4833.0, 12406.0, 0.0, 2491.0], [4834.0, 12407.0, 0.0, 2492.0], [4835.0, 12408.0, 0.0, 2493.0], [4836.0, 12409.0, 0.0, 2494.0], [4837.0, 12410.0, 0.0, 2495.0], [4840.0, 12411.0, 0.0, 2496.0], [4843.0, 12412.0, 0.0, 2497.0], [4845.0, 12413.0, 0.0, 2498.0], [4850.0, 12414.0, 0.0, 2499.0], [4856.0, 12415.0, 0.0, 2500.0], [4858.0, 12416.0, 0.0, 2501.0], [4859.0, 12417.0, 0.0, 2502.0], [4860.0, 12418.0, 0.0, 2503.0], [4861.0, 12419.0, 0.0, 2504.0], [4862.0, 12420.0, 0.0, 2505.0], [4865.0, 12421.0, 0.0, 2506.0], [4866.0, 12422.0, 0.0, 2507.0], [4869.0, 12423.0, 0.0, 2508.0], [4870.0, 12424.0, 0.0, 2509.0], [4872.0, 12425.0, 0.0, 2510.0], [4873.0, 12426.0, 0.0, 2511.0], [4874.0, 12427.0, 0.0, 2512.0], [4875.0, 12428.0, 0.0, 2513.0], [4878.0, 12429.0, 0.0, 2514.0], [4880.0, 12430.0, 0.0, 2515.0], [4883.0, 12431.0, 0.0, 2516.0], [4884.0, 12432.0, 0.0, 2517.0], [4885.0, 12433.0, 0.0, 2518.0], [4887.0, 12434.0, 0.0, 2519.0], [4889.0, 12435.0, 0.0, 2520.0], [4890.0, 12436.0, 0.0, 2521.0], [4891.0, 12437.0, 0.0, 2522.0], [4892.0, 12438.0, 0.0, 2523.0], [4895.0, 12439.0, 0.0, 2524.0], [4897.0, 12440.0, 0.0, 2525.0], [4899.0, 12441.0, 0.0, 2526.0], [4902.0, 12442.0, 0.0, 2527.0], [4909.0, 12443.0, 0.0, 2528.0], [4912.0, 12444.0, 0.0, 2529.0], [4918.0, 12445.0, 0.0, 2530.0], [4920.0, 12446.0, 0.0, 2531.0], [4923.0, 12447.0, 0.0, 2532.0], [4925.0, 12448.0, 0.0, 2533.0], [4927.0, 12449.0, 0.0, 2534.0], [4928.0, 12450.0, 0.0, 2535.0], [4930.0, 12451.0, 0.0, 2536.0], [4931.0, 12452.0, 0.0, 2537.0], [4935.0, 12453.0, 0.0, 2538.0], [4936.0, 12454.0, 0.0, 2539.0], [4937.0, 12455.0, 0.0, 2540.0], [4938.0, 12456.0, 0.0, 2541.0], [4940.0, 12457.0, 0.0, 2542.0], [4941.0, 12458.0, 0.0, 2543.0], [4942.0, 12459.0, 0.0, 2544.0], [4950.0, 12460.0, 0.0, 2545.0], [4951.0, 12461.0, 0.0, 2546.0], [4953.0, 12462.0, 0.0, 2547.0], [4954.0, 12463.0, 0.0, 2548.0], [4955.0, 12464.0, 0.0, 2549.0], [4959.0, 12465.0, 0.0, 2550.0], [4961.0, 12466.0, 0.0, 2551.0], [4962.0, 12467.0, 0.0, 2552.0], [4964.0, 12468.0, 0.0, 2553.0], [4967.0, 12469.0, 0.0, 2554.0], [4968.0, 12470.0, 0.0, 2555.0], [4969.0, 12471.0, 0.0, 2556.0], [4970.0, 12472.0, 0.0, 2557.0], [4973.0, 12473.0, 0.0, 2558.0], [4974.0, 12474.0, 0.0, 2559.0], [4975.0, 12475.0, 0.0, 2560.0], [4978.0, 12476.0, 0.0, 2561.0], [4980.0, 12477.0, 0.0, 2562.0], [4984.0, 12478.0, 0.0, 2563.0], [4987.0, 12479.0, 0.0, 2564.0], [4988.0, 12480.0, 0.0, 2565.0], [4989.0, 12481.0, 0.0, 2566.0], [4990.0, 12482.0, 0.0, 2567.0], [4991.0, 12483.0, 0.0, 2568.0], [4992.0, 12484.0, 0.0, 2569.0], [4993.0, 12485.0, 0.0, 2570.0], [4994.0, 12486.0, 0.0, 2571.0], [4996.0, 12487.0, 0.0, 2572.0], [4997.0, 12488.0, 0.0, 2573.0], [5000.0, 12489.0, 0.0, 2574.0], [5001.0, 12490.0, 0.0, 2575.0], [5002.0, 12491.0, 0.0, 2576.0], [5004.0, 12492.0, 0.0, 2577.0], [5005.0, 12493.0, 0.0, 2578.0], [5010.0, 12494.0, 0.0, 2579.0], [5011.0, 12495.0, 0.0, 2580.0], [5012.0, 12496.0, 0.0, 2581.0], [5014.0, 12497.0, 0.0, 2582.0], [5020.0, 12498.0, 0.0, 2583.0], [5022.0, 12499.0, 0.0, 2584.0], [5025.0, 12500.0, 0.0, 2585.0], [5026.0, 12501.0, 0.0, 2586.0], [5027.0, 12502.0, 0.0, 2587.0], [5028.0, 12503.0, 0.0, 2588.0], [5029.0, 12504.0, 0.0, 2589.0], [5030.0, 12505.0, 0.0, 2590.0], [5032.0, 12506.0, 0.0, 2591.0], [5034.0, 12507.0, 0.0, 2592.0], [5037.0, 12508.0, 0.0, 2593.0], [5040.0, 12509.0, 0.0, 2594.0], [5041.0, 12510.0, 0.0, 2595.0], [5045.0, 12511.0, 0.0, 2596.0], [5050.0, 12512.0, 0.0, 2597.0], [5051.0, 12513.0, 0.0, 2598.0], [5052.0, 12514.0, 0.0, 2599.0], [5053.0, 12515.0, 0.0, 2600.0], [5054.0, 12516.0, 0.0, 2601.0], [5055.0, 12517.0, 0.0, 2602.0], [5056.0, 12518.0, 0.0, 2603.0], [5057.0, 12519.0, 0.0, 2604.0], [5058.0, 12520.0, 0.0, 2605.0], [5060.0, 12521.0, 0.0, 2606.0], [5061.0, 12522.0, 0.0, 2607.0], [5063.0, 12523.0, 0.0, 2608.0], [5067.0, 12524.0, 0.0, 2609.0], [5068.0, 12525.0, 0.0, 2610.0], [5069.0, 12526.0, 0.0, 2611.0], [5070.0, 12527.0, 0.0, 2612.0], [5073.0, 12528.0, 0.0, 2613.0], [5074.0, 12529.0, 0.0, 2614.0], [5075.0, 12530.0, 0.0, 2615.0], [5077.0, 12531.0, 0.0, 2616.0], [5079.0, 12532.0, 0.0, 2617.0], [5080.0, 12533.0, 0.0, 2618.0], [5082.0, 12534.0, 0.0, 2619.0], [5085.0, 12535.0, 0.0, 2620.0], [5087.0, 12536.0, 0.0, 2621.0], [5089.0, 12537.0, 0.0, 2622.0], [5090.0, 12538.0, 0.0, 2623.0], [5091.0, 12539.0, 0.0, 2624.0], [5092.0, 12540.0, 0.0, 2625.0], [5093.0, 12541.0, 0.0, 2626.0], [5094.0, 12542.0, 0.0, 2627.0], [5096.0, 12543.0, 0.0, 2628.0], [5098.0, 12544.0, 0.0, 2629.0], [5100.0, 12545.0, 0.0, 2630.0], [5102.0, 12546.0, 0.0, 2631.0], [5103.0, 12547.0, 0.0, 2632.0], [5107.0, 12548.0, 0.0, 2633.0], [5108.0, 12549.0, 0.0, 2634.0], [5110.0, 12550.0, 0.0, 2635.0], [5112.0, 12551.0, 0.0, 2636.0], [5113.0, 12552.0, 0.0, 2637.0], [5116.0, 12553.0, 0.0, 2638.0], [5120.0, 12554.0, 0.0, 2639.0], [5121.0, 12555.0, 0.0, 2640.0], [5122.0, 12556.0, 0.0, 2641.0], [5125.0, 12557.0, 0.0, 2642.0], [5127.0, 12558.0, 0.0, 2643.0], [5128.0, 12559.0, 0.0, 2644.0], [5129.0, 12560.0, 0.0, 2645.0], [5130.0, 12561.0, 0.0, 2646.0], [5134.0, 12562.0, 0.0, 2647.0], [5139.0, 12563.0, 0.0, 2648.0], [5144.0, 12564.0, 0.0, 2649.0], [5147.0, 12565.0, 0.0, 2650.0], [5150.0, 12566.0, 0.0, 2651.0], [5154.0, 12567.0, 0.0, 2652.0], [5155.0, 12568.0, 0.0, 2653.0], [5160.0, 12569.0, 0.0, 2654.0], [5161.0, 12570.0, 0.0, 2655.0], [5165.0, 12571.0, 0.0, 2656.0], [5168.0, 12572.0, 0.0, 2657.0], [5169.0, 12573.0, 0.0, 2658.0], [5170.0, 12574.0, 0.0, 2659.0], [5172.0, 12575.0, 0.0, 2660.0], [5173.0, 12576.0, 0.0, 2661.0], [5174.0, 12577.0, 0.0, 2662.0], [5176.0, 12578.0, 0.0, 2663.0], [5179.0, 12579.0, 0.0, 2664.0], [5182.0, 12580.0, 0.0, 2665.0], [5185.0, 12581.0, 0.0, 2666.0], [5186.0, 12582.0, 0.0, 2667.0], [5187.0, 12583.0, 0.0, 2668.0], [5189.0, 12584.0, 0.0, 2669.0], [5190.0, 12585.0, 0.0, 2670.0], [5191.0, 12586.0, 0.0, 2671.0], [5192.0, 12587.0, 0.0, 2672.0], [5195.0, 12588.0, 0.0, 2673.0], [5197.0, 12589.0, 0.0, 2674.0], [5200.0, 12590.0, 0.0, 2675.0], [5204.0, 12591.0, 0.0, 2676.0], [5205.0, 12592.0, 0.0, 2677.0], [5206.0, 12593.0, 0.0, 2678.0], [5207.0, 12594.0, 0.0, 2679.0], [5211.0, 12595.0, 0.0, 2680.0], [5214.0, 12596.0, 0.0, 2681.0], [5215.0, 12597.0, 0.0, 2682.0], [5217.0, 12598.0, 0.0, 2683.0], [5221.0, 12599.0, 0.0, 2684.0], [5223.0, 12600.0, 0.0, 2685.0], [5225.0, 12601.0, 0.0, 2686.0], [5229.0, 12602.0, 0.0, 2687.0], [5231.0, 12603.0, 0.0, 2688.0], [5232.0, 12604.0, 0.0, 2689.0], [5233.0, 12605.0, 0.0, 2690.0], [5234.0, 12606.0, 0.0, 2691.0], [5237.0, 12607.0, 0.0, 2692.0], [5239.0, 12608.0, 0.0, 2693.0], [5241.0, 12609.0, 0.0, 2694.0], [5242.0, 12610.0, 0.0, 2695.0], [5243.0, 12611.0, 0.0, 2696.0], [5247.0, 12612.0, 0.0, 2697.0], [5248.0, 12613.0, 0.0, 2698.0], [5250.0, 12614.0, 0.0, 2699.0], [5251.0, 12615.0, 0.0, 2700.0], [5252.0, 12616.0, 0.0, 2701.0], [5253.0, 12617.0, 0.0, 2702.0], [5256.0, 12618.0, 0.0, 2703.0], [5259.0, 12619.0, 0.0, 2704.0], [5262.0, 12620.0, 0.0, 2705.0], [5266.0, 12621.0, 0.0, 2706.0], [5267.0, 12622.0, 0.0, 2707.0], [5269.0, 12623.0, 0.0, 2708.0], [5270.0, 12624.0, 0.0, 2709.0], [5271.0, 12625.0, 0.0, 2710.0], [5276.0, 12626.0, 0.0, 2711.0], [5277.0, 12627.0, 0.0, 2712.0], [5279.0, 12628.0, 0.0, 2713.0], [5283.0, 12629.0, 0.0, 2714.0], [5285.0, 12630.0, 0.0, 2715.0], [5287.0, 12631.0, 0.0, 2716.0], [5289.0, 12632.0, 0.0, 2717.0], [5290.0, 12633.0, 0.0, 2718.0], [5291.0, 12634.0, 0.0, 2719.0], [5296.0, 12635.0, 0.0, 2720.0], [5297.0, 12636.0, 0.0, 2721.0], [5298.0, 12637.0, 0.0, 2722.0], [5299.0, 12638.0, 0.0, 2723.0], [5300.0, 12639.0, 0.0, 2724.0], [5302.0, 12640.0, 0.0, 2725.0], [5304.0, 12641.0, 0.0, 2726.0], [5307.0, 12642.0, 0.0, 2727.0], [5309.0, 12643.0, 0.0, 2728.0], [5316.0, 12644.0, 0.0, 2729.0], [5319.0, 12645.0, 0.0, 2730.0], [5320.0, 12646.0, 0.0, 2731.0], [5327.0, 12647.0, 0.0, 2732.0], [5328.0, 12648.0, 0.0, 2733.0], [5329.0, 12649.0, 0.0, 2734.0], [5330.0, 12650.0, 0.0, 2735.0], [5331.0, 12651.0, 0.0, 2736.0], [5339.0, 12652.0, 0.0, 2737.0], [5340.0, 12653.0, 0.0, 2738.0], [5341.0, 12654.0, 0.0, 2739.0], [5343.0, 12655.0, 0.0, 2740.0], [5344.0, 12656.0, 0.0, 2741.0], [5348.0, 12657.0, 0.0, 2742.0], [5350.0, 12658.0, 0.0, 2743.0], [5351.0, 12659.0, 0.0, 2744.0], [5353.0, 12660.0, 0.0, 2745.0], [5357.0, 12661.0, 0.0, 2746.0], [5362.0, 12662.0, 0.0, 2747.0], [5363.0, 12663.0, 0.0, 2748.0], [5366.0, 12664.0, 0.0, 2749.0], [5367.0, 12665.0, 0.0, 2750.0], [5372.0, 12666.0, 0.0, 2751.0], [5373.0, 12667.0, 0.0, 2752.0], [5374.0, 12668.0, 0.0, 2753.0], [5379.0, 12669.0, 0.0, 2754.0], [5380.0, 12670.0, 0.0, 2755.0], [5381.0, 12671.0, 0.0, 2756.0], [5382.0, 12672.0, 0.0, 2757.0], [5384.0, 12673.0, 0.0, 2758.0], [5385.0, 12674.0, 0.0, 2759.0], [5386.0, 12675.0, 0.0, 2760.0], [5387.0, 12676.0, 0.0, 2761.0], [5389.0, 12677.0, 0.0, 2762.0], [5392.0, 12678.0, 0.0, 2763.0], [5394.0, 12679.0, 0.0, 2764.0], [5397.0, 12680.0, 0.0, 2765.0], [5398.0, 12681.0, 0.0, 2766.0], [5403.0, 12682.0, 0.0, 2767.0], [5405.0, 12683.0, 0.0, 2768.0], [5408.0, 12684.0, 0.0, 2769.0], [5409.0, 12685.0, 0.0, 2770.0], [5411.0, 12686.0, 0.0, 2771.0], [5413.0, 12687.0, 0.0, 2772.0], [5415.0, 12688.0, 0.0, 2773.0], [5416.0, 12689.0, 0.0, 2774.0], [5418.0, 12690.0, 0.0, 2775.0], [5420.0, 12691.0, 0.0, 2776.0], [5421.0, 12692.0, 0.0, 2777.0], [5422.0, 12693.0, 0.0, 2778.0], [5423.0, 12694.0, 0.0, 2779.0], [5424.0, 12695.0, 0.0, 2780.0], [5426.0, 12696.0, 0.0, 2781.0], [5430.0, 12697.0, 0.0, 2782.0], [5431.0, 12698.0, 0.0, 2783.0], [5432.0, 12699.0, 0.0, 2784.0], [5433.0, 12700.0, 0.0, 2785.0], [5436.0, 12701.0, 0.0, 2786.0], [5438.0, 12702.0, 0.0, 2787.0], [5441.0, 12703.0, 0.0, 2788.0], [5445.0, 12704.0, 0.0, 2789.0], [5446.0, 12705.0, 0.0, 2790.0], [5447.0, 12706.0, 0.0, 2791.0], [5449.0, 12707.0, 0.0, 2792.0], [5450.0, 12708.0, 0.0, 2793.0], [5451.0, 12709.0, 0.0, 2794.0], [5452.0, 12710.0, 0.0, 2795.0], [5455.0, 12711.0, 0.0, 2796.0], [5456.0, 12712.0, 0.0, 2797.0], [5459.0, 12713.0, 0.0, 2798.0], [5460.0, 12714.0, 0.0, 2799.0], [5461.0, 12715.0, 0.0, 2800.0], [5462.0, 12716.0, 0.0, 2801.0], [5463.0, 12717.0, 0.0, 2802.0], [5464.0, 12718.0, 0.0, 2803.0], [5465.0, 12719.0, 0.0, 2804.0], [5466.0, 12720.0, 0.0, 2805.0], [5468.0, 12721.0, 0.0, 2806.0], [5470.0, 12722.0, 0.0, 2807.0], [5471.0, 12723.0, 0.0, 2808.0], [5472.0, 12724.0, 0.0, 2809.0], [5474.0, 12725.0, 0.0, 2810.0], [5476.0, 12726.0, 0.0, 2811.0], [5477.0, 12727.0, 0.0, 2812.0], [5478.0, 12728.0, 0.0, 2813.0], [5479.0, 12729.0, 0.0, 2814.0], [5480.0, 12730.0, 0.0, 2815.0], [5481.0, 12731.0, 0.0, 2816.0], [5482.0, 12732.0, 0.0, 2817.0], [5485.0, 12733.0, 0.0, 2818.0], [5488.0, 12734.0, 0.0, 2819.0], [5490.0, 12735.0, 0.0, 2820.0], [5493.0, 12736.0, 0.0, 2821.0], [5494.0, 12737.0, 0.0, 2822.0], [5497.0, 12738.0, 0.0, 2823.0], [5498.0, 12739.0, 0.0, 2824.0], [5499.0, 12740.0, 0.0, 2825.0], [5500.0, 12741.0, 0.0, 2826.0], [5502.0, 12742.0, 0.0, 2827.0], [5504.0, 12743.0, 0.0, 2828.0], [5505.0, 12744.0, 0.0, 2829.0], [5506.0, 12745.0, 0.0, 2830.0], [5509.0, 12746.0, 0.0, 2831.0], [5512.0, 12747.0, 0.0, 2832.0], [5513.0, 12748.0, 0.0, 2833.0], [5514.0, 12749.0, 0.0, 2834.0], [5515.0, 12750.0, 0.0, 2835.0], [5516.0, 12751.0, 0.0, 2836.0], [5517.0, 12752.0, 0.0, 2837.0], [5519.0, 12753.0, 0.0, 2838.0], [5525.0, 12754.0, 0.0, 2839.0], [5526.0, 12755.0, 0.0, 2840.0], [5530.0, 12756.0, 0.0, 2841.0], [5532.0, 12757.0, 0.0, 2842.0], [5533.0, 12758.0, 0.0, 2843.0], [5534.0, 12759.0, 0.0, 2844.0], [5536.0, 12760.0, 0.0, 2845.0], [5538.0, 12761.0, 0.0, 2846.0], [5540.0, 12762.0, 0.0, 2847.0], [5541.0, 12763.0, 0.0, 2848.0], [5545.0, 12764.0, 0.0, 2849.0], [5546.0, 12765.0, 0.0, 2850.0], [5548.0, 12766.0, 0.0, 2851.0], [5550.0, 12767.0, 0.0, 2852.0], [5551.0, 12768.0, 0.0, 2853.0], [5553.0, 12769.0, 0.0, 2854.0], [5555.0, 12770.0, 0.0, 2855.0], [5556.0, 12771.0, 0.0, 2856.0], [5558.0, 12772.0, 0.0, 2857.0], [5559.0, 12773.0, 0.0, 2858.0], [5560.0, 12774.0, 0.0, 2859.0], [5561.0, 12775.0, 0.0, 2860.0], [5563.0, 12776.0, 0.0, 2861.0], [5564.0, 12777.0, 0.0, 2862.0], [5565.0, 12778.0, 0.0, 2863.0], [5566.0, 12779.0, 0.0, 2864.0], [5567.0, 12780.0, 0.0, 2865.0], [5569.0, 12781.0, 0.0, 2866.0], [5570.0, 12782.0, 0.0, 2867.0], [5572.0, 12783.0, 0.0, 2868.0], [5574.0, 12784.0, 0.0, 2869.0], [5580.0, 12785.0, 0.0, 2870.0], [5581.0, 12786.0, 0.0, 2871.0], [5583.0, 12787.0, 0.0, 2872.0], [5585.0, 12788.0, 0.0, 2873.0], [5586.0, 12789.0, 0.0, 2874.0], [5587.0, 12790.0, 0.0, 2875.0], [5588.0, 12791.0, 0.0, 2876.0], [5590.0, 12792.0, 0.0, 2877.0], [5591.0, 12793.0, 0.0, 2878.0], [5592.0, 12794.0, 0.0, 2879.0], [5593.0, 12795.0, 0.0, 2880.0], [5595.0, 12796.0, 0.0, 2881.0], [5596.0, 12797.0, 0.0, 2882.0], [5598.0, 12798.0, 0.0, 2883.0], [5600.0, 12799.0, 0.0, 2884.0], [5602.0, 12800.0, 0.0, 2885.0], [5604.0, 12801.0, 0.0, 2886.0], [5606.0, 12802.0, 0.0, 2887.0], [5607.0, 12803.0, 0.0, 2888.0], [5608.0, 12804.0, 0.0, 2889.0], [5610.0, 12805.0, 0.0, 2890.0], [5615.0, 12806.0, 0.0, 2891.0], [5616.0, 12807.0, 0.0, 2892.0], [5617.0, 12808.0, 0.0, 2893.0], [5623.0, 12809.0, 0.0, 2894.0], [5625.0, 12810.0, 0.0, 2895.0], [5629.0, 12811.0, 0.0, 2896.0], [5631.0, 12812.0, 0.0, 2897.0], [5637.0, 12813.0, 0.0, 2898.0], [5642.0, 12814.0, 0.0, 2899.0], [5645.0, 12815.0, 0.0, 2900.0], [5648.0, 12816.0, 0.0, 2901.0], [5652.0, 12817.0, 0.0, 2902.0], [5654.0, 12818.0, 0.0, 2903.0], [5655.0, 12819.0, 0.0, 2904.0], [5658.0, 12820.0, 0.0, 2905.0], [5662.0, 12821.0, 0.0, 2906.0], [5663.0, 12822.0, 0.0, 2907.0], [5664.0, 12823.0, 0.0, 2908.0], [5666.0, 12824.0, 0.0, 2909.0], [5668.0, 12825.0, 0.0, 2910.0], [5671.0, 12826.0, 0.0, 2911.0], [5674.0, 12827.0, 0.0, 2912.0], [5675.0, 12828.0, 0.0, 2913.0], [5676.0, 12829.0, 0.0, 2914.0], [5677.0, 12830.0, 0.0, 2915.0], [5678.0, 12831.0, 0.0, 2916.0], [5683.0, 12832.0, 0.0, 2917.0], [5686.0, 12833.0, 0.0, 2918.0], [5687.0, 12834.0, 0.0, 2919.0], [5688.0, 12835.0, 0.0, 2920.0], [5689.0, 12836.0, 0.0, 2921.0], [5690.0, 12837.0, 0.0, 2922.0], [5691.0, 12838.0, 0.0, 2923.0], [5693.0, 12839.0, 0.0, 2924.0], [5694.0, 12840.0, 0.0, 2925.0], [5696.0, 12841.0, 0.0, 2926.0], [5697.0, 12842.0, 0.0, 2927.0], [5699.0, 12843.0, 0.0, 2928.0], [5700.0, 12844.0, 0.0, 2929.0], [5703.0, 12845.0, 0.0, 2930.0], [5704.0, 12846.0, 0.0, 2931.0], [5705.0, 12847.0, 0.0, 2932.0], [5707.0, 12848.0, 0.0, 2933.0], [5710.0, 12849.0, 0.0, 2934.0], [5711.0, 12850.0, 0.0, 2935.0], [5712.0, 12851.0, 0.0, 2936.0], [5715.0, 12852.0, 0.0, 2937.0], [5716.0, 12853.0, 0.0, 2938.0], [5720.0, 12854.0, 0.0, 2939.0], [5722.0, 12855.0, 0.0, 2940.0], [5729.0, 12856.0, 0.0, 2941.0], [5730.0, 12857.0, 0.0, 2942.0], [5731.0, 12858.0, 0.0, 2943.0], [5732.0, 12859.0, 0.0, 2944.0], [5733.0, 12860.0, 0.0, 2945.0], [5734.0, 12861.0, 0.0, 2946.0], [5737.0, 12862.0, 0.0, 2947.0], [5738.0, 12863.0, 0.0, 2948.0], [5743.0, 12864.0, 0.0, 2949.0], [5744.0, 12865.0, 0.0, 2950.0], [5746.0, 12866.0, 0.0, 2951.0], [5749.0, 12867.0, 0.0, 2952.0], [5750.0, 12868.0, 0.0, 2953.0], [5751.0, 12869.0, 0.0, 2954.0], [5752.0, 12870.0, 0.0, 2955.0], [5753.0, 12871.0, 0.0, 2956.0], [5754.0, 12872.0, 0.0, 2957.0], [5758.0, 12873.0, 0.0, 2958.0], [5759.0, 12874.0, 0.0, 2959.0], [5761.0, 12875.0, 0.0, 2960.0], [5763.0, 12876.0, 0.0, 2961.0], [5765.0, 12877.0, 0.0, 2962.0], [5766.0, 12878.0, 0.0, 2963.0], [5768.0, 12879.0, 0.0, 2964.0], [5769.0, 12880.0, 0.0, 2965.0], [5770.0, 12881.0, 0.0, 2966.0], [5771.0, 12882.0, 0.0, 2967.0], [5774.0, 12883.0, 0.0, 2968.0], [5776.0, 12884.0, 0.0, 2969.0], [5778.0, 12885.0, 0.0, 2970.0], [5781.0, 12886.0, 0.0, 2971.0], [5782.0, 12887.0, 0.0, 2972.0], [5787.0, 12888.0, 0.0, 2973.0], [5789.0, 12889.0, 0.0, 2974.0], [5790.0, 12890.0, 0.0, 2975.0], [5793.0, 12891.0, 0.0, 2976.0], [5794.0, 12892.0, 0.0, 2977.0], [5797.0, 12893.0, 0.0, 2978.0], [5800.0, 12894.0, 0.0, 2979.0], [5802.0, 12895.0, 0.0, 2980.0], [5803.0, 12896.0, 0.0, 2981.0], [5804.0, 12897.0, 0.0, 2982.0], [5806.0, 12898.0, 0.0, 2983.0], [5807.0, 12899.0, 0.0, 2984.0], [5809.0, 12900.0, 0.0, 2985.0], [5810.0, 12901.0, 0.0, 2986.0], [5813.0, 12902.0, 0.0, 2987.0], [5815.0, 12903.0, 0.0, 2988.0], [5816.0, 12904.0, 0.0, 2989.0], [5817.0, 12905.0, 0.0, 2990.0], [5820.0, 12906.0, 0.0, 2991.0], [5821.0, 12907.0, 0.0, 2992.0], [5823.0, 12908.0, 0.0, 2993.0], [5824.0, 12909.0, 0.0, 2994.0], [5827.0, 12910.0, 0.0, 2995.0], [5828.0, 12911.0, 0.0, 2996.0], [5829.0, 12912.0, 0.0, 2997.0], [5834.0, 12913.0, 0.0, 2998.0], [5836.0, 12914.0, 0.0, 2999.0], [5837.0, 12915.0, 0.0, 3000.0], [5839.0, 12916.0, 0.0, 3001.0], [5841.0, 12917.0, 0.0, 3002.0], [5842.0, 12918.0, 0.0, 3003.0], [5843.0, 12919.0, 0.0, 3004.0], [5845.0, 12920.0, 0.0, 3005.0], [5852.0, 12921.0, 0.0, 3006.0], [5855.0, 12922.0, 0.0, 3007.0], [5857.0, 12923.0, 0.0, 3008.0], [5863.0, 12924.0, 0.0, 3009.0], [5865.0, 12925.0, 0.0, 3010.0], [5866.0, 12926.0, 0.0, 3011.0], [5867.0, 12927.0, 0.0, 3012.0], [5870.0, 12928.0, 0.0, 3013.0], [5871.0, 12929.0, 0.0, 3014.0], [5873.0, 12930.0, 0.0, 3015.0], [5874.0, 12931.0, 0.0, 3016.0], [5875.0, 12932.0, 0.0, 3017.0], [5877.0, 12933.0, 0.0, 3018.0], [5880.0, 12934.0, 0.0, 3019.0], [5882.0, 12935.0, 0.0, 3020.0], [5883.0, 12936.0, 0.0, 3021.0], [5886.0, 12937.0, 0.0, 3022.0], [5888.0, 12938.0, 0.0, 3023.0], [5890.0, 12939.0, 0.0, 3024.0], [5892.0, 12940.0, 0.0, 3025.0], [5893.0, 12941.0, 0.0, 3026.0], [5896.0, 12942.0, 0.0, 3027.0], [5899.0, 12943.0, 0.0, 3028.0], [5902.0, 12944.0, 0.0, 3029.0], [5904.0, 12945.0, 0.0, 3030.0], [5905.0, 12946.0, 0.0, 3031.0], [5908.0, 12947.0, 0.0, 3032.0], [5909.0, 12948.0, 0.0, 3033.0], [5910.0, 12949.0, 0.0, 3034.0], [5911.0, 12950.0, 0.0, 3035.0], [5912.0, 12951.0, 0.0, 3036.0], [5913.0, 12952.0, 0.0, 3037.0], [5916.0, 12953.0, 0.0, 3038.0], [5917.0, 12954.0, 0.0, 3039.0], [5920.0, 12955.0, 0.0, 3040.0], [5924.0, 12956.0, 0.0, 3041.0], [5928.0, 12957.0, 0.0, 3042.0], [5930.0, 12958.0, 0.0, 3043.0], [5931.0, 12959.0, 0.0, 3044.0], [5936.0, 12960.0, 0.0, 3045.0], [5937.0, 12961.0, 0.0, 3046.0], [5938.0, 12962.0, 0.0, 3047.0], [5940.0, 12963.0, 0.0, 3048.0], [5943.0, 12964.0, 0.0, 3049.0], [5947.0, 12965.0, 0.0, 3050.0], [5948.0, 12966.0, 0.0, 3051.0], [5949.0, 12967.0, 0.0, 3052.0], [5950.0, 12968.0, 0.0, 3053.0], [5952.0, 12969.0, 0.0, 3054.0], [5955.0, 12970.0, 0.0, 3055.0], [5956.0, 12971.0, 0.0, 3056.0], [5957.0, 12972.0, 0.0, 3057.0], [5958.0, 12973.0, 0.0, 3058.0], [5960.0, 12974.0, 0.0, 3059.0], [5963.0, 12975.0, 0.0, 3060.0], [5964.0, 12976.0, 0.0, 3061.0], [5965.0, 12977.0, 0.0, 3062.0], [5976.0, 12978.0, 0.0, 3063.0], [5979.0, 12979.0, 0.0, 3064.0], [5980.0, 12980.0, 0.0, 3065.0], [5982.0, 12981.0, 0.0, 3066.0], [5983.0, 12982.0, 0.0, 3067.0], [5984.0, 12983.0, 0.0, 3068.0], [5986.0, 12984.0, 0.0, 3069.0], [5988.0, 12985.0, 0.0, 3070.0], [5993.0, 12986.0, 0.0, 3071.0], [5994.0, 12987.0, 0.0, 3072.0], [5995.0, 12988.0, 0.0, 3073.0], [5997.0, 12989.0, 0.0, 3074.0], [6000.0, 12990.0, 0.0, 3075.0], [6002.0, 12991.0, 0.0, 3076.0], [6004.0, 12992.0, 0.0, 3077.0], [6008.0, 12993.0, 0.0, 3078.0], [6010.0, 12994.0, 0.0, 3079.0], [6011.0, 12995.0, 0.0, 3080.0], [6013.0, 12996.0, 0.0, 3081.0], [6014.0, 12997.0, 0.0, 3082.0], [6015.0, 12998.0, 0.0, 3083.0], [6016.0, 12999.0, 0.0, 3084.0], [6018.0, 13000.0, 0.0, 3085.0], [6021.0, 13001.0, 0.0, 3086.0], [6022.0, 13002.0, 0.0, 3087.0], [6023.0, 13003.0, 0.0, 3088.0], [6026.0, 13004.0, 0.0, 3089.0], [6032.0, 13005.0, 0.0, 3090.0], [6034.0, 13006.0, 0.0, 3091.0], [6035.0, 13007.0, 0.0, 3092.0], [6036.0, 13008.0, 0.0, 3093.0], [6037.0, 13009.0, 0.0, 3094.0], [6038.0, 13010.0, 0.0, 3095.0], [6039.0, 13011.0, 0.0, 3096.0], [6040.0, 13012.0, 0.0, 3097.0], [6043.0, 13013.0, 0.0, 3098.0], [6045.0, 13014.0, 0.0, 3099.0], [6047.0, 13015.0, 0.0, 3100.0], [6049.0, 13016.0, 0.0, 3101.0], [6051.0, 13017.0, 0.0, 3102.0], [6054.0, 13018.0, 0.0, 3103.0], [6058.0, 13019.0, 0.0, 3104.0], [6059.0, 13020.0, 0.0, 3105.0], [6061.0, 13021.0, 0.0, 3106.0], [6062.0, 13022.0, 0.0, 3107.0], [6066.0, 13023.0, 0.0, 3108.0], [6068.0, 13024.0, 0.0, 3109.0], [6071.0, 13025.0, 0.0, 3110.0], [6073.0, 13026.0, 0.0, 3111.0], [6074.0, 13027.0, 0.0, 3112.0], [6076.0, 13028.0, 0.0, 3113.0], [6077.0, 13029.0, 0.0, 3114.0], [6078.0, 13030.0, 0.0, 3115.0], [6079.0, 13031.0, 0.0, 3116.0], [6082.0, 13032.0, 0.0, 3117.0], [6083.0, 13033.0, 0.0, 3118.0], [6086.0, 13034.0, 0.0, 3119.0], [6087.0, 13035.0, 0.0, 3120.0], [6091.0, 13036.0, 0.0, 3121.0], [6092.0, 13037.0, 0.0, 3122.0], [6093.0, 13038.0, 0.0, 3123.0], [6094.0, 13039.0, 0.0, 3124.0], [6095.0, 13040.0, 0.0, 3125.0], [6097.0, 13041.0, 0.0, 3126.0], [6099.0, 13042.0, 0.0, 3127.0], [6100.0, 13043.0, 0.0, 3128.0], [6101.0, 13044.0, 0.0, 3129.0], [6104.0, 13045.0, 0.0, 3130.0], [6106.0, 13046.0, 0.0, 3131.0], [6108.0, 13047.0, 0.0, 3132.0], [6109.0, 13048.0, 0.0, 3133.0], [6111.0, 13049.0, 0.0, 3134.0], [6114.0, 13050.0, 0.0, 3135.0], [6115.0, 13051.0, 0.0, 3136.0], [6116.0, 13052.0, 0.0, 3137.0], [6118.0, 13053.0, 0.0, 3138.0], [6119.0, 13054.0, 0.0, 3139.0], [6121.0, 13055.0, 0.0, 3140.0], [6122.0, 13056.0, 0.0, 3141.0], [6124.0, 13057.0, 0.0, 3142.0], [6127.0, 13058.0, 0.0, 3143.0], [6128.0, 13059.0, 0.0, 3144.0], [6129.0, 13060.0, 0.0, 3145.0], [6130.0, 13061.0, 0.0, 3146.0], [6132.0, 13062.0, 0.0, 3147.0], [6135.0, 13063.0, 0.0, 3148.0], [6137.0, 13064.0, 0.0, 3149.0], [6138.0, 13065.0, 0.0, 3150.0], [6139.0, 13066.0, 0.0, 3151.0], [6141.0, 13067.0, 0.0, 3152.0], [6143.0, 13068.0, 0.0, 3153.0], [6144.0, 13069.0, 0.0, 3154.0], [6146.0, 13070.0, 0.0, 3155.0], [6150.0, 13071.0, 0.0, 3156.0], [6154.0, 13072.0, 0.0, 3157.0], [6155.0, 13073.0, 0.0, 3158.0], [6156.0, 13074.0, 0.0, 3159.0], [6157.0, 13075.0, 0.0, 3160.0], [6161.0, 13076.0, 0.0, 3161.0], [6162.0, 13077.0, 0.0, 3162.0], [6163.0, 13078.0, 0.0, 3163.0], [6165.0, 13079.0, 0.0, 3164.0], [6167.0, 13080.0, 0.0, 3165.0], [6175.0, 13081.0, 0.0, 3166.0], [6176.0, 13082.0, 0.0, 3167.0], [6177.0, 13083.0, 0.0, 3168.0], [6180.0, 13084.0, 0.0, 3169.0], [6183.0, 13085.0, 0.0, 3170.0], [6184.0, 13086.0, 0.0, 3171.0], [6186.0, 13087.0, 0.0, 3172.0], [6188.0, 13088.0, 0.0, 3173.0], [6190.0, 13089.0, 0.0, 3174.0], [6192.0, 13090.0, 0.0, 3175.0], [6193.0, 13091.0, 0.0, 3176.0], [6194.0, 13092.0, 0.0, 3177.0], [6196.0, 13093.0, 0.0, 3178.0], [6197.0, 13094.0, 0.0, 3179.0], [6198.0, 13095.0, 0.0, 3180.0], [6199.0, 13096.0, 0.0, 3181.0], [6201.0, 13097.0, 0.0, 3182.0], [6203.0, 13098.0, 0.0, 3183.0], [6206.0, 13099.0, 0.0, 3184.0], [6207.0, 13100.0, 0.0, 3185.0], [6208.0, 13101.0, 0.0, 3186.0], [6210.0, 13102.0, 0.0, 3187.0], [6212.0, 13103.0, 0.0, 3188.0], [6213.0, 13104.0, 0.0, 3189.0], [6214.0, 13105.0, 0.0, 3190.0], [6219.0, 13106.0, 0.0, 3191.0], [6220.0, 13107.0, 0.0, 3192.0], [6224.0, 13108.0, 0.0, 3193.0], [6227.0, 13109.0, 0.0, 3194.0], [6228.0, 13110.0, 0.0, 3195.0], [6229.0, 13111.0, 0.0, 3196.0], [6230.0, 13112.0, 0.0, 3197.0], [6231.0, 13113.0, 0.0, 3198.0], [6234.0, 13114.0, 0.0, 3199.0], [6238.0, 13115.0, 0.0, 3200.0], [6243.0, 13116.0, 0.0, 3201.0], [6246.0, 13117.0, 0.0, 3202.0], [6249.0, 13118.0, 0.0, 3203.0], [6250.0, 13119.0, 0.0, 3204.0], [6252.0, 13120.0, 0.0, 3205.0], [6253.0, 13121.0, 0.0, 3206.0], [6255.0, 13122.0, 0.0, 3207.0], [6256.0, 13123.0, 0.0, 3208.0], [6257.0, 13124.0, 0.0, 3209.0], [6258.0, 13125.0, 0.0, 3210.0], [6259.0, 13126.0, 0.0, 3211.0], [6260.0, 13127.0, 0.0, 3212.0], [6261.0, 13128.0, 0.0, 3213.0], [6263.0, 13129.0, 0.0, 3214.0], [6264.0, 13130.0, 0.0, 3215.0], [6266.0, 13131.0, 0.0, 3216.0], [6269.0, 13132.0, 0.0, 3217.0], [6270.0, 13133.0, 0.0, 3218.0], [6271.0, 13134.0, 0.0, 3219.0], [6272.0, 13135.0, 0.0, 3220.0], [6273.0, 13136.0, 0.0, 3221.0], [6274.0, 13137.0, 0.0, 3222.0], [6275.0, 13138.0, 0.0, 3223.0], [6278.0, 13139.0, 0.0, 3224.0], [6279.0, 13140.0, 0.0, 3225.0], [6280.0, 13141.0, 0.0, 3226.0], [6282.0, 13142.0, 0.0, 3227.0], [6284.0, 13143.0, 0.0, 3228.0], [6285.0, 13144.0, 0.0, 3229.0], [6290.0, 13145.0, 0.0, 3230.0], [6291.0, 13146.0, 0.0, 3231.0], [6292.0, 13147.0, 0.0, 3232.0], [6294.0, 13148.0, 0.0, 3233.0], [6297.0, 13149.0, 0.0, 3234.0], [6298.0, 13150.0, 0.0, 3235.0], [6299.0, 13151.0, 0.0, 3236.0], [6300.0, 13152.0, 0.0, 3237.0], [6301.0, 13153.0, 0.0, 3238.0], [6305.0, 13154.0, 0.0, 3239.0], [6315.0, 13155.0, 0.0, 3240.0], [6318.0, 13156.0, 0.0, 3241.0], [6319.0, 13157.0, 0.0, 3242.0], [6320.0, 13158.0, 0.0, 3243.0], [6321.0, 13159.0, 0.0, 3244.0], [6322.0, 13160.0, 0.0, 3245.0], [6323.0, 13161.0, 0.0, 3246.0], [6327.0, 13162.0, 0.0, 3247.0], [6328.0, 13163.0, 0.0, 3248.0], [6329.0, 13164.0, 0.0, 3249.0], [6330.0, 13165.0, 0.0, 3250.0], [6331.0, 13166.0, 0.0, 3251.0], [6332.0, 13167.0, 0.0, 3252.0], [6335.0, 13168.0, 0.0, 3253.0], [6337.0, 13169.0, 0.0, 3254.0], [6338.0, 13170.0, 0.0, 3255.0], [6339.0, 13171.0, 0.0, 3256.0], [6341.0, 13172.0, 0.0, 3257.0], [6342.0, 13173.0, 0.0, 3258.0], [6343.0, 13174.0, 0.0, 3259.0], [6347.0, 13175.0, 0.0, 3260.0], [6348.0, 13176.0, 0.0, 3261.0], [6351.0, 13177.0, 0.0, 3262.0], [6352.0, 13178.0, 0.0, 3263.0], [6353.0, 13179.0, 0.0, 3264.0], [6354.0, 13180.0, 0.0, 3265.0], [6355.0, 13181.0, 0.0, 3266.0], [6358.0, 13182.0, 0.0, 3267.0], [6360.0, 13183.0, 0.0, 3268.0], [6361.0, 13184.0, 0.0, 3269.0], [6362.0, 13185.0, 0.0, 3270.0], [6363.0, 13186.0, 0.0, 3271.0], [6365.0, 13187.0, 0.0, 3272.0], [6367.0, 13188.0, 0.0, 3273.0], [6369.0, 13189.0, 0.0, 3274.0], [6370.0, 13190.0, 0.0, 3275.0], [6374.0, 13191.0, 0.0, 3276.0], [6375.0, 13192.0, 0.0, 3277.0], [6378.0, 13193.0, 0.0, 3278.0], [6380.0, 13194.0, 0.0, 3279.0], [6381.0, 13195.0, 0.0, 3280.0], [6384.0, 13196.0, 0.0, 3281.0], [6388.0, 13197.0, 0.0, 3282.0], [6389.0, 13198.0, 0.0, 3283.0], [6390.0, 13199.0, 0.0, 3284.0], [6391.0, 13200.0, 0.0, 3285.0], [6395.0, 13201.0, 0.0, 3286.0], [6399.0, 13202.0, 0.0, 3287.0], [6400.0, 13203.0, 0.0, 3288.0], [6401.0, 13204.0, 0.0, 3289.0], [6402.0, 13205.0, 0.0, 3290.0], [6403.0, 13206.0, 0.0, 3291.0], [6404.0, 13207.0, 0.0, 3292.0], [6406.0, 13208.0, 0.0, 3293.0], [6408.0, 13209.0, 0.0, 3294.0], [6409.0, 13210.0, 0.0, 3295.0], [6411.0, 13211.0, 0.0, 3296.0], [6413.0, 13212.0, 0.0, 3297.0], [6414.0, 13213.0, 0.0, 3298.0], [6416.0, 13214.0, 0.0, 3299.0], [6418.0, 13215.0, 0.0, 3300.0], [6419.0, 13216.0, 0.0, 3301.0], [6421.0, 13217.0, 0.0, 3302.0], [6423.0, 13218.0, 0.0, 3303.0], [6425.0, 13219.0, 0.0, 3304.0], [6426.0, 13220.0, 0.0, 3305.0], [6427.0, 13221.0, 0.0, 3306.0], [6428.0, 13222.0, 0.0, 3307.0], [6430.0, 13223.0, 0.0, 3308.0], [6431.0, 13224.0, 0.0, 3309.0], [6432.0, 13225.0, 0.0, 3310.0], [6434.0, 13226.0, 0.0, 3311.0], [6435.0, 13227.0, 0.0, 3312.0], [6436.0, 13228.0, 0.0, 3313.0], [6438.0, 13229.0, 0.0, 3314.0], [6440.0, 13230.0, 0.0, 3315.0], [6447.0, 13231.0, 0.0, 3316.0], [6449.0, 13232.0, 0.0, 3317.0], [6451.0, 13233.0, 0.0, 3318.0], [6452.0, 13234.0, 0.0, 3319.0], [6454.0, 13235.0, 0.0, 3320.0], [6455.0, 13236.0, 0.0, 3321.0], [6456.0, 13237.0, 0.0, 3322.0], [6461.0, 13238.0, 0.0, 3323.0], [6463.0, 13239.0, 0.0, 3324.0], [6467.0, 13240.0, 0.0, 3325.0], [6468.0, 13241.0, 0.0, 3326.0], [6469.0, 13242.0, 0.0, 3327.0], [6470.0, 13243.0, 0.0, 3328.0], [6471.0, 13244.0, 0.0, 3329.0], [6472.0, 13245.0, 0.0, 3330.0], [6474.0, 13246.0, 0.0, 3331.0], [6475.0, 13247.0, 0.0, 3332.0], [6476.0, 13248.0, 0.0, 3333.0], [6478.0, 13249.0, 0.0, 3334.0], [6483.0, 13250.0, 0.0, 3335.0], [6486.0, 13251.0, 0.0, 3336.0], [6493.0, 13252.0, 0.0, 3337.0], [6494.0, 13253.0, 0.0, 3338.0], [6495.0, 13254.0, 0.0, 3339.0], [6501.0, 13255.0, 0.0, 3340.0], [6503.0, 13256.0, 0.0, 3341.0], [6506.0, 13257.0, 0.0, 3342.0], [6507.0, 13258.0, 0.0, 3343.0], [6508.0, 13259.0, 0.0, 3344.0], [6513.0, 13260.0, 0.0, 3345.0], [6514.0, 13261.0, 0.0, 3346.0], [6515.0, 13262.0, 0.0, 3347.0], [6516.0, 13263.0, 0.0, 3348.0], [6517.0, 13264.0, 0.0, 3349.0], [6518.0, 13265.0, 0.0, 3350.0], [6519.0, 13266.0, 0.0, 3351.0], [6521.0, 13267.0, 0.0, 3352.0], [6524.0, 13268.0, 0.0, 3353.0], [6526.0, 13269.0, 0.0, 3354.0], [6528.0, 13270.0, 0.0, 3355.0], [6529.0, 13271.0, 0.0, 3356.0], [6530.0, 13272.0, 0.0, 3357.0], [6531.0, 13273.0, 0.0, 3358.0], [6532.0, 13274.0, 0.0, 3359.0], [6535.0, 13275.0, 0.0, 3360.0], [6538.0, 13276.0, 0.0, 3361.0], [6543.0, 13277.0, 0.0, 3362.0], [6544.0, 13278.0, 0.0, 3363.0], [6545.0, 13279.0, 0.0, 3364.0], [6547.0, 13280.0, 0.0, 3365.0], [6548.0, 13281.0, 0.0, 3366.0], [6551.0, 13282.0, 0.0, 3367.0], [6556.0, 13283.0, 0.0, 3368.0], [6558.0, 13284.0, 0.0, 3369.0], [6559.0, 13285.0, 0.0, 3370.0], [6560.0, 13286.0, 0.0, 3371.0], [6562.0, 13287.0, 0.0, 3372.0], [6566.0, 13288.0, 0.0, 3373.0], [6568.0, 13289.0, 0.0, 3374.0], [6570.0, 13290.0, 0.0, 3375.0], [6572.0, 13291.0, 0.0, 3376.0], [6573.0, 13292.0, 0.0, 3377.0], [6574.0, 13293.0, 0.0, 3378.0], [6579.0, 13294.0, 0.0, 3379.0], [6580.0, 13295.0, 0.0, 3380.0], [6583.0, 13296.0, 0.0, 3381.0], [6591.0, 13297.0, 0.0, 3382.0], [6593.0, 13298.0, 0.0, 3383.0], [6594.0, 13299.0, 0.0, 3384.0], [6595.0, 13300.0, 0.0, 3385.0], [6596.0, 13301.0, 0.0, 3386.0], [6599.0, 13302.0, 0.0, 3387.0], [6601.0, 13303.0, 0.0, 3388.0], [6602.0, 13304.0, 0.0, 3389.0], [6606.0, 13305.0, 0.0, 3390.0], [6608.0, 13306.0, 0.0, 3391.0], [6609.0, 13307.0, 0.0, 3392.0], [6610.0, 13308.0, 0.0, 3393.0], [6614.0, 13309.0, 0.0, 3394.0], [6616.0, 13310.0, 0.0, 3395.0], [6618.0, 13311.0, 0.0, 3396.0], [6620.0, 13312.0, 0.0, 3397.0], [6622.0, 13313.0, 0.0, 3398.0], [6623.0, 13314.0, 0.0, 3399.0], [6625.0, 13315.0, 0.0, 3400.0], [6626.0, 13316.0, 0.0, 3401.0], [6628.0, 13317.0, 0.0, 3402.0], [6631.0, 13318.0, 0.0, 3403.0], [6633.0, 13319.0, 0.0, 3404.0], [6634.0, 13320.0, 0.0, 3405.0], [6636.0, 13321.0, 0.0, 3406.0], [6639.0, 13322.0, 0.0, 3407.0], [6640.0, 13323.0, 0.0, 3408.0], [6641.0, 13324.0, 0.0, 3409.0], [6642.0, 13325.0, 0.0, 3410.0], [6643.0, 13326.0, 0.0, 3411.0], [6644.0, 13327.0, 0.0, 3412.0], [6648.0, 13328.0, 0.0, 3413.0], [6649.0, 13329.0, 0.0, 3414.0], [6650.0, 13330.0, 0.0, 3415.0], [6651.0, 13331.0, 0.0, 3416.0], [6653.0, 13332.0, 0.0, 3417.0], [6654.0, 13333.0, 0.0, 3418.0], [6655.0, 13334.0, 0.0, 3419.0], [6657.0, 13335.0, 0.0, 3420.0], [6658.0, 13336.0, 0.0, 3421.0], [6661.0, 13337.0, 0.0, 3422.0], [6663.0, 13338.0, 0.0, 3423.0], [6667.0, 13339.0, 0.0, 3424.0], [6668.0, 13340.0, 0.0, 3425.0], [6669.0, 13341.0, 0.0, 3426.0], [6670.0, 13342.0, 0.0, 3427.0], [6672.0, 13343.0, 0.0, 3428.0], [6673.0, 13344.0, 0.0, 3429.0], [6674.0, 13345.0, 0.0, 3430.0], [6675.0, 13346.0, 0.0, 3431.0], [6679.0, 13347.0, 0.0, 3432.0], [6681.0, 13348.0, 0.0, 3433.0], [6683.0, 13349.0, 0.0, 3434.0], [6684.0, 13350.0, 0.0, 3435.0], [6686.0, 13351.0, 0.0, 3436.0], [6687.0, 13352.0, 0.0, 3437.0], [6689.0, 13353.0, 0.0, 3438.0], [6692.0, 13354.0, 0.0, 3439.0], [6694.0, 13355.0, 0.0, 3440.0], [6696.0, 13356.0, 0.0, 3441.0], [6698.0, 13357.0, 0.0, 3442.0], [6699.0, 13358.0, 0.0, 3443.0], [6702.0, 13359.0, 0.0, 3444.0], [6703.0, 13360.0, 0.0, 3445.0], [6705.0, 13361.0, 0.0, 3446.0], [6707.0, 13362.0, 0.0, 3447.0], [6708.0, 13363.0, 0.0, 3448.0], [6709.0, 13364.0, 0.0, 3449.0], [6711.0, 13365.0, 0.0, 3450.0], [6712.0, 13366.0, 0.0, 3451.0], [6714.0, 13367.0, 0.0, 3452.0], [6717.0, 13368.0, 0.0, 3453.0], [6719.0, 13369.0, 0.0, 3454.0], [6722.0, 13370.0, 0.0, 3455.0], [6723.0, 13371.0, 0.0, 3456.0], [6724.0, 13372.0, 0.0, 3457.0], [6726.0, 13373.0, 0.0, 3458.0], [6728.0, 13374.0, 0.0, 3459.0], [6729.0, 13375.0, 0.0, 3460.0], [6730.0, 13376.0, 0.0, 3461.0], [6735.0, 13377.0, 0.0, 3462.0], [6736.0, 13378.0, 0.0, 3463.0], [6737.0, 13379.0, 0.0, 3464.0], [6738.0, 13380.0, 0.0, 3465.0], [6739.0, 13381.0, 0.0, 3466.0], [6741.0, 13382.0, 0.0, 3467.0], [6745.0, 13383.0, 0.0, 3468.0], [6747.0, 13384.0, 0.0, 3469.0], [6751.0, 13385.0, 0.0, 3470.0], [6752.0, 13386.0, 0.0, 3471.0], [6754.0, 13387.0, 0.0, 3472.0], [6756.0, 13388.0, 0.0, 3473.0], [6757.0, 13389.0, 0.0, 3474.0], [6758.0, 13390.0, 0.0, 3475.0], [6759.0, 13391.0, 0.0, 3476.0], [6761.0, 13392.0, 0.0, 3477.0], [6762.0, 13393.0, 0.0, 3478.0], [6766.0, 13394.0, 0.0, 3479.0], [6771.0, 13395.0, 0.0, 3480.0], [6772.0, 13396.0, 0.0, 3481.0], [6773.0, 13397.0, 0.0, 3482.0], [6777.0, 13398.0, 0.0, 3483.0], [6780.0, 13399.0, 0.0, 3484.0], [6784.0, 13400.0, 0.0, 3485.0], [6785.0, 13401.0, 0.0, 3486.0], [6787.0, 13402.0, 0.0, 3487.0], [6790.0, 13403.0, 0.0, 3488.0], [6791.0, 13404.0, 0.0, 3489.0], [6799.0, 13405.0, 0.0, 3490.0], [6800.0, 13406.0, 0.0, 3491.0], [6801.0, 13407.0, 0.0, 3492.0], [6804.0, 13408.0, 0.0, 3493.0], [6807.0, 13409.0, 0.0, 3494.0], [6808.0, 13410.0, 0.0, 3495.0], [6809.0, 13411.0, 0.0, 3496.0], [6810.0, 13412.0, 0.0, 3497.0], [6812.0, 13413.0, 0.0, 3498.0], [6816.0, 13414.0, 0.0, 3499.0], [6818.0, 13415.0, 0.0, 3500.0], [6819.0, 13416.0, 0.0, 3501.0], [6820.0, 13417.0, 0.0, 3502.0], [6821.0, 13418.0, 0.0, 3503.0], [6822.0, 13419.0, 0.0, 3504.0], [6823.0, 13420.0, 0.0, 3505.0], [6826.0, 13421.0, 0.0, 3506.0], [6827.0, 13422.0, 0.0, 3507.0], [6830.0, 13423.0, 0.0, 3508.0], [6833.0, 13424.0, 0.0, 3509.0], [6835.0, 13425.0, 0.0, 3510.0], [6836.0, 13426.0, 0.0, 3511.0], [6837.0, 13427.0, 0.0, 3512.0], [6839.0, 13428.0, 0.0, 3513.0], [6841.0, 13429.0, 0.0, 3514.0], [6844.0, 13430.0, 0.0, 3515.0], [6845.0, 13431.0, 0.0, 3516.0], [6849.0, 13432.0, 0.0, 3517.0], [6850.0, 13433.0, 0.0, 3518.0], [6853.0, 13434.0, 0.0, 3519.0], [6854.0, 13435.0, 0.0, 3520.0], [6857.0, 13436.0, 0.0, 3521.0], [6858.0, 13437.0, 0.0, 3522.0], [6861.0, 13438.0, 0.0, 3523.0], [6864.0, 13439.0, 0.0, 3524.0], [6865.0, 13440.0, 0.0, 3525.0], [6867.0, 13441.0, 0.0, 3526.0], [6868.0, 13442.0, 0.0, 3527.0], [6869.0, 13443.0, 0.0, 3528.0], [6874.0, 13444.0, 0.0, 3529.0], [6875.0, 13445.0, 0.0, 3530.0], [6878.0, 13446.0, 0.0, 3531.0], [6879.0, 13447.0, 0.0, 3532.0], [6882.0, 13448.0, 0.0, 3533.0], [6884.0, 13449.0, 0.0, 3534.0], [6887.0, 13450.0, 0.0, 3535.0], [6888.0, 13451.0, 0.0, 3536.0], [6889.0, 13452.0, 0.0, 3537.0], [6890.0, 13453.0, 0.0, 3538.0], [6891.0, 13454.0, 0.0, 3539.0], [6893.0, 13455.0, 0.0, 3540.0], [6898.0, 13456.0, 0.0, 3541.0], [6900.0, 13457.0, 0.0, 3542.0], [6901.0, 13458.0, 0.0, 3543.0], [6903.0, 13459.0, 0.0, 3544.0], [6905.0, 13460.0, 0.0, 3545.0], [6906.0, 13461.0, 0.0, 3546.0], [6908.0, 13462.0, 0.0, 3547.0], [6909.0, 13463.0, 0.0, 3548.0], [6910.0, 13464.0, 0.0, 3549.0], [6911.0, 13465.0, 0.0, 3550.0], [6912.0, 13466.0, 0.0, 3551.0], [6913.0, 13467.0, 0.0, 3552.0], [6915.0, 13468.0, 0.0, 3553.0], [6916.0, 13469.0, 0.0, 3554.0], [6917.0, 13470.0, 0.0, 3555.0], [6925.0, 13471.0, 0.0, 3556.0], [6929.0, 13472.0, 0.0, 3557.0], [6930.0, 13473.0, 0.0, 3558.0], [6933.0, 13474.0, 0.0, 3559.0], [6935.0, 13475.0, 0.0, 3560.0], [6937.0, 13476.0, 0.0, 3561.0], [6939.0, 13477.0, 0.0, 3562.0], [6942.0, 13478.0, 0.0, 3563.0], [6943.0, 13479.0, 0.0, 3564.0], [6946.0, 13480.0, 0.0, 3565.0], [6947.0, 13481.0, 0.0, 3566.0], [6948.0, 13482.0, 0.0, 3567.0], [6949.0, 13483.0, 0.0, 3568.0], [6954.0, 13484.0, 0.0, 3569.0], [6955.0, 13485.0, 0.0, 3570.0], [6958.0, 13486.0, 0.0, 3571.0], [6960.0, 13487.0, 0.0, 3572.0], [6961.0, 13488.0, 0.0, 3573.0], [6962.0, 13489.0, 0.0, 3574.0], [6964.0, 13490.0, 0.0, 3575.0], [6968.0, 13491.0, 0.0, 3576.0], [6971.0, 13492.0, 0.0, 3577.0], [6972.0, 13493.0, 0.0, 3578.0], [6974.0, 13494.0, 0.0, 3579.0], [6979.0, 13495.0, 0.0, 3580.0], [6984.0, 13496.0, 0.0, 3581.0], [6985.0, 13497.0, 0.0, 3582.0], [6990.0, 13498.0, 0.0, 3583.0], [6993.0, 13499.0, 0.0, 3584.0], [6996.0, 13500.0, 0.0, 3585.0], [6998.0, 13501.0, 0.0, 3586.0], [7001.0, 13502.0, 0.0, 3587.0], [7002.0, 13503.0, 0.0, 3588.0], [7003.0, 13504.0, 0.0, 3589.0], [7005.0, 13505.0, 0.0, 3590.0], [7012.0, 13506.0, 0.0, 3591.0], [7013.0, 13507.0, 0.0, 3592.0], [7014.0, 13508.0, 0.0, 3593.0], [7015.0, 13509.0, 0.0, 3594.0], [7016.0, 13510.0, 0.0, 3595.0], [7017.0, 13511.0, 0.0, 3596.0], [7018.0, 13512.0, 0.0, 3597.0], [7020.0, 13513.0, 0.0, 3598.0], [7022.0, 13514.0, 0.0, 3599.0], [7024.0, 13515.0, 0.0, 3600.0], [7028.0, 13516.0, 0.0, 3601.0], [7029.0, 13517.0, 0.0, 3602.0], [7030.0, 13518.0, 0.0, 3603.0], [7031.0, 13519.0, 0.0, 3604.0], [7033.0, 13520.0, 0.0, 3605.0], [7034.0, 13521.0, 0.0, 3606.0], [7036.0, 13522.0, 0.0, 3607.0], [7037.0, 13523.0, 0.0, 3608.0], [7038.0, 13524.0, 0.0, 3609.0], [7045.0, 13525.0, 0.0, 3610.0], [7046.0, 13526.0, 0.0, 3611.0], [7047.0, 13527.0, 0.0, 3612.0], [7049.0, 13528.0, 0.0, 3613.0], [7052.0, 13529.0, 0.0, 3614.0], [7054.0, 13530.0, 0.0, 3615.0], [7055.0, 13531.0, 0.0, 3616.0], [7056.0, 13532.0, 0.0, 3617.0], [7060.0, 13533.0, 0.0, 3618.0], [7061.0, 13534.0, 0.0, 3619.0], [7063.0, 13535.0, 0.0, 3620.0], [7064.0, 13536.0, 0.0, 3621.0], [7065.0, 13537.0, 0.0, 3622.0], [7069.0, 13538.0, 0.0, 3623.0], [7070.0, 13539.0, 0.0, 3624.0], [7071.0, 13540.0, 0.0, 3625.0], [7073.0, 13541.0, 0.0, 3626.0], [7076.0, 13542.0, 0.0, 3627.0], [7077.0, 13543.0, 0.0, 3628.0], [7081.0, 13544.0, 0.0, 3629.0], [7082.0, 13545.0, 0.0, 3630.0], [7084.0, 13546.0, 0.0, 3631.0], [7085.0, 13547.0, 0.0, 3632.0], [7087.0, 13548.0, 0.0, 3633.0], [7088.0, 13549.0, 0.0, 3634.0], [7090.0, 13550.0, 0.0, 3635.0], [7092.0, 13551.0, 0.0, 3636.0], [7093.0, 13552.0, 0.0, 3637.0], [7094.0, 13553.0, 0.0, 3638.0], [7095.0, 13554.0, 0.0, 3639.0], [7097.0, 13555.0, 0.0, 3640.0], [7098.0, 13556.0, 0.0, 3641.0], [7102.0, 13557.0, 0.0, 3642.0], [7107.0, 13558.0, 0.0, 3643.0], [7108.0, 13559.0, 0.0, 3644.0], [7109.0, 13560.0, 0.0, 3645.0], [7114.0, 13561.0, 0.0, 3646.0], [7117.0, 13562.0, 0.0, 3647.0], [7118.0, 13563.0, 0.0, 3648.0], [7124.0, 13564.0, 0.0, 3649.0], [7126.0, 13565.0, 0.0, 3650.0], [7129.0, 13566.0, 0.0, 3651.0], [7130.0, 13567.0, 0.0, 3652.0], [7131.0, 13568.0, 0.0, 3653.0], [7135.0, 13569.0, 0.0, 3654.0], [7137.0, 13570.0, 0.0, 3655.0], [7138.0, 13571.0, 0.0, 3656.0], [7140.0, 13572.0, 0.0, 3657.0], [7141.0, 13573.0, 0.0, 3658.0], [7142.0, 13574.0, 0.0, 3659.0], [7143.0, 13575.0, 0.0, 3660.0], [7144.0, 13576.0, 0.0, 3661.0], [7147.0, 13577.0, 0.0, 3662.0], [7148.0, 13578.0, 0.0, 3663.0], [7151.0, 13579.0, 0.0, 3664.0], [7152.0, 13580.0, 0.0, 3665.0], [7155.0, 13581.0, 0.0, 3666.0], [7159.0, 13582.0, 0.0, 3667.0], [7160.0, 13583.0, 0.0, 3668.0], [7161.0, 13584.0, 0.0, 3669.0], [7162.0, 13585.0, 0.0, 3670.0], [7166.0, 13586.0, 0.0, 3671.0], [7167.0, 13587.0, 0.0, 3672.0], [7168.0, 13588.0, 0.0, 3673.0], [7174.0, 13589.0, 0.0, 3674.0], [7176.0, 13590.0, 0.0, 3675.0], [7177.0, 13591.0, 0.0, 3676.0], [7178.0, 13592.0, 0.0, 3677.0], [7180.0, 13593.0, 0.0, 3678.0], [7182.0, 13594.0, 0.0, 3679.0], [7185.0, 13595.0, 0.0, 3680.0], [7186.0, 13596.0, 0.0, 3681.0], [7187.0, 13597.0, 0.0, 3682.0], [7188.0, 13598.0, 0.0, 3683.0], [7189.0, 13599.0, 0.0, 3684.0], [7191.0, 13600.0, 0.0, 3685.0], [7192.0, 13601.0, 0.0, 3686.0], [7193.0, 13602.0, 0.0, 3687.0], [7195.0, 13603.0, 0.0, 3688.0], [7203.0, 13604.0, 0.0, 3689.0], [7204.0, 13605.0, 0.0, 3690.0], [7205.0, 13606.0, 0.0, 3691.0], [7208.0, 13607.0, 0.0, 3692.0], [7209.0, 13608.0, 0.0, 3693.0], [7212.0, 13609.0, 0.0, 3694.0], [7213.0, 13610.0, 0.0, 3695.0], [7216.0, 13611.0, 0.0, 3696.0], [7217.0, 13612.0, 0.0, 3697.0], [7218.0, 13613.0, 0.0, 3698.0], [7221.0, 13614.0, 0.0, 3699.0], [7222.0, 13615.0, 0.0, 3700.0], [7224.0, 13616.0, 0.0, 3701.0], [7225.0, 13617.0, 0.0, 3702.0], [7226.0, 13618.0, 0.0, 3703.0], [7227.0, 13619.0, 0.0, 3704.0], [7229.0, 13620.0, 0.0, 3705.0], [7231.0, 13621.0, 0.0, 3706.0], [7234.0, 13622.0, 0.0, 3707.0], [7236.0, 13623.0, 0.0, 3708.0], [7238.0, 13624.0, 0.0, 3709.0], [7239.0, 13625.0, 0.0, 3710.0], [7240.0, 13626.0, 0.0, 3711.0], [7241.0, 13627.0, 0.0, 3712.0], [7242.0, 13628.0, 0.0, 3713.0], [7243.0, 13629.0, 0.0, 3714.0], [7247.0, 13630.0, 0.0, 3715.0], [7249.0, 13631.0, 0.0, 3716.0], [7251.0, 13632.0, 0.0, 3717.0], [7253.0, 13633.0, 0.0, 3718.0], [7257.0, 13634.0, 0.0, 3719.0], [7258.0, 13635.0, 0.0, 3720.0], [7259.0, 13636.0, 0.0, 3721.0], [7260.0, 13637.0, 0.0, 3722.0], [7262.0, 13638.0, 0.0, 3723.0], [7265.0, 13639.0, 0.0, 3724.0], [7266.0, 13640.0, 0.0, 3725.0], [7267.0, 13641.0, 0.0, 3726.0], [7268.0, 13642.0, 0.0, 3727.0], [7270.0, 13643.0, 0.0, 3728.0], [7271.0, 13644.0, 0.0, 3729.0], [7272.0, 13645.0, 0.0, 3730.0], [7274.0, 13646.0, 0.0, 3731.0], [7275.0, 13647.0, 0.0, 3732.0], [7276.0, 13648.0, 0.0, 3733.0], [7277.0, 13649.0, 0.0, 3734.0], [7278.0, 13650.0, 0.0, 3735.0], [7279.0, 13651.0, 0.0, 3736.0], [7280.0, 13652.0, 0.0, 3737.0], [7283.0, 13653.0, 0.0, 3738.0], [7286.0, 13654.0, 0.0, 3739.0], [7289.0, 13655.0, 0.0, 3740.0], [7292.0, 13656.0, 0.0, 3741.0], [7293.0, 13657.0, 0.0, 3742.0], [7294.0, 13658.0, 0.0, 3743.0], [7295.0, 13659.0, 0.0, 3744.0], [7300.0, 13660.0, 0.0, 3745.0], [7301.0, 13661.0, 0.0, 3746.0], [7303.0, 13662.0, 0.0, 3747.0], [7304.0, 13663.0, 0.0, 3748.0], [7306.0, 13664.0, 0.0, 3749.0], [7310.0, 13665.0, 0.0, 3750.0], [7312.0, 13666.0, 0.0, 3751.0], [7317.0, 13667.0, 0.0, 3752.0], [7318.0, 13668.0, 0.0, 3753.0], [7320.0, 13669.0, 0.0, 3754.0], [7321.0, 13670.0, 0.0, 3755.0], [7322.0, 13671.0, 0.0, 3756.0], [7323.0, 13672.0, 0.0, 3757.0], [7326.0, 13673.0, 0.0, 3758.0], [7327.0, 13674.0, 0.0, 3759.0], [7331.0, 13675.0, 0.0, 3760.0], [7333.0, 13676.0, 0.0, 3761.0], [7334.0, 13677.0, 0.0, 3762.0], [7335.0, 13678.0, 0.0, 3763.0], [7336.0, 13679.0, 0.0, 3764.0], [7337.0, 13680.0, 0.0, 3765.0], [7338.0, 13681.0, 0.0, 3766.0], [7339.0, 13682.0, 0.0, 3767.0], [7340.0, 13683.0, 0.0, 3768.0], [7342.0, 13684.0, 0.0, 3769.0], [7343.0, 13685.0, 0.0, 3770.0], [7344.0, 13686.0, 0.0, 3771.0], [7346.0, 13687.0, 0.0, 3772.0], [7349.0, 13688.0, 0.0, 3773.0], [7351.0, 13689.0, 0.0, 3774.0], [7353.0, 13690.0, 0.0, 3775.0], [7354.0, 13691.0, 0.0, 3776.0], [7355.0, 13692.0, 0.0, 3777.0], [7363.0, 13693.0, 0.0, 3778.0], [7364.0, 13694.0, 0.0, 3779.0], [7367.0, 13695.0, 0.0, 3780.0], [7372.0, 13696.0, 0.0, 3781.0], [7373.0, 13697.0, 0.0, 3782.0], [7374.0, 13698.0, 0.0, 3783.0], [7376.0, 13699.0, 0.0, 3784.0], [7378.0, 13700.0, 0.0, 3785.0], [7379.0, 13701.0, 0.0, 3786.0], [7380.0, 13702.0, 0.0, 3787.0], [7382.0, 13703.0, 0.0, 3788.0], [7383.0, 13704.0, 0.0, 3789.0], [7385.0, 13705.0, 0.0, 3790.0], [7386.0, 13706.0, 0.0, 3791.0], [7387.0, 13707.0, 0.0, 3792.0], [7389.0, 13708.0, 0.0, 3793.0], [7391.0, 13709.0, 0.0, 3794.0], [7393.0, 13710.0, 0.0, 3795.0], [7394.0, 13711.0, 0.0, 3796.0], [7396.0, 13712.0, 0.0, 3797.0], [7399.0, 13713.0, 0.0, 3798.0], [7401.0, 13714.0, 0.0, 3799.0], [7403.0, 13715.0, 0.0, 3800.0], [7406.0, 13716.0, 0.0, 3801.0], [7409.0, 13717.0, 0.0, 3802.0], [7410.0, 13718.0, 0.0, 3803.0], [7411.0, 13719.0, 0.0, 3804.0], [7414.0, 13720.0, 0.0, 3805.0], [7415.0, 13721.0, 0.0, 3806.0], [7419.0, 13722.0, 0.0, 3807.0], [7422.0, 13723.0, 0.0, 3808.0], [7423.0, 13724.0, 0.0, 3809.0], [7425.0, 13725.0, 0.0, 3810.0], [7426.0, 13726.0, 0.0, 3811.0], [7427.0, 13727.0, 0.0, 3812.0], [7428.0, 13728.0, 0.0, 3813.0], [7429.0, 13729.0, 0.0, 3814.0], [7432.0, 13730.0, 0.0, 3815.0], [7433.0, 13731.0, 0.0, 3816.0], [7435.0, 13732.0, 0.0, 3817.0], [7436.0, 13733.0, 0.0, 3818.0], [7437.0, 13734.0, 0.0, 3819.0], [7438.0, 13735.0, 0.0, 3820.0], [7440.0, 13736.0, 0.0, 3821.0], [7441.0, 13737.0, 0.0, 3822.0], [7442.0, 13738.0, 0.0, 3823.0], [7444.0, 13739.0, 0.0, 3824.0], [7445.0, 13740.0, 0.0, 3825.0], [7446.0, 13741.0, 0.0, 3826.0], [7448.0, 13742.0, 0.0, 3827.0], [7449.0, 13743.0, 0.0, 3828.0], [7450.0, 13744.0, 0.0, 3829.0], [7451.0, 13745.0, 0.0, 3830.0], [7452.0, 13746.0, 0.0, 3831.0], [7454.0, 13747.0, 0.0, 3832.0], [7455.0, 13748.0, 0.0, 3833.0], [7457.0, 13749.0, 0.0, 3834.0], [7458.0, 13750.0, 0.0, 3835.0], [7460.0, 13751.0, 0.0, 3836.0], [7461.0, 13752.0, 0.0, 3837.0], [7462.0, 13753.0, 0.0, 3838.0], [7465.0, 13754.0, 0.0, 3839.0], [7466.0, 13755.0, 0.0, 3840.0], [7468.0, 13756.0, 0.0, 3841.0], [7471.0, 13757.0, 0.0, 3842.0], [7472.0, 13758.0, 0.0, 3843.0], [7474.0, 13759.0, 0.0, 3844.0], [7475.0, 13760.0, 0.0, 3845.0], [7476.0, 13761.0, 0.0, 3846.0], [7479.0, 13762.0, 0.0, 3847.0], [7481.0, 13763.0, 0.0, 3848.0], [7485.0, 13764.0, 0.0, 3849.0], [7487.0, 13765.0, 0.0, 3850.0], [7488.0, 13766.0, 0.0, 3851.0], [7490.0, 13767.0, 0.0, 3852.0], [7491.0, 13768.0, 0.0, 3853.0], [7492.0, 13769.0, 0.0, 3854.0], [7497.0, 13770.0, 0.0, 3855.0], [7500.0, 13771.0, 0.0, 3856.0], [7501.0, 13772.0, 0.0, 3857.0], [7503.0, 13773.0, 0.0, 3858.0], [7505.0, 13774.0, 0.0, 3859.0], [7506.0, 13775.0, 0.0, 3860.0], [7507.0, 13776.0, 0.0, 3861.0], [7508.0, 13777.0, 0.0, 3862.0], [7512.0, 13778.0, 0.0, 3863.0], [7516.0, 13779.0, 0.0, 3864.0], [7519.0, 13780.0, 0.0, 3865.0], [7520.0, 13781.0, 0.0, 3866.0], [7523.0, 13782.0, 0.0, 3867.0], [7524.0, 13783.0, 0.0, 3868.0], [7525.0, 13784.0, 0.0, 3869.0], [7526.0, 13785.0, 0.0, 3870.0], [7528.0, 13786.0, 0.0, 3871.0], [7531.0, 13787.0, 0.0, 3872.0], [7536.0, 13788.0, 0.0, 3873.0], [7537.0, 13789.0, 0.0, 3874.0], [7538.0, 13790.0, 0.0, 3875.0], [7539.0, 13791.0, 0.0, 3876.0], [7540.0, 13792.0, 0.0, 3877.0], [7542.0, 13793.0, 0.0, 3878.0], [7543.0, 13794.0, 0.0, 3879.0], [7544.0, 13795.0, 0.0, 3880.0], [7545.0, 13796.0, 0.0, 3881.0], [7546.0, 13797.0, 0.0, 3882.0], [7549.0, 13798.0, 0.0, 3883.0], [7554.0, 13799.0, 0.0, 3884.0], [7556.0, 13800.0, 0.0, 3885.0], [7559.0, 13801.0, 0.0, 3886.0], [7560.0, 13802.0, 0.0, 3887.0], [7562.0, 13803.0, 0.0, 3888.0], [7564.0, 13804.0, 0.0, 3889.0], [7565.0, 13805.0, 0.0, 3890.0], [7567.0, 13806.0, 0.0, 3891.0], [7569.0, 13807.0, 0.0, 3892.0], [7571.0, 13808.0, 0.0, 3893.0], [7572.0, 13809.0, 0.0, 3894.0], [7573.0, 13810.0, 0.0, 3895.0], [7574.0, 13811.0, 0.0, 3896.0], [7575.0, 13812.0, 0.0, 3897.0], [7579.0, 13813.0, 0.0, 3898.0], [7580.0, 13814.0, 0.0, 3899.0], [7581.0, 13815.0, 0.0, 3900.0], [7582.0, 13816.0, 0.0, 3901.0], [7585.0, 13817.0, 0.0, 3902.0], [7586.0, 13818.0, 0.0, 3903.0], [7588.0, 13819.0, 0.0, 3904.0], [7589.0, 13820.0, 0.0, 3905.0], [7590.0, 13821.0, 0.0, 3906.0], [7591.0, 13822.0, 0.0, 3907.0], [7593.0, 13823.0, 0.0, 3908.0], [7595.0, 13824.0, 0.0, 3909.0], [7597.0, 13825.0, 0.0, 3910.0], [7604.0, 13826.0, 0.0, 3911.0], [7605.0, 13827.0, 0.0, 3912.0], [7608.0, 13828.0, 0.0, 3913.0], [7610.0, 13829.0, 0.0, 3914.0], [7611.0, 13830.0, 0.0, 3915.0], [7612.0, 13831.0, 0.0, 3916.0], [7614.0, 13832.0, 0.0, 3917.0], [7616.0, 13833.0, 0.0, 3918.0], [7617.0, 13834.0, 0.0, 3919.0], [7618.0, 13835.0, 0.0, 3920.0], [7620.0, 13836.0, 0.0, 3921.0], [7621.0, 13837.0, 0.0, 3922.0], [7623.0, 13838.0, 0.0, 3923.0], [7624.0, 13839.0, 0.0, 3924.0], [7627.0, 13840.0, 0.0, 3925.0], [7629.0, 13841.0, 0.0, 3926.0], [7630.0, 13842.0, 0.0, 3927.0], [7631.0, 13843.0, 0.0, 3928.0], [7637.0, 13844.0, 0.0, 3929.0], [7639.0, 13845.0, 0.0, 3930.0], [7641.0, 13846.0, 0.0, 3931.0], [7643.0, 13847.0, 0.0, 3932.0], [7645.0, 13848.0, 0.0, 3933.0], [7647.0, 13849.0, 0.0, 3934.0], [7649.0, 13850.0, 0.0, 3935.0], [7650.0, 13851.0, 0.0, 3936.0], [7652.0, 13852.0, 0.0, 3937.0], [7656.0, 13853.0, 0.0, 3938.0], [7657.0, 13854.0, 0.0, 3939.0], [7659.0, 13855.0, 0.0, 3940.0], [7661.0, 13856.0, 0.0, 3941.0], [7662.0, 13857.0, 0.0, 3942.0], [7664.0, 13858.0, 0.0, 3943.0], [7665.0, 13859.0, 0.0, 3944.0], [7666.0, 13860.0, 0.0, 3945.0], [7667.0, 13861.0, 0.0, 3946.0], [7670.0, 13862.0, 0.0, 3947.0], [7673.0, 13863.0, 0.0, 3948.0], [7674.0, 13864.0, 0.0, 3949.0], [7676.0, 13865.0, 0.0, 3950.0], [7681.0, 13866.0, 0.0, 3951.0], [7685.0, 13867.0, 0.0, 3952.0], [7688.0, 13868.0, 0.0, 3953.0], [7690.0, 13869.0, 0.0, 3954.0], [7692.0, 13870.0, 0.0, 3955.0], [7693.0, 13871.0, 0.0, 3956.0], [7695.0, 13872.0, 0.0, 3957.0], [7698.0, 13873.0, 0.0, 3958.0], [7704.0, 13874.0, 0.0, 3959.0], [7705.0, 13875.0, 0.0, 3960.0], [7707.0, 13876.0, 0.0, 3961.0], [7710.0, 13877.0, 0.0, 3962.0], [7711.0, 13878.0, 0.0, 3963.0], [7713.0, 13879.0, 0.0, 3964.0], [7714.0, 13880.0, 0.0, 3965.0], [7715.0, 13881.0, 0.0, 3966.0], [7718.0, 13882.0, 0.0, 3967.0], [7719.0, 13883.0, 0.0, 3968.0], [7720.0, 13884.0, 0.0, 3969.0], [7721.0, 13885.0, 0.0, 3970.0], [7722.0, 13886.0, 0.0, 3971.0], [7723.0, 13887.0, 0.0, 3972.0], [7725.0, 13888.0, 0.0, 3973.0], [7727.0, 13889.0, 0.0, 3974.0], [7728.0, 13890.0, 0.0, 3975.0], [7730.0, 13891.0, 0.0, 3976.0], [7731.0, 13892.0, 0.0, 3977.0], [7733.0, 13893.0, 0.0, 3978.0], [7736.0, 13894.0, 0.0, 3979.0], [7742.0, 13895.0, 0.0, 3980.0], [7745.0, 13896.0, 0.0, 3981.0], [7746.0, 13897.0, 0.0, 3982.0], [7747.0, 13898.0, 0.0, 3983.0], [7748.0, 13899.0, 0.0, 3984.0], [7749.0, 13900.0, 0.0, 3985.0], [7750.0, 13901.0, 0.0, 3986.0], [7753.0, 13902.0, 0.0, 3987.0], [7754.0, 13903.0, 0.0, 3988.0], [7756.0, 13904.0, 0.0, 3989.0], [7757.0, 13905.0, 0.0, 3990.0], [7758.0, 13906.0, 0.0, 3991.0], [7759.0, 13907.0, 0.0, 3992.0], [7762.0, 13908.0, 0.0, 3993.0], [7763.0, 13909.0, 0.0, 3994.0], [7764.0, 13910.0, 0.0, 3995.0], [7765.0, 13911.0, 0.0, 3996.0], [7766.0, 13912.0, 0.0, 3997.0], [7767.0, 13913.0, 0.0, 3998.0], [7773.0, 13914.0, 0.0, 3999.0], [7774.0, 13915.0, 0.0, 4000.0], [7776.0, 13916.0, 0.0, 4001.0], [7779.0, 13917.0, 0.0, 4002.0], [7780.0, 13918.0, 0.0, 4003.0], [7782.0, 13919.0, 0.0, 4004.0], [7784.0, 13920.0, 0.0, 4005.0], [7790.0, 13921.0, 0.0, 4006.0], [7791.0, 13922.0, 0.0, 4007.0], [7793.0, 13923.0, 0.0, 4008.0], [7794.0, 13924.0, 0.0, 4009.0], [7796.0, 13925.0, 0.0, 4010.0], [7801.0, 13926.0, 0.0, 4011.0], [7802.0, 13927.0, 0.0, 4012.0], [7805.0, 13928.0, 0.0, 4013.0], [7807.0, 13929.0, 0.0, 4014.0], [7809.0, 13930.0, 0.0, 4015.0], [7810.0, 13931.0, 0.0, 4016.0], [7812.0, 13932.0, 0.0, 4017.0], [7813.0, 13933.0, 0.0, 4018.0], [7814.0, 13934.0, 0.0, 4019.0], [7819.0, 13935.0, 0.0, 4020.0], [7820.0, 13936.0, 0.0, 4021.0], [7823.0, 13937.0, 0.0, 4022.0], [7824.0, 13938.0, 0.0, 4023.0], [7825.0, 13939.0, 0.0, 4024.0], [7827.0, 13940.0, 0.0, 4025.0], [7828.0, 13941.0, 0.0, 4026.0], [7829.0, 13942.0, 0.0, 4027.0], [7830.0, 13943.0, 0.0, 4028.0], [7832.0, 13944.0, 0.0, 4029.0], [7833.0, 13945.0, 0.0, 4030.0], [2238.0, 5641.0, 0.0, 2.0], [5153.0, 7522.0, 0.0, 2.0], [6254.0, 7806.0, 0.0, 2.0], [2573.0, 5702.0, 0.0, 2.0], [5178.0, 6485.0, 0.0, 2.0], [3668.0, 6969.0, 0.0, 2.0], [7000.0, 13952.0, 0.0, 3.0], [2638.0, 10255.0, 0.0, 9.0], [3064.0, 13954.0, 0.0, 10.0], [3233.0, 13955.0, 0.0, 11.0], [3505.0, 13956.0, 0.0, 12.0], [3930.0, 13957.0, 0.0, 13.0], [3951.0, 13958.0, 0.0, 14.0], [3989.0, 13959.0, 0.0, 15.0], [4144.0, 13960.0, 0.0, 16.0], [4354.0, 13961.0, 0.0, 17.0], [4455.0, 13962.0, 0.0, 18.0], [4564.0, 13963.0, 0.0, 19.0], [4620.0, 13964.0, 0.0, 20.0], [4640.0, 13965.0, 0.0, 21.0], [4904.0, 13966.0, 0.0, 22.0], [5008.0, 13967.0, 0.0, 23.0], [5785.0, 13968.0, 0.0, 24.0], [5858.0, 13969.0, 0.0, 25.0], [6159.0, 13970.0, 0.0, 26.0], [6233.0, 13971.0, 0.0, 27.0], [6324.0, 13972.0, 0.0, 28.0], [6445.0, 13973.0, 0.0, 29.0], [6552.0, 13974.0, 0.0, 30.0], [6682.0, 13975.0, 0.0, 31.0], [6907.0, 13976.0, 0.0, 32.0], [7025.0, 13977.0, 0.0, 33.0], [7397.0, 13978.0, 0.0, 34.0], [7434.0, 13979.0, 0.0, 35.0], [7634.0, 13980.0, 0.0, 36.0], [4389.0, 9875.0, 0.0, 5.0], [4438.0, 13982.0, 0.0, 6.0], [5524.0, 13983.0, 0.0, 7.0], [5935.0, 13984.0, 0.0, 8.0], [3384.0, 10269.0, 0.0, 7.0], [3759.0, 13986.0, 0.0, 8.0], [3790.0, 13987.0, 0.0, 9.0], [4393.0, 13988.0, 0.0, 10.0], [5856.0, 13989.0, 0.0, 11.0], [5932.0, 13990.0, 0.0, 12.0], [5978.0, 13991.0, 0.0, 13.0], [2175.0, 10470.0, 0.0, 12.0], [2189.0, 13993.0, 0.0, 13.0], [2290.0, 13994.0, 0.0, 14.0], [2647.0, 13995.0, 0.0, 15.0], [3351.0, 13996.0, 0.0, 16.0], [3398.0, 13997.0, 0.0, 17.0], [3554.0, 13998.0, 0.0, 18.0], [4199.0, 13999.0, 0.0, 19.0], [4271.0, 14000.0, 0.0, 20.0], [4603.0, 14001.0, 0.0, 21.0], [4695.0, 14002.0, 0.0, 22.0], [4729.0, 14003.0, 0.0, 23.0], [5078.0, 14004.0, 0.0, 24.0], [5183.0, 14005.0, 0.0, 25.0], [5318.0, 14006.0, 0.0, 26.0], [5321.0, 14007.0, 0.0, 27.0], [5336.0, 14008.0, 0.0, 28.0], [5371.0, 14009.0, 0.0, 29.0], [5428.0, 14010.0, 0.0, 30.0], [5523.0, 14011.0, 0.0, 31.0], [6003.0, 14012.0, 0.0, 32.0], [6117.0, 14013.0, 0.0, 33.0], [6368.0, 14014.0, 0.0, 34.0], [6394.0, 14015.0, 0.0, 35.0], [6481.0, 14016.0, 0.0, 36.0], [6680.0, 14017.0, 0.0, 37.0], [6778.0, 14018.0, 0.0, 38.0], [6877.0, 14019.0, 0.0, 39.0], [6994.0, 14020.0, 0.0, 40.0], [7228.0, 14021.0, 0.0, 41.0], [6479.0, 7804.0, 0.0, 2.0], [3510.0, 7358.0, 0.0, 2.0], [2025.0, 2073.0, 0.0, 2.0], [2198.0, 10533.0, 0.0, 22.0], [2060.0, 10643.0, 0.0, 100.0], [2089.0, 14027.0, 0.0, 101.0], [4205.0, 14025.0, 0.0, 3.0], [2094.0, 10632.0, 0.0, 115.0], [2130.0, 14028.0, 0.0, 102.0], [2106.0, 14030.0, 0.0, 116.0], [7356.0, 9690.0, 0.0, 3.0], [2112.0, 14032.0, 0.0, 117.0], [2218.0, 10218.0, 0.0, 5.0], [2133.0, 14034.0, 0.0, 118.0], [2132.0, 14031.0, 0.0, 103.0], [2139.0, 14037.0, 0.0, 104.0], [2142.0, 14036.0, 0.0, 119.0], [2151.0, 14038.0, 0.0, 105.0], [2156.0, 14039.0, 0.0, 120.0], [2166.0, 14040.0, 0.0, 106.0], [2173.0, 14041.0, 0.0, 121.0], [4666.0, 10275.0, 0.0, 5.0], [2167.0, 14042.0, 0.0, 107.0], [2169.0, 14045.0, 0.0, 108.0], [2186.0, 14046.0, 0.0, 109.0], [2187.0, 14043.0, 0.0, 122.0], [2215.0, 14047.0, 0.0, 110.0], [2195.0, 14048.0, 0.0, 123.0], [2203.0, 14050.0, 0.0, 124.0], [2276.0, 14026.0, 0.0, 23.0], [2260.0, 14051.0, 0.0, 125.0], [3565.0, 4234.0, 0.0, 2.0], [2854.0, 3312.0, 0.0, 2.0], [5755.0, 14055.0, 0.0, 3.0], [6306.0, 14056.0, 0.0, 4.0], [2217.0, 14049.0, 0.0, 111.0], [2232.0, 14058.0, 0.0, 112.0], [2550.0, 14035.0, 0.0, 6.0], [2287.0, 14059.0, 0.0, 113.0], [2938.0, 10058.0, 0.0, 4.0], [2261.0, 14053.0, 0.0, 126.0], [2273.0, 14063.0, 0.0, 127.0], [2309.0, 14064.0, 0.0, 128.0], [2279.0, 14052.0, 0.0, 24.0], [2291.0, 14066.0, 0.0, 25.0], [2299.0, 14061.0, 0.0, 114.0], [2337.0, 14067.0, 0.0, 26.0], [2302.0, 14068.0, 0.0, 115.0], [2307.0, 14070.0, 0.0, 116.0], [2321.0, 14071.0, 0.0, 117.0], [2317.0, 14065.0, 0.0, 129.0], [2325.0, 14073.0, 0.0, 130.0], [2330.0, 14072.0, 0.0, 118.0], [2339.0, 14074.0, 0.0, 131.0], [2335.0, 14075.0, 0.0, 119.0], [2361.0, 14077.0, 0.0, 120.0], [2605.0, 10196.0, 0.0, 5.0], [2340.0, 14069.0, 0.0, 27.0], [2357.0, 14076.0, 0.0, 132.0], [2400.0, 14080.0, 0.0, 28.0], [2362.0, 14081.0, 0.0, 133.0], [2387.0, 14078.0, 0.0, 121.0], [2365.0, 14083.0, 0.0, 134.0], [2367.0, 14085.0, 0.0, 135.0], [2382.0, 14086.0, 0.0, 136.0], [2410.0, 14087.0, 0.0, 137.0], [2392.0, 14084.0, 0.0, 122.0], [2397.0, 14089.0, 0.0, 123.0], [2432.0, 14090.0, 0.0, 124.0], [2467.0, 14082.0, 0.0, 29.0], [2418.0, 14088.0, 0.0, 138.0], [2444.0, 14093.0, 0.0, 139.0], [2449.0, 14091.0, 0.0, 125.0], [2445.0, 10347.0, 0.0, 22.0], [2459.0, 14094.0, 0.0, 140.0], [2542.0, 14096.0, 0.0, 23.0], [2457.0, 14095.0, 0.0, 126.0], [2471.0, 14099.0, 0.0, 127.0], [2472.0, 14097.0, 0.0, 141.0], [2503.0, 14092.0, 0.0, 30.0], [2486.0, 14100.0, 0.0, 128.0], [2487.0, 14101.0, 0.0, 142.0], [2525.0, 14103.0, 0.0, 129.0], [2566.0, 14104.0, 0.0, 143.0], [2509.0, 14102.0, 0.0, 31.0], [2604.0, 14107.0, 0.0, 32.0], [2544.0, 14105.0, 0.0, 130.0], [2592.0, 14098.0, 0.0, 24.0], [2562.0, 14109.0, 0.0, 131.0], [3817.0, 14060.0, 0.0, 7.0], [3902.0, 9674.0, 0.0, 3.0], [6484.0, 14113.0, 0.0, 4.0], [2820.0, 14079.0, 0.0, 6.0], [3032.0, 14115.0, 0.0, 7.0], [5135.0, 14116.0, 0.0, 8.0], [7563.0, 14117.0, 0.0, 9.0], [2779.0, 2809.0, 0.0, 2.0], [2585.0, 14111.0, 0.0, 132.0], [2588.0, 14106.0, 0.0, 144.0], [2599.0, 14120.0, 0.0, 133.0], [2640.0, 14121.0, 0.0, 145.0], [2596.0, 14110.0, 0.0, 25.0], [2737.0, 14124.0, 0.0, 26.0], [2597.0, 2755.0, 0.0, 2.0], [2632.0, 14122.0, 0.0, 134.0], [2699.0, 14108.0, 0.0, 33.0], [2639.0, 14127.0, 0.0, 135.0], [2649.0, 14129.0, 0.0, 136.0], [2650.0, 14123.0, 0.0, 146.0], [2654.0, 14130.0, 0.0, 137.0], [2659.0, 14131.0, 0.0, 147.0], [2664.0, 14132.0, 0.0, 138.0], [2665.0, 14133.0, 0.0, 148.0], [2668.0, 14134.0, 0.0, 139.0], [2667.0, 14135.0, 0.0, 149.0], [2695.0, 14137.0, 0.0, 150.0], [2674.0, 14136.0, 0.0, 140.0], [2746.0, 14139.0, 0.0, 141.0], [2700.0, 14138.0, 0.0, 151.0], [2797.0, 14128.0, 0.0, 34.0], [2710.0, 14141.0, 0.0, 152.0], [2711.0, 14143.0, 0.0, 153.0], [2749.0, 14144.0, 0.0, 154.0], [2832.0, 14125.0, 0.0, 27.0], [2759.0, 14140.0, 0.0, 142.0], [2781.0, 14145.0, 0.0, 155.0], [5071.0, 14126.0, 0.0, 3.0], [2777.0, 14147.0, 0.0, 143.0], [2783.0, 14150.0, 0.0, 144.0], [2796.0, 14148.0, 0.0, 156.0], [2786.0, 14151.0, 0.0, 145.0], [2787.0, 14153.0, 0.0, 146.0], [2805.0, 14154.0, 0.0, 147.0], [2821.0, 14152.0, 0.0, 157.0], [2830.0, 14142.0, 0.0, 35.0], [2808.0, 14155.0, 0.0, 148.0], [2815.0, 14158.0, 0.0, 149.0], [2859.0, 14159.0, 0.0, 150.0], [2822.0, 14156.0, 0.0, 158.0], [2841.0, 14161.0, 0.0, 159.0], [2837.0, 14157.0, 0.0, 36.0], [2853.0, 14146.0, 0.0, 28.0], [2874.0, 14163.0, 0.0, 37.0], [2865.0, 14162.0, 0.0, 160.0], [2870.0, 14164.0, 0.0, 29.0], [2861.0, 14160.0, 0.0, 151.0], [2868.0, 14168.0, 0.0, 152.0], [2942.0, 14165.0, 0.0, 38.0], [2982.0, 14170.0, 0.0, 39.0], [3007.0, 14171.0, 0.0, 40.0], [3024.0, 14172.0, 0.0, 41.0], [3175.0, 14173.0, 0.0, 42.0], [3249.0, 14174.0, 0.0, 43.0], [3320.0, 14175.0, 0.0, 44.0], [3380.0, 14176.0, 0.0, 45.0], [3401.0, 14177.0, 0.0, 46.0], [3437.0, 14178.0, 0.0, 47.0], [3445.0, 14179.0, 0.0, 48.0], [3582.0, 14180.0, 0.0, 49.0], [3822.0, 14181.0, 0.0, 50.0], [3992.0, 14182.0, 0.0, 51.0], [4027.0, 14183.0, 0.0, 52.0], [4108.0, 14184.0, 0.0, 53.0], [4185.0, 14185.0, 0.0, 54.0], [4307.0, 14186.0, 0.0, 55.0], [4767.0, 14187.0, 0.0, 56.0], [4773.0, 14188.0, 0.0, 57.0], [4848.0, 14189.0, 0.0, 58.0], [4903.0, 14190.0, 0.0, 59.0], [4910.0, 14191.0, 0.0, 60.0], [4917.0, 14192.0, 0.0, 61.0], [4971.0, 14193.0, 0.0, 62.0], [5043.0, 14194.0, 0.0, 63.0], [5115.0, 14195.0, 0.0, 64.0], [5142.0, 14196.0, 0.0, 65.0], [5196.0, 14197.0, 0.0, 66.0], [5272.0, 14198.0, 0.0, 67.0], [5393.0, 14199.0, 0.0, 68.0], [5401.0, 14200.0, 0.0, 69.0], [5469.0, 14201.0, 0.0, 70.0], [5520.0, 14202.0, 0.0, 71.0], [5529.0, 14203.0, 0.0, 72.0], [5573.0, 14204.0, 0.0, 73.0], [5603.0, 14205.0, 0.0, 74.0], [5747.0, 14206.0, 0.0, 75.0], [5833.0, 14207.0, 0.0, 76.0], [5946.0, 14208.0, 0.0, 77.0], [6005.0, 14209.0, 0.0, 78.0], [6287.0, 14210.0, 0.0, 79.0], [6415.0, 14211.0, 0.0, 80.0], [6422.0, 14212.0, 0.0, 81.0], [6450.0, 14213.0, 0.0, 82.0], [6520.0, 14214.0, 0.0, 83.0], [6576.0, 14215.0, 0.0, 84.0], [6637.0, 14216.0, 0.0, 85.0], [6700.0, 14217.0, 0.0, 86.0], [6706.0, 14218.0, 0.0, 87.0], [6721.0, 14219.0, 0.0, 88.0], [7132.0, 14220.0, 0.0, 89.0], [7480.0, 14221.0, 0.0, 90.0], [7499.0, 14222.0, 0.0, 91.0], [7530.0, 14223.0, 0.0, 92.0], [7826.0, 14224.0, 0.0, 93.0], [2896.0, 14166.0, 0.0, 161.0], [2883.0, 14169.0, 0.0, 153.0], [2927.0, 14167.0, 0.0, 30.0], [2916.0, 14227.0, 0.0, 154.0], [2932.0, 14226.0, 0.0, 162.0], [2917.0, 14229.0, 0.0, 155.0], [2937.0, 14231.0, 0.0, 156.0], [3083.0, 14228.0, 0.0, 31.0], [2955.0, 14230.0, 0.0, 163.0], [2963.0, 14232.0, 0.0, 157.0], [3848.0, 14062.0, 0.0, 5.0], [2971.0, 14234.0, 0.0, 164.0], [2984.0, 14235.0, 0.0, 158.0], [2975.0, 14237.0, 0.0, 165.0], [2992.0, 14239.0, 0.0, 166.0], [2987.0, 14238.0, 0.0, 159.0], [3001.0, 14241.0, 0.0, 160.0], [3000.0, 14240.0, 0.0, 167.0], [3025.0, 14243.0, 0.0, 168.0], [3034.0, 14242.0, 0.0, 161.0], [3048.0, 14244.0, 0.0, 169.0], [3035.0, 14245.0, 0.0, 162.0], [3044.0, 14247.0, 0.0, 163.0], [3054.0, 14248.0, 0.0, 164.0], [3057.0, 14246.0, 0.0, 170.0], [3059.0, 14249.0, 0.0, 165.0], [3063.0, 14250.0, 0.0, 171.0], [3089.0, 14251.0, 0.0, 166.0], [3142.0, 14252.0, 0.0, 172.0], [4824.0, 14236.0, 0.0, 6.0], [5095.0, 14255.0, 0.0, 7.0], [5123.0, 14256.0, 0.0, 8.0], [6125.0, 14257.0, 0.0, 9.0], [7083.0, 14258.0, 0.0, 10.0], [5879.0, 9657.0, 0.0, 3.0], [6997.0, 14260.0, 0.0, 4.0], [3107.0, 14233.0, 0.0, 32.0], [3102.0, 14253.0, 0.0, 167.0], [3115.0, 14263.0, 0.0, 168.0], [3221.0, 14262.0, 0.0, 33.0], [3119.0, 14264.0, 0.0, 169.0], [3125.0, 14266.0, 0.0, 170.0], [3130.0, 14267.0, 0.0, 171.0], [3139.0, 14268.0, 0.0, 172.0], [3140.0, 14269.0, 0.0, 173.0], [3143.0, 14270.0, 0.0, 174.0], [3181.0, 14254.0, 0.0, 173.0], [3168.0, 14271.0, 0.0, 175.0], [3314.0, 14273.0, 0.0, 176.0], [3189.0, 14272.0, 0.0, 174.0], [3227.0, 14275.0, 0.0, 175.0], [3220.0, 3493.0, 0.0, 2.0], [3271.0, 14265.0, 0.0, 34.0], [3234.0, 14276.0, 0.0, 176.0], [3251.0, 14279.0, 0.0, 177.0], [3257.0, 14280.0, 0.0, 178.0], [3277.0, 14281.0, 0.0, 179.0], [3377.0, 14278.0, 0.0, 35.0], [3287.0, 14282.0, 0.0, 180.0], [3315.0, 14284.0, 0.0, 181.0], [3336.0, 14274.0, 0.0, 177.0], [3332.0, 14285.0, 0.0, 182.0], [3333.0, 14287.0, 0.0, 183.0], [3355.0, 14288.0, 0.0, 184.0], [3366.0, 14286.0, 0.0, 178.0], [3367.0, 14289.0, 0.0, 185.0], [3375.0, 14290.0, 0.0, 179.0], [3389.0, 14291.0, 0.0, 186.0], [3378.0, 14292.0, 0.0, 180.0], [3408.0, 14283.0, 0.0, 36.0], [3409.0, 14294.0, 0.0, 181.0], [3429.0, 14293.0, 0.0, 187.0], [3433.0, 14295.0, 0.0, 37.0], [3419.0, 14296.0, 0.0, 182.0], [3426.0, 14299.0, 0.0, 183.0], [3460.0, 14300.0, 0.0, 184.0], [3503.0, 14297.0, 0.0, 188.0], [3446.0, 14298.0, 0.0, 38.0], [3479.0, 14303.0, 0.0, 39.0], [3492.0, 14301.0, 0.0, 185.0], [3637.0, 14304.0, 0.0, 40.0], [3500.0, 14305.0, 0.0, 186.0], [4911.0, 14277.0, 0.0, 3.0], [3517.0, 14307.0, 0.0, 187.0], [3504.0, 14302.0, 0.0, 189.0], [3538.0, 14310.0, 0.0, 190.0], [3520.0, 14309.0, 0.0, 188.0], [3528.0, 14312.0, 0.0, 189.0], [3641.0, 14313.0, 0.0, 190.0], [3543.0, 14311.0, 0.0, 191.0], [3655.0, 14306.0, 0.0, 41.0], [3721.0, 14316.0, 0.0, 42.0], [4012.0, 14317.0, 0.0, 43.0], [4105.0, 14318.0, 0.0, 44.0], [4125.0, 14319.0, 0.0, 45.0], [4230.0, 14320.0, 0.0, 46.0], [4481.0, 14321.0, 0.0, 47.0], [4509.0, 14322.0, 0.0, 48.0], [4572.0, 14323.0, 0.0, 49.0], [4614.0, 14324.0, 0.0, 50.0], [4670.0, 14325.0, 0.0, 51.0], [4765.0, 14326.0, 0.0, 52.0], [4802.0, 14327.0, 0.0, 53.0], [4882.0, 14328.0, 0.0, 54.0], [5198.0, 14329.0, 0.0, 55.0], [5208.0, 14330.0, 0.0, 56.0], [5326.0, 14331.0, 0.0, 57.0], [5335.0, 14332.0, 0.0, 58.0], [5364.0, 14333.0, 0.0, 59.0], [5483.0, 14334.0, 0.0, 60.0], [5528.0, 14335.0, 0.0, 61.0], [5651.0, 14336.0, 0.0, 62.0], [5708.0, 14337.0, 0.0, 63.0], [5728.0, 14338.0, 0.0, 64.0], [5864.0, 14339.0, 0.0, 65.0], [5889.0, 14340.0, 0.0, 66.0], [5969.0, 14341.0, 0.0, 67.0], [6053.0, 14342.0, 0.0, 68.0], [6065.0, 14343.0, 0.0, 69.0], [6088.0, 14344.0, 0.0, 70.0], [6182.0, 14345.0, 0.0, 71.0], [6303.0, 14346.0, 0.0, 72.0], [6412.0, 14347.0, 0.0, 73.0], [6664.0, 14348.0, 0.0, 74.0], [6666.0, 14349.0, 0.0, 75.0], [6786.0, 14350.0, 0.0, 76.0], [6795.0, 14351.0, 0.0, 77.0], [6834.0, 14352.0, 0.0, 78.0], [7057.0, 14353.0, 0.0, 79.0], [7149.0, 14354.0, 0.0, 80.0], [7302.0, 14355.0, 0.0, 81.0], [7307.0, 14356.0, 0.0, 82.0], [7370.0, 14357.0, 0.0, 83.0], [7417.0, 14358.0, 0.0, 84.0], [7555.0, 14359.0, 0.0, 85.0], [7717.0, 14360.0, 0.0, 86.0], [4702.0, 10348.0, 0.0, 5.0], [5076.0, 14362.0, 0.0, 6.0], [5213.0, 14363.0, 0.0, 7.0], [5562.0, 14364.0, 0.0, 8.0], [6975.0, 14365.0, 0.0, 9.0], [7557.0, 14366.0, 0.0, 10.0], [6987.0, 10113.0, 0.0, 3.0], [7619.0, 14368.0, 0.0, 4.0], [3601.0, 14315.0, 0.0, 192.0], [3614.0, 14370.0, 0.0, 193.0], [3622.0, 14371.0, 0.0, 194.0], [3626.0, 14372.0, 0.0, 195.0], [3640.0, 14373.0, 0.0, 196.0], [3658.0, 14374.0, 0.0, 197.0], [3656.0, 14314.0, 0.0, 191.0], [3677.0, 14376.0, 0.0, 192.0], [3660.0, 14375.0, 0.0, 198.0], [3678.0, 14378.0, 0.0, 199.0], [3733.0, 14377.0, 0.0, 193.0], [3680.0, 14379.0, 0.0, 200.0], [3695.0, 14381.0, 0.0, 201.0], [3709.0, 14382.0, 0.0, 202.0], [3728.0, 14383.0, 0.0, 203.0], [3746.0, 14384.0, 0.0, 204.0], [3742.0, 14380.0, 0.0, 194.0], [3805.0, 14386.0, 0.0, 195.0], [3748.0, 14385.0, 0.0, 205.0], [3757.0, 14388.0, 0.0, 206.0], [3763.0, 14389.0, 0.0, 207.0], [3764.0, 14390.0, 0.0, 208.0], [3770.0, 14391.0, 0.0, 209.0], [3803.0, 14392.0, 0.0, 210.0], [3809.0, 14393.0, 0.0, 211.0], [3806.0, 14387.0, 0.0, 196.0], [3811.0, 14395.0, 0.0, 197.0], [3810.0, 14394.0, 0.0, 212.0], [3855.0, 14397.0, 0.0, 213.0], [3843.0, 14396.0, 0.0, 198.0], [4357.0, 14112.0, 0.0, 8.0], [3893.0, 14399.0, 0.0, 199.0], [3868.0, 14398.0, 0.0, 214.0], [3876.0, 14402.0, 0.0, 215.0], [3896.0, 14403.0, 0.0, 216.0], [3884.0, 4637.0, 0.0, 2.0], [3898.0, 14401.0, 0.0, 200.0], [3900.0, 14404.0, 0.0, 217.0], [3907.0, 14406.0, 0.0, 201.0], [3901.0, 14407.0, 0.0, 218.0], [3910.0, 14409.0, 0.0, 219.0], [3931.0, 14408.0, 0.0, 202.0], [3921.0, 14410.0, 0.0, 220.0], [3942.0, 14412.0, 0.0, 221.0], [3945.0, 14411.0, 0.0, 203.0], [3973.0, 14413.0, 0.0, 222.0], [3949.0, 14414.0, 0.0, 204.0], [3952.0, 14416.0, 0.0, 205.0], [3958.0, 14417.0, 0.0, 206.0], [3977.0, 14418.0, 0.0, 207.0], [3974.0, 14415.0, 0.0, 223.0], [3983.0, 14420.0, 0.0, 224.0], [4002.0, 14419.0, 0.0, 208.0], [3985.0, 14421.0, 0.0, 225.0], [4008.0, 14423.0, 0.0, 226.0], [4039.0, 14422.0, 0.0, 209.0], [4037.0, 14424.0, 0.0, 227.0], [4126.0, 14426.0, 0.0, 228.0], [4090.0, 14425.0, 0.0, 210.0], [4096.0, 14428.0, 0.0, 211.0], [4102.0, 14429.0, 0.0, 212.0], [4134.0, 14430.0, 0.0, 213.0], [4142.0, 14431.0, 0.0, 214.0], [4143.0, 14432.0, 0.0, 215.0], [4154.0, 14433.0, 0.0, 216.0], [4163.0, 14434.0, 0.0, 217.0], [4229.0, 14435.0, 0.0, 218.0], [4239.0, 14436.0, 0.0, 219.0], [4253.0, 14437.0, 0.0, 220.0], [4306.0, 14438.0, 0.0, 221.0], [4342.0, 14439.0, 0.0, 222.0], [4352.0, 14440.0, 0.0, 223.0], [4359.0, 14441.0, 0.0, 224.0], [4372.0, 14442.0, 0.0, 225.0], [4377.0, 14443.0, 0.0, 226.0], [4411.0, 14444.0, 0.0, 227.0], [4433.0, 14445.0, 0.0, 228.0], [4456.0, 14446.0, 0.0, 229.0], [4463.0, 14447.0, 0.0, 230.0], [4468.0, 14448.0, 0.0, 231.0], [4491.0, 14449.0, 0.0, 232.0], [4493.0, 14450.0, 0.0, 233.0], [4496.0, 14451.0, 0.0, 234.0], [4517.0, 14452.0, 0.0, 235.0], [4559.0, 14453.0, 0.0, 236.0], [4576.0, 14454.0, 0.0, 237.0], [4581.0, 14455.0, 0.0, 238.0], [4585.0, 14456.0, 0.0, 239.0], [4608.0, 14457.0, 0.0, 240.0], [4660.0, 14458.0, 0.0, 241.0], [4661.0, 14459.0, 0.0, 242.0], [4734.0, 14460.0, 0.0, 243.0], [4785.0, 14461.0, 0.0, 244.0], [4787.0, 14462.0, 0.0, 245.0], [4846.0, 14463.0, 0.0, 246.0], [4851.0, 14464.0, 0.0, 247.0], [4894.0, 14465.0, 0.0, 248.0], [4906.0, 14466.0, 0.0, 249.0], [4908.0, 14467.0, 0.0, 250.0], [4921.0, 14468.0, 0.0, 251.0], [4945.0, 14469.0, 0.0, 252.0], [4957.0, 14470.0, 0.0, 253.0], [4965.0, 14471.0, 0.0, 254.0], [4979.0, 14472.0, 0.0, 255.0], [5023.0, 14473.0, 0.0, 256.0], [5024.0, 14474.0, 0.0, 257.0], [5035.0, 14475.0, 0.0, 258.0], [5083.0, 14476.0, 0.0, 259.0], [5088.0, 14477.0, 0.0, 260.0], [5101.0, 14478.0, 0.0, 261.0], [5131.0, 14479.0, 0.0, 262.0], [5151.0, 14480.0, 0.0, 263.0], [5194.0, 14481.0, 0.0, 264.0], [5212.0, 14482.0, 0.0, 265.0], [5216.0, 14483.0, 0.0, 266.0], [5228.0, 14484.0, 0.0, 267.0], [5254.0, 14485.0, 0.0, 268.0], [5273.0, 14486.0, 0.0, 269.0], [5280.0, 14487.0, 0.0, 270.0], [5308.0, 14488.0, 0.0, 271.0], [5342.0, 14489.0, 0.0, 272.0], [5359.0, 14490.0, 0.0, 273.0], [5368.0, 14491.0, 0.0, 274.0], [5370.0, 14492.0, 0.0, 275.0], [5378.0, 14493.0, 0.0, 276.0], [5388.0, 14494.0, 0.0, 277.0], [5390.0, 14495.0, 0.0, 278.0], [5440.0, 14496.0, 0.0, 279.0], [5448.0, 14497.0, 0.0, 280.0], [5458.0, 14498.0, 0.0, 281.0], [5467.0, 14499.0, 0.0, 282.0], [5484.0, 14500.0, 0.0, 283.0], [5495.0, 14501.0, 0.0, 284.0], [5508.0, 14502.0, 0.0, 285.0], [5518.0, 14503.0, 0.0, 286.0], [5521.0, 14504.0, 0.0, 287.0], [5522.0, 14505.0, 0.0, 288.0], [5543.0, 14506.0, 0.0, 289.0], [5557.0, 14507.0, 0.0, 290.0], [5614.0, 14508.0, 0.0, 291.0], [5633.0, 14509.0, 0.0, 292.0], [5660.0, 14510.0, 0.0, 293.0], [5670.0, 14511.0, 0.0, 294.0], [5698.0, 14512.0, 0.0, 295.0], [5780.0, 14513.0, 0.0, 296.0], [5783.0, 14514.0, 0.0, 297.0], [5786.0, 14515.0, 0.0, 298.0], [5799.0, 14516.0, 0.0, 299.0], [5838.0, 14517.0, 0.0, 300.0], [5853.0, 14518.0, 0.0, 301.0], [5869.0, 14519.0, 0.0, 302.0], [5884.0, 14520.0, 0.0, 303.0], [5891.0, 14521.0, 0.0, 304.0], [5926.0, 14522.0, 0.0, 305.0], [5959.0, 14523.0, 0.0, 306.0], [5987.0, 14524.0, 0.0, 307.0], [5989.0, 14525.0, 0.0, 308.0], [6009.0, 14526.0, 0.0, 309.0], [6027.0, 14527.0, 0.0, 310.0], [6030.0, 14528.0, 0.0, 311.0], [6033.0, 14529.0, 0.0, 312.0], [6050.0, 14530.0, 0.0, 313.0], [6064.0, 14531.0, 0.0, 314.0], [6075.0, 14532.0, 0.0, 315.0], [6107.0, 14533.0, 0.0, 316.0], [6120.0, 14534.0, 0.0, 317.0], [6136.0, 14535.0, 0.0, 318.0], [6142.0, 14536.0, 0.0, 319.0], [6152.0, 14537.0, 0.0, 320.0], [6204.0, 14538.0, 0.0, 321.0], [6205.0, 14539.0, 0.0, 322.0], [6222.0, 14540.0, 0.0, 323.0], [6235.0, 14541.0, 0.0, 324.0], [6357.0, 14542.0, 0.0, 325.0], [6364.0, 14543.0, 0.0, 326.0], [6376.0, 14544.0, 0.0, 327.0], [6379.0, 14545.0, 0.0, 328.0], [6392.0, 14546.0, 0.0, 329.0], [6429.0, 14547.0, 0.0, 330.0], [6443.0, 14548.0, 0.0, 331.0], [6448.0, 14549.0, 0.0, 332.0], [6465.0, 14550.0, 0.0, 333.0], [6482.0, 14551.0, 0.0, 334.0], [6490.0, 14552.0, 0.0, 335.0], [6499.0, 14553.0, 0.0, 336.0], [6523.0, 14554.0, 0.0, 337.0], [6557.0, 14555.0, 0.0, 338.0], [6569.0, 14556.0, 0.0, 339.0], [6597.0, 14557.0, 0.0, 340.0], [6612.0, 14558.0, 0.0, 341.0], [6630.0, 14559.0, 0.0, 342.0], [6662.0, 14560.0, 0.0, 343.0], [6678.0, 14561.0, 0.0, 344.0], [6685.0, 14562.0, 0.0, 345.0], [6704.0, 14563.0, 0.0, 346.0], [6733.0, 14564.0, 0.0, 347.0], [6763.0, 14565.0, 0.0, 348.0], [6774.0, 14566.0, 0.0, 349.0], [6779.0, 14567.0, 0.0, 350.0], [6782.0, 14568.0, 0.0, 351.0], [6813.0, 14569.0, 0.0, 352.0], [6814.0, 14570.0, 0.0, 353.0], [6860.0, 14571.0, 0.0, 354.0], [6876.0, 14572.0, 0.0, 355.0], [6894.0, 14573.0, 0.0, 356.0], [6897.0, 14574.0, 0.0, 357.0], [6934.0, 14575.0, 0.0, 358.0], [6945.0, 14576.0, 0.0, 359.0], [6966.0, 14577.0, 0.0, 360.0], [6970.0, 14578.0, 0.0, 361.0], [6973.0, 14579.0, 0.0, 362.0], [6976.0, 14580.0, 0.0, 363.0], [6980.0, 14581.0, 0.0, 364.0], [6982.0, 14582.0, 0.0, 365.0], [6992.0, 14583.0, 0.0, 366.0], [7008.0, 14584.0, 0.0, 367.0], [7040.0, 14585.0, 0.0, 368.0], [7044.0, 14586.0, 0.0, 369.0], [7048.0, 14587.0, 0.0, 370.0], [7079.0, 14588.0, 0.0, 371.0], [7080.0, 14589.0, 0.0, 372.0], [7089.0, 14590.0, 0.0, 373.0], [7103.0, 14591.0, 0.0, 374.0], [7104.0, 14592.0, 0.0, 375.0], [7106.0, 14593.0, 0.0, 376.0], [7111.0, 14594.0, 0.0, 377.0], [7116.0, 14595.0, 0.0, 378.0], [7122.0, 14596.0, 0.0, 379.0], [7134.0, 14597.0, 0.0, 380.0], [7146.0, 14598.0, 0.0, 381.0], [7154.0, 14599.0, 0.0, 382.0], [7172.0, 14600.0, 0.0, 383.0], [7181.0, 14601.0, 0.0, 384.0], [7196.0, 14602.0, 0.0, 385.0], [7223.0, 14603.0, 0.0, 386.0], [7254.0, 14604.0, 0.0, 387.0], [7299.0, 14605.0, 0.0, 388.0], [7308.0, 14606.0, 0.0, 389.0], [7328.0, 14607.0, 0.0, 390.0], [7330.0, 14608.0, 0.0, 391.0], [7345.0, 14609.0, 0.0, 392.0], [7371.0, 14610.0, 0.0, 393.0], [7392.0, 14611.0, 0.0, 394.0], [7412.0, 14612.0, 0.0, 395.0], [7484.0, 14613.0, 0.0, 396.0], [7486.0, 14614.0, 0.0, 397.0], [7515.0, 14615.0, 0.0, 398.0], [7529.0, 14616.0, 0.0, 399.0], [7533.0, 14617.0, 0.0, 400.0], [7552.0, 14618.0, 0.0, 401.0], [7578.0, 14619.0, 0.0, 402.0], [7603.0, 14620.0, 0.0, 403.0], [7606.0, 14621.0, 0.0, 404.0], [7613.0, 14622.0, 0.0, 405.0], [7632.0, 14623.0, 0.0, 406.0], [7636.0, 14624.0, 0.0, 407.0], [7638.0, 14625.0, 0.0, 408.0], [7644.0, 14626.0, 0.0, 409.0], [7648.0, 14627.0, 0.0, 410.0], [7669.0, 14628.0, 0.0, 411.0], [7679.0, 14629.0, 0.0, 412.0], [7682.0, 14630.0, 0.0, 413.0], [7729.0, 14631.0, 0.0, 414.0], [7737.0, 14632.0, 0.0, 415.0], [7761.0, 14633.0, 0.0, 416.0], [7770.0, 14634.0, 0.0, 417.0], [7783.0, 14635.0, 0.0, 418.0], [4133.0, 14427.0, 0.0, 229.0], [4136.0, 14637.0, 0.0, 230.0], [4160.0, 14638.0, 0.0, 231.0], [4190.0, 14639.0, 0.0, 232.0], [4344.0, 14640.0, 0.0, 233.0], [5632.0, 14029.0, 0.0, 4.0], [4350.0, 14641.0, 0.0, 234.0], [4395.0, 14643.0, 0.0, 235.0], [5294.0, 14400.0, 0.0, 9.0], [4396.0, 14644.0, 0.0, 236.0], [4403.0, 14646.0, 0.0, 237.0], [4405.0, 14647.0, 0.0, 238.0], [4406.0, 14648.0, 0.0, 239.0], [4407.0, 14649.0, 0.0, 240.0], [4472.0, 14650.0, 0.0, 241.0], [4474.0, 14651.0, 0.0, 242.0], [4483.0, 14652.0, 0.0, 243.0], [4485.0, 14653.0, 0.0, 244.0], [4489.0, 14654.0, 0.0, 245.0], [4506.0, 14655.0, 0.0, 246.0], [4999.0, 5257.0, 0.0, 2.0], [4565.0, 14656.0, 0.0, 247.0], [4573.0, 14658.0, 0.0, 248.0], [4595.0, 14659.0, 0.0, 249.0], [4602.0, 14660.0, 0.0, 250.0], [4613.0, 14661.0, 0.0, 251.0], [4641.0, 14662.0, 0.0, 252.0], [4786.0, 5638.0, 0.0, 2.0], [4681.0, 14663.0, 0.0, 253.0], [5487.0, 14044.0, 0.0, 6.0], [4684.0, 14665.0, 0.0, 254.0], [4687.0, 14667.0, 0.0, 255.0], [4688.0, 14668.0, 0.0, 256.0], [4694.0, 14669.0, 0.0, 257.0], [4784.0, 14670.0, 0.0, 258.0], [4793.0, 14671.0, 0.0, 259.0], [4814.0, 14672.0, 0.0, 260.0], [4825.0, 14673.0, 0.0, 261.0], [4829.0, 14674.0, 0.0, 262.0], [4839.0, 14675.0, 0.0, 263.0], [4871.0, 14676.0, 0.0, 264.0], [4924.0, 14677.0, 0.0, 265.0], [5881.0, 10640.0, 0.0, 6.0], [4943.0, 14678.0, 0.0, 266.0], [5017.0, 14680.0, 0.0, 267.0], [5042.0, 14681.0, 0.0, 268.0], [5064.0, 14682.0, 0.0, 269.0], [5066.0, 14683.0, 0.0, 270.0], [5106.0, 14684.0, 0.0, 271.0], [6293.0, 14149.0, 0.0, 4.0], [5109.0, 14685.0, 0.0, 272.0], [5118.0, 14687.0, 0.0, 273.0], [5124.0, 14688.0, 0.0, 274.0], [5136.0, 14689.0, 0.0, 275.0], [5141.0, 14690.0, 0.0, 276.0], [5180.0, 14691.0, 0.0, 277.0], [5199.0, 14692.0, 0.0, 278.0], [5218.0, 14693.0, 0.0, 279.0], [5222.0, 14694.0, 0.0, 280.0], [5227.0, 14695.0, 0.0, 281.0], [5246.0, 14696.0, 0.0, 282.0], [5275.0, 14697.0, 0.0, 283.0], [6902.0, 9434.0, 0.0, 3.0], [5282.0, 14698.0, 0.0, 284.0], [5292.0, 14700.0, 0.0, 285.0], [5301.0, 14701.0, 0.0, 286.0], [5324.0, 14702.0, 0.0, 287.0], [5325.0, 14703.0, 0.0, 288.0], [5349.0, 14704.0, 0.0, 289.0], [5377.0, 14705.0, 0.0, 290.0], [5419.0, 14706.0, 0.0, 291.0], [5427.0, 14707.0, 0.0, 292.0], [5442.0, 14708.0, 0.0, 293.0], [5444.0, 14709.0, 0.0, 294.0], [5454.0, 14710.0, 0.0, 295.0], [5491.0, 14711.0, 0.0, 296.0], [5492.0, 14712.0, 0.0, 297.0], [5537.0, 14713.0, 0.0, 298.0], [5542.0, 14714.0, 0.0, 299.0], [5544.0, 14715.0, 0.0, 300.0], [5568.0, 14716.0, 0.0, 301.0], [5571.0, 14717.0, 0.0, 302.0], [5575.0, 14718.0, 0.0, 303.0], [5576.0, 14719.0, 0.0, 304.0], [5577.0, 14720.0, 0.0, 305.0], [5582.0, 14721.0, 0.0, 306.0], [5613.0, 14722.0, 0.0, 307.0], [5646.0, 14723.0, 0.0, 308.0], [5656.0, 14724.0, 0.0, 309.0], [5665.0, 14725.0, 0.0, 310.0], [5669.0, 14726.0, 0.0, 311.0], [5681.0, 14727.0, 0.0, 312.0], [5714.0, 14728.0, 0.0, 313.0], [5718.0, 14729.0, 0.0, 314.0], [5735.0, 14730.0, 0.0, 315.0], [5736.0, 14731.0, 0.0, 316.0], [5740.0, 14732.0, 0.0, 317.0], [5756.0, 14733.0, 0.0, 318.0], [5760.0, 14734.0, 0.0, 319.0], [5772.0, 14735.0, 0.0, 320.0], [5773.0, 14736.0, 0.0, 321.0], [5819.0, 14737.0, 0.0, 322.0], [5835.0, 14738.0, 0.0, 323.0], [5851.0, 14739.0, 0.0, 324.0], [5907.0, 14740.0, 0.0, 325.0], [5933.0, 14741.0, 0.0, 326.0], [5953.0, 14742.0, 0.0, 327.0], [5974.0, 14743.0, 0.0, 328.0], [5991.0, 14744.0, 0.0, 329.0], [6057.0, 14745.0, 0.0, 330.0], [6133.0, 14746.0, 0.0, 331.0], [6145.0, 14747.0, 0.0, 332.0], [6158.0, 14748.0, 0.0, 333.0], [6166.0, 14749.0, 0.0, 334.0], [6168.0, 14750.0, 0.0, 335.0], [6174.0, 14751.0, 0.0, 336.0], [6189.0, 14752.0, 0.0, 337.0], [6200.0, 14753.0, 0.0, 338.0], [6223.0, 14754.0, 0.0, 339.0], [6237.0, 14755.0, 0.0, 340.0], [6248.0, 14756.0, 0.0, 341.0], [6283.0, 14757.0, 0.0, 342.0], [6288.0, 14758.0, 0.0, 343.0], [6289.0, 14759.0, 0.0, 344.0], [6309.0, 14760.0, 0.0, 345.0], [6314.0, 14761.0, 0.0, 346.0], [6326.0, 14762.0, 0.0, 347.0], [6336.0, 14763.0, 0.0, 348.0], [6344.0, 14764.0, 0.0, 349.0], [6405.0, 14765.0, 0.0, 350.0], [6466.0, 14766.0, 0.0, 351.0], [6480.0, 14767.0, 0.0, 352.0], [6487.0, 14768.0, 0.0, 353.0], [6525.0, 14769.0, 0.0, 354.0], [6527.0, 14770.0, 0.0, 355.0], [6536.0, 14771.0, 0.0, 356.0], [6550.0, 14772.0, 0.0, 357.0], [6588.0, 14773.0, 0.0, 358.0], [6598.0, 14774.0, 0.0, 359.0], [6607.0, 14775.0, 0.0, 360.0], [6617.0, 14776.0, 0.0, 361.0], [6638.0, 14777.0, 0.0, 362.0], [6652.0, 14778.0, 0.0, 363.0], [6701.0, 14779.0, 0.0, 364.0], [6783.0, 14780.0, 0.0, 365.0], [6792.0, 14781.0, 0.0, 366.0], [6794.0, 14782.0, 0.0, 367.0], [6798.0, 14783.0, 0.0, 368.0], [6803.0, 14784.0, 0.0, 369.0], [6815.0, 14785.0, 0.0, 370.0], [6843.0, 14786.0, 0.0, 371.0], [6872.0, 14787.0, 0.0, 372.0], [6883.0, 14788.0, 0.0, 373.0], [6885.0, 14789.0, 0.0, 374.0], [6896.0, 14790.0, 0.0, 375.0], [6926.0, 14791.0, 0.0, 376.0], [6940.0, 14792.0, 0.0, 377.0], [6941.0, 14793.0, 0.0, 378.0], [6951.0, 14794.0, 0.0, 379.0], [6978.0, 14795.0, 0.0, 380.0], [6991.0, 14796.0, 0.0, 381.0], [7019.0, 14797.0, 0.0, 382.0], [7035.0, 14798.0, 0.0, 383.0], [7041.0, 14799.0, 0.0, 384.0], [7043.0, 14800.0, 0.0, 385.0], [7053.0, 14801.0, 0.0, 386.0], [7074.0, 14802.0, 0.0, 387.0], [7075.0, 14803.0, 0.0, 388.0], [7133.0, 14804.0, 0.0, 389.0], [7153.0, 14805.0, 0.0, 390.0], [7156.0, 14806.0, 0.0, 391.0], [7237.0, 14807.0, 0.0, 392.0], [7244.0, 14808.0, 0.0, 393.0], [7264.0, 14809.0, 0.0, 394.0], [7290.0, 14810.0, 0.0, 395.0], [7296.0, 14811.0, 0.0, 396.0], [7297.0, 14812.0, 0.0, 397.0], [7329.0, 14813.0, 0.0, 398.0], [7352.0, 14814.0, 0.0, 399.0], [7368.0, 14815.0, 0.0, 400.0], [7369.0, 14816.0, 0.0, 401.0], [7390.0, 14817.0, 0.0, 402.0], [7407.0, 14818.0, 0.0, 403.0], [7456.0, 14819.0, 0.0, 404.0], [7459.0, 14820.0, 0.0, 405.0], [7464.0, 14821.0, 0.0, 406.0], [7469.0, 14822.0, 0.0, 407.0], [7478.0, 14823.0, 0.0, 408.0], [7517.0, 14824.0, 0.0, 409.0], [7599.0, 14825.0, 0.0, 410.0], [7609.0, 14826.0, 0.0, 411.0], [7615.0, 14827.0, 0.0, 412.0], [7635.0, 14828.0, 0.0, 413.0], [7663.0, 14829.0, 0.0, 414.0], [7694.0, 14830.0, 0.0, 415.0], [7696.0, 14831.0, 0.0, 416.0], [7700.0, 14832.0, 0.0, 417.0], [7703.0, 14833.0, 0.0, 418.0], [7724.0, 14834.0, 0.0, 419.0], [7760.0, 14835.0, 0.0, 420.0], [7785.0, 14836.0, 0.0, 421.0], [7815.0, 14837.0, 0.0, 422.0], [7817.0, 14838.0, 0.0, 423.0], [5434.0, 14645.0, 0.0, 10.0], [6067.0, 14840.0, 0.0, 11.0], [6172.0, 14841.0, 0.0, 12.0], [7136.0, 14842.0, 0.0, 13.0], [7786.0, 14843.0, 0.0, 14.0], [6458.0, 14666.0, 0.0, 7.0], [7007.0, 14845.0, 0.0, 8.0], [6185.0, 14642.0, 0.0, 5.0], [7493.0, 8857.0, 0.0, 4.0], [6554.0, 14679.0, 0.0, 7.0], [7653.0, 14847.0, 0.0, 6.0], [7164.0, 14849.0, 0.0, 8.0], [7210.0, 14851.0, 0.0, 9.0], [3379.0, 9123.0, 0.002613177668981121, 3.0], [1861.0, 1987.0, 0.002633782597335932, 2.0], [4662.0, 5647.0, 0.007121101089317072, 2.0], [1279.0, 7495.0, 0.007333439075030263, 2.0], [8788.0, 10768.0, 0.009911990288686506, 4.0], [4502.0, 10770.0, 0.013023109946187824, 4.0], [1287.0, 9721.0, 0.013303145589391238, 3.0], [4550.0, 6542.0, 0.013665176685187633, 2.0], [19.0, 4900.0, 0.016303039992696396, 2.0], [2701.0, 7424.0, 0.01741213672070231, 2.0], [7062.0, 14850.0, 0.023884597009387755, 7.0], [6924.0, 14369.0, 0.02825687467165663, 5.0], [4553.0, 7576.0, 0.028658238723548828, 2.0], [8711.0, 8713.0, 0.02966061741133617, 6.0], [3515.0, 4932.0, 0.029912302612036125, 2.0], [5599.0, 10816.0, 0.031597921798251584, 3.0], [5594.0, 5878.0, 0.03279557713909709, 2.0], [7821.0, 8716.0, 0.033528377973164984, 5.0], [5220.0, 6262.0, 0.03479649594742895, 2.0], [1590.0, 1681.0, 0.0364832798666941, 2.0], [1552.0, 8673.0, 0.03680742280662494, 3.0], [5973.0, 7190.0, 0.03780882781307682, 2.0], [5501.0, 8543.0, 0.038521279980056444, 3.0], [10858.0, 10870.0, 0.0394402450469967, 22.0], [6959.0, 10767.0, 0.03955261839613384, 3.0], [9126.0, 14853.0, 0.04031765595649368, 7.0], [5310.0, 7958.0, 0.04260995291397557, 3.0], [657.0, 3937.0, 0.045714652295428815, 2.0], [6811.0, 6831.0, 0.046201253499386884, 2.0], [5844.0, 10853.0, 0.04640191786626429, 3.0], [3906.0, 14864.0, 0.04724263089540764, 6.0], [6048.0, 6247.0, 0.04827343718839241, 2.0], [619.0, 14867.0, 0.04962200467997415, 3.0], [1251.0, 4632.0, 0.05094162456274713, 2.0], [688.0, 14861.0, 0.05125561270058562, 3.0], [3027.0, 6734.0, 0.053344807526080555, 2.0], [1481.0, 10063.0, 0.055626107445696335, 4.0], [4328.0, 14875.0, 0.05563497163583284, 4.0], [7668.0, 14848.0, 0.055645483286481605, 5.0], [5589.0, 9767.0, 0.055792152101060775, 3.0], [4288.0, 10822.0, 0.058775044704718275, 3.0], [3198.0, 4615.0, 0.058825922335564246, 2.0], [997.0, 2954.0, 0.05974444946300239, 2.0], [1781.0, 7101.0, 0.06108899708713443, 2.0], [7986.0, 8440.0, 0.061470895632161696, 471.0], [14054.0, 14057.0, 0.06151311800941433, 6.0], [680.0, 7818.0, 0.06253400725945134, 2.0], [53.0, 136.0, 0.06356772267745292, 2.0], [1689.0, 4761.0, 0.06497570081391839, 2.0], [1603.0, 2879.0, 0.06826996136797404, 2.0], [6880.0, 7866.0, 0.06898694796010084, 3.0], [4879.0, 6688.0, 0.07012324292277954, 2.0], [1134.0, 8672.0, 0.07110741946647331, 3.0], [875.0, 6848.0, 0.0730756243008256, 2.0], [14878.0, 14899.0, 0.07350932465766727, 9.0], [3586.0, 14869.0, 0.07548052177112756, 3.0], [7314.0, 14876.0, 0.07652348199961, 23.0], [4808.0, 8458.0, 0.08138660972290189, 4.0], [8649.0, 14895.0, 0.08157391744473423, 5.0], [508.0, 2206.0, 0.08529247912970132, 2.0], [607.0, 14885.0, 0.08591582933108034, 4.0], [3875.0, 6586.0, 0.08645748665104087, 2.0], [7214.0, 7246.0, 0.08675527124658824, 2.0], [7248.0, 14858.0, 0.08836447243888686, 5.0], [2358.0, 10165.0, 0.08916946559734949, 3.0], [614.0, 3688.0, 0.09017051386651824, 2.0], [10819.0, 14855.0, 0.09051098250141187, 6.0], [448.0, 1961.0, 0.09087711800916598, 2.0], [1828.0, 14901.0, 0.0920890641147615, 3.0], [1217.0, 14886.0, 0.09333852653612111, 3.0], [4847.0, 9071.0, 0.09334483021168595, 3.0], [2969.0, 4655.0, 0.09493758445375931, 2.0], [1767.0, 4062.0, 0.09557278251645802, 2.0], [3111.0, 14879.0, 0.09794382413954411, 4.0], [5417.0, 8700.0, 0.098089685096703, 7.0], [14860.0, 14877.0, 0.09839741129090412, 5.0], [14308.0, 14873.0, 0.09942035678197488, 6.0], [1734.0, 8695.0, 0.09976997716464293, 23.0], [7787.0, 10626.0, 0.10070092010402794, 6.0], [1696.0, 3326.0, 0.10587692907297373, 2.0], [3607.0, 4631.0, 0.10752320265118678, 2.0], [2349.0, 9227.0, 0.10775228431368704, 8.0], [9387.0, 10182.0, 0.10854022745886376, 5.0], [4215.0, 14880.0, 0.10991997764564214, 3.0], [4976.0, 6084.0, 0.11388011158199185, 2.0], [2228.0, 10766.0, 0.115495937447927, 3.0], [4915.0, 9377.0, 0.11634742335582743, 4.0], [4817.0, 10815.0, 0.11709544597000346, 3.0], [3478.0, 3501.0, 0.11740931016800178, 2.0], [179.0, 2268.0, 0.11845213763000789, 2.0], [4498.0, 14657.0, 0.11905530228386528, 3.0], [765.0, 3866.0, 0.11938829072228915, 2.0], [4854.0, 9209.0, 0.12077111835518733, 3.0], [569.0, 8934.0, 0.12181624788949857, 6.0], [7687.0, 14846.0, 0.12231763231864375, 9.0], [14862.0, 14887.0, 0.12255394103673406, 5.0], [6191.0, 14259.0, 0.125582466450308, 11.0], [1235.0, 6102.0, 0.12640422229933188, 2.0], [7781.0, 10820.0, 0.12655101373273214, 3.0], [2052.0, 8674.0, 0.12664469090227903, 3.0], [1197.0, 14892.0, 0.1271902434088259, 4.0], [4089.0, 14636.0, 0.1313111421162681, 419.0], [3046.0, 9232.0, 0.13146443351516196, 5.0], [4574.0, 9158.0, 0.13464591188342856, 7.0], [776.0, 9277.0, 0.13490163982576175, 26.0], [6986.0, 10826.0, 0.1356363169344644, 3.0], [7672.0, 14935.0, 0.1368808995656401, 6.0], [2990.0, 3513.0, 0.1382405111348206, 2.0], [14367.0, 14881.0, 0.1394687219569516, 12.0], [3498.0, 9931.0, 0.13951158626713414, 3.0], [1787.0, 9647.0, 0.13978356749259427, 3.0], [1204.0, 9789.0, 0.14027868942971755, 20.0], [4220.0, 5903.0, 0.14147584868455146, 2.0], [5354.0, 10495.0, 0.14166456972258332, 4.0], [1083.0, 9669.0, 0.142019651351474, 10.0], [6497.0, 14854.0, 0.14235605866087667, 3.0], [2257.0, 10276.0, 0.14373622334657263, 3.0], [10380.0, 10383.0, 0.149264899005534, 27.0], [7772.0, 10758.0, 0.15144995454159962, 3.0], [14405.0, 14664.0, 0.15200339385191106, 4.0], [113.0, 7952.0, 0.15248384704133375, 3.0], [3448.0, 7496.0, 0.15275697742525685, 2.0], [14261.0, 14884.0, 0.15363103849006024, 6.0], [1621.0, 2347.0, 0.15517543566751207, 2.0], [2539.0, 8912.0, 0.15580901813101855, 3.0], [239.0, 2233.0, 0.15746219855547539, 2.0], [4926.0, 6564.0, 0.15843126942323218, 2.0], [14865.0, 14906.0, 0.16001513299365433, 4.0], [2159.0, 10714.0, 0.16191890366144415, 3.0], [3720.0, 4487.0, 0.16351238165988344, 2.0], [5278.0, 13992.0, 0.16386931017795278, 14.0], [718.0, 8882.0, 0.16503525480442155, 5.0], [2833.0, 10789.0, 0.16644443051357635, 4.0], [7058.0, 7739.0, 0.16846336629835476, 2.0], [1249.0, 8720.0, 0.16943568886561886, 7.0], [481.0, 14927.0, 0.17120449713741473, 8.0], [3068.0, 10341.0, 0.1733504529068723, 4.0], [70.0, 14912.0, 0.1740716109594962, 3.0], [2138.0, 14932.0, 0.17807004132263904, 3.0], [3854.0, 10825.0, 0.17863818877051468, 5.0], [3187.0, 8850.0, 0.17868299549186187, 3.0], [10408.0, 10412.0, 0.17913112327788605, 27.0], [3976.0, 10759.0, 0.17991535625536356, 3.0], [3508.0, 6715.0, 0.18151584714700897, 2.0], [9278.0, 14957.0, 0.18171112346857737, 28.0], [1216.0, 9798.0, 0.1817283258330381, 3.0], [1329.0, 14962.0, 0.18188470439426763, 4.0], [2895.0, 6211.0, 0.18234545189078696, 2.0], [8575.0, 14889.0, 0.18272429579254018, 6.0], [232.0, 2957.0, 0.18328611881926604, 2.0], [1378.0, 9969.0, 0.18727011741681698, 4.0], [4778.0, 14922.0, 0.18809550132268105, 4.0], [4916.0, 5015.0, 0.1885241810175792, 2.0], [7042.0, 10075.0, 0.1917727819763143, 3.0], [5605.0, 6676.0, 0.19191211077145864, 2.0], [3078.0, 10791.0, 0.19212875700881435, 5.0], [14893.0, 14904.0, 0.19247898130069216, 5.0], [1440.0, 7298.0, 0.1929274371190355, 2.0], [73.0, 719.0, 0.19343429878102977, 2.0], [14959.0, 14976.0, 0.1939888501823451, 8.0], [7740.0, 8704.0, 0.19560139210487934, 6.0], [6965.0, 14897.0, 0.1962656128350602, 472.0], [4656.0, 14114.0, 0.19647148080273916, 5.0], [119.0, 14926.0, 0.1984546844830659, 5.0], [2064.0, 4555.0, 0.20293209199139448, 2.0], [1002.0, 6764.0, 0.20568535978257402, 2.0], [7798.0, 9218.0, 0.2065924819419963, 3.0], [14928.0, 14936.0, 0.20725869152849577, 8.0], [841.0, 9338.0, 0.20753846035501491, 3.0], [4189.0, 14956.0, 0.20871885218638708, 8.0], [167.0, 8492.0, 0.21086150108028137, 3.0], [5972.0, 10804.0, 0.21277266737421374, 8.0], [14916.0, 14948.0, 0.21333798025263376, 10.0], [14923.0, 14942.0, 0.21555546363683575, 5.0], [7977.0, 14908.0, 0.21574540270179277, 7.0], [3522.0, 6802.0, 0.21752591370081975, 2.0], [4427.0, 10784.0, 0.21789140832528361, 3.0], [3551.0, 4939.0, 0.21872132567688746, 2.0], [2478.0, 10091.0, 0.21936936320712055, 5.0], [2492.0, 3715.0, 0.21960702740669324, 2.0], [6346.0, 7026.0, 0.2211958722122242, 2.0], [2750.0, 14965.0, 0.22140757539236722, 3.0], [7233.0, 10173.0, 0.22457368159549707, 3.0], [9619.0, 14872.0, 0.22544169716303025, 4.0], [2619.0, 4676.0, 0.22545965625640652, 2.0], [9067.0, 13947.0, 0.22612654132124188, 4.0], [9050.0, 14225.0, 0.2287056416000433, 95.0], [9221.0, 14918.0, 0.22947375644693183, 4.0], [2816.0, 14919.0, 0.23151855218363201, 7.0], [4409.0, 5406.0, 0.23227818284459242, 2.0], [1169.0, 7511.0, 0.23244281332278854, 2.0], [4570.0, 9452.0, 0.2325105423644712, 6.0], [1167.0, 4867.0, 0.23888763989481682, 2.0], [5798.0, 9584.0, 0.24126946146559955, 109.0], [1031.0, 9607.0, 0.24496234561725966, 4.0], [2507.0, 14888.0, 0.24515203646002737, 3.0], [8708.0, 14925.0, 0.24569506902569302, 4.0], [3018.0, 4753.0, 0.24676045360488194, 2.0], [6851.0, 9646.0, 0.24697669791303076, 6.0], [1991.0, 10623.0, 0.2476972489624346, 3.0], [3965.0, 6852.0, 0.2482817169845599, 2.0], [5365.0, 7032.0, 0.24964270991157392, 2.0], [603.0, 5639.0, 0.2538223842094537, 2.0], [10162.0, 14958.0, 0.254935227051159, 6.0], [4898.0, 9293.0, 0.2556801638461791, 4.0], [6832.0, 14874.0, 0.25667979702251476, 3.0], [9608.0, 10978.0, 0.2567903379528789, 108.0], [5713.0, 5777.0, 0.2567999251198251, 2.0], [6089.0, 7583.0, 0.2583343997238713, 2.0], [1746.0, 10278.0, 0.2596209480691733, 3.0], [5145.0, 9307.0, 0.2630433741791233, 4.0], [5429.0, 8924.0, 0.2639543191056797, 9.0], [3135.0, 14924.0, 0.26749896265341383, 3.0], [3211.0, 10897.0, 0.2686803361024335, 11.0], [8671.0, 14952.0, 0.2693317939485486, 8.0], [2977.0, 3583.0, 0.2714396741524269, 2.0], [5046.0, 5404.0, 0.27252826372441374, 2.0], [917.0, 5848.0, 0.275738319800566, 2.0], [10823.0, 14857.0, 0.27712256781996114, 7.0], [721.0, 9176.0, 0.2788693506345595, 10.0], [4629.0, 7105.0, 0.27908269397059865, 2.0], [14980.0, 15025.0, 0.2791818460535866, 14.0], [2620.0, 5679.0, 0.2792732915812737, 2.0], [3576.0, 10837.0, 0.28014340737650517, 3.0], [7587.0, 10493.0, 0.2833303415142118, 4.0], [2522.0, 7934.0, 0.28357518216695665, 3.0], [6031.0, 14977.0, 0.28393082199253084, 4.0], [220.0, 3302.0, 0.284013974784299, 2.0], [1652.0, 7453.0, 0.28423852437966296, 2.0], [1382.0, 7261.0, 0.28461682966380447, 2.0], [77.0, 4034.0, 0.28526612568182597, 2.0], [274.0, 2332.0, 0.2855723990075291, 2.0], [4966.0, 9255.0, 0.286118485367802, 11.0], [8709.0, 14866.0, 0.28645159592323505, 8.0], [14905.0, 15037.0, 0.29324516659805594, 5.0], [4929.0, 10664.0, 0.294370168855471, 5.0], [14699.0, 14839.0, 0.29561614153101007, 426.0], [14944.0, 14955.0, 0.297023046232295, 7.0], [14870.0, 14907.0, 0.29714174486123635, 14.0], [138.0, 2637.0, 0.2971620784180299, 2.0], [5552.0, 7870.0, 0.29943876472305087, 3.0], [1017.0, 7027.0, 0.2994481599957958, 2.0], [14902.0, 14960.0, 0.299679482413173, 4.0], [7418.0, 14938.0, 0.3005275714055982, 4.0], [266.0, 6928.0, 0.3016626734688373, 2.0], [7678.0, 10873.0, 0.3018375392347508, 3.0], [2915.0, 8976.0, 0.30327152091977905, 34.0], [1043.0, 9618.0, 0.3041440774679674, 5.0], [104.0, 2643.0, 0.30505383155385996, 2.0], [10849.0, 10852.0, 0.3054155039907932, 6.0], [14868.0, 14953.0, 0.3055036648666872, 7.0], [8631.0, 8647.0, 0.30578130159257333, 6.0], [3070.0, 14949.0, 0.3102282943908362, 12.0], [5818.0, 14894.0, 0.31153957208033684, 3.0], [2204.0, 14970.0, 0.312138614849773, 28.0], [201.0, 2126.0, 0.3125704217517389, 2.0], [319.0, 14968.0, 0.3129860129013855, 4.0], [6577.0, 14940.0, 0.31323719947643314, 4.0], [14914.0, 14933.0, 0.31418845614936475, 4.0], [2014.0, 4857.0, 0.31522807424347615, 2.0], [14951.0, 14985.0, 0.31663016164376934, 7.0], [5119.0, 13949.0, 0.3199677653657139, 3.0], [3232.0, 8462.0, 0.3213368803433046, 6.0], [493.0, 14984.0, 0.32189938694753556, 6.0], [7532.0, 9179.0, 0.322664934795075, 3.0], [2115.0, 10884.0, 0.32723466032270365, 5.0], [1224.0, 3453.0, 0.330577371714389, 2.0], [10670.0, 10671.0, 0.33079296928759755, 7.0], [4586.0, 15026.0, 0.3313289567070723, 6.0], [4654.0, 5981.0, 0.33353144749100005, 2.0], [2172.0, 4417.0, 0.3358054537139237, 2.0], [7086.0, 8770.0, 0.3358498012905581, 3.0], [7752.0, 15050.0, 0.33988494917625867, 3.0], [14913.0, 14915.0, 0.3428829144541429, 6.0], [10771.0, 15095.0, 0.34305371743969804, 6.0], [4225.0, 9215.0, 0.34781790647468014, 3.0], [7157.0, 7561.0, 0.34949466547516317, 2.0], [1244.0, 3106.0, 0.3498392599576852, 2.0], [6502.0, 7697.0, 0.3544004490080686, 2.0], [682.0, 3341.0, 0.35793247338251555, 2.0], [2502.0, 7281.0, 0.3616584718873838, 2.0], [6437.0, 15035.0, 0.3624846358274699, 4.0], [1486.0, 6498.0, 0.36329701805876935, 2.0], [2484.0, 6866.0, 0.3638879613453681, 2.0], [14024.0, 15075.0, 0.3661900212995533, 4.0], [2040.0, 7622.0, 0.3665809505926714, 2.0], [15031.0, 15110.0, 0.36932705043202163, 9.0], [10736.0, 10737.0, 0.3726742678253109, 12.0], [14896.0, 14898.0, 0.37317595657263136, 8.0], [2524.0, 8930.0, 0.376682943500574, 8.0], [1948.0, 7919.0, 0.37682494708805214, 3.0], [14921.0, 15009.0, 0.37703011512096796, 8.0], [15000.0, 15053.0, 0.3774863018409786, 4.0], [4364.0, 15067.0, 0.3785886291986231, 9.0], [1790.0, 2726.0, 0.3818661035055451, 2.0], [7808.0, 9697.0, 0.3853832477691519, 4.0], [712.0, 15061.0, 0.3854902080150601, 3.0], [3971.0, 15032.0, 0.38864741001662517, 3.0], [648.0, 15104.0, 0.39022934317499164, 7.0], [15007.0, 15011.0, 0.39039825356749236, 4.0], [2819.0, 7822.0, 0.3906718427239204, 2.0], [780.0, 9284.0, 0.3952893164659341, 5.0], [8667.0, 14988.0, 0.4052639275675307, 15.0], [2278.0, 15043.0, 0.40542021507002535, 3.0], [7273.0, 10213.0, 0.40894461458066883, 3.0], [14033.0, 14975.0, 0.410815659356361, 9.0], [10787.0, 15029.0, 0.41173648491352377, 8.0], [10887.0, 14931.0, 0.4153737156508696, 12.0], [5219.0, 15083.0, 0.41557026452826185, 3.0], [14900.0, 15027.0, 0.4159521861456448, 9.0], [5861.0, 15006.0, 0.41698138110525423, 4.0], [2045.0, 2157.0, 0.41927109070756186, 2.0], [156.0, 14990.0, 0.42376673030453205, 4.0], [2621.0, 15056.0, 0.4237811548053791, 7.0], [14996.0, 15103.0, 0.4238825586570036, 9.0], [7119.0, 8871.0, 0.4283829924892421, 3.0], [4349.0, 5013.0, 0.43093077609277275, 2.0], [5975.0, 14934.0, 0.43503988914044683, 9.0], [6024.0, 15152.0, 0.4350771777927243, 5.0], [6385.0, 8569.0, 0.43582313667352146, 3.0], [6575.0, 10750.0, 0.4392592205715368, 19.0], [242.0, 8558.0, 0.44555932592058517, 3.0], [5985.0, 7654.0, 0.44875617080996855, 2.0], [4818.0, 14950.0, 0.4500002033503188, 3.0], [1368.0, 14991.0, 0.4519252746579053, 4.0], [1359.0, 3368.0, 0.45334656383396577, 2.0], [2974.0, 7831.0, 0.45615587029709964, 2.0], [5825.0, 6765.0, 0.4584420263494905, 2.0], [15018.0, 15112.0, 0.45880859846623434, 4.0], [2945.0, 10386.0, 0.4592779866980656, 6.0], [632.0, 7527.0, 0.4621222600022238, 2.0], [1125.0, 14979.0, 0.4630375004697718, 3.0], [6697.0, 7309.0, 0.4630910319480662, 2.0], [5317.0, 15003.0, 0.46488900463152366, 5.0], [14856.0, 15072.0, 0.4696467702984759, 12.0], [1606.0, 15019.0, 0.46995291178482146, 4.0], [4173.0, 10821.0, 0.47110305837122696, 3.0], [10389.0, 10783.0, 0.472344157335532, 22.0], [1361.0, 5137.0, 0.47356158343424215, 2.0], [15071.0, 15091.0, 0.4755372820446752, 21.0], [14911.0, 15151.0, 0.47685321741095765, 12.0], [4047.0, 7502.0, 0.4777896199593627, 2.0], [5334.0, 5996.0, 0.4779765501685474, 2.0], [1433.0, 15122.0, 0.4782481017496712, 3.0], [6767.0, 15070.0, 0.47880890909867035, 3.0], [3364.0, 7169.0, 0.4815244142045866, 2.0], [5244.0, 14903.0, 0.48225021881765406, 4.0], [423.0, 8819.0, 0.48398380713255607, 7.0], [3659.0, 15108.0, 0.4871589486967877, 3.0], [3689.0, 15139.0, 0.4893009684314018, 10.0], [6457.0, 6677.0, 0.4922792029029245, 2.0], [2671.0, 10845.0, 0.49514649866729377, 5.0], [2249.0, 15092.0, 0.49560199661543, 3.0], [23.0, 7858.0, 0.4969334206874319, 4.0], [15042.0, 15102.0, 0.4978893597390808, 8.0], [1191.0, 9762.0, 0.4980566068036773, 5.0], [7202.0, 15171.0, 0.4990328838687015, 6.0], [9234.0, 15090.0, 0.500532366730255, 10.0], [7675.0, 15084.0, 0.5019302120204915, 3.0], [7626.0, 10366.0, 0.5032663907300481, 3.0], [6500.0, 9217.0, 0.5035062857603163, 3.0], [10056.0, 10842.0, 0.5051561688509327, 6.0], [4043.0, 4623.0, 0.5056697726848007, 2.0], [2878.0, 15023.0, 0.5125086151726838, 4.0], [3486.0, 9229.0, 0.5142166168730307, 4.0], [14118.0, 14119.0, 0.5191855527798446, 11.0], [964.0, 7256.0, 0.5195072603498065, 2.0], [404.0, 6671.0, 0.5247452804907876, 2.0], [1446.0, 6407.0, 0.5259752321519093, 2.0], [2860.0, 4507.0, 0.5269335069753852, 2.0], [3410.0, 15116.0, 0.5292742878857397, 7.0], [7911.0, 15161.0, 0.5422755305283895, 7.0], [14978.0, 15212.0, 0.5428377963717365, 5.0], [1636.0, 5846.0, 0.5457908000787871, 2.0], [6316.0, 10834.0, 0.5457988056842418, 3.0], [1996.0, 10630.0, 0.5514011417723493, 5.0], [14910.0, 15012.0, 0.5533696297355989, 12.0], [2735.0, 15010.0, 0.5535291150026199, 3.0], [1694.0, 2554.0, 0.5550488955461959, 2.0], [1005.0, 9486.0, 0.561876093239284, 3.0], [14891.0, 15016.0, 0.5631263984893484, 10.0], [2375.0, 14871.0, 0.5712948503446443, 3.0], [4449.0, 9859.0, 0.5765446529299845, 65.0], [4308.0, 7568.0, 0.5777388806810706, 2.0], [456.0, 2743.0, 0.5835823028018213, 2.0], [373.0, 15124.0, 0.587148312868094, 4.0], [2129.0, 8945.0, 0.5878003666639035, 3.0], [1171.0, 15054.0, 0.588465272996055, 3.0], [15020.0, 15033.0, 0.5886977031868792, 10.0], [315.0, 15155.0, 0.5918191561852905, 16.0], [4340.0, 7625.0, 0.5920260572372918, 2.0], [14987.0, 15055.0, 0.5938470296516651, 9.0], [14022.0, 14945.0, 0.5966914117062764, 44.0], [15017.0, 15119.0, 0.5981971571937041, 4.0], [6173.0, 7709.0, 0.6002478987764526, 2.0], [1064.0, 9643.0, 0.6007338912161161, 8.0], [661.0, 15220.0, 0.608501435834331, 3.0], [14883.0, 14929.0, 0.6109429310828715, 12.0], [4762.0, 15168.0, 0.6126891989780533, 4.0], [15079.0, 15199.0, 0.6135268404347684, 8.0], [14999.0, 15113.0, 0.6153659010369178, 11.0], [10806.0, 10833.0, 0.6212532892085846, 7.0], [2308.0, 9222.0, 0.6241577333345104, 3.0], [5992.0, 14941.0, 0.6256645794270499, 3.0], [15002.0, 15148.0, 0.6266563336175682, 6.0], [1252.0, 15169.0, 0.6268601284443903, 3.0], [6613.0, 7834.0, 0.6276629315467827, 2.0], [10805.0, 15005.0, 0.6313100525741404, 4.0], [2902.0, 14971.0, 0.6332038004224393, 4.0], [463.0, 8854.0, 0.6337467119767904, 5.0], [3482.0, 6769.0, 0.6405836039372258, 2.0], [14998.0, 15105.0, 0.6408443676151543, 15.0], [14023.0, 15021.0, 0.6411674990481262, 5.0], [4977.0, 6904.0, 0.6426711900599252, 2.0], [395.0, 8791.0, 0.6468975721740805, 3.0], [253.0, 15172.0, 0.6489478646438563, 4.0], [10872.0, 14909.0, 0.649533027884759, 26.0], [2234.0, 4296.0, 0.6600775630025371, 2.0], [15052.0, 15160.0, 0.6612540722687539, 15.0], [7936.0, 15078.0, 0.6650594271665382, 5.0], [6590.0, 14937.0, 0.6654826430290975, 3.0], [15022.0, 15241.0, 0.6670455175148244, 18.0], [4584.0, 15198.0, 0.6711233739326541, 3.0], [1060.0, 7194.0, 0.6742539784512531, 2.0], [13948.0, 15114.0, 0.6842318116224703, 5.0], [14995.0, 15121.0, 0.6897741226445477, 9.0], [7518.0, 15057.0, 0.6902915840300151, 5.0], [15049.0, 15109.0, 0.6908294335548901, 8.0], [10673.0, 15203.0, 0.6913028766935315, 5.0], [4431.0, 15101.0, 0.6921760162574996, 3.0], [10073.0, 15136.0, 0.6954062013221405, 4.0], [15004.0, 15130.0, 0.6961708054008563, 6.0], [15145.0, 15149.0, 0.7019142008637342, 7.0], [15133.0, 15135.0, 0.7020239814567943, 4.0], [15106.0, 15188.0, 0.7078772347422283, 7.0], [15128.0, 15213.0, 0.7092927688672129, 6.0], [3049.0, 14983.0, 0.7151308549344854, 15.0], [4052.0, 15156.0, 0.7213452832633425, 4.0], [14890.0, 15127.0, 0.7292659140505133, 10.0], [15158.0, 15264.0, 0.7305738374296061, 24.0], [3750.0, 15064.0, 0.7321906185230121, 10.0], [10668.0, 15129.0, 0.7325369903120799, 4.0], [4415.0, 9246.0, 0.7329189506155326, 5.0], [14972.0, 15126.0, 0.7334576060267546, 10.0], [2020.0, 2489.0, 0.737141721117371, 2.0], [2892.0, 15214.0, 0.7396408803351723, 7.0], [14844.0, 14947.0, 0.7419352088987159, 23.0], [1401.0, 7255.0, 0.7483159365867935, 2.0], [790.0, 1490.0, 0.7536508140134762, 2.0], [282.0, 4448.0, 0.7677710746316493, 2.0], [1515.0, 10097.0, 0.7765610882765774, 4.0], [4028.0, 15251.0, 0.7782613433086263, 5.0], [7935.0, 7940.0, 0.7783503435535584, 7.0], [14930.0, 14961.0, 0.7797360180154048, 35.0], [15062.0, 15125.0, 0.7799971515362766, 6.0], [14859.0, 15058.0, 0.7908276884140418, 6.0], [15041.0, 15189.0, 0.7970710750738632, 10.0], [14966.0, 15123.0, 0.7972655142922993, 6.0], [3393.0, 15097.0, 0.7985792062216092, 3.0], [600.0, 15132.0, 0.8020189561324849, 3.0], [4719.0, 6725.0, 0.80247624581187, 2.0], [15111.0, 15250.0, 0.8025393312613874, 16.0], [10721.0, 14981.0, 0.8039911394174087, 17.0], [5511.0, 15256.0, 0.8044767966068525, 4.0], [3708.0, 14939.0, 0.8063741813622268, 5.0], [1022.0, 15177.0, 0.8075877842907239, 5.0], [15001.0, 15141.0, 0.8085933133174823, 14.0], [8483.0, 15115.0, 0.809431913845028, 29.0], [14982.0, 15060.0, 0.8104577427200078, 4.0], [10799.0, 15216.0, 0.8157146272455039, 17.0], [1859.0, 15225.0, 0.8175726865979265, 6.0], [1269.0, 6496.0, 0.8266609083765559, 2.0], [6134.0, 14917.0, 0.8274624653841196, 4.0], [774.0, 5945.0, 0.8345089727107273, 2.0], [10830.0, 14992.0, 0.8387627701648219, 11.0], [15008.0, 15144.0, 0.8442311340709397, 13.0], [15131.0, 15186.0, 0.8471558625494057, 7.0], [654.0, 9104.0, 0.8542481619714088, 6.0], [543.0, 6170.0, 0.8573111133102649, 2.0], [14969.0, 15205.0, 0.8592816658140061, 6.0], [10907.0, 10910.0, 0.8605282032657353, 22.0], [4063.0, 15246.0, 0.8625773167660169, 5.0], [2718.0, 15235.0, 0.8652070505822561, 66.0], [9220.0, 15255.0, 0.8657524083305164, 6.0], [14967.0, 15085.0, 0.866709369289869, 21.0], [7359.0, 15048.0, 0.8668142101932086, 4.0], [14686.0, 15154.0, 0.8676155762464652, 9.0], [1239.0, 6871.0, 0.8688378969217094, 2.0], [7566.0, 15221.0, 0.8764033092733403, 3.0], [15164.0, 15227.0, 0.8822477221763455, 5.0], [14882.0, 15166.0, 0.9000263991688492, 10.0], [10072.0, 15283.0, 0.901007259820296, 9.0], [8936.0, 15142.0, 0.9028619821657938, 11.0], [10839.0, 15069.0, 0.9046518692814471, 7.0], [1754.0, 15080.0, 0.9056538155744033, 3.0], [10074.0, 15234.0, 0.9067258174291002, 5.0], [15086.0, 15280.0, 0.9136804403823742, 16.0], [15036.0, 15100.0, 0.9162559067297648, 9.0], [10713.0, 15063.0, 0.9199170524533905, 25.0], [15051.0, 15118.0, 0.92319872128593, 11.0], [268.0, 3013.0, 0.925297826785142, 2.0], [4079.0, 15093.0, 0.9254509887147645, 4.0], [15068.0, 15181.0, 0.9289486001856995, 6.0], [6302.0, 15268.0, 0.9323770051441569, 5.0], [13951.0, 15295.0, 0.9329831804804459, 7.0], [1268.0, 9882.0, 0.9452487796796631, 3.0], [14920.0, 15232.0, 0.9489572791427985, 5.0], [1439.0, 10030.0, 0.9630826186743555, 21.0], [580.0, 15230.0, 0.9700692440391258, 4.0], [15117.0, 15150.0, 0.9711852240935837, 6.0], [2549.0, 15153.0, 0.9717052874976213, 3.0], [15175.0, 15222.0, 0.9783344068090486, 4.0], [15034.0, 15309.0, 0.9818129252815947, 13.0], [15157.0, 15315.0, 0.9821944112960553, 20.0], [6615.0, 7381.0, 0.9856896048945828, 2.0], [8619.0, 15211.0, 0.9863533064686096, 39.0], [15194.0, 15236.0, 0.9874957237957944, 4.0], [15217.0, 15336.0, 0.9905712877443842, 10.0], [9883.0, 15286.0, 0.9926746290172566, 6.0], [15087.0, 15146.0, 0.9976609858149177, 14.0], [15030.0, 15207.0, 0.9994086046336972, 10.0], [13950.0, 15228.0, 1.0035160849020797, 7.0], [15185.0, 15259.0, 1.0129610186366413, 4.0], [10843.0, 15180.0, 1.0142696787179224, 4.0], [15074.0, 15192.0, 1.0163951158491957, 35.0], [10847.0, 15307.0, 1.0165293718618313, 9.0], [15173.0, 15215.0, 1.0166571311399388, 21.0], [15096.0, 15244.0, 1.0207277877917635, 13.0], [15165.0, 15320.0, 1.0242594198880663, 33.0], [147.0, 5268.0, 1.0251323795818914, 2.0], [6533.0, 9869.0, 1.0305755092110878, 4.0], [14963.0, 15248.0, 1.0332276201724002, 11.0], [4705.0, 15195.0, 1.0404354361294568, 3.0], [9627.0, 10667.0, 1.0442896501895134, 10.0], [14986.0, 15247.0, 1.0463384832274172, 4.0], [2483.0, 5745.0, 1.0463527527527692, 2.0], [6060.0, 6286.0, 1.0552815050037263, 2.0], [2380.0, 10032.0, 1.055788804507267, 5.0], [9626.0, 15094.0, 1.058521200746534, 6.0], [2790.0, 9624.0, 1.058637938614472, 3.0], [9168.0, 15209.0, 1.0616847066937862, 14.0], [1371.0, 6209.0, 1.0686524254711085, 2.0], [8982.0, 15239.0, 1.087316009994303, 10.0], [532.0, 14946.0, 1.092360308012679, 7.0], [15073.0, 15306.0, 1.0956836313033924, 37.0], [6565.0, 15275.0, 1.1002103502194764, 4.0], [15257.0, 15278.0, 1.1023527082083793, 15.0], [4256.0, 9178.0, 1.1082614983793022, 3.0], [7199.0, 15134.0, 1.117661774601204, 5.0], [6398.0, 15178.0, 1.1251659551603703, 3.0], [10844.0, 15298.0, 1.1317587106251221, 9.0], [15291.0, 15328.0, 1.1380918902270842, 23.0], [13953.0, 13981.0, 1.1402878112782662, 39.0], [452.0, 1672.0, 1.1445717086807792, 2.0], [15229.0, 15319.0, 1.1537656555461309, 26.0], [15167.0, 15252.0, 1.156730699027784, 17.0], [15044.0, 15219.0, 1.170117146056918, 8.0], [15107.0, 15323.0, 1.181196958236991, 34.0], [15197.0, 15288.0, 1.1817118132297892, 9.0], [15163.0, 15334.0, 1.1875562655874352, 9.0], [7207.0, 15347.0, 1.1894577802136808, 4.0], [8869.0, 10513.0, 1.1919772358543068, 27.0], [14943.0, 15039.0, 1.1954590711223905, 98.0], [15015.0, 15316.0, 1.2077765162306824, 9.0], [15184.0, 15260.0, 1.2080714443681098, 7.0], [14993.0, 15099.0, 1.2098653278228448, 37.0], [15279.0, 15301.0, 1.2183171420424894, 7.0], [15077.0, 15310.0, 1.218640700418122, 10.0], [10788.0, 15311.0, 1.225586043111567, 5.0], [15258.0, 15383.0, 1.2296057868397114, 7.0], [15013.0, 15290.0, 1.2405220721008, 10.0], [10662.0, 15088.0, 1.2621338826004311, 25.0], [10031.0, 15238.0, 1.2662283105099432, 6.0], [15045.0, 15361.0, 1.2687532301291828, 6.0], [14997.0, 15147.0, 1.2714092943447814, 30.0], [15038.0, 15059.0, 1.2731702122116173, 112.0], [9216.0, 15297.0, 1.276816969877094, 4.0], [15081.0, 15351.0, 1.2802955788172763, 27.0], [7252.0, 15243.0, 1.292800261316342, 3.0], [14974.0, 15245.0, 1.3028949246876478, 46.0], [10700.0, 15281.0, 1.3076776594015187, 46.0], [763.0, 15385.0, 1.3215658144816658, 4.0], [100.0, 15302.0, 1.3304848126457125, 3.0], [15040.0, 15287.0, 1.3307664184962502, 11.0], [15387.0, 15431.0, 1.3575157834597635, 7.0], [9660.0, 15329.0, 1.3623600397120579, 10.0], [6164.0, 15394.0, 1.3643901608268738, 3.0], [15253.0, 15285.0, 1.3659575009962595, 18.0], [15261.0, 15399.0, 1.3670188185346324, 19.0], [15179.0, 15267.0, 1.3814862336741123, 5.0], [15233.0, 15296.0, 1.3845522246440296, 20.0], [14973.0, 15405.0, 1.3849517437299315, 42.0], [10814.0, 15028.0, 1.3876646565882351, 13.0], [10848.0, 15373.0, 1.3917531812456032, 13.0], [15182.0, 15321.0, 1.4028064182939293, 10.0], [15293.0, 15396.0, 1.4164917788127096, 17.0], [15174.0, 15322.0, 1.4378223005563768, 20.0], [15226.0, 15389.0, 1.4611699182165918, 4.0], [15159.0, 15355.0, 1.4898509075165969, 14.0], [4682.0, 15391.0, 1.5104623794969279, 7.0], [15340.0, 15375.0, 1.5211525985415812, 6.0], [15263.0, 15273.0, 1.5269275872431523, 5.0], [8752.0, 15376.0, 1.529878131639519, 6.0], [15367.0, 15406.0, 1.5361199081248138, 4.0], [9741.0, 15430.0, 1.5394002056368552, 35.0], [15270.0, 15318.0, 1.544223306645116, 7.0], [723.0, 1053.0, 1.5459461537235188, 2.0], [1827.0, 15183.0, 1.5519537465660715, 3.0], [14989.0, 15240.0, 1.556137952586855, 7.0], [15024.0, 15390.0, 1.5619949966165216, 13.0], [15342.0, 15354.0, 1.5699688774793807, 9.0], [8561.0, 13985.0, 1.5763430592445633, 11.0], [15224.0, 15237.0, 1.5988580961792327, 9.0], [15082.0, 15369.0, 1.6029978081156384, 6.0], [14964.0, 15098.0, 1.611589971309385, 23.0], [4437.0, 15312.0, 1.6203059485761298, 4.0], [15014.0, 15271.0, 1.6282940871801355, 487.0], [15326.0, 15357.0, 1.6558414632182819, 9.0], [9100.0, 15330.0, 1.6604815122399683, 39.0], [15065.0, 15337.0, 1.6693964665465204, 24.0], [7200.0, 10647.0, 1.6711642255940276, 5.0], [2303.0, 15353.0, 1.6782826135571982, 3.0], [15289.0, 15427.0, 1.678340678998036, 45.0], [15254.0, 15327.0, 1.6947026590783163, 18.0], [15284.0, 15408.0, 1.700956649215344, 23.0], [957.0, 3300.0, 1.7235774153859376, 2.0], [15223.0, 15393.0, 1.7493179317645395, 21.0], [15349.0, 15377.0, 1.75277337713938, 51.0], [15196.0, 15421.0, 1.775108681007119, 8.0], [15303.0, 15341.0, 1.7801454279488553, 7.0], [15324.0, 15458.0, 1.8231856417328092, 9.0], [15170.0, 15370.0, 1.824902971297217, 19.0], [15137.0, 15292.0, 1.8293981241154993, 28.0], [15143.0, 15417.0, 1.830744271173554, 10.0], [15314.0, 15372.0, 1.8516691534852967, 30.0], [15204.0, 15422.0, 1.8543891326281317, 12.0], [10888.0, 15401.0, 1.8560765341892154, 7.0], [10763.0, 15206.0, 1.8572633541195376, 9.0], [7686.0, 15382.0, 1.8609850787713087, 3.0], [15201.0, 15365.0, 1.8636505921700988, 16.0], [15266.0, 15272.0, 1.868036602643505, 7.0], [15202.0, 15445.0, 1.8968849633134708, 23.0], [14852.0, 15277.0, 1.9264265558651048, 14.0], [15358.0, 15363.0, 1.9373520801227142, 6.0], [5453.0, 15294.0, 1.9828117328799073, 5.0], [15047.0, 15089.0, 1.99368478527592, 430.0], [10728.0, 15140.0, 2.013505615882014, 20.0], [15066.0, 15308.0, 2.0187572902044217, 17.0], [15193.0, 15438.0, 2.0910155825651264, 22.0], [15200.0, 15262.0, 2.0991316609683595, 12.0], [15274.0, 15380.0, 2.1123298441140714, 31.0], [15466.0, 15493.0, 2.115282812131718, 13.0], [15249.0, 15473.0, 2.1334104526854163, 8.0], [15348.0, 15419.0, 2.134189062067539, 12.0], [15276.0, 15339.0, 2.142962364704974, 11.0], [15335.0, 15364.0, 2.1526522382453837, 70.0], [15345.0, 15448.0, 2.1566904828282705, 28.0], [15411.0, 15436.0, 2.1581520640778935, 20.0], [15344.0, 15449.0, 2.161471082352794, 29.0], [15046.0, 15359.0, 2.1752463898535432, 114.0], [15400.0, 15459.0, 2.1968902640378483, 5.0], [15138.0, 15434.0, 2.198076285152821, 6.0], [15346.0, 15398.0, 2.22679503059228, 11.0], [15190.0, 15440.0, 2.237087541836808, 40.0], [15371.0, 15465.0, 2.250296793163393, 15.0], [15120.0, 15304.0, 2.2650852724868753, 12.0], [5872.0, 15409.0, 2.275945983281685, 9.0], [1048.0, 2021.0, 2.2829599364754896, 2.0], [15242.0, 15332.0, 2.3043269235635457, 22.0], [15231.0, 15432.0, 2.304474397449503, 48.0], [15162.0, 15469.0, 2.3076454439906895, 496.0], [15343.0, 15446.0, 2.319345903264461, 23.0], [15325.0, 15416.0, 2.3309134536572875, 13.0], [15282.0, 15455.0, 2.3571866757869664, 9.0], [4913.0, 15362.0, 2.36926338951119, 7.0], [15331.0, 15395.0, 2.4074965169107445, 12.0], [15208.0, 15392.0, 2.4397243249929548, 8.0], [15176.0, 15368.0, 2.4520678954848356, 42.0], [10836.0, 15497.0, 2.482252019622377, 8.0], [15313.0, 15386.0, 2.523094762835443, 12.0], [15450.0, 15491.0, 2.5240278108371585, 7.0], [10765.0, 15356.0, 2.5293097015037023, 8.0], [15402.0, 15464.0, 2.5395670765167453, 14.0], [15187.0, 15420.0, 2.5802752391126167, 22.0], [15265.0, 15522.0, 2.6167040593202797, 53.0], [15425.0, 15447.0, 2.6348243069709376, 16.0], [15378.0, 15524.0, 2.646751444474372, 32.0], [14361.0, 15379.0, 2.6489899437271145, 107.0], [882.0, 7510.0, 2.685261066310173, 2.0], [15499.0, 15507.0, 2.6987982044831127, 31.0], [15480.0, 15503.0, 2.7047688596341994, 82.0], [15191.0, 15439.0, 2.705783197153775, 5.0], [15352.0, 15384.0, 2.719744001932213, 22.0], [15412.0, 15506.0, 2.7635532535735834, 21.0], [15429.0, 15514.0, 2.822087446082587, 10.0], [15388.0, 15413.0, 2.8322396288236455, 6.0], [15317.0, 15478.0, 2.8389728695509073, 7.0], [14863.0, 14954.0, 2.892537901699845, 426.0], [10757.0, 15534.0, 2.89805787364658, 18.0], [15269.0, 15467.0, 2.904748083545636, 49.0], [15435.0, 15468.0, 2.926143434787506, 7.0], [15300.0, 15483.0, 2.934020570394836, 11.0], [15441.0, 15479.0, 2.997380206860697, 40.0], [15414.0, 15512.0, 3.0033103963088412, 141.0], [14994.0, 15516.0, 3.0519325211381325, 67.0], [15210.0, 15484.0, 3.0864155909198443, 29.0], [15418.0, 15470.0, 3.096175709656756, 46.0], [15299.0, 15415.0, 3.101139637513782, 121.0], [15333.0, 15428.0, 3.1043673607368425, 134.0], [10881.0, 15305.0, 3.1375424596990378, 16.0], [15374.0, 15528.0, 3.1951843865201717, 19.0], [15476.0, 15486.0, 3.243324645446433, 28.0], [15460.0, 15461.0, 3.246083710691831, 10.0], [2150.0, 15500.0, 3.2833463964784384, 18.0], [15366.0, 15433.0, 3.3424279729499453, 66.0], [15442.0, 15490.0, 3.3581971857178914, 14.0], [15451.0, 15511.0, 3.3685152077571248, 43.0], [15404.0, 15543.0, 3.573404732061328, 105.0], [15454.0, 15463.0, 3.6190833540381964, 14.0], [15527.0, 15563.0, 3.633392582893838, 26.0], [15481.0, 15501.0, 3.649702392005529, 30.0], [15360.0, 15462.0, 3.665250073108635, 34.0], [15423.0, 15521.0, 3.6907687236017046, 32.0], [15076.0, 15526.0, 3.7063934848005555, 12.0], [15443.0, 15536.0, 3.7272581140174132, 42.0], [15453.0, 15504.0, 3.755745565530954, 19.0], [15510.0, 15558.0, 3.774259266557717, 49.0], [15338.0, 15489.0, 3.9872877993916105, 11.0], [15477.0, 15492.0, 4.1067302899819, 39.0], [15474.0, 15496.0, 4.145478770508578, 9.0], [15518.0, 15565.0, 4.151546835312948, 22.0], [15452.0, 15532.0, 4.16073778774858, 19.0], [15350.0, 15531.0, 4.211901848941496, 17.0], [15218.0, 15525.0, 4.279555184550714, 24.0], [15381.0, 15407.0, 4.314363799787903, 59.0], [15515.0, 15554.0, 4.417218304891403, 22.0], [15456.0, 15548.0, 4.518641217774994, 10.0], [15517.0, 15568.0, 4.522361575890066, 29.0], [15397.0, 15487.0, 4.552040138972573, 67.0], [15509.0, 15529.0, 4.564381377300592, 36.0], [15482.0, 15505.0, 4.584041022802254, 15.0], [15403.0, 15544.0, 4.67831840536162, 14.0], [15488.0, 15564.0, 5.044745203189094, 40.0], [15475.0, 15545.0, 5.0918902948718365, 67.0], [15485.0, 15577.0, 5.09588706727958, 70.0], [15424.0, 15530.0, 5.309938562801246, 67.0], [15513.0, 15541.0, 5.4528074281595815, 7.0], [15426.0, 15547.0, 5.634606190181549, 16.0], [15437.0, 15539.0, 5.789248353931122, 39.0], [15584.0, 15589.0, 5.826279108086152, 29.0], [15472.0, 15587.0, 5.903179982283463, 83.0], [15538.0, 15581.0, 5.934205593501496, 55.0], [15520.0, 15593.0, 6.215132557865118, 17.0], [15553.0, 15594.0, 6.244562903798777, 21.0], [15582.0, 15600.0, 6.405781349612828, 25.0], [15444.0, 15535.0, 6.433020067689203, 56.0], [15471.0, 15551.0, 6.486435179006462, 57.0], [15495.0, 15560.0, 6.529963792111982, 135.0], [15546.0, 15573.0, 6.605565063797261, 51.0], [15562.0, 15574.0, 6.641738117680095, 50.0], [15575.0, 15591.0, 6.653733175765435, 99.0], [15494.0, 15595.0, 6.702957006471748, 63.0], [15502.0, 15549.0, 6.767284622611335, 19.0], [15580.0, 15599.0, 7.0388507491071985, 18.0], [15410.0, 15555.0, 7.530521311184188, 74.0], [15571.0, 15612.0, 7.615926520930021, 64.0], [15519.0, 15552.0, 7.713580309703624, 58.0], [15557.0, 15570.0, 8.00958367896002, 172.0], [15561.0, 15566.0, 8.11857564177458, 152.0], [15579.0, 15607.0, 8.218230126190939, 74.0], [15540.0, 15542.0, 8.266555237214915, 138.0], [15592.0, 15605.0, 8.683299686343082, 53.0], [15559.0, 15572.0, 8.865379222126773, 72.0], [15578.0, 15601.0, 9.138114204285188, 58.0], [15569.0, 15604.0, 9.362494955946273, 98.0], [15567.0, 15583.0, 9.596368605007912, 88.0], [15576.0, 15596.0, 10.005484355290283, 79.0], [15614.0, 15626.0, 10.014694853187931, 121.0], [15533.0, 15625.0, 10.077301101727306, 79.0], [15590.0, 15622.0, 10.215800639268828, 103.0], [15556.0, 15586.0, 11.06907953818854, 165.0], [10622.0, 15523.0, 11.626376999634807, 603.0], [15457.0, 15585.0, 11.731242672849431, 52.0], [15617.0, 15620.0, 12.09532509722433, 246.0], [15602.0, 15606.0, 12.69334775081886, 50.0], [15588.0, 15611.0, 12.992892375786269, 73.0], [15598.0, 15624.0, 14.606257550137528, 120.0], [15508.0, 15609.0, 14.6147284450983, 127.0], [15537.0, 15629.0, 14.778557026196433, 132.0], [15627.0, 15636.0, 16.24567630508189, 344.0], [15618.0, 15638.0, 18.16662444878641, 137.0], [15628.0, 15635.0, 18.34763514174826, 140.0], [15608.0, 15616.0, 18.564944415479307, 74.0], [15615.0, 15641.0, 19.58462076050937, 151.0], [15498.0, 15610.0, 20.732281036419614, 565.0], [15619.0, 15634.0, 21.627655802857, 661.0], [15603.0, 15631.0, 21.74332851853739, 162.0], [15597.0, 15633.0, 22.535282549183453, 235.0], [15550.0, 15621.0, 22.66259751180979, 578.0], [15613.0, 15623.0, 24.209030183766014, 237.0], [15637.0, 15640.0, 25.83591117195941, 177.0], [15645.0, 15649.0, 27.899317864472273, 236.0], [15632.0, 15639.0, 29.077751137164274, 223.0], [15644.0, 15652.0, 30.24619094199248, 377.0], [15630.0, 15653.0, 32.354476152989484, 298.0], [15646.0, 15650.0, 34.95571173370427, 386.0], [15643.0, 15657.0, 43.588333934321376, 435.0], [15655.0, 15659.0, 53.9387405771032, 658.0], [15642.0, 15660.0, 58.232831441860334, 1002.0], [15647.0, 15654.0, 134.00192803522884, 801.0], [15651.0, 15658.0, 148.79078394733634, 964.0], [15648.0, 15656.0, 165.65411917867337, 1038.0], [15661.0, 15662.0, 266.55789599255877, 1803.0], [15664.0, 15665.0, 282.4138605987721, 2841.0], [15663.0, 15666.0, 291.4367916705556, 3805.0], [13946.0, 15667.0, 481.28312978396184, 7835.0]]"
data =json.loads(datastr)
row_tree = sch.dendrogram(data, no_plot=True)
</code></pre></div>
<h3 dir="auto">Error message:</h3>
<p dir="auto">truncated, becuase VERY long</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~\anaconda3\lib\site-packages\scipy\cluster\hierarchy.py in _dendrogram_calculate_info(Z, p, truncate_mode, color_threshold, get_leaves, orientation, labels, count_sort, distance_sort, show_leaf_counts, i, iv, ivl, n, icoord_list, dcoord_list, lvs, mhr, current_color, color_list, currently_below_threshold, leaf_label_func, level, contraction_marks, link_color_func, above_threshold_color)
2616 level=level + 1, contraction_marks=contraction_marks,
2617 link_color_func=link_color_func,
-> 2618 above_threshold_color=above_threshold_color)
2619
2620 h = Z[i - n, 2]
RecursionError: maximum recursion depth exceeded while getting the str of an object"><pre class="notranslate"><code class="notranslate">~\anaconda3\lib\site-packages\scipy\cluster\hierarchy.py in _dendrogram_calculate_info(Z, p, truncate_mode, color_threshold, get_leaves, orientation, labels, count_sort, distance_sort, show_leaf_counts, i, iv, ivl, n, icoord_list, dcoord_list, lvs, mhr, current_color, color_list, currently_below_threshold, leaf_label_func, level, contraction_marks, link_color_func, above_threshold_color)
2616 level=level + 1, contraction_marks=contraction_marks,
2617 link_color_func=link_color_func,
-> 2618 above_threshold_color=above_threshold_color)
2619
2620 h = Z[i - n, 2]
RecursionError: maximum recursion depth exceeded while getting the str of an object
</code></pre></div>
<h3 dir="auto">Scipy/Numpy/Python version information:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="0.19.1 1.13.3 sys.version_info(major=3, minor=6, micro=3, releaselevel='final', serial=0)"><pre class="notranslate"><code class="notranslate">0.19.1 1.13.3 sys.version_info(major=3, minor=6, micro=3, releaselevel='final', serial=0)
</code></pre></div> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/449558/24775834/72fa00fc-1aec-11e7-81cd-6c60eb9a294a.png"><img src="https://cloud.githubusercontent.com/assets/449558/24775834/72fa00fc-1aec-11e7-81cd-6c60eb9a294a.png" alt="image" style="max-width: 100%;"></a><br>
I'm trying to do a dendrogram:</p>
<blockquote>
<p dir="auto">ValueError: Linkage 'Z' uses the same cluster more than once.</p>
</blockquote>
<p dir="auto">Am I doing something wrong here?</p> | 1 |
<h3 dir="auto">Proposed new feature or change:</h3>
<p dir="auto">As the title, <code class="notranslate">Bfloat16</code> is a new data type of <code class="notranslate">float number</code> that is used in cuda A100 cards and intel CPU. Does <code class="notranslate">numpy</code> have any plan to support <code class="notranslate">Bfloat16</code>?</p> | <h2 dir="auto">Feature</h2>
<p dir="auto">Hi,<br>
I am working at PaddlePaddle(chinese DL framework). We and other DL frameworks would extremely benefit from integrated bfloat16 numpy datatype. I have seen that TF added its own implementation and lately a standalone pip package <a href="https://pypi.org/project/bfloat16/" rel="nofollow">bfloat16</a> was released.<br>
I have also seen NEP 41, 42, 43 which from what I understand will allow adding new, user-defined datatypes. Are you guys planning to integrate bfloat16 into core numpy? If you don't have the bandwidth to do that, is there anyone that can guide me how to implement that so I can make a PR? And how are these NEPs going?</p> | 1 |
<p dir="auto">Symfony 4.1.0</p>
<p dir="auto">Hello when I deploy my symfony application on my production server it does not work it shows me an error that is the following :</p>
<p dir="auto"><code class="notranslate">Attempted to call an undefined method named "hasBeenStarted" of class "Symfony\Component\HttpFoundation\Session\Session".</code></p>
<p dir="auto">Please can you help me to find a solution I must make the project today<br>
I am under symfony 7.2.7<br>
cordially</p> | <p dir="auto"><strong>Symfony version(s) affected</strong>: >=4.0.12, >=4.1.1</p>
<p dir="auto"><strong>Description</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1055691/41904511-e146d426-7938-11e8-9243-54e1a03cde18.png"><img src="https://user-images.githubusercontent.com/1055691/41904511-e146d426-7938-11e8-9243-54e1a03cde18.png" alt="afbeelding" style="max-width: 100%;"></a></p>
<p dir="auto">After upgrading HttpFoundation to version <a href="https://github.com/symfony/symfony/releases/tag/v4.0.12">4.0.12</a> (due to a security issue reported by SensioLabs Security Checker), our web debug toolbar stopped working. Debugging this issue shows that there seems to be a mismatch between version 4.0.4 of HttpKernel and version 4.0.12 of HttpFoundation, because the method <a href="https://github.com/symfony/symfony/compare/v4.0.11...v4.0.12#diff-6ea44a1c02e94a4394cbc7076fe26bbeL149"><code class="notranslate">hasBeenStarted</code> has been removed from <code class="notranslate">Symfony\Component\HttpFoundation\Session\Session</code></a>.</p>
<p dir="auto">This sounds to me like a BC break. I'm not sure if we are supposed to upgrade all symfony packages at the same time, but I think the <code class="notranslate">composer.json</code> of <code class="notranslate">symfony/http-foundation</code> should at least contain a <code class="notranslate">conflicts</code> entry. I realize that the <code class="notranslate">hasBeenStarted</code> method was tagged as <code class="notranslate">@internal</code> but apparently it was being used in other Symfony components.</p>
<p dir="auto">Apparently this affects the web debug toolbar, but not our actual application.</p>
<p dir="auto"><a href="https://github.com/symfony/symfony/compare/v4.1.0...v4.1.1#diff-6ea44a1c02e94a4394cbc7076fe26bbeL149">The same issue seems to occur with version 4.1.1</a>.</p>
<p dir="auto"><strong>How to reproduce</strong><br>
Have symfony/http-foundation on version 4.0.12 and symfony/http-kernel on a lower version. Open the web interface with the debug toolbar enabled.</p>
<p dir="auto"><strong>Possible Solution</strong></p>
<ul dir="auto">
<li>Restore the <code class="notranslate">hasBeenStarted</code> method</li>
<li>Add a <code class="notranslate">conflicts</code> entry to the <code class="notranslate">composer.json</code> of HttpFoundation, to point out the conflict with older versions of HttpKernel</li>
</ul>
<p dir="auto"><strong>Additional context</strong><br>
This screenshot shows the request made by the web debug toolbar:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1055691/41903739-00ef0296-7937-11e8-96a2-ec6145d9073c.png"><img src="https://user-images.githubusercontent.com/1055691/41903739-00ef0296-7937-11e8-96a2-ec6145d9073c.png" alt="afbeelding" style="max-width: 100%;"></a></p>
<p dir="auto">Installed Symfony components with their versions (from <code class="notranslate">composer show symfony/*</code>):<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1055691/41904612-1f85c828-7939-11e8-8302-f84a9b450c2b.png"><img src="https://user-images.githubusercontent.com/1055691/41904612-1f85c828-7939-11e8-8302-f84a9b450c2b.png" alt="afbeelding" style="max-width: 100%;"></a></p> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18363.836
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable):Fancy Zones"><pre class="notranslate"><code class="notranslate">Windows build number: 10.0.18363.836
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable):Fancy Zones
</code></pre></div>
<p dir="auto">Not sure if this specific issue is already mentioned, but just to be sure it is...</p>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">I have two screens, using two different grids. For argument's sake let's call them monitor 1 and 2, and grid 1 and 2.<br>
In the Windows Settings i changed the Primary Display from 1 to 2 (or the other way around). <em>As it turns out, it's more about expanding desktops</em></p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Either no change of position (= fixed to display device) OR to have them swapped around (= fixed to primary/secondary screen)</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">After the swap (edit: expansion and/or swaping), both grids appear on the same monitor.<br>
When i swap the priority back, both grids appear on their original screen.</p>
<h1 dir="auto">Screenshots</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/65828559/83294702-05cf9500-a1ee-11ea-967b-8abc6cb6d67a.png"><img src="https://user-images.githubusercontent.com/65828559/83294702-05cf9500-a1ee-11ea-967b-8abc6cb6d67a.png" alt="image" style="max-width: 100%;"></a></p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18363 build 18363
PowerToys version: 0.19.0
PowerToy module for which you are reporting the bug (if applicable):
PowerToys Run
# Steps to reproduce
Update PowerToys to 0.19.0, try to launh PowerToys Run through the default shortcut (Alt + Space).
# Expected behavior
After clicking the shortcut, search bar should be available.
# Actual behavior
The searchbar is not opened."><pre class="notranslate"><code class="notranslate">Windows build number: 10.0.18363 build 18363
PowerToys version: 0.19.0
PowerToy module for which you are reporting the bug (if applicable):
PowerToys Run
# Steps to reproduce
Update PowerToys to 0.19.0, try to launh PowerToys Run through the default shortcut (Alt + Space).
# Expected behavior
After clicking the shortcut, search bar should be available.
# Actual behavior
The searchbar is not opened.
</code></pre></div> | 0 |
<h1 dir="auto">Environment</h1>
<p dir="auto">Microsoft Windows [Version 10.0.17763.557]</p>
<p dir="auto">other software:</p>
<ol dir="auto">
<li>Chrome Version 77.0.3865.90 (Official Build) (64-bit)</li>
<li>vstudio about (note the Resharper because this is where it happened):<br>
Microsoft Visual Studio Professional 2019<br>
Version 16.2.5<br>
VisualStudio.16.Release/16.2.5+29306.81<br>
Microsoft .NET Framework<br>
Version 4.7.03190</li>
</ol>
<p dir="auto">Installed Version: Professional</p>
<p dir="auto">ASP.NET and Web Tools 2019 16.2.292.25104<br>
ASP.NET and Web Tools 2019</p>
<p dir="auto">ASP.NET Web Frameworks and Tools 2019 16.2.292.25104<br>
For additional information, visit <a href="https://www.asp.net/" rel="nofollow">https://www.asp.net/</a></p>
<p dir="auto">Azure App Service Tools v3.0.0 16.2.292.25104<br>
Azure App Service Tools v3.0.0</p>
<p dir="auto">C# Tools 3.2.1-beta4-19408-03+2fc6a04980f800c59e8ede97e6ae294ff47d666e<br>
C# components used in the IDE. Depending on your project type and settings, a different version of the compiler may be used.</p>
<p dir="auto">Common Azure Tools 1.10<br>
Provides common services for use by Azure Mobile Services and Microsoft Azure Tools.</p>
<p dir="auto">IntelliCode Extension 1.0<br>
IntelliCode Visual Studio Extension Detailed Info</p>
<p dir="auto">JetBrains ReSharper Ultimate 2019.1.2 Build 191.0.20190603.142841<br>
JetBrains ReSharper Ultimate package for Microsoft Visual Studio. For more information about ReSharper Ultimate, visit <a href="http://www.jetbrains.com/resharper" rel="nofollow">http://www.jetbrains.com/resharper</a>. Copyright © 2019 JetBrains, Inc.</p>
<p dir="auto">Microsoft Continuous Delivery Tools for Visual Studio 0.4<br>
Simplifying the configuration of Azure DevOps pipelines from within the Visual Studio IDE.</p>
<p dir="auto">Microsoft JVM Debugger 1.0<br>
Provides support for connecting the Visual Studio debugger to JDWP compatible Java Virtual Machines</p>
<p dir="auto">Microsoft Library Manager 1.0<br>
Install client-side libraries easily to any web project</p>
<p dir="auto">Microsoft MI-Based Debugger 1.0<br>
Provides support for connecting Visual Studio to MI compatible debuggers</p>
<p dir="auto">Microsoft Visual Studio Tools for Containers 1.1<br>
Develop, run, validate your ASP.NET Core applications in the target environment. F5 your application directly into a container with debugging, or CTRL + F5 to edit & refresh your app without having to rebuild the container.</p>
<p dir="auto">NuGet Package Manager 5.2.0<br>
NuGet Package Manager in Visual Studio. For more information about NuGet, visit <a href="https://docs.nuget.org/" rel="nofollow">https://docs.nuget.org/</a></p>
<p dir="auto">ProjectServicesPackage Extension 1.0<br>
ProjectServicesPackage Visual Studio Extension Detailed Info</p>
<p dir="auto">ResourcePackage Extension 1.0<br>
ResourcePackage Visual Studio Extension Detailed Info</p>
<p dir="auto">ResourcePackage Extension 1.0<br>
ResourcePackage Visual Studio Extension Detailed Info</p>
<p dir="auto">SQL Server Data Tools 16.0.61906.28070<br>
Microsoft SQL Server Data Tools</p>
<p dir="auto">TypeScript Tools 16.0.10627.2001<br>
TypeScript Tools for Microsoft Visual Studio</p>
<p dir="auto">Visual Basic Tools 3.2.1-beta4-19408-03+2fc6a04980f800c59e8ede97e6ae294ff47d666e<br>
Visual Basic components used in the IDE. Depending on your project type and settings, a different version of the compiler may be used.</p>
<p dir="auto">Visual Studio Code Debug Adapter Host Package 1.0<br>
Interop layer for hosting Visual Studio Code debug adapters in Visual Studio</p>
<p dir="auto">Visual Studio Tools for Containers 1.0<br>
Visual Studio Tools for Containers</p>
<p dir="auto">Word Highlight With Margin Extension 1.0<br>
[VS2017] Highlight all occurrences of a selected word and display carets on the enhanced vertical scrollbar at the right margin.</p>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>in Chrome, in a tab that shows a PR of TFS copy text (see cascadia_paste_copy_from_chrome.png)</li>
<li>in vstudio bring up Resharper's GoTo-Symbol window and paste the copied text</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">show normal characters.<br>
note that this doesn't happen with in<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1727294/66808962-0d7b4b80-ef35-11e9-836b-f938dde1f4d3.png"><img src="https://user-images.githubusercontent.com/1727294/66808962-0d7b4b80-ef35-11e9-836b-f938dde1f4d3.png" alt="cascadia_paste_copy_from_chrome" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1727294/66808963-0d7b4b80-ef35-11e9-97ea-e78209564590.png"><img src="https://user-images.githubusercontent.com/1727294/66808963-0d7b4b80-ef35-11e9-97ea-e78209564590.png" alt="cascadia_paste_funny_characters" style="max-width: 100%;"></a></p>
<p dir="auto">version <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/microsoft/terminal/commit/b84a073464cdda225ccf65214f58b354cbe6a166/hovercard" href="https://github.com/microsoft/terminal/commit/b84a073464cdda225ccf65214f58b354cbe6a166"><tt>b84a073</tt></a></p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">funny characters are shown (see cascadia_paste_funny_characters.png)</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 18362.207
Windows Terminal version (if applicable):
Any other software? VS2019 with Windows 10 SDK 17763"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 18362.207
Windows Terminal version (if applicable):
Any other software? VS2019 with Windows 10 SDK 17763
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Launch the sample</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">it should work</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">The call to SetConsoleMode fails with ERROR_INVALID_PARAMETER. If I ignore this error, the sample works as written. No idea if it would still work with an actual VT100 client.</p>
<p dir="auto">ETA: The ReadFile in PipeListener thread never returns while the child process is happily printing to the console window it was spawned with.</p>
<p dir="auto">So, I don't really understand how this thing illustrates anything about ConPTY.</p> | 0 |
<h1 dir="auto">Bug report</h1>
<p dir="auto">As written on the title I have the issue of having <code class="notranslate">__webpack_exports__</code> that is undefined when loading (later) a second entry point.</p>
<p dir="auto">I'm using the latest lib versions <code class="notranslate">webpack@5.35.0</code> and <code class="notranslate">webpack-dev-server@3.11.2</code> on node <code class="notranslate">v15.11.0</code> on Linux.</p>
<p dir="auto">I have a very simple config:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" entry: {
index: {
import: [paths.appIndexJs, ...((isEnvDevelopment && !shouldUseReactRefresh && [webpackDevClientEntry]) || [])],
runtime: 'runtime'
},
app: {
import: paths.appAppTsx,
dependOn: 'index'
}
},
output: {
filename: '/js/[name].js',
globalObject: 'window',
library: {
// name: 'index',
type: 'window'
},
iife: true
}
[...]"><pre class="notranslate"> <span class="pl-s1">entry</span>: <span class="pl-kos">{</span>
<span class="pl-c1">index</span>: <span class="pl-kos">{</span>
<span class="pl-c1">import</span>: <span class="pl-kos">[</span><span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appIndexJs</span><span class="pl-kos">,</span> ...<span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-c1">!</span><span class="pl-s1">shouldUseReactRefresh</span> <span class="pl-c1">&&</span> <span class="pl-kos">[</span><span class="pl-s1">webpackDevClientEntry</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">runtime</span>: <span class="pl-s">'runtime'</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">app</span>: <span class="pl-kos">{</span>
<span class="pl-c1">import</span>: <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appAppTsx</span><span class="pl-kos">,</span>
<span class="pl-c1">dependOn</span>: <span class="pl-s">'index'</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-s1">output</span>: <span class="pl-kos">{</span>
<span class="pl-c1">filename</span>: <span class="pl-s">'/js/[name].js'</span><span class="pl-kos">,</span>
<span class="pl-c1">globalObject</span>: <span class="pl-s">'window'</span><span class="pl-kos">,</span>
<span class="pl-c1">library</span>: <span class="pl-kos">{</span>
<span class="pl-c">// name: 'index',</span>
<span class="pl-c1">type</span>: <span class="pl-s">'window'</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">iife</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span>
<span class="pl-kos">[</span>...<span class="pl-kos">]</span></pre></div>
<p dir="auto">My <code class="notranslate">runtime</code> & <code class="notranslate">index</code> are injected in the html and loaded first then I append to the document a script element with <code class="notranslate">app.js</code> file.<br>
This one executing and failed on the last <code class="notranslate">if</code> since <code class="notranslate">__webpack_exports__</code> is undefined<br>
(By the way I don't really know why id does not crash on the <code class="notranslate">for</code> but whatever)</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/******/ function(__webpack_require__) { // webpackRuntimeModules
/******/ "use strict";
/******/
/******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
/******/ __webpack_require__.O(0, ["vendors-node_modules_ant-design_icons_es_components_Icon_js-node_modules_ant-design_icons_es_-64c2f1","vendors-node_modules_css-loader_dist_runtime_api_js-node_modules_css-loader_dist_runtime_cssW-2d1059","index"], function() { return __webpack_exec__("./src/App.tsx"), __webpack_exec__("./node_modules/webpack/hot/dev-server.js"); });
/******/ var __webpack_exports__ = __webpack_require__.O();
/******/ var __webpack_export_target__ = window;
/******/ for(var i in __webpack_exports__) __webpack_export_target__[i] = __webpack_exports__[i];
/******/ if(__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, "__esModule", { value: true });
/******/ }"><pre class="notranslate"><span class="pl-c">/******/</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">__webpack_require__</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// webpackRuntimeModules</span>
<span class="pl-c">/******/</span> <span class="pl-s">"use strict"</span><span class="pl-kos">;</span>
<span class="pl-c">/******/</span>
<span class="pl-c">/******/</span> <span class="pl-k">var</span> <span class="pl-en">__webpack_exec__</span> <span class="pl-c1">=</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">moduleId</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">__webpack_require__</span><span class="pl-kos">(</span><span class="pl-s1">__webpack_require__</span><span class="pl-kos">.</span><span class="pl-c1">s</span> <span class="pl-c1">=</span> <span class="pl-s1">moduleId</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span>
<span class="pl-c">/******/</span> <span class="pl-s1">__webpack_require__</span><span class="pl-kos">.</span><span class="pl-en">O</span><span class="pl-kos">(</span><span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"vendors-node_modules_ant-design_icons_es_components_Icon_js-node_modules_ant-design_icons_es_-64c2f1"</span><span class="pl-kos">,</span><span class="pl-s">"vendors-node_modules_css-loader_dist_runtime_api_js-node_modules_css-loader_dist_runtime_cssW-2d1059"</span><span class="pl-kos">,</span><span class="pl-s">"index"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-en">__webpack_exec__</span><span class="pl-kos">(</span><span class="pl-s">"./src/App.tsx"</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-en">__webpack_exec__</span><span class="pl-kos">(</span><span class="pl-s">"./node_modules/webpack/hot/dev-server.js"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">/******/</span> <span class="pl-k">var</span> <span class="pl-s1">__webpack_exports__</span> <span class="pl-c1">=</span> <span class="pl-s1">__webpack_require__</span><span class="pl-kos">.</span><span class="pl-en">O</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">/******/</span> <span class="pl-k">var</span> <span class="pl-s1">__webpack_export_target__</span> <span class="pl-c1">=</span> <span class="pl-smi">window</span><span class="pl-kos">;</span>
<span class="pl-c">/******/</span> <span class="pl-k">for</span><span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">i</span> <span class="pl-k">in</span> <span class="pl-s1">__webpack_exports__</span><span class="pl-kos">)</span> <span class="pl-s1">__webpack_export_target__</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">__webpack_exports__</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-c">/******/</span> <span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">__webpack_exports__</span><span class="pl-kos">.</span><span class="pl-c1">__esModule</span><span class="pl-kos">)</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">defineProperty</span><span class="pl-kos">(</span><span class="pl-s1">__webpack_export_target__</span><span class="pl-kos">,</span> <span class="pl-s">"__esModule"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">value</span>: <span class="pl-c1">true</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">/******/</span> <span class="pl-kos">}</span></pre></div>
<p dir="auto">I don't have a reproduction case for you but my <code class="notranslate">index.js</code> is relatively simple and my <code class="notranslate">app.js</code> is bundling the rest of the app (a react app).<br>
Basically what we are doing is loading the app only if we support the browser and if not redirect the user to a warning/faq/tuto page.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var userAgent = window.navigator.userAgent
if (
userAgent.indexOf('MSIE ') >= 0
|| userAgent.indexOf('Trident/') >= 0
|| userAgent.indexOf('Edge/') >= 0
) {
window.location.href = '/non-supported-browser.html'
} else {
window._startLoading() // Just styling & animation
var script = document.createElement('script')
script.src = '/js/app.js'
script.defer = true
document.head.appendChild(script)
}"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">userAgent</span> <span class="pl-c1">=</span> <span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">navigator</span><span class="pl-kos">.</span><span class="pl-c1">userAgent</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span>
<span class="pl-s1">userAgent</span><span class="pl-kos">.</span><span class="pl-en">indexOf</span><span class="pl-kos">(</span><span class="pl-s">'MSIE '</span><span class="pl-kos">)</span> <span class="pl-c1">>=</span> <span class="pl-c1">0</span>
<span class="pl-c1">||</span> <span class="pl-s1">userAgent</span><span class="pl-kos">.</span><span class="pl-en">indexOf</span><span class="pl-kos">(</span><span class="pl-s">'Trident/'</span><span class="pl-kos">)</span> <span class="pl-c1">>=</span> <span class="pl-c1">0</span>
<span class="pl-c1">||</span> <span class="pl-s1">userAgent</span><span class="pl-kos">.</span><span class="pl-en">indexOf</span><span class="pl-kos">(</span><span class="pl-s">'Edge/'</span><span class="pl-kos">)</span> <span class="pl-c1">>=</span> <span class="pl-c1">0</span>
<span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">location</span><span class="pl-kos">.</span><span class="pl-c1">href</span> <span class="pl-c1">=</span> <span class="pl-s">'/non-supported-browser.html'</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-en">_startLoading</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c">// Just styling & animation</span>
<span class="pl-k">var</span> <span class="pl-s1">script</span> <span class="pl-c1">=</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-s">'script'</span><span class="pl-kos">)</span>
<span class="pl-s1">script</span><span class="pl-kos">.</span><span class="pl-c1">src</span> <span class="pl-c1">=</span> <span class="pl-s">'/js/app.js'</span>
<span class="pl-s1">script</span><span class="pl-kos">.</span><span class="pl-c1">defer</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-c1">head</span><span class="pl-kos">.</span><span class="pl-en">appendChild</span><span class="pl-kos">(</span><span class="pl-s1">script</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">I did multiple try and not found yet a proper way to solve this issue so I really hope you can give me some help :)</p> | <p dir="auto">Hi sokra,</p>
<p dir="auto">I just got involved in another JS project and decided to stick with the tools I am familiar with, i.e. webpack, among others. Unfortunately when I created a new project I ran into some strange errors I could not explain. I ended up cleaning my old project of all generated content (npm & jam modules) and updated the dependencies. Now with <code class="notranslate">node-jquery 1.8.3</code> my old project won't build at all. When I try to webpack the following minimal example</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// main.js
'use strict';
/*global require:true */
require = require('enhanced-require')(module, {
recursive: true
});
var $ = require('jquery');"><pre class="notranslate"><code class="notranslate">// main.js
'use strict';
/*global require:true */
require = require('enhanced-require')(module, {
recursive: true
});
var $ = require('jquery');
</code></pre></div>
<p dir="auto">I get the following warnings:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="WARNING: A file in context was excluded because of error: Error: File "<project root>\node_modules\jquery\node_mod
ules\jsdom\lib\jsdom\level1\core.js" parsing failed: Error: Line 418: Unexpected token )
WARNING: A file in context was excluded because of error: Error: File "<project root>\node_modules\jquery\node_mod
ules\jsdom\lib\jsdom\level2\html.js" parsing failed: Error: Line 446: Unexpected token )
WARNING: Cannot find module 'node-htmlparser/lib/node-htmlparser'
Error: Module "node-htmlparser/lib/node-htmlparser" not found in context "<project root>\node_modules\jquery\node
_modules\jsdom\lib\jsdom\browser"
Error: <project root>\node_modules\webpack\buildin\node-htmlparser\lib\node-htmlparser is not a directory
@ <project root>\node_modules\jquery\node_modules\jsdom\lib\jsdom\browser\index.js (line 336, column 24)
WARNING: Cannot find module 'tls'
Error: Module "tls" not found in context "<project root>\node_modules\jquery\node_modules\jsdom\node_modules\requ
est"
Error: Non of this files exists: <project root>\node_modules\webpack\buildin\tls-webpack, <project root>
\node_modules\webpack\buildin\tls-webpack.webpack.js, <project root>
\node_modules\webpack\buildin\tls-webpack.web.js, <project root>\node_modules\webpack\buildin\tls-webpack.js
@ <project root>\node_modules\jquery\node_modules\jsdom\node_modules\request\main.js (line 44, column 8)
WARNING: A file in context was excluded because of error: Error: File "<project root>\node_modules\jquery\node_mod
ules\contextify\node_modules\bindings\README.md" parsing failed: Error: Line 2: Unexpected token ===
WARNING: Cannot find module 'https'
Error: Module "https" not found in context "<project root>\node_modules\jquery\node_modules\jsdom\node_modules\re
quest"
Error: Non of this files exists: <project root>\node_modules\webpack\buildin\https, <project root>
\node_modules\webpack\buildin\https.webpack.js, <project root>\node_module
s\webpack\buildin\https.web.js, <project root>\node_modules\webpack\buildin\https.js
@ <project root>\node_modules\jquery\node_modules\jsdom\node_modules\request\main.js (line 40, column 10)"><pre class="notranslate"><code class="notranslate">WARNING: A file in context was excluded because of error: Error: File "<project root>\node_modules\jquery\node_mod
ules\jsdom\lib\jsdom\level1\core.js" parsing failed: Error: Line 418: Unexpected token )
WARNING: A file in context was excluded because of error: Error: File "<project root>\node_modules\jquery\node_mod
ules\jsdom\lib\jsdom\level2\html.js" parsing failed: Error: Line 446: Unexpected token )
WARNING: Cannot find module 'node-htmlparser/lib/node-htmlparser'
Error: Module "node-htmlparser/lib/node-htmlparser" not found in context "<project root>\node_modules\jquery\node
_modules\jsdom\lib\jsdom\browser"
Error: <project root>\node_modules\webpack\buildin\node-htmlparser\lib\node-htmlparser is not a directory
@ <project root>\node_modules\jquery\node_modules\jsdom\lib\jsdom\browser\index.js (line 336, column 24)
WARNING: Cannot find module 'tls'
Error: Module "tls" not found in context "<project root>\node_modules\jquery\node_modules\jsdom\node_modules\requ
est"
Error: Non of this files exists: <project root>\node_modules\webpack\buildin\tls-webpack, <project root>
\node_modules\webpack\buildin\tls-webpack.webpack.js, <project root>
\node_modules\webpack\buildin\tls-webpack.web.js, <project root>\node_modules\webpack\buildin\tls-webpack.js
@ <project root>\node_modules\jquery\node_modules\jsdom\node_modules\request\main.js (line 44, column 8)
WARNING: A file in context was excluded because of error: Error: File "<project root>\node_modules\jquery\node_mod
ules\contextify\node_modules\bindings\README.md" parsing failed: Error: Line 2: Unexpected token ===
WARNING: Cannot find module 'https'
Error: Module "https" not found in context "<project root>\node_modules\jquery\node_modules\jsdom\node_modules\re
quest"
Error: Non of this files exists: <project root>\node_modules\webpack\buildin\https, <project root>
\node_modules\webpack\buildin\https.webpack.js, <project root>\node_module
s\webpack\buildin\https.web.js, <project root>\node_modules\webpack\buildin\https.js
@ <project root>\node_modules\jquery\node_modules\jsdom\node_modules\request\main.js (line 40, column 10)
</code></pre></div>
<p dir="auto">plus a ton of errors like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: Cannot find module '../../../lib/numeric'
Error: Error: Module "jshint" not found in context "<project root>\src\client\numeric"
Error: <project root>\node_modules\webpack\buildin\jshint-webpack-loader is not a directory
@ <project root>\src\client\numeric\LinearSolver.js (line 7, column 36)
ERROR: Cannot find module '../../../../lib/spin'
Error: Error: Module "jshint" not found in context "<project root>\src\client\view\recipe"
Error: <project root>\node_modules\webpack\buildin\jshint-webpack-loader is not a directory
@ <project root>\src\client\view\recipe\RecipeListView.js (line 9, column 11)
ERROR: Cannot find module 'fs'
Error: Module "fs" not found in context "<project root>\node_modules\jquery\node_modules\xmlhttprequest\lib"
Error: <project root>\node_modules\webpack\buildin\fs is not a directory
@ <project root>\node_modules\jquery\node_modules\xmlhttprequest\lib\XMLHttpRequest.js (line 16, column 9)"><pre class="notranslate"><code class="notranslate">ERROR: Cannot find module '../../../lib/numeric'
Error: Error: Module "jshint" not found in context "<project root>\src\client\numeric"
Error: <project root>\node_modules\webpack\buildin\jshint-webpack-loader is not a directory
@ <project root>\src\client\numeric\LinearSolver.js (line 7, column 36)
ERROR: Cannot find module '../../../../lib/spin'
Error: Error: Module "jshint" not found in context "<project root>\src\client\view\recipe"
Error: <project root>\node_modules\webpack\buildin\jshint-webpack-loader is not a directory
@ <project root>\src\client\view\recipe\RecipeListView.js (line 9, column 11)
ERROR: Cannot find module 'fs'
Error: Module "fs" not found in context "<project root>\node_modules\jquery\node_modules\xmlhttprequest\lib"
Error: <project root>\node_modules\webpack\buildin\fs is not a directory
@ <project root>\node_modules\jquery\node_modules\xmlhttprequest\lib\XMLHttpRequest.js (line 16, column 9)
</code></pre></div>
<p dir="auto">For this example I <code class="notranslate">npm install</code>ed the latest versions of <code class="notranslate">jquery</code>, <code class="notranslate">webpack</code>, <code class="notranslate">enhanced-require</code> (node_modules) and <code class="notranslate">jam install</code>ed <code class="notranslate">jquery</code> (web_modules). Do you happen to have an idea of what went wrong here?</p> | 0 |
<p dir="auto">Hello,</p>
<p dir="auto">I am trying to load vtk files in three.js using the VTKLoader. The vtk files are produced by paraview. However, the loader fails silently and no vtk data is shown on the browser.<br>
Any suggestion?<br>
Thank you!</p> | <p dir="auto">I would like to ask for advice because of I have one use case where I need to load VTK file which is a BINARY DATASET STRUCTURED POINTS, which represents a segmented image.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# vtk DataFile Version 3.0
VTK File Generated by Insight Segmentation and Registration Toolkit (ITK)
BINARY
DATASET STRUCTURED_POINTS
DIMENSIONS 1040 1040 1
SPACING 2.6455026988983699e-01 2.6455026988983699e-01 1.0000000000000000e+00
ORIGIN 0.0000000000000000e+00 0.0000000000000000e+00 0.0000000000000000e+00
POINT_DATA 1081600
SCALARS scalars unsigned_short 1
LOOKUP_TABLE default
Binary data"><pre class="notranslate"><code class="notranslate"># vtk DataFile Version 3.0
VTK File Generated by Insight Segmentation and Registration Toolkit (ITK)
BINARY
DATASET STRUCTURED_POINTS
DIMENSIONS 1040 1040 1
SPACING 2.6455026988983699e-01 2.6455026988983699e-01 1.0000000000000000e+00
ORIGIN 0.0000000000000000e+00 0.0000000000000000e+00 0.0000000000000000e+00
POINT_DATA 1081600
SCALARS scalars unsigned_short 1
LOOKUP_TABLE default
Binary data
</code></pre></div>
<p dir="auto">Thank you for your help.</p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/incubator-dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.6.5</li>
<li>Operating System version: xxx</li>
<li>Java version: xxx</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>下载2.6.5的jar包</li>
<li>解压进入META-INF\dubbo\internal目录</li>
<li>基本上所有配置文件全部重复了3次</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/11451381/49272920-2fe7b000-f4ae-11e8-9209-cb08e4c998db.png"><img src="https://user-images.githubusercontent.com/11451381/49272920-2fe7b000-f4ae-11e8-9209-cb08e4c998db.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">What do you expected from the above steps?</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Just put your stack trace here!"><pre class="notranslate"><code class="notranslate">Just put your stack trace here!
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.6.0</li>
<li>Operating System version: centos</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">需求</h3>
<p dir="auto">泛化调用,返回值增加的class字段,建议增加开关。</p>
<h3 dir="auto">举例</h3>
<p dir="auto">在PojoUtils.java中,有两处建议怎么增加该开关,如下:</p>
<ol dir="auto">
<li>put "class" 字段</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Map<String, Object> map = new HashMap<String, Object>();
history.put(pojo, map);
map.put("class", pojo.getClass().getName());"><pre class="notranslate"><code class="notranslate">Map<String, Object> map = new HashMap<String, Object>();
history.put(pojo, map);
map.put("class", pojo.getClass().getName());
</code></pre></div>
<ol start="2" dir="auto">
<li>根据条件remove "class" 字段</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// when return type is not the subclass of return type from the signature and not an interface
if (!type.isInterface() && !type.isAssignableFrom(pojo.getClass())) {
try {
map = (Map<Object, Object>) type.newInstance();
Map<Object, Object> mapPojo = (Map<Object, Object>) pojo;
map.putAll(mapPojo);
map.remove("class");
} catch (Exception e) {
//ignore error
map = (Map<Object, Object>) pojo;
}
} else {
map = (Map<Object, Object>) pojo;
}"><pre class="notranslate"><code class="notranslate">// when return type is not the subclass of return type from the signature and not an interface
if (!type.isInterface() && !type.isAssignableFrom(pojo.getClass())) {
try {
map = (Map<Object, Object>) type.newInstance();
Map<Object, Object> mapPojo = (Map<Object, Object>) pojo;
map.putAll(mapPojo);
map.remove("class");
} catch (Exception e) {
//ignore error
map = (Map<Object, Object>) pojo;
}
} else {
map = (Map<Object, Object>) pojo;
}
</code></pre></div>
<p dir="auto">期待修改成以下代码:</p>
<ol dir="auto">
<li>put "class" 字段</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Map<String, Object> map = new HashMap<String, Object>();
history.put(pojo, map);
if (keepGenericClass){ // to increase the switch for control generics
map.put("class", pojo.getClass().getName());
}"><pre class="notranslate"><code class="notranslate">Map<String, Object> map = new HashMap<String, Object>();
history.put(pojo, map);
if (keepGenericClass){ // to increase the switch for control generics
map.put("class", pojo.getClass().getName());
}
</code></pre></div>
<ol start="2" dir="auto">
<li>根据条件remove "class" 字段</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// when return type is not the subclass of return type from the signature and not an interface
if (!type.isInterface() && !type.isAssignableFrom(pojo.getClass())) {
try {
map = (Map<Object, Object>) type.newInstance();
Map<Object, Object> mapPojo = (Map<Object, Object>) pojo;
map.putAll(mapPojo);
if (keepGenericClass){ // to increase the switch for control generics
map.remove("class");
}
} catch (Exception e) {
//ignore error
map = (Map<Object, Object>) pojo;
}
} else {
map = (Map<Object, Object>) pojo;
}"><pre class="notranslate"><code class="notranslate">// when return type is not the subclass of return type from the signature and not an interface
if (!type.isInterface() && !type.isAssignableFrom(pojo.getClass())) {
try {
map = (Map<Object, Object>) type.newInstance();
Map<Object, Object> mapPojo = (Map<Object, Object>) pojo;
map.putAll(mapPojo);
if (keepGenericClass){ // to increase the switch for control generics
map.remove("class");
}
} catch (Exception e) {
//ignore error
map = (Map<Object, Object>) pojo;
}
} else {
map = (Map<Object, Object>) pojo;
}
</code></pre></div> | 0 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>v11.0.0-beta.9 x86</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>win7 sp1 x64</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>v10.1.3 x86</li>
</ul>
</li>
</ul>
<h3 dir="auto">To Reproduce</h3>
<ul dir="auto">
<li>run electron (default app)</li>
<li>ctrl-shift-i for devtools</li>
<li>type <code class="notranslate">window.</code></li>
<li>no method suggestions</li>
</ul> | <p dir="auto">To repro:</p>
<ol dir="auto">
<li>Launch an Electron app (hello world/default fiddle will do)</li>
<li>Open DevTools</li>
<li>Find a minified JS file, e.g. renderer_init.js</li>
<li>Click the "Pretty Print" button in DevTools</li>
</ol>
<p dir="auto">Expected behavior:<br>
The JS in the DevTools view is replaced with a pretty-printed version of the code</p>
<p dir="auto">Actual behavior:<br>
The JS in the DevTools view is unchanged</p>
<p dir="auto">Bisected to <a class="commit-link" href="https://github.com/electron/electron/compare/v11.0.0-nightly.20200721...v11.0.0-nightly.20200723"><tt>v11.0.0-nightly.20200721...v11.0.0-nightly.20200723</tt></a></p> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows Terminal version: Microsoft Windows [Version 10.0.18362.239]
Linux subsystem in Windows <a href="https://www.microsoft.com/en-us/p/kali-linux/9pkr34tncv07?activetab=pivot:overviewtab" target="_blank">(you can download it from here!)</a><a href="https://www.kali.org/news/kali-linux-in-the-windows-app-store/" target="_blank">(and the docs here!)</a>
Dual boot with Linux"><pre lang="none" class="notranslate"><code class="notranslate">Windows Terminal version: Microsoft Windows [Version 10.0.18362.239]
Linux subsystem in Windows <a href="https://www.microsoft.com/en-us/p/kali-linux/9pkr34tncv07?activetab=pivot:overviewtab" target="_blank">(you can download it from here!)</a><a href="https://www.kali.org/news/kali-linux-in-the-windows-app-store/" target="_blank">(and the docs here!)</a>
Dual boot with Linux
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">If i change the settings of the Windows Terminal, create a new profile and set it default with Linux (not powershell or cmd) , modify the property 'fontFace' from 'Consolas' to 'Rubik' (font on fonts.google.com). Close all windows and try to open Windows Terminal it won't open, if i change it back to 'Consolas' and try to open it this time it will start.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Change the font and work properly.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">App doesn't start.</p> | <p dir="auto">Windows version is 10.0.16299.248<br>
Bash is using locale en_US.UTF-8</p>
<p dir="auto">When i use the Arrow keys to go back on the command line, and start typing, what has previously been written will be overwritten IF I have passed over a space character using the right Arrow key (not expected). If I do not pass over a space character, the new entered characters are instead inserted as new characters and the rest of the existing line is moved forward (expected behaviour).</p>
<p dir="auto">The buffer itself is not overwritten, so executin the modified command line will actually execute something else than what I see as the command line.</p>
<p dir="auto">I have no idea why this occurs. Restarting bash does not help. I tested on Another machine, with the same version of Windows and Bash, but without having the same issues.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/27770842/36938055-5489b52e-1f1c-11e8-83d3-9885d1d0a755.png"><img src="https://user-images.githubusercontent.com/27770842/36938055-5489b52e-1f1c-11e8-83d3-9885d1d0a755.png" alt="2018-03-03 19_51_44-uranus__home" style="max-width: 100%;"></a></p>
<p dir="auto">Example above:<br>
I write the line "wordbeforespace wordafterspace" and hit enter<br>
Using the up Arrow key I get the line back, I edit the lite using the left Arrow key, inserting the number 1 expecting the line "word1before1space word1after1space" however as the screenshot shows, the first Word instead is shown as "word1efore1pace". However, when I hit enter, the command being executed indeed is the expected "word1before1space".</p>
<p dir="auto">This almost breaks the entire use of bash for me right now, since I very fast get unsure what command will actually be executed.</p> | 0 |
<h2 dir="auto">Bug Report</h2>
<p dir="auto"><strong>Current Behavior</strong><br>
Using typescript if I have a class that extends from another class fields in the extending class are overwritten with undefined. This happens after the constructor has finished and it occurs in the defineProperty.js of babelRuntime.</p>
<p dir="auto"><strong>Input Code</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Base {
constructor(dto?){
if(dto){
this.updateFromDTO(dto);
}
}
updateFromDTO(dto) : this{
return this;
}
}
class Extends extends Base {
myField: string;
updateFromDTO(dto) {
super.updateFromDTO(dto);
console.log('I was called');
this.myField = "weee";
console.log(this.myField);
return this;
}
}
console.log(new Extends("123"));
// Console shows: 'I was Logged' and then 'weee'. Then the Extends object. The extends object has myField as undefined."><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">Base</span> <span class="pl-kos">{</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-s1">dto</span>?<span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">dto</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">updateFromDTO</span><span class="pl-kos">(</span><span class="pl-s1">dto</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-en">updateFromDTO</span><span class="pl-kos">(</span><span class="pl-s1">dto</span><span class="pl-kos">)</span> : <span class="pl-smi">this</span><span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-v">Extends</span> <span class="pl-k">extends</span> <span class="pl-v">Base</span> <span class="pl-kos">{</span>
<span class="pl-c1">myField</span>: <span class="pl-c1">string</span><span class="pl-kos">;</span>
<span class="pl-en">updateFromDTO</span><span class="pl-kos">(</span><span class="pl-s1">dto</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">super</span><span class="pl-kos">.</span><span class="pl-en">updateFromDTO</span><span class="pl-kos">(</span><span class="pl-s1">dto</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'I was called'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">myField</span> <span class="pl-c1">=</span> <span class="pl-s">"weee"</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">myField</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-k">new</span> <span class="pl-v">Extends</span><span class="pl-kos">(</span><span class="pl-s">"123"</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Console shows: 'I was Logged' and then 'weee'. Then the Extends object. The extends object has myField as undefined.</span></pre></div>
<p dir="auto"><strong>Expected behavior/code</strong><br>
For the field I set in Extends to still be set after the constructor is finished.</p>
<p dir="auto"><strong>Babel Configuration (.babelrc, package.json, cli command)</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
babel.config.js
const DEVELOPMENT = 'production' !== process.env.NODE_ENV
module.exports = {
presets: [
["@babel/preset-env", {useBuiltIns: "entry"}],
"@babel/preset-react",
"@babel/typescript"
],
plugins: [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-syntax-dynamic-import",
["@babel/plugin-transform-runtime", {"regenerator": true}],
"@babel/plugin-transform-classes",
],
}
package.json
{
"name": "webclient2.1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node_modules/.bin/webpack-dev-server --mode development --open --hot"
},
"author": "",
"license": "ISC",
"dependencies": {
"@answerrocket/iterable-map": "file:Core/packages/iterable-map",
"@answerrocket/itertools": "file:Core/packages/itertools",
"@answerrocket/organizer": "file:Core/packages/organizer",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-classes": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/runtime": "^7.4.3",
"catalog": "^3.6.0",
"fetch-intercept": "^2.3.1",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"moment": "^2.24.0",
"plotly.js": "^1.47.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-plotly.js": "^2.3.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"ts-optchain": "^0.1.5",
"typescript": "^3.4.3",
"vega": "^5.3.5",
"vega-embed": "^4.0.0",
"vega-lite": "^3.1.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.3",
"@types/plotly.js": "^1.44.3",
"@types/react": "^16.8.13",
"@types/react-plotly.js": "^2.2.2",
"@types/react-router-dom": "^4.3.2",
"@babel/preset-typescript": "^7.3.3",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
}
}
webpack.config.js
const path = require("path");
const HtmlWebPackPlugin = require("html-webpack-plugin");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const esDepIncludes = [/\/@customePackage\//]
module.exports = {
devtool: 'source-map',
entry: './src/index.tsx',
output: {
path: path.join(__dirname, "/dist"),
publicPath: "/dist/",
filename: "bundle.js"
},
module: {
rules: [
{
test: /\.(js|ts|tsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-react']
}
}
},
{
test: /\.[jt]sx?$/,
include: esDepIncludes,
loader: 'babel-loader',
},
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'file-loader'
}
]
}
]
},
resolve: {
extensions: ["*", ".js", ".jsx", ".tsx", ".ts"],
modules: [
path.join(__dirname, 'src'),
path.join(__dirname, 'private_modules'),
'node_modules'
],},
plugins: [
new HtmlWebPackPlugin({
hash: true,
filename: "index.tsx.ysx.jsx.html", //target html
template: "./public/index.html" //source html
})
]
}
"><pre class="notranslate"><span class="pl-s1">babel</span><span class="pl-kos">.</span><span class="pl-c1">config</span><span class="pl-kos">.</span><span class="pl-c1">js</span>
<span class="pl-k">const</span> <span class="pl-c1">DEVELOPMENT</span> <span class="pl-c1">=</span> <span class="pl-s">'production'</span> <span class="pl-c1">!==</span> <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">NODE_ENV</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">presets</span>: <span class="pl-kos">[</span>
<span class="pl-kos">[</span><span class="pl-s">"@babel/preset-env"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">useBuiltIns</span>: <span class="pl-s">"entry"</span><span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/preset-react"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/typescript"</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">plugins</span>: <span class="pl-kos">[</span>
<span class="pl-s">"@babel/plugin-proposal-class-properties"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/plugin-proposal-export-default-from"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/plugin-syntax-dynamic-import"</span><span class="pl-kos">,</span>
<span class="pl-kos">[</span><span class="pl-s">"@babel/plugin-transform-runtime"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-s">"regenerator"</span>: <span class="pl-c1">true</span><span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/plugin-transform-classes"</span><span class="pl-kos">,</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span>
<span class="pl-s1">package</span><span class="pl-kos">.</span><span class="pl-c1">json</span>
<span class="pl-kos">{</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"webclient2.1"</span><span class="pl-kos">,</span>
<span class="pl-s">"version"</span>: <span class="pl-s">"1.0.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"description"</span>: <span class="pl-s">""</span><span class="pl-kos">,</span>
<span class="pl-s">"main"</span>: <span class="pl-s">"index.js"</span><span class="pl-kos">,</span>
<span class="pl-s">"scripts"</span>: <span class="pl-kos">{</span>
<span class="pl-s">"test"</span>: <span class="pl-s">"echo \"Error: no test specified\" && exit 1"</span><span class="pl-kos">,</span>
<span class="pl-s">"start"</span>: <span class="pl-s">"node_modules/.bin/webpack-dev-server --mode development --open --hot"</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-s">"author"</span>: <span class="pl-s">""</span><span class="pl-kos">,</span>
<span class="pl-s">"license"</span>: <span class="pl-s">"ISC"</span><span class="pl-kos">,</span>
<span class="pl-s">"dependencies"</span>: <span class="pl-kos">{</span>
<span class="pl-s">"@answerrocket/iterable-map"</span>: <span class="pl-s">"file:Core/packages/iterable-map"</span><span class="pl-kos">,</span>
<span class="pl-s">"@answerrocket/itertools"</span>: <span class="pl-s">"file:Core/packages/itertools"</span><span class="pl-kos">,</span>
<span class="pl-s">"@answerrocket/organizer"</span>: <span class="pl-s">"file:Core/packages/organizer"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/plugin-proposal-class-properties"</span>: <span class="pl-s">"^7.4.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/plugin-proposal-export-default-from"</span>: <span class="pl-s">"^7.2.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/plugin-transform-classes"</span>: <span class="pl-s">"^7.4.3"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/plugin-transform-runtime"</span>: <span class="pl-s">"^7.4.3"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/runtime"</span>: <span class="pl-s">"^7.4.3"</span><span class="pl-kos">,</span>
<span class="pl-s">"catalog"</span>: <span class="pl-s">"^3.6.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"fetch-intercept"</span>: <span class="pl-s">"^2.3.1"</span><span class="pl-kos">,</span>
<span class="pl-s">"lodash"</span>: <span class="pl-s">"^4.17.11"</span><span class="pl-kos">,</span>
<span class="pl-s">"lodash-es"</span>: <span class="pl-s">"^4.17.11"</span><span class="pl-kos">,</span>
<span class="pl-s">"moment"</span>: <span class="pl-s">"^2.24.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"plotly.js"</span>: <span class="pl-s">"^1.47.2"</span><span class="pl-kos">,</span>
<span class="pl-s">"react"</span>: <span class="pl-s">"^16.8.6"</span><span class="pl-kos">,</span>
<span class="pl-s">"react-dom"</span>: <span class="pl-s">"^16.8.6"</span><span class="pl-kos">,</span>
<span class="pl-s">"react-plotly.js"</span>: <span class="pl-s">"^2.3.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"react-router"</span>: <span class="pl-s">"^5.0.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"react-router-dom"</span>: <span class="pl-s">"^5.0.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"react-scripts"</span>: <span class="pl-s">"2.1.8"</span><span class="pl-kos">,</span>
<span class="pl-s">"ts-optchain"</span>: <span class="pl-s">"^0.1.5"</span><span class="pl-kos">,</span>
<span class="pl-s">"typescript"</span>: <span class="pl-s">"^3.4.3"</span><span class="pl-kos">,</span>
<span class="pl-s">"vega"</span>: <span class="pl-s">"^5.3.5"</span><span class="pl-kos">,</span>
<span class="pl-s">"vega-embed"</span>: <span class="pl-s">"^4.0.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"vega-lite"</span>: <span class="pl-s">"^3.1.0"</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-s">"devDependencies"</span>: <span class="pl-kos">{</span>
<span class="pl-s">"@types/lodash-es"</span>: <span class="pl-s">"^4.17.3"</span><span class="pl-kos">,</span>
<span class="pl-s">"@types/plotly.js"</span>: <span class="pl-s">"^1.44.3"</span><span class="pl-kos">,</span>
<span class="pl-s">"@types/react"</span>: <span class="pl-s">"^16.8.13"</span><span class="pl-kos">,</span>
<span class="pl-s">"@types/react-plotly.js"</span>: <span class="pl-s">"^2.2.2"</span><span class="pl-kos">,</span>
<span class="pl-s">"@types/react-router-dom"</span>: <span class="pl-s">"^4.3.2"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/preset-typescript"</span>: <span class="pl-s">"^7.3.3"</span><span class="pl-kos">,</span>
<span class="pl-s">"babel"</span>: <span class="pl-s">"^6.23.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"babel-core"</span>: <span class="pl-s">"^6.26.3"</span><span class="pl-kos">,</span>
<span class="pl-s">"babel-loader"</span>: <span class="pl-s">"^8.0.5"</span><span class="pl-kos">,</span>
<span class="pl-s">"babel-preset-env"</span>: <span class="pl-s">"^1.7.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"babel-preset-react"</span>: <span class="pl-s">"^6.24.1"</span><span class="pl-kos">,</span>
<span class="pl-s">"html-webpack-plugin"</span>: <span class="pl-s">"^3.2.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"http-server"</span>: <span class="pl-s">"^0.11.1"</span><span class="pl-kos">,</span>
<span class="pl-s">"webpack"</span>: <span class="pl-s">"^4.29.6"</span><span class="pl-kos">,</span>
<span class="pl-s">"webpack-cli"</span>: <span class="pl-s">"^3.3.0"</span><span class="pl-kos">,</span>
<span class="pl-s">"webpack-dev-server"</span>: <span class="pl-s">"^3.3.1"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-s1">webpack</span><span class="pl-kos">.</span><span class="pl-c1">config</span><span class="pl-kos">.</span><span class="pl-c1">js</span>
<span class="pl-k">const</span> <span class="pl-s1">path</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"path"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">HtmlWebPackPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"html-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">ExtractTextPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"extract-text-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">esDepIncludes</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\/</span>@customePackage<span class="pl-cce">\/</span><span class="pl-c1">/</span></span><span class="pl-kos">]</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">devtool</span>: <span class="pl-s">'source-map'</span><span class="pl-kos">,</span>
<span class="pl-c1">entry</span>: <span class="pl-s">'./src/index.tsx'</span><span class="pl-kos">,</span>
<span class="pl-c1">output</span>: <span class="pl-kos">{</span>
<span class="pl-c1">path</span>: <span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">join</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-s">"/dist"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">publicPath</span>: <span class="pl-s">"/dist/"</span><span class="pl-kos">,</span>
<span class="pl-c1">filename</span>: <span class="pl-s">"bundle.js"</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">module</span>: <span class="pl-kos">{</span>
<span class="pl-c1">rules</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span><span class="pl-kos">(</span>js<span class="pl-c1">|</span>ts<span class="pl-c1">|</span>tsx<span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">exclude</span>: <span class="pl-pds"><span class="pl-c1">/</span>node_modules<span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span>
<span class="pl-c1">loader</span>: <span class="pl-s">'babel-loader'</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-kos">{</span>
<span class="pl-c1">presets</span>: <span class="pl-kos">[</span><span class="pl-s">'@babel/preset-react'</span><span class="pl-kos">]</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span><span class="pl-kos">[</span>jt<span class="pl-kos">]</span>sx?<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">include</span>: <span class="pl-s1">esDepIncludes</span><span class="pl-kos">,</span>
<span class="pl-c1">loader</span>: <span class="pl-s">'babel-loader'</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span><span class="pl-kos">(</span>png<span class="pl-c1">|</span>jpg<span class="pl-c1">|</span>gif<span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">loader</span>: <span class="pl-s">'file-loader'</span>
<span class="pl-kos">}</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">resolve</span>: <span class="pl-kos">{</span>
<span class="pl-c1">extensions</span>: <span class="pl-kos">[</span><span class="pl-s">"*"</span><span class="pl-kos">,</span> <span class="pl-s">".js"</span><span class="pl-kos">,</span> <span class="pl-s">".jsx"</span><span class="pl-kos">,</span> <span class="pl-s">".tsx"</span><span class="pl-kos">,</span> <span class="pl-s">".ts"</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">modules</span>: <span class="pl-kos">[</span>
<span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">join</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-s">'src'</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">join</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-s">'private_modules'</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s">'node_modules'</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span><span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">plugins</span>: <span class="pl-kos">[</span>
<span class="pl-k">new</span> <span class="pl-v">HtmlWebPackPlugin</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">hash</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">filename</span>: <span class="pl-s">"index.tsx.ysx.jsx.html"</span><span class="pl-kos">,</span> <span class="pl-c">//target html</span>
<span class="pl-c1">template</span>: <span class="pl-s">"./public/index.html"</span> <span class="pl-c">//source html</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><strong>Environment</strong></p>
<ul dir="auto">
<li>Babel version(s): v6.23.0</li>
<li>Node/npm version: Node 10/npm 6.4.1</li>
<li>OS: OSX 10.14.4</li>
<li>Monorepo: [e.g. yes/no/Lerna]</li>
<li>How you are using Babel: webpack</li>
</ul>
<p dir="auto"><strong>Possible Solution</strong><br>
So far I haven't found a way around this</p> | <h2 dir="auto">Bug Report</h2>
<p dir="auto"><strong>Current Behavior</strong><br>
When a class (B) extends another class (A) and includes a type definition to narrow the type of something specified in class A, it will set the narrowed property's value to undefined. This diverges from the TSC behavior.<br>
The output from the below code under babel is <code class="notranslate">a, undefined</code>.<br>
<strong>Input Code</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" class A {
value: any
constructor(value: any) {
this.value = value
}
}
class B extends A {
value: string
}
document.write(`${new A('a').value}, ${new B('b').value}`)"><pre class="notranslate"> <span class="pl-k">class</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-c1">value</span>: <span class="pl-smi">any</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-s1">value</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">value</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-smi">B</span> <span class="pl-k">extends</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-c1">value</span>: <span class="pl-smi">string</span>
<span class="pl-kos">}</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-k">new</span> <span class="pl-smi">A</span><span class="pl-kos">(</span><span class="pl-s">'a'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">value</span><span class="pl-kos">}</span></span>, <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-k">new</span> <span class="pl-smi">B</span><span class="pl-kos">(</span><span class="pl-s">'b'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">value</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">)</span></pre></div>
<p dir="auto"><strong>Expected behavior/code</strong><br>
The output from the code should be <code class="notranslate">a, b</code>.</p>
<p dir="auto"><strong>Babel Configuration (.babelrc, package.json, cli command)</strong></p>
<p dir="auto">.babelrc:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"presets": [
"@babel/env",
"@babel/typescript"
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
]
}"><pre class="notranslate"><span class="pl-kos">{</span>
<span class="pl-s">"presets"</span>: <span class="pl-kos">[</span>
<span class="pl-s">"@babel/env"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/typescript"</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"plugins"</span>: <span class="pl-kos">[</span>
<span class="pl-s">"@babel/proposal-class-properties"</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/proposal-object-rest-spread"</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><strong>Environment</strong></p>
<ul dir="auto">
<li>Babel version(s): 7.1.6</li>
<li>Node/npm version: Node 10 / NPM 6</li>
<li>OS: Any OS</li>
<li>Monorepo: doesn't matter</li>
<li>How you are using Babel: loader</li>
</ul>
<p dir="auto"><strong>Possible Solution</strong><br>
It seems like babel is setting <code class="notranslate">value = undefined</code> in the class property - it needs to check if that value is defined in the parent before overwriting it.</p> | 1 |
<p dir="auto">A way to make a custom proptype required would be useful. Maybe some form of the <a href="https://github.com/facebook/react/blob/master/src/core/ReactPropTypes.js#L93">createChainableTypeChecker</a> factory could be exposed?</p> | <p dir="auto">This one is hard to explain or reproduce but I'll try...</p>
<p dir="auto">I'm using the following mixin which has changed slightly from the original I found in a gist a while back:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
var React = require('react');
var LayeredComponentMixin = {
componentDidMount: function() {
this._layer = document.createElement('div');
document.body.appendChild(this._layer);
this._renderLayer();
},
componentDidUpdate: function() {
this._renderLayer();
},
componentWillUnmount: function() {
this._unrenderLayer();
document.body.removeChild(this._layer);
},
_renderLayer: function() {
var layer = this.renderLayer();
if (null === layer) {
layer = <noscript />;
}
React.render(layer, this._layer);
if (this.layerDidMount) {
this.layerDidMount(this._layer);
}
},
_unrenderLayer: function() {
if (this.layerWillUnmount) {
this.layerWillUnmount(this._layer);
}
React.unmountComponentAtNode(this._layer);
}
};
module.exports = LayeredComponentMixin;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-v">React</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'react'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">LayeredComponentMixin</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-en">componentDidMount</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_layer</span> <span class="pl-c1">=</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-s">'div'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-c1">body</span><span class="pl-kos">.</span><span class="pl-en">appendChild</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_layer</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">_renderLayer</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">componentDidUpdate</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">_renderLayer</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">componentWillUnmount</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">_unrenderLayer</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-c1">body</span><span class="pl-kos">.</span><span class="pl-en">removeChild</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_layer</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">_renderLayer</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">layer</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">renderLayer</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">null</span> <span class="pl-c1">===</span> <span class="pl-s1">layer</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">layer</span> <span class="pl-c1">=</span> <span class="pl-c1"><</span><span class="pl-ent">noscript</span> <span class="pl-c1">/</span><span class="pl-c1">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-s1">layer</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_layer</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">layerDidMount</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">layerDidMount</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_layer</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">_unrenderLayer</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">layerWillUnmount</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">layerWillUnmount</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_layer</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">unmountComponentAtNode</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_layer</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-v">LayeredComponentMixin</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">This allows me to create layered components, in my case a modal dialog. I use the following component to build my modals:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
var React = require('react');
var ToolboxUserActionCreators = require('../../actions/ToolboxUserActionCreators');
var ModalStore = require('../../stores/ModalStore');
function getStateFromStore() {
return {
modalCount: ModalStore.getModalCount()
};
}
var Modal = React.createClass({
componentWillMount: function() {
this.setState({
modalLevel: ModalStore.getModalCount()
});
},
componentDidMount: function() {
ModalStore.addChangeListener(this.onChange);
document.addEventListener('keydown', this.handleKeyDown);
},
componentWillUnmount: function() {
ModalStore.removeChangeListener(this.onChange);
document.removeEventListener('keydown', this.handleKeyDown);
},
getInitialState: function() {
return getStateFromStore();
},
getDefaultProps: function() {
return {
className: 'feature'
}
},
render: function() {
var className = 'toolbox2-modal-content toolbox2-modal-' + this.props.className;
var modalBackdropClassName = 'toolbox2-modal-backdrop';
var handleBackdropClick = this.handleBackdropClick;
var killClick = this.killClick;
var modalLevel = this.state.modalLevel;
var totalModals = this.state.modalCount;
if (modalLevel < totalModals) {
modalBackdropClassName += ' toolbox2-modal-backdrop-secondary';
}
return (
<div className={modalBackdropClassName} onClick={handleBackdropClick}>
<div className={className} onClick={killClick}>
{this.props.children}
</div>
</div>
);
},
killClick: function(e) {
e.stopPropagation();
},
handleBackdropClick: function() {
this.props.onRequestClose();
},
handleKeyDown: function(e) {
if (e.keyCode === 27) {
this.handleBackdropClick();
}
},
onChange: function() {
this.setState(getStateFromStore());
}
});
module.exports = Modal;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-v">React</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'react'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">ToolboxUserActionCreators</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'../../actions/ToolboxUserActionCreators'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">ModalStore</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'../../stores/ModalStore'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">getStateFromStore</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-kos">{</span>
<span class="pl-c1">modalCount</span>: <span class="pl-v">ModalStore</span><span class="pl-kos">.</span><span class="pl-en">getModalCount</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-v">Modal</span> <span class="pl-c1">=</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">createClass</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-en">componentWillMount</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">setState</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">modalLevel</span>: <span class="pl-v">ModalStore</span><span class="pl-kos">.</span><span class="pl-en">getModalCount</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">componentDidMount</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">ModalStore</span><span class="pl-kos">.</span><span class="pl-en">addChangeListener</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">onChange</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">addEventListener</span><span class="pl-kos">(</span><span class="pl-s">'keydown'</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">handleKeyDown</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">componentWillUnmount</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">ModalStore</span><span class="pl-kos">.</span><span class="pl-en">removeChangeListener</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">onChange</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">removeEventListener</span><span class="pl-kos">(</span><span class="pl-s">'keydown'</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">handleKeyDown</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">getInitialState</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-en">getStateFromStore</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">getDefaultProps</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-kos">{</span>
<span class="pl-c1">className</span>: <span class="pl-s">'feature'</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">render</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">className</span> <span class="pl-c1">=</span> <span class="pl-s">'toolbox2-modal-content toolbox2-modal-'</span> <span class="pl-c1">+</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">className</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">modalBackdropClassName</span> <span class="pl-c1">=</span> <span class="pl-s">'toolbox2-modal-backdrop'</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">handleBackdropClick</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">handleBackdropClick</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">killClick</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">killClick</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">modalLevel</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">state</span><span class="pl-kos">.</span><span class="pl-c1">modalLevel</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">totalModals</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">state</span><span class="pl-kos">.</span><span class="pl-c1">modalCount</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">modalLevel</span> <span class="pl-c1"><</span> <span class="pl-s1">totalModals</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">modalBackdropClassName</span> <span class="pl-c1">+=</span> <span class="pl-s">' toolbox2-modal-backdrop-secondary'</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">return</span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">modalBackdropClassName</span><span class="pl-kos">}</span> <span class="pl-c1">onClick</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">handleBackdropClick</span><span class="pl-kos">}</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">className</span><span class="pl-kos">}</span> <span class="pl-c1">onClick</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">killClick</span><span class="pl-kos">}</span><span class="pl-c1">></span>
<span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">children</span><span class="pl-kos">}</span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">killClick</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">e</span><span class="pl-kos">.</span><span class="pl-en">stopPropagation</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">handleBackdropClick</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-en">onRequestClose</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">handleKeyDown</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">.</span><span class="pl-c1">keyCode</span> <span class="pl-c1">===</span> <span class="pl-c1">27</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">handleBackdropClick</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">onChange</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">setState</span><span class="pl-kos">(</span><span class="pl-en">getStateFromStore</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-v">Modal</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">This combination works perfectly. That is until I close the highest modal. If an <code class="notranslate"><input /></code> component is used inside of the <code class="notranslate"><Modal></code> render method, ie <code class="notranslate">this.props.children</code>, the following error is thrown. All other element types (that I've tried including <code class="notranslate">textarea</code> and <code class="notranslate">select</code> work fine, but <code class="notranslate">input</code> throws the following:</p>
<p dir="auto"><code class="notranslate">Uncaught Error: Invariant Violation: getDOMNode(): A component must be mounted to have a DOM node</code></p>
<p dir="auto">The trace is as follows:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Uncaught Error: Invariant Violation: getDOMNode(): A component must be mounted to have a DOM node. bundle.js:60783
invariant bundle.js:60783
ReactBrowserComponentMixin.getDOMNode bundle.js:62069
ReactCompositeComponent.createClass.componentDidUpdate bundle.js:64334
assign.notifyAll bundle.js:68718
ON_DOM_READY_QUEUEING.close bundle.js:72258
Mixin.closeAll bundle.js:68960
Mixin.perform bundle.js:68901
Mixin.perform bundle.js:68887
assign.perform bundle.js:56107
(anonymous function) bundle.js:56186
wrapper bundle.js:53734
Mixin.closeAll bundle.js:68960
Mixin.perform bundle.js:68901
ReactDefaultBatchingStrategy.batchedUpdates bundle.js:64050
batchedUpdates bundle.js:56122
ReactEventListener.dispatchEvent bundle.js:64980"><pre class="notranslate"><code class="notranslate">Uncaught Error: Invariant Violation: getDOMNode(): A component must be mounted to have a DOM node. bundle.js:60783
invariant bundle.js:60783
ReactBrowserComponentMixin.getDOMNode bundle.js:62069
ReactCompositeComponent.createClass.componentDidUpdate bundle.js:64334
assign.notifyAll bundle.js:68718
ON_DOM_READY_QUEUEING.close bundle.js:72258
Mixin.closeAll bundle.js:68960
Mixin.perform bundle.js:68901
Mixin.perform bundle.js:68887
assign.perform bundle.js:56107
(anonymous function) bundle.js:56186
wrapper bundle.js:53734
Mixin.closeAll bundle.js:68960
Mixin.perform bundle.js:68901
ReactDefaultBatchingStrategy.batchedUpdates bundle.js:64050
batchedUpdates bundle.js:56122
ReactEventListener.dispatchEvent bundle.js:64980
</code></pre></div>
<p dir="auto"><code class="notranslate">ReactCompositeComponent.createClass.componentDidUpdate bundle.js:64334</code> is <a href="https://github.com/facebook/react/blob/b7cd3e7d1de31108594a6698215bfa7bf8619b34/src/browser/ui/dom/components/ReactDOMInput.js#L98">here</a>.</p>
<p dir="auto">This only happens when there are several modals on top of each other; one dialog with an <code class="notranslate"><input /></code> runs fine with no error.</p>
<p dir="auto">The weird thing is that the app still runs fine, the error thrown has no impact (apart from being thrown) on how my app performs....</p>
<p dir="auto">This is on 0.12RC1 using webpack to build.</p> | 0 |
<p dir="auto">Trying to install scipy 0.14.0 under Python 3.3.4 but got test errors on three modules with the configuration listed below.<br>
Using LAPACK, ATLAS, and BLAS rpm’s that comes with Red Hat 6.</p>
<p dir="auto">Any help would be appreciated.</p>
<p dir="auto">Dwayne</p>
<h1 dir="auto"></h1>
<h2 dir="auto">FAIL: test_basic.test_xlogy</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/nose-1.3.0-py3.3.egg/nose/case.py", line 198, in runTest<br>
self.test(*self.arg)<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/scipy/special/tests/test_basic.py", line 2878, in test_xlogy<br>
assert_func_equal(special.xlogy, w2, z2, rtol=1e-13, atol=1e-13)<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/scipy/special/<em>testutils.py", line 87, in assert_func_equal<br>
fdata.check()<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/scipy/special/<em>testutils.py", line 292, in check<br>
assert</em>(False, "\n".join(msg))<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/testing/utils.py", line 44, in assert</em><br>
raise AssertionError(msg)<br>
AssertionError:<br>
Max |adiff|: 712.561<br>
Max |rdiff|: 1028.01<br>
Bad results (3 out of 6) for the following points (in output 0):<br>
0j (nan+0j) => (-0+0j) != (nan+nanj) (rdiff 0.0)<br>
(1+0j) (2+0j) => (-711.8665072622568+1.5707963267948752j) != (0.6931471805599453+0j) (rdiff 1028.0087776302707)<br>
(1+0j) 1j => (-711.8665072622568+1.5707963267948752j) != 1.5707963267948966j (rdiff 453.18829380940315)</p>
<h1 dir="auto"></h1>
<h2 dir="auto">FAIL: test_lambertw.test_values</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/nose-1.3.0-py3.3.egg/nose/case.py", line 198, in runTest<br>
self.test(*self.arg)<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/scipy/special/tests/test_lambertw.py", line 21, in test_values<br>
assert_equal(lambertw(inf,1).real, inf)<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/testing/utils.py", line 304, in assert_equal<br>
raise AssertionError(msg)<br>
AssertionError:<br>
Items are not equal:<br>
ACTUAL: nan<br>
DESIRED: inf</p>
<h1 dir="auto"></h1>
<h2 dir="auto">FAIL: test_lambertw.test_ufunc</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/testing/utils.py", line 581, in chk_same_position<br>
assert_array_equal(x_id, y_id)<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/testing/utils.py", line 718, in assert_array_equal<br>
verbose=verbose, header='Arrays are not equal')<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare<br>
raise AssertionError(msg)<br>
AssertionError:<br>
Arrays are not equal</p>
<p dir="auto">(mismatch 66.66666666666666%)<br>
x: array([False, True, True], dtype=bool)<br>
y: array([False, False, False], dtype=bool)</p>
<p dir="auto">During handling of the above exception, another exception occurred:</p>
<p dir="auto">Traceback (most recent call last):<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/nose-1.3.0-py3.3.egg/nose/case.py", line 198, in runTest<br>
self.test(*self.arg)<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/scipy/special/tests/test_lambertw.py", line 93, in test_ufunc<br>
lambertw(r_[0., e, 1.]), r_[0., 1., 0.567143290409783873])<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/testing/utils.py", line 811, in assert_array_almost_equal<br>
header=('Arrays are not almost equal to %d decimals' % decimal))<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/testing/utils.py", line 607, in assert_array_compare<br>
chk_same_position(x_isnan, y_isnan, hasval='nan')<br>
File "/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/testing/utils.py", line 587, in chk_same_position<br>
raise AssertionError(msg)<br>
AssertionError:<br>
Arrays are not almost equal to 6 decimals</p>
<p dir="auto">x and y nan location mismatch:<br>
x: array([ 0.+0.j, nan+0.j, nan+0.j])<br>
y: array([ 0. , 1. , 0.56714329])</p>
<hr>
<p dir="auto">Ran 16420 tests in 223.156s</p>
<p dir="auto">FAILED (KNOWNFAIL=277, SKIP=1178, failures=3)<br>
<nose.result.TextTestResult run=16420 errors=0 failures=3></p>
<h2 dir="auto">[root ~]# python -c 'from numpy.f2py.diagnose import run; run()'</h2>
<h2 dir="auto">os.name='posix'</h2>
<h2 dir="auto">sys.platform='linux'</h2>
<p dir="auto">sys.version:<br>
3.3.4 (default, Feb 27 2014, 17:05:47)</p>
<h2 dir="auto">[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)]</h2>
<p dir="auto">sys.prefix:</p>
<h2 dir="auto">/cm/shared/apps/python/3.3.4</h2>
<h2 dir="auto">sys.path=':/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/setuptools-2.2-py3.3.egg:/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/snakemake-2.5-py3.3.egg:/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/nose-1.3.0-py3.3.egg:/cm/shared/apps/python/3.3.4/lib/python33.zip:/cm/shared/apps/python/3.3.4/lib/python3.3:/cm/shared/apps/python/3.3.4/lib/python3.3/plat-linux:/cm/shared/apps/python/3.3.4/lib/python3.3/lib-dynload:/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages'</h2>
<p dir="auto">Found new numpy version '1.8.1' in /cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/<strong>init</strong>.py<br>
Found f2py2e version '2' in /cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/f2py/f2py2e.py</p>
<h2 dir="auto">Found numpy.distutils version '0.4.0' in '/cm/shared/apps/python/3.3.4/lib/python3.3/site-packages/numpy/distutils/<strong>init</strong>.py'</h2>
<h2 dir="auto">Importing numpy.distutils.fcompiler ... ok</h2>
<p dir="auto">Checking availability of supported Fortran compilers:<br>
Gnu95FCompiler instance properties:<br>
archiver = ['/usr/bin/gfortran', '-cr']<br>
compile_switch = '-c'<br>
compiler_f77 = ['/usr/bin/gfortran', '-Wall', '-ffixed-form', '-fno-<br>
second-underscore', '-fPIC', '-O3', '-funroll-loops']<br>
compiler_f90 = ['/usr/bin/gfortran', '-Wall', '-fno-second-underscore',<br>
'-fPIC', '-O3', '-funroll-loops']<br>
compiler_fix = ['/usr/bin/gfortran', '-Wall', '-ffixed-form', '-fno-<br>
second-underscore', '-Wall', '-fno-second-underscore', '-<br>
fPIC', '-O3', '-funroll-loops']<br>
libraries = ['gfortran']<br>
library_dirs = []<br>
linker_exe = ['/usr/bin/gfortran', '-Wall', '-Wall']<br>
linker_so = ['/usr/bin/gfortran', '-Wall', '-Wall', '-shared']<br>
object_switch = '-o '<br>
ranlib = ['/usr/bin/gfortran']<br>
version = LooseVersion ('4.4.7')<br>
version_cmd = ['/usr/bin/gfortran', '--version']<br>
GnuFCompiler instance properties:<br>
archiver = ['/usr/bin/g77', '-cr']<br>
compile_switch = '-c'<br>
compiler_f77 = ['/usr/bin/g77', '-g', '-Wall', '-fno-second-<br>
underscore', '-fPIC', '-O3', '-funroll-loops']<br>
compiler_f90 = None<br>
compiler_fix = None<br>
libraries = ['g2c']<br>
library_dirs = []<br>
linker_exe = ['/usr/bin/g77', '-g', '-Wall', '-g', '-Wall']<br>
linker_so = ['/usr/bin/g77', '-g', '-Wall', '-g', '-Wall', '-<br>
shared']<br>
object_switch = '-o '<br>
ranlib = ['/usr/bin/g77']<br>
version = LooseVersion ('3.4.6')<br>
version_cmd = ['/usr/bin/g77', '--version']<br>
Fortran compilers found:<br>
--fcompiler=gnu GNU Fortran 77 compiler (3.4.6)<br>
--fcompiler=gnu95 GNU Fortran 95 compiler (4.4.7)<br>
Compilers available for this platform, but not found:<br>
--fcompiler=absoft Absoft Corp Fortran Compiler<br>
--fcompiler=compaq Compaq Fortran Compiler<br>
--fcompiler=g95 G95 Fortran Compiler<br>
--fcompiler=intel Intel Fortran Compiler for 32-bit apps<br>
--fcompiler=intele Intel Fortran Compiler for Itanium apps<br>
--fcompiler=intelem Intel Fortran Compiler for 64-bit apps<br>
--fcompiler=lahey Lahey/Fujitsu Fortran 95 Compiler<br>
--fcompiler=nag NAGWare Fortran 95 Compiler<br>
--fcompiler=pathf95 PathScale Fortran Compiler<br>
--fcompiler=pg Portland Group Fortran Compiler<br>
--fcompiler=vast Pacific-Sierra Research Fortran 90 Compiler<br>
Compilers not available on this platform:<br>
--fcompiler=hpux HP Fortran 90 Compiler<br>
--fcompiler=ibm IBM XL Fortran Compiler<br>
--fcompiler=intelev Intel Visual Fortran Compiler for Itanium apps<br>
--fcompiler=intelv Intel Visual Fortran Compiler for 32-bit apps<br>
--fcompiler=intelvem Intel Visual Fortran Compiler for 64-bit apps<br>
--fcompiler=mips MIPSpro Fortran Compiler<br>
--fcompiler=none Fake Fortran compiler<br>
--fcompiler=sun Sun or Forte Fortran 95 Compiler</p>
<h2 dir="auto">For compiler details, run 'config_fc --verbose' setup command.</h2>
<h2 dir="auto">Importing numpy.distutils.cpuinfo ... ok</h2>
<p dir="auto">CPU information: CPUInfoBase__get_nbits getNCPUs has_mmx has_sse has_sse2 has_sse3 has_ssse3 is_64bit is_Intel is_XEON is_Xeon is_i686 ------</p>
<p dir="auto">[root@niamsirpapp01 ~]# gcc -v<br>
Using built-in specs.<br>
Target: x86_64-redhat-linux<br>
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=<a href="http://bugzilla.redhat.com/bugzilla" rel="nofollow">http://bugzilla.redhat.com/bugzilla</a> --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux<br>
Thread model: posix<br>
gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)<br>
[root@niamsirpapp01 ~]# g77 --version<br>
GNU Fortran (GCC) 3.4.6 20060404 (Red Hat 3.4.6-19.el6)<br>
Copyright (C) 2006 Free Software Foundation, Inc.</p>
<p dir="auto">GNU Fortran comes with NO WARRANTY, to the extent permitted by law.<br>
You may redistribute copies of GNU Fortran<br>
under the terms of the GNU General Public License.<br>
For more information about these matters, see the file named COPYING<br>
or type the command `info -f g77 Copying'.</p> | <p dir="auto">Hello,</p>
<p dir="auto">I compiled scipy 0.13.3 succesfully on my CentOS laptop on which I run the following kernel:<br>
2.6.32-431.11.2.el6.x86_64</p>
<p dir="auto">I have a two core proc (0,1) of the following type:</p>
<blockquote>
<blockquote>
<p dir="auto">more /proc/cpuinfo<br>
processor : 0<br>
vendor_id : GenuineIntel<br>
cpu family : 6<br>
model : 23<br>
model name : Intel(R) Core(TM)2 Duo CPU U9600 @ 1.60GHz<br>
stepping : 10<br>
cpu MHz : 800.000<br>
cache size : 3072 KB<br>
physical id : 0<br>
siblings : 2<br>
core id : 0<br>
cpu cores : 2<br>
apicid : 0<br>
initial apicid : 0<br>
fpu : yes<br>
fpu_exception : yes<br>
cpuid level : 13<br>
wp : yes<br>
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm const<br>
ant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm ida dts tpr_shadow vnmi<br>
flexpriority<br>
bogomips : 3192.04<br>
clflush size : 64<br>
cache_alignment : 64<br>
address sizes : 36 bits physical, 48 bits virtual<br>
power management:<br>
....<br>
(I omitted the second core)</p>
</blockquote>
</blockquote>
<p dir="auto">I used the gcc and gfortran to compile the scipy code<br>
gcc -v<br>
Using built-in specs.<br>
Target: x86_64-redhat-linux<br>
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=<a href="http://bugzilla.redhat.com/bugzilla" rel="nofollow">http://bugzilla.redhat.com/bugzilla</a> --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux<br>
Thread model: posix<br>
gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)</p>
<p dir="auto">In order to compile scipy I compiled the following packages from source:<br>
a.OpenBlas 0.2.8 (single threaded) (blas, lapack)<br>
b.SuiteSparse suite (amd,umfpack) using the OpenBlas libraries<br>
c. numpy, nose and setuptools<br>
with the same gcc/gfortran compilers.<br>
I ran the full numpy test suite successfully.<br>
python3 -c "import numpy; numpy.test(label='full',verbose=10)" >& np_test.out<br>
tail -9 np_test.out</p>
<hr>
<p dir="auto">Ran 5334 tests in 614.631s</p>
<p dir="auto">OK (KNOWNFAIL=6, SKIP=3)<br>
Running unit tests for numpy<br>
NumPy version 1.8.1<br>
NumPy is installed in /software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy<br>
Python version 3.3.5 (default, Apr 22 2014, 13:31:40) [GCC 4.4.7 20120313 (Red Hat 4.4.7-4)]</p>
<h2 dir="auto">nose version 1.3.1</h2>
<p dir="auto">Besides the Arpack errors I also got three other errors (The errors can be found below)<br>
Please let me know if you need more info.</p>
<p dir="auto">Thanks in advance,</p>
<h1 dir="auto">Wim</h1>
<h2 dir="auto">FAIL: test_arpack.test_real_nonsymmetric_modes(False, , 'f', 2, 'LM', None, 0.1, <function asarray at 0x7f7bdbc64f80>, 'r')</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/nose-1.3.1-py3.3.egg/nose/case.py", line 198, in runTest<br>
self.test(*self.arg)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec<br>
assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 1183, in assert_allclose<br>
verbose=verbose, header=header)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare<br>
raise AssertionError(msg)<br>
AssertionError:<br>
Not equal to tolerance rtol=0.000357628, atol=0.000357628<br>
error for eigs:standard, typ=f, which=LM, sigma=0.1, mattype=asarray, OPpart=r, mode=normal<br>
(mismatch 100.0%)<br>
x: array([[-0.11649324+0.j, -0.05435310+0.j],<br>
[ 0.13801208+0.j, -0.05894032+0.j],<br>
[-0.21229853+0.j, -0.02815625+0.j],...<br>
y: array([[-0.05698580+0.08018474j, -0.05435318+0.j ],<br>
[ 0.06439485-0.09061003j, -0.05894023+0.j ],<br>
[-0.12503998+0.17594382j, -0.02815617+0.j ],...</p>
<h1 dir="auto"></h1>
<h2 dir="auto">AIL: test_arpack.test_real_nonsymmetric_modes(False, , 'f', 2, 'LR', None, None, <function aslinearoperator at 0x7f7bcf0c1170>, None)</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/nose-1.3.1-py3.3.egg/nose/case.py", line 198, in runTest<br>
self.test(*self.arg)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py", line 259, in eval_evec<br>
assert_allclose(LHS, RHS, rtol=rtol, atol=atol, err_msg=err)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 1183, in assert_allclose<br>
verbose=verbose, header=header)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare<br>
raise AssertionError(msg)<br>
AssertionError:<br>
Not equal to tolerance rtol=0.00178814, atol=0.000357628<br>
error for eigs:standard, typ=f, which=LR, sigma=None, mattype=aslinearoperator, OPpart=None, mode=normal<br>
(mismatch 100.0%)<br>
x: array([[ 0.13884316+0.j, -1.07112074+0.j],<br>
[-0.08962911+0.j, -1.39801252+0.j],<br>
[ 0.21701422+0.j, -0.93968379+0.j],...<br>
y: array([[ 0.06020537+0.08471544j, -1.07112110+0.j ],<br>
[-0.07497437-0.10549703j, -1.39801240+0.j ],<br>
[ 0.13326693+0.18752094j, -0.93968397+0.j ],...</p>
<h1 dir="auto"></h1>
<h2 dir="auto">FAIL: test_basic.test_xlogy</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/nose-1.3.1-py3.3.egg/nose/case.py", line 198, in runTest<br>
self.test(*self.arg)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/scipy/special/tests/test_basic.py", line 2736, in test_xlogy<br>
assert_func_equal(special.xlogy, w2, z2, rtol=1e-13, atol=1e-13)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/scipy/special/<em>testutils.py", line 87, in assert_func_equal<br>
fdata.check()<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/scipy/special/<em>testutils.py", line 292, in check<br>
assert</em>(False, "\n".join(msg))<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 44, in assert</em><br>
raise AssertionError(msg)<br>
AssertionError:<br>
Max |adiff|: 712.209<br>
Max |rdiff|: 1027.5<br>
Bad results (3 out of 6) for the following points (in output 0):<br>
0j (nan+0j) => (-0+0j) != (nan+nanj) (rdiff 0.0)<br>
(1+0j) (2+0j) => (-711.5156069932148+0.7853981633976757j) != (0.6931471805599453+0j) (rdiff 1027.5006624894627)<br>
(1+0j) 1j => (-711.5156069932148+0.7853981633976757j) != 1.5707963267948966j (rdiff 452.9651797194877)</p>
<h1 dir="auto"></h1>
<h2 dir="auto">FAIL: test_lambertw.test_values</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/nose-1.3.1-py3.3.egg/nose/case.py", line 198, in runTest<br>
self.test(*self.arg)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/scipy/special/tests/test_lambertw.py", line 21, in test_values<br>
assert_equal(lambertw(inf,1).real, inf)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 304, in assert_equal<br>
raise AssertionError(msg)<br>
AssertionError:<br>
Items are not equal:<br>
ACTUAL: nan<br>
DESIRED: inf</p>
<h1 dir="auto"></h1>
<h2 dir="auto">FAIL: test_lambertw.test_ufunc</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 581, in chk_same_position<br>
assert_array_equal(x_id, y_id)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 718, in assert_array_equal<br>
verbose=verbose, header='Arrays are not equal')<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare<br>
raise AssertionError(msg)<br>
AssertionError:<br>
Arrays are not equal</p>
<p dir="auto">(mismatch 66.66666666666666%)<br>
x: array([False, True, True], dtype=bool)<br>
y: array([False, False, False], dtype=bool)</p>
<p dir="auto">During handling of the above exception, another exception occurred:</p>
<p dir="auto">Traceback (most recent call last):<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/nose-1.3.1-py3.3.egg/nose/case.py", line 198, in runTest<br>
self.test(*self.arg)<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/scipy/special/tests/test_lambertw.py", line 93, in test_ufunc<br>
lambertw(r_[0., e, 1.]), r_[0., 1., 0.567143290409783873])<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 811, in assert_array_almost_equal<br>
header=('Arrays are not almost equal to %d decimals' % decimal))<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 607, in assert_array_compare<br>
chk_same_position(x_isnan, y_isnan, hasval='nan')<br>
File "/software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy/testing/utils.py", line 587, in chk_same_position<br>
raise AssertionError(msg)<br>
AssertionError:<br>
Arrays are not almost equal to 6 decimals</p>
<p dir="auto">x and y nan location mismatch:<br>
x: array([ 0.+0.j, nan+0.j, nan+0.j])<br>
y: array([ 0. , 1. , 0.567])</p>
<hr>
<p dir="auto">Ran 9532 tests in 698.956s</p>
<p dir="auto">FAILED (KNOWNFAIL=130, SKIP=324, failures=5)<br>
Running unit tests for scipy<br>
NumPy version 1.8.1<br>
NumPy is installed in /software/pkg/python/3.3.5/lib/python3.3/site-packages/numpy<br>
SciPy version 0.13.3<br>
SciPy is installed in /software/pkg/python/3.3.5/lib/python3.3/site-packages/scipy<br>
Python version 3.3.5 (default, Apr 22 2014, 13:31:40) [GCC 4.4.7 20120313 (Red Hat 4.4.7-4)]<br>
nose version 1.3.1</p> | 1 |
<p dir="auto">Since v0.0.6 of package jqueryui.TypeScript.DefinitelyTyped, there're compilations errors when referencing jqueryui.d.ts. I tried v0.0.7 and I have the same errors.</p>
<p dir="auto">Signature for 'position' is duplicated<br>
Signature for 'hide' is duplicated<br>
Signature for 'show' is duplicated<br>
Signature for 'toggle' is duplicated</p>
<p dir="auto">This is due to the pull request <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="14354628" data-permission-text="Title is private" data-url="https://github.com/DefinitelyTyped/DefinitelyTyped/issues/552" data-hovercard-type="pull_request" data-hovercard-url="/DefinitelyTyped/DefinitelyTyped/pull/552/hovercard" href="https://github.com/DefinitelyTyped/DefinitelyTyped/pull/552">#552</a> that redefines some jquery methods. Could you please fix the jQuery interface in the jqueryui.d.ts file since it already references jquery.d.ts?</p> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/node</code> package and had problems.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have a question that is inappropriate for <a href="https://stackoverflow.com/" rel="nofollow">StackOverflow</a>. (Please ask any appropriate questions there).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond.
<ul dir="auto">
<li>Authors: <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/microsoft/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/microsoft">@microsoft</a> <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/DefinitelyTyped/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DefinitelyTyped">@DefinitelyTyped</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jkomyno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jkomyno">@jkomyno</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/a-tarasyuk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/a-tarasyuk">@a-tarasyuk</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alvis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alvis">@alvis</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/r3nya/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/r3nya">@r3nya</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/BrunoScheufler/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/BrunoScheufler">@BrunoScheufler</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/smac89/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/smac89">@smac89</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tellnes/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tellnes">@tellnes</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/DeividasBakanas/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DeividasBakanas">@DeividasBakanas</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eyqs/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eyqs">@eyqs</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Flarna/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Flarna">@Flarna</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Hannes-Magnusson-CK/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Hannes-Magnusson-CK">@Hannes-Magnusson-CK</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/KSXGitHub/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/KSXGitHub">@KSXGitHub</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/hoo29/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/hoo29">@hoo29</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kjin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kjin">@kjin</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ajafff/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ajafff">@ajafff</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/islishude/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/islishude">@islishude</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mwiktorczyk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mwiktorczyk">@mwiktorczyk</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/matthieusieben/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/matthieusieben">@matthieusieben</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mohsen1/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mohsen1">@mohsen1</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/n-e/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/n-e">@n-e</a> @octo-sniffle <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/parambirs/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/parambirs">@parambirs</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eps1lon/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eps1lon">@eps1lon</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/SimonSchick/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/SimonSchick">@SimonSchick</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ThomasdenH/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ThomasdenH">@ThomasdenH</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/WilcoBakker/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/WilcoBakker">@WilcoBakker</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/wwwy3y3/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/wwwy3y3">@wwwy3y3</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ZaneHannanAU/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ZaneHannanAU">@ZaneHannanAU</a></li>
</ul>
</li>
</ul>
<p dir="auto">The types for <a href="http://2ality.com/2016/10/asynchronous-iteration.html" rel="nofollow">async iterables</a> are incomplete. It defines:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface AsyncIterableIterator<T> {}"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">AsyncIterableIterator</span><span class="pl-c1"><</span><span class="pl-smi">T</span><span class="pl-c1">></span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div>
<p dir="auto">But it doesn't define <code class="notranslate">AsyncIterator</code> or <code class="notranslate">AsyncIterable</code>. This is confusing when <code class="notranslate">AsyncIterableIterator</code> appears to work, but doesn't really, and then the other types are undefined.</p>
<p dir="auto">Should the fix be just to copy the types from <a href="https://github.com/Microsoft/TypeScript/blob/master/src/lib/esnext.asynciterable.d.ts">esnext.asynciterable.d.ts</a>?</p> | 0 |
<p dir="auto">Sorry if this is sparse on details. I mainly want to determine if there is a bug with <code class="notranslate">showDrawer</code> or with the way I attempted to use it.</p>
<p dir="auto">Yesterday, I attempted to use <code class="notranslate">showDrawer</code> with the <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/7be58b1ae0d4bddd181b3f44f509721ab070177f/hovercard" href="https://github.com/flutter/flutter/commit/7be58b1ae0d4bddd181b3f44f509721ab070177f"><tt>7be58b1</tt></a> alpha branch of Flutter. The drawer appeared/dismissed correctly, and the widgets I put in the drawer were correct.</p>
<p dir="auto">Unfortunately, I noticed that no matter how I attempted to change the state of what was drawn in the drawer, it would not re-render. In my case, I tried to put a <code class="notranslate">Switch</code> inside a <code class="notranslate">DrawerItem</code> to toggle debug mode for my app. I did confirm that the state did actually change, which led me to think that Flutter has a bug.</p>
<p dir="auto">I was following the Stocks demo app quite closely, which uses a Drawer to toggle the user's market sentiment (<code class="notranslate">Optimistic</code> vs <code class="notranslate">Pessimistic</code>). However, I was assuming that the app's behavior would match the <a href="https://play.google.com/store/apps/details?id=org.domokit.sky.demo" rel="nofollow">Sky Demo</a> app in the Google Play Store. I only just realized that this app is actually 3 months old (last update August 25), so it is very possible that in that time, the Stocks example does not function as it did before.</p>
<p dir="auto">I am currently unable to try running these examples (though I have found the <a href="https://github.com/flutter/flutter/tree/4b03a9eec899659e4770e5ec88e365afbac0916b/examples">instructions</a>), so if someone else can run the Stocks app and determine whether the Optimistic/Pessimistic radio buttons update the drawer menu or not, that would be very helpful.</p>
<p dir="auto">Otherwise, I will look into this more after the break.</p> | <p dir="auto"><a href="https://github.com/Hixie"><img src="https://avatars.githubusercontent.com/u/551196?v=3" align="left" width="96" height="96" hspace="10" style="max-width: 100%;"></a> <strong>Issue by <a href="https://github.com/Hixie">Hixie</a></strong><br>
<em>Wednesday Oct 07, 2015 at 21:22 GMT</em><br>
<em>Originally opened as <a href="https://github.com/flutter/engine/issues/1528">https://github.com/flutter/engine/issues/1528</a></em></p>
<hr>
<p dir="auto">e.g. the card_collection.dart demo's drawer's checkboxes don't check when you tap them.</p> | 1 |
<p dir="auto">This was very surprising to me, and took me a very long time to figure out:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> using Random
julia> rng = Random.GLOBAL_RNG
_GLOBAL_RNG()
julia> deepcopy(rng) === rng
true"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-k">using</span> Random
julia<span class="pl-k">></span> rng <span class="pl-k">=</span> Random<span class="pl-k">.</span>GLOBAL_RNG
<span class="pl-c1">_GLOBAL_RNG</span>()
julia<span class="pl-k">></span> <span class="pl-c1">deepcopy</span>(rng) <span class="pl-k">===</span> rng
<span class="pl-c1">true</span></pre></div>
<p dir="auto">Even more surprising is</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> copy(rng) === rng
false"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-c1">copy</span>(rng) <span class="pl-k">===</span> rng
<span class="pl-c1">false</span></pre></div>
<p dir="auto">There's similar behavior with <code class="notranslate">ENV</code> in place of <code class="notranslate">GLOBAL_RNG</code>.</p>
<p dir="auto">There are a few issues here:</p>
<ol dir="auto">
<li>The behavior of <code class="notranslate">deepcopy</code> on <code class="notranslate">GLOBAL_RNG</code> is very different than for other RNGs. It's not clear that the former should be "special" in this way.</li>
<li>I had always understood <code class="notranslate">deepcopy</code> to be a stronger version of <code class="notranslate">copy</code>, in the sense that <code class="notranslate">copy</code> may still result in shared mutable sub-structures, but that <code class="notranslate">deepcopy</code> would replicate these, so the result of <code class="notranslate">deepcopy</code> would have no mutable substructures in common with the original.</li>
</ol>
<p dir="auto">I had some discussion about this on Zulip with <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Seelengrab/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Seelengrab">@Seelengrab</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/fredrikekre/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fredrikekre">@fredrikekre</a> <a href="https://julialang.zulipchat.com/#narrow/stream/137791-general/topic/deepcopy.28.3A.3ARandom.2EGLOBAL_RNG.29.20doesn't.20copy/near/259893815" rel="nofollow">here</a>. Fredrik pointed out that</p>
<blockquote>
<p dir="auto"><code class="notranslate">deepcopy</code> is really a very different function; it almost belongs in the Serialization package or something of that sort.<br>
(from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1034916173" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/42796" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/42796/hovercard?comment_id=951232853&comment_type=issue_comment" href="https://github.com/JuliaLang/julia/issues/42796#issuecomment-951232853">#42796 (comment)</a>)</p>
</blockquote>
<p dir="auto">If this is really the intent, it seems it ought to be well-documented, with guidance on when to use which one.</p>
<p dir="auto">In any case, I can't imagine a use case for the current arrangement where <code class="notranslate">deepcopy</code> can result in strictly more sharing than <code class="notranslate">copy</code>.</p> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let
function wat()
a::String = "wat"
println(a)
end
a::String = "me"
wat()
end"><pre class="notranslate"><code class="notranslate">let
function wat()
a::String = "wat"
println(a)
end
a::String = "me"
wat()
end
</code></pre></div>
<p dir="auto">This will throw an exception telling me</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: LoadError: syntax: type of "a" declared in inner scope
while loading /wat.jl, in expression starting on line 1"><pre class="notranslate"><code class="notranslate">ERROR: LoadError: syntax: type of "a" declared in inner scope
while loading /wat.jl, in expression starting on line 1
</code></pre></div>
<p dir="auto">Which is really not helpful at all. Line 1? Wow, thanks! 'syntax: type of "a" declared in inner scope' that tells me nothing, what is wrong with that. It sounds like there are some words missing e. g. " is not allowed because X".</p>
<p dir="auto">Now my real issue here is, why is this not legal? Why can I not have a function with a local variables whos name is equal to one from outside the function?</p> | 0 |
<p dir="auto">Was reading up on changes for Android P, and it led me to file this...</p>
<p dir="auto"><a href="https://android-developers.googleblog.com/2017/11/getting-your-android-app-ready-for.html" rel="nofollow">https://android-developers.googleblog.com/2017/11/getting-your-android-app-ready-for.html</a><br>
<a href="https://code.tutsplus.com/articles/faster-logins-with-password-autofill-in-ios-11--cms-29096" rel="nofollow">https://code.tutsplus.com/articles/faster-logins-with-password-autofill-in-ios-11--cms-29096</a></p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Hixie/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Hixie">@Hixie</a> do you think this is the domain of the framework or plugins?</p> | <p dir="auto">We should make sure our text fields trigger the autofill support:<br>
<a href="https://developer.android.com/guide/topics/text/autofill.html" rel="nofollow">https://developer.android.com/guide/topics/text/autofill.html</a></p> | 1 |
<p dir="auto">Misc. Window Management bucket</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Make sure caption controls "dim out" when window loses NC focus (<code class="notranslate">WM_NCACTIVATE</code>?)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="464724735" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1840" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1840/hovercard" href="https://github.com/microsoft/terminal/issues/1840">#1840</a> When we're maximized, the system thinks we're a full-screen app. We need to jiggle the window by 1px or something.</li>
</ul>
<p dir="auto">Others:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="469152633" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2001" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2001/hovercard" href="https://github.com/microsoft/terminal/issues/2001">#2001</a> Make sure MinMaxCloseControl supports FullScreen & Tablet Mode</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="472985844" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2100" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2100/hovercard" href="https://github.com/microsoft/terminal/issues/2100">#2100</a> When a dialog is open, the titlebar is the wrong color
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Also: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="572944606" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4744" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4744/hovercard" href="https://github.com/microsoft/terminal/issues/4744">#4744</a> Investigate Acrylic in titlebar / not using a <code class="notranslate">HRGN</code> for the titlebar</li>
</ul>
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="455377609" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1230" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1230/hovercard" href="https://github.com/microsoft/terminal/issues/1230">#1230</a> I have to restart the new terminal to see the effects of changing between light and dark windows theme.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="485318068" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2541" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2541/hovercard" href="https://github.com/microsoft/terminal/issues/2541">#2541</a> When the window is maximized, there should be no padding above the tabs</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="517685294" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3440" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3440/hovercard" href="https://github.com/microsoft/terminal/issues/3440">#3440</a> Windows Terminal does not open with button displaying "maximized" state</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="551760940" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4288" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4288/hovercard" href="https://github.com/microsoft/terminal/issues/4288">#4288</a> Maximize and minimize window buttons incorrect rendering</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> strange bar appear while maximized <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="749493009" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/8384" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/8384/hovercard" href="https://github.com/microsoft/terminal/issues/8384">#8384</a></li>
</ul>
<details>
<summary>Fixed in `master`</summary>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Suspicious remains of previous window borders flash up when closing the window (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="507842505" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3222" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3222/hovercard" href="https://github.com/microsoft/terminal/issues/3222">#3222</a>) (PR#3394)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> White border at the bottom of the window. (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="502743144" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3064" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3064/hovercard" href="https://github.com/microsoft/terminal/issues/3064">#3064</a>) (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="515647698" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3394" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3394/hovercard" href="https://github.com/microsoft/terminal/pull/3394">#3394</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Stop creating and throwing away so many <code class="notranslate">HRGN</code>s during move-size. (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="515647698" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3394" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3394/hovercard" href="https://github.com/microsoft/terminal/pull/3394">#3394</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="504625249" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3136" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3136/hovercard" href="https://github.com/microsoft/terminal/issues/3136">#3136</a> we learned that <code class="notranslate">CXDRAG</code> and <code class="notranslate">CYDRAG</code> are not the right things to use; use the right things. (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="515647698" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3394" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3394/hovercard" href="https://github.com/microsoft/terminal/pull/3394">#3394</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="457670387" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1307" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1307/hovercard" href="https://github.com/microsoft/terminal/issues/1307">#1307</a> Thick border around window, and drag handles should <em>not</em> be only over that border. (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="515647698" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3394" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3394/hovercard" href="https://github.com/microsoft/terminal/pull/3394">#3394</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="465970822" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1897" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1897/hovercard" href="https://github.com/microsoft/terminal/issues/1897">#1897</a> There's a bunch of duplicated work, well, everywhere. (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="515647698" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3394" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3394/hovercard" href="https://github.com/microsoft/terminal/pull/3394">#3394</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> make the window border have distinct edges (right now it blends in with white/black things); consider the user's accent color somehow?
<ul dir="auto">
<li>Could this be solved just by not <code class="notranslate">NCPAINT</code>ing, and letting DWM draw our window shadow again?</li>
</ul>
</li>
</ul>
<p dir="auto">Possibly related:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="465002838" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1859" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1859/hovercard" href="https://github.com/microsoft/terminal/issues/1859">#1859</a> The border width should match the value from the system theme</li>
</ul>
</details>
<details>
<summary>Fixed in <0.6</summary>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Switch from <code class="notranslate">_</code> <code class="notranslate">-</code> <code class="notranslate">X</code> to real or real-looking caption controls</li>
</ul>
<p dir="auto">Definitely related, because we're handling <code class="notranslate">WM_NCPAINT</code>:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> [huge bucket] look at getting the window shadow back (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="465987894" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1898" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1898/hovercard" href="https://github.com/microsoft/terminal/pull/1898">#1898</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> make the window border less round on top (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="465987894" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1898" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1898/hovercard" href="https://github.com/microsoft/terminal/pull/1898">#1898</a>)</li>
</ul>
<p dir="auto">Maybe related:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> make the window border less painfully black/white</li>
</ul>
<p dir="auto">Misc. Window Management bucket</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <em>consider</em> giving NonClientIslandWindow knowledge about its caption button box for a more direct connection (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="467596764" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1948" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1948/hovercard" href="https://github.com/microsoft/terminal/pull/1948">#1948</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="463365724" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1780" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1780/hovercard" href="https://github.com/microsoft/terminal/issues/1780">#1780</a> Double clicking on the drag bar to maximize does not update the maximize button icon</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Make sure maximize button maintains correct state when window is maximized in any manner</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="449993718" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1055" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1055/hovercard" href="https://github.com/microsoft/terminal/issues/1055">#1055</a> Window edges are cut off when the window is maximized on a secondary display (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="466677853" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1921" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1921/hovercard" href="https://github.com/microsoft/terminal/pull/1921">#1921</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="470059018" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2028" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2028/hovercard" href="https://github.com/microsoft/terminal/issues/2028">#2028</a> Clicking on the TitleBar does not close the dropdown menu</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="477024568" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2268" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2268/hovercard" href="https://github.com/microsoft/terminal/issues/2268">#2268</a> Maximizing terminal when window is across two monitors causes bars to bleed across monitor.</li>
</ul>
<p dir="auto">Others:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="466392647" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1913" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1913/hovercard" href="https://github.com/microsoft/terminal/issues/1913">#1913</a> Dark Theme requires settings reload (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="473041479" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2107" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/2107/hovercard" href="https://github.com/microsoft/terminal/pull/2107">#2107</a>)</li>
</ul>
</details> | <ul dir="auto">
<li>Your Windows build number: (Type <code class="notranslate">ver</code> at a Windows Command Prompt)</li>
</ul>
<p dir="auto">Microsoft Windows [Version 10.0.18362.113]</p>
<ul dir="auto">
<li>What you're doing and what's happening: (Copy & paste specific commands and their output, or include screen shots)</li>
</ul>
<p dir="auto">Compiled Windows Terminal application using VS2019 16.0.3 targeted on x86.<br>
When starting Terminal, all I can see is white / blank screen.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1767179/57787399-f645f100-773d-11e9-87a9-e973ab144e1b.png"><img src="https://user-images.githubusercontent.com/1767179/57787399-f645f100-773d-11e9-87a9-e973ab144e1b.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Which just terminates approx. after 2-3 minutes.<br>
No CPU activity.<br>
Couple threads:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1767179/57787509-30af8e00-773e-11e9-8ed6-273a7e9fad91.png"><img src="https://user-images.githubusercontent.com/1767179/57787509-30af8e00-773e-11e9-8ed6-273a7e9fad91.png" alt="image" style="max-width: 100%;"></a></p>
<ul dir="auto">
<li>What's wrong / what should be happening instead:</li>
</ul>
<p dir="auto">Application should launch normally :)</p> | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.