Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

有时候搜索结果里会出现问号 #19

Open
HuntingBot opened this issue Jan 5, 2021 · 18 comments
Open

有时候搜索结果里会出现问号 #19

HuntingBot opened this issue Jan 5, 2021 · 18 comments
Labels
bug Something isn't working enhancement New feature or request

Comments

@HuntingBot
Copy link

HuntingBot commented Jan 5, 2021

比如:

{"config":{"width":9,"height":50,"period":3,"dx":0,"dy":0,"transform":"Id","symmetry":"D2Col","search_order":null,"new_state":"Random","max_cell_count":null,"non_empty_front":true,"reduce_max":false,"rule_string":"B2n3/S23-q","diagonal_width":null},"conflicts":3425115,"set_stack":[{"coord":[0,0,0],"state":0,"reason":"Deduce"}, {"coord":[0,0,1],"state":0,"reason":"Deduce"}, {"coord":[0,0,2],"state":0,"reason":"Deduce"}, {"coord":[1,0,0],"state":0,"reason":"Deduce"}, {"coord":[1,0,1],"state":0,"reason":"Deduce"}, {"coord":[1,0,2],"state":0,"reason":"Deduce"}, {"coord":[2,0,0],"state":0,"reason":"Deduce"}, {"coord":[2,0,1],"state":0,"reason":"Deduce"}, {"coord":[2,0,2],"state":0,"reason":"Deduce"}, {"coord":[3,0,0],"state":0,"reason":"Deduce"}, {"coord":[3,0,1],"state":0,"reason":"Deduce"}, {"coord":[3,0,2],"state":0,"reason":"Deduce"}, {"coord":[4,0,0],"state":1,"reason":"Deduce"}, {"coord":[4,0,1],"state":0,"reason":"Deduce"}, {"coord":[4,0,2],"state":0,"reason":"Deduce"}, {"coord":[5,0,0],"state":0,"reason":"Deduce"}, {"coord":[5,0,1],"state":0,"reason":"Deduce"}, {"coord":[5,0,2],"state":0,"reason":"Deduce"}, {"coord":[6,0,0],"state":0,"reason":"Deduce"}, {"coord":[6,0,1],"state":0,"reason":"Deduce"}, {"coord":[6,0,2],"state":0,"reason":"Deduce"}, {"coord":[7,0,0],"state":0,"reason":"Deduce"}, {"coord":[7,0,1],"state":0,"reason":"Deduce"}, {"coord":[7,0,2],"state":0,"reason":"Deduce"}, {"coord":[8,0,0],"state":0,"reason":"Deduce"}, {"coord":[8,0,1],"state":0,"reason":"Deduce"}, {"coord":[8,0,2],"state":0,"reason":"Deduce"}],"check_index":0,"search_index":0}

(还是说Deduce不能这样用?)

另外,如果把以上的new_state改为Alive或Dead,就会提示broken。在什么情况下才会提示broken?

@AlephAlpha
Copy link
Owner

哇!你是手动修改了 save.json 吗?

为什么我导入这个报的错是 “Unable to set cell at (8, 0, 0)”?(好像是因为宽度不够。)

导入存档时只检查了基本的格式,没检查别的东西。可能会顺利导入符合格式但不正确的存档,从而导致搜出错误的结果。

可能会改。尤其是 reasonDecide 时那个奇怪的数字,完全不知所云(其实那代表了该细胞在 search_list 里的位置,以方便回溯)。

new_state 的三个选项是 ChooseDeadChooseAliveRandom

@HuntingBot
Copy link
Author

HuntingBot commented Jan 6, 2021

@AlephAlpha

是的。

原贴已编辑。当时是把出现问题的save.json文件的set_stack保存了下来,然后把它删掉了。发的时候是随手放到了另一个save.json文件里。

导入存档时只检查了基本的格式,没检查别的东西。可能会顺利导入符合格式但不正确的存档,从而导致搜出错误的结果。

这个“基本的格式”包括一个细胞不能其中一些代有问号,另一些代没有?这不是一个很好的决定。

new_state 的三个选项是 ChooseDeadChooseAliveRandom

原来如此。我觉得应该有一个 save.json 说明书。或者直接像 WLS 一样,通过图形界面设置。


2020年年底的时候我考虑了一个倒T型搜法(先搜出一个细长的 partial,再用一个宽的部件来完成它 ),以寻找一个正交方向c/7的飞船。如果这个问号问题解决的话,就可以使用这个搜法了。

当前我没有时间测试,但是我注意到一些把 rlifesrc 当做 WLS 使用可能遇到的问题:

  • 目前它似乎会从最后一个已经确定状态的细胞开始搜。如果这个细胞前面还有问号的话,就会被忽略。
  • 一个细胞不能其中一些代有问号,另一些代没有。
  • 如果能像 gfind 一样指定搜索的顺序(从头开始搜还是从尾开始搜)就好了。把 dx/dy 设置成负数似乎不能达到这个效果(事实上,会出现像搜光速飞船一样的效果。)比如对于倒T型搜法,为了避免浪费时间(以及得到有意义的 partial),我会希望从中间(也就是细长 partial 的尾部)开始往两边搜。在另一些情况下,飞船的尾部比头部更难找(比如某个 totalistic 规则),这样也可以避免浪费时间。
  • 有看过 Nicolay 的 WLS 魔改是什么原理吗?这样就不会在搜索 c/4d 飞船的时候跳出一大堆滑翔机了。
  • Transformation 不是 Id 的搜索应该跳过完全对称的结果(应该不难,就像 Changing 一样),这样搜 glide-symmetric 的 4c/8 时就不需要手动跳过无聊的对称 2c/4 结果了。

@AlephAlpha
Copy link
Owner

AlephAlpha commented Jan 6, 2021

第一点和第二点其实是同一个问题……

说说算法的一点细节:

在创造世界时,rlifesrc 会创造一个叫 search_list 的列表,把所有的细胞的所有代按搜索顺序放到这个列表里。此外还有一个叫 search_index 的数,初始为0。每次要找一个未知的细胞时,从 search_index 开始找。找到了之后会按 new_state 给细胞赋,并相应地增加 search_index 的值;回溯时则相应地减少 search_index 的值(reasonDecide 时那个奇怪的数字就是回溯时 search_index 要回到的地方)。但那些奇怪的问题也是 search_index 导致的。

这个 search_index 是我的原创,原版的 lifesrc 没有,所以它每次找未知的细胞都要从头找起,速度很慢。我没留意看 WLS 的源代码,不知道它是怎样解决这个问题的。(最近我想到了另一种方案,代价是搜索过程中搜索顺序会乱。有时间再试试。)源于我对 lifesrc 的算法的错误理解。经测试,改回 lifesrc 原本的方案,对速度基本没有影响。

修改好的版本在 dev branch。目前网页版还没更新,已更新,更新之后的 save.json 会和原来的不兼容。

@AlephAlpha
Copy link
Owner

AlephAlpha commented Jan 10, 2021

如果能像 gfind 一样指定搜索的顺序(从头开始搜还是从尾开始搜)就好了

关于这个问题,我想更进一步,一个细胞一个细胞地指定搜索顺序。这个顺序甚至不一定要覆盖整个搜索范围,比如说对于对称的图样它可以只涉及一半的细胞。

在rlifesrc-lib中应该不难做到,问题在于命令行版和网页版如何输入这个搜索顺序……暂时想不到合适的交互方式……

Transformation 不是 Id 的搜索应该跳过完全对称的结果

目前跳过的是空白的图样,以及(仅对于振荡子)实际周期小于指定周期的图样。

要跳过更多“无聊”的结果,速度也会相应地减慢。可能提供一个选项会比较好,比如说 Level 0 只跳过空白的图样和(周期不为1时)静物,Level 1 跳过周期小于指定周期的振荡子,Level 2 跳过周期小于指定周期的飞船,Level 3 跳过 Transformation 不是 Id 时的对称结果……

这个选项叫什么名字好?最好各个 Level 也有不同的名字。

@HuntingBot
Copy link
Author

@AlephAlpha

这个选项叫什么名字好?最好各个 Level 也有不同的名字。

可以用类似 dr 的命名。skipstable, skipsubp, skipsym……

@AlephAlpha
Copy link
Owner

AlephAlpha commented Jan 20, 2021

@AlephAlpha

这个选项叫什么名字好?最好各个 Level 也有不同的名字。

可以用类似 dr 的命名。skipstable, skipsubp, skipsym……

在做了。求一个方便测试 skipsym 的例子。

@HuntingBot
Copy link
Author

@AlephAlpha 大多数搜索都可以测试 skipsym 啊,比如 glide-symmetric 的 p4(Period 应该是设成2?)

@AlephAlpha
Copy link
Owner

AlephAlpha commented Jan 20, 2021

@AlephAlpha 大多数搜索都可以测试 skipsym 啊,比如 glide-symmetric 的 p4(Period 应该是设成2?)

但对于生命游戏来说,glide-symmetric 的 p4 比对称的 p2 常见得多……

最终用 turtle 测了。这个范围一个 glide-symmetric 的 p6 都没有。

还在 dev branch,网页版还没更新。 已更新。

@HuntingBot
Copy link
Author

HuntingBot commented Jan 22, 2021 via email

@AlephAlpha
Copy link
Owner

@AlephAlpha 有时候我访问不了 github.io。能做一个镜像吗?

你电脑上有 git 和 python 吗?

git clone --single-branch --branch=gh-pages --depth 1 https://github.com/AlephAlpha/rlifesrc.git
python3 -m http.server

然后在浏览器打开 http://0.0.0.0:8000/rlifesrc/

@AlephAlpha
Copy link
Owner

AlephAlpha commented Jan 24, 2021

在 Gitee 上弄了个镜像:https://alephalpha.gitee.io/rlifesrc/

暂时不会同步更新。

@AlephAlpha AlephAlpha added bug Something isn't working enhancement New feature or request labels Jan 30, 2021
@AlephAlpha
Copy link
Owner

初步支持了一个细胞一个细胞地指定搜索顺序。目前还没有找到合适的交互方式,只能通过修改存档文件……比如说:

{"config":{"width":16,"height":16,"period":1,"dx":0,"dy":0,"transform":"Id","symmetry":"C1","search_order":{"FromVec":[[0,0,0],[1,0,0],[1,1,0],[0,1,0],[0,2,0],[0,3,0],[1,3,0],[1,2,0],[2,2,0],[2,3,0],[3,3,0],[3,2,0],[3,1,0],[2,1,0],[2,0,0],[3,0,0],[4,0,0],[4,1,0],[5,1,0],[5,0,0],[6,0,0],[7,0,0],[7,1,0],[6,1,0],[6,2,0],[7,2,0],[7,3,0],[6,3,0],[5,3,0],[5,2,0],[4,2,0],[4,3,0],[4,4,0],[4,5,0],[5,5,0],[5,4,0],[6,4,0],[7,4,0],[7,5,0],[6,5,0],[6,6,0],[7,6,0],[7,7,0],[6,7,0],[5,7,0],[5,6,0],[4,6,0],[4,7,0],[3,7,0],[2,7,0],[2,6,0],[3,6,0],[3,5,0],[3,4,0],[2,4,0],[2,5,0],[1,5,0],[1,4,0],[0,4,0],[0,5,0],[0,6,0],[1,6,0],[1,7,0],[0,7,0],[0,8,0],[0,9,0],[1,9,0],[1,8,0],[2,8,0],[3,8,0],[3,9,0],[2,9,0],[2,10,0],[3,10,0],[3,11,0],[2,11,0],[1,11,0],[1,10,0],[0,10,0],[0,11,0],[0,12,0],[1,12,0],[1,13,0],[0,13,0],[0,14,0],[0,15,0],[1,15,0],[1,14,0],[2,14,0],[2,15,0],[3,15,0],[3,14,0],[3,13,0],[2,13,0],[2,12,0],[3,12,0],[4,12,0],[5,12,0],[5,13,0],[4,13,0],[4,14,0],[4,15,0],[5,15,0],[5,14,0],[6,14,0],[6,15,0],[7,15,0],[7,14,0],[7,13,0],[6,13,0],[6,12,0],[7,12,0],[7,11,0],[7,10,0],[6,10,0],[6,11,0],[5,11,0],[4,11,0],[4,10,0],[5,10,0],[5,9,0],[4,9,0],[4,8,0],[5,8,0],[6,8,0],[6,9,0],[7,9,0],[7,8,0],[8,8,0],[8,9,0],[9,9,0],[9,8,0],[10,8,0],[11,8,0],[11,9,0],[10,9,0],[10,10,0],[11,10,0],[11,11,0],[10,11,0],[9,11,0],[9,10,0],[8,10,0],[8,11,0],[8,12,0],[9,12,0],[9,13,0],[8,13,0],[8,14,0],[8,15,0],[9,15,0],[9,14,0],[10,14,0],[10,15,0],[11,15,0],[11,14,0],[11,13,0],[10,13,0],[10,12,0],[11,12,0],[12,12,0],[13,12,0],[13,13,0],[12,13,0],[12,14,0],[12,15,0],[13,15,0],[13,14,0],[14,14,0],[14,15,0],[15,15,0],[15,14,0],[15,13,0],[14,13,0],[14,12,0],[15,12,0],[15,11,0],[15,10,0],[14,10,0],[14,11,0],[13,11,0],[12,11,0],[12,10,0],[13,10,0],[13,9,0],[12,9,0],[12,8,0],[13,8,0],[14,8,0],[14,9,0],[15,9,0],[15,8,0],[15,7,0],[14,7,0],[14,6,0],[15,6,0],[15,5,0],[15,4,0],[14,4,0],[14,5,0],[13,5,0],[13,4,0],[12,4,0],[12,5,0],[12,6,0],[13,6,0],[13,7,0],[12,7,0],[11,7,0],[11,6,0],[10,6,0],[10,7,0],[9,7,0],[8,7,0],[8,6,0],[9,6,0],[9,5,0],[8,5,0],[8,4,0],[9,4,0],[10,4,0],[10,5,0],[11,5,0],[11,4,0],[11,3,0],[11,2,0],[10,2,0],[10,3,0],[9,3,0],[8,3,0],[8,2,0],[9,2,0],[9,1,0],[8,1,0],[8,0,0],[9,0,0],[10,0,0],[10,1,0],[11,1,0],[11,0,0],[12,0,0],[13,0,0],[13,1,0],[12,1,0],[12,2,0],[12,3,0],[13,3,0],[13,2,0],[14,2,0],[14,3,0],[15,3,0],[15,2,0],[15,1,0],[14,1,0],[14,0,0],[15,0,0]]},"new_state":"ChooseAlive","max_cell_count":null,"reduce_max":false,"rule_string":"B3/S23","diagonal_width":null,"skip_level":"SkipSubperiodSpaceship"},"conflicts":0,"set_stack":[],"check_index":0}

必须不重不漏。周期大于1时每个周期都必须指定到。不然我也不知道会搜出什么奇怪的东西。

@AlephAlpha
Copy link
Owner

删掉了 SkipLevel,换成了两个互相独立的选项:Skip Subperiod 和 Skip Subsymmetry。后者的含义也改为跳过比指定的对称性更加对称的图样,比如说要求搜 C1 时不会搜到 C2,而完全不管指定的 Transformation 是怎样。

默认会跳过 Subperiod,但不会跳过 Subsymmetry。

@HuntingBot
Copy link
Author

@AlephAlpha 这个 search_order 还能用吗?

把下面这个 save 导入 rlifesrc:

{"config":{"width":10,"height":70,"period":5,"dx":0,"dy":0,"transform":"Id","symmetry":"D2|","search_order":{"FromVec":[[29,0,0],[29,0,1],[29,0,2],[29,0,3],[29,0,4],[29,1,0],[29,1,1],[29,1,2],[29,1,3],[29,1,4],[29,2,0],[29,2,1],[29,2,2],[29,2,3],[29,2,4],[29,3,0],[29,3,1],[29,3,2],[29,3,3],[29,3,4],[29,4,0],[29,4,1],[29,4,2],[29,4,3],[29,4,4],[29,5,0],[29,5,1],[29,5,2],[29,5,3],[29,5,4],[29,6,0],[29,6,1],[29,6,2],[29,6,3],[29,6,4],[29,7,0],[29,7,1],[29,7,2],[29,7,3],[29,7,4],[29,8,0],[29,8,1],[29,8,2],[29,8,3],[29,8,4],[29,9,0],[29,9,1],[29,9,2],[29,9,3],[29,9,4],[30,0,0],[30,0,1],[30,0,2],[30,0,3],[30,0,4],[30,1,0],[30,1,1],[30,1,2],[30,1,3],[30,1,4],[30,2,0],[30,2,1],[30,2,2],[30,2,3],[30,2,4],[30,3,0],[30,3,1],[30,3,2],[30,3,3],[30,3,4],[30,4,0],[30,4,1],[30,4,2],[30,4,3],[30,4,4],[30,5,0],[30,5,1],[30,5,2],[30,5,3],[30,5,4],[30,6,0],[30,6,1],[30,6,2],[30,6,3],[30,6,4],[30,7,0],[30,7,1],[30,7,2],[30,7,3],[30,7,4],[30,8,0],[30,8,1],[30,8,2],[30,8,3],[30,8,4],[30,9,0],[30,9,1],[30,9,2],[30,9,3],[30,9,4],[31,0,0],[31,0,1],[31,0,2],[31,0,3],[31,0,4],[31,1,0],[31,1,1],[31,1,2],[31,1,3],[31,1,4],[31,2,0],[31,2,1],[31,2,2],[31,2,3],[31,2,4],[31,3,0],[31,3,1],[31,3,2],[31,3,3],[31,3,4],[31,4,0],[31,4,1],[31,4,2],[31,4,3],[31,4,4],[31,5,0],[31,5,1],[31,5,2],[31,5,3],[31,5,4],[31,6,0],[31,6,1],[31,6,2],[31,6,3],[31,6,4],[31,7,0],[31,7,1],[31,7,2],[31,7,3],[31,7,4],[31,8,0],[31,8,1],[31,8,2],[31,8,3],[31,8,4],[31,9,0],[31,9,1],[31,9,2],[31,9,3],[31,9,4],[32,0,0],[32,0,1],[32,0,2],[32,0,3],[32,0,4],[32,1,0],[32,1,1],[32,1,2],[32,1,3],[32,1,4],[32,2,0],[32,2,1],[32,2,2],[32,2,3],[32,2,4],[32,3,0],[32,3,1],[32,3,2],[32,3,3],[32,3,4],[32,4,0],[32,4,1],[32,4,2],[32,4,3],[32,4,4],[32,5,0],[32,5,1],[32,5,2],[32,5,3],[32,5,4],[32,6,0],[32,6,1],[32,6,2],[32,6,3],[32,6,4],[32,7,0],[32,7,1],[32,7,2],[32,7,3],[32,7,4],[32,8,0],[32,8,1],[32,8,2],[32,8,3],[32,8,4],[32,9,0],[32,9,1],[32,9,2],[32,9,3],[32,9,4],[33,0,0],[33,0,1],[33,0,2],[33,0,3],[33,0,4],[33,1,0],[33,1,1],[33,1,2],[33,1,3],[33,1,4],[33,2,0],[33,2,1],[33,2,2],[33,2,3],[33,2,4],[33,3,0],[33,3,1],[33,3,2],[33,3,3],[33,3,4],[33,4,0],[33,4,1],[33,4,2],[33,4,3],[33,4,4],[33,5,0],[33,5,1],[33,5,2],[33,5,3],[33,5,4],[33,6,0],[33,6,1],[33,6,2],[33,6,3],[33,6,4],[33,7,0],[33,7,1],[33,7,2],[33,7,3],[33,7,4],[33,8,0],[33,8,1],[33,8,2],[33,8,3],[33,8,4],[33,9,0],[33,9,1],[33,9,2],[33,9,3],[33,9,4],[34,0,0],[34,0,1],[34,0,2],[34,0,3],[34,0,4],[34,1,0],[34,1,1],[34,1,2],[34,1,3],[34,1,4],[34,2,0],[34,2,1],[34,2,2],[34,2,3],[34,2,4],[34,3,0],[34,3,1],[34,3,2],[34,3,3],[34,3,4],[34,4,0],[34,4,1],[34,4,2],[34,4,3],[34,4,4],[34,5,0],[34,5,1],[34,5,2],[34,5,3],[34,5,4],[34,6,0],[34,6,1],[34,6,2],[34,6,3],[34,6,4],[34,7,0],[34,7,1],[34,7,2],[34,7,3],[34,7,4],[34,8,0],[34,8,1],[34,8,2],[34,8,3],[34,8,4],[34,9,0],[34,9,1],[34,9,2],[34,9,3],[34,9,4],[35,0,0],[35,0,1],[35,0,2],[35,0,3],[35,0,4],[35,1,0],[35,1,1],[35,1,2],[35,1,3],[35,1,4],[35,2,0],[35,2,1],[35,2,2],[35,2,3],[35,2,4],[35,3,0],[35,3,1],[35,3,2],[35,3,3],[35,3,4],[35,4,0],[35,4,1],[35,4,2],[35,4,3],[35,4,4],[35,5,0],[35,5,1],[35,5,2],[35,5,3],[35,5,4],[35,6,0],[35,6,1],[35,6,2],[35,6,3],[35,6,4],[35,7,0],[35,7,1],[35,7,2],[35,7,3],[35,7,4],[35,8,0],[35,8,1],[35,8,2],[35,8,3],[35,8,4],[35,9,0],[35,9,1],[35,9,2],[35,9,3],[35,9,4],[36,0,0],[36,0,1],[36,0,2],[36,0,3],[36,0,4],[36,1,0],[36,1,1],[36,1,2],[36,1,3],[36,1,4],[36,2,0],[36,2,1],[36,2,2],[36,2,3],[36,2,4],[36,3,0],[36,3,1],[36,3,2],[36,3,3],[36,3,4],[36,4,0],[36,4,1],[36,4,2],[36,4,3],[36,4,4],[36,5,0],[36,5,1],[36,5,2],[36,5,3],[36,5,4],[36,6,0],[36,6,1],[36,6,2],[36,6,3],[36,6,4],[36,7,0],[36,7,1],[36,7,2],[36,7,3],[36,7,4],[36,8,0],[36,8,1],[36,8,2],[36,8,3],[36,8,4],[36,9,0],[36,9,1],[36,9,2],[36,9,3],[36,9,4],[37,0,0],[37,0,1],[37,0,2],[37,0,3],[37,0,4],[37,1,0],[37,1,1],[37,1,2],[37,1,3],[37,1,4],[37,2,0],[37,2,1],[37,2,2],[37,2,3],[37,2,4],[37,3,0],[37,3,1],[37,3,2],[37,3,3],[37,3,4],[37,4,0],[37,4,1],[37,4,2],[37,4,3],[37,4,4],[37,5,0],[37,5,1],[37,5,2],[37,5,3],[37,5,4],[37,6,0],[37,6,1],[37,6,2],[37,6,3],[37,6,4],[37,7,0],[37,7,1],[37,7,2],[37,7,3],[37,7,4],[37,8,0],[37,8,1],[37,8,2],[37,8,3],[37,8,4],[37,9,0],[37,9,1],[37,9,2],[37,9,3],[37,9,4],[38,0,0],[38,0,1],[38,0,2],[38,0,3],[38,0,4],[38,1,0],[38,1,1],[38,1,2],[38,1,3],[38,1,4],[38,2,0],[38,2,1],[38,2,2],[38,2,3],[38,2,4],[38,3,0],[38,3,1],[38,3,2],[38,3,3],[38,3,4],[38,4,0],[38,4,1],[38,4,2],[38,4,3],[38,4,4],[38,5,0],[38,5,1],[38,5,2],[38,5,3],[38,5,4],[38,6,0],[38,6,1],[38,6,2],[38,6,3],[38,6,4],[38,7,0],[38,7,1],[38,7,2],[38,7,3],[38,7,4],[38,8,0],[38,8,1],[38,8,2],[38,8,3],[38,8,4],[38,9,0],[38,9,1],[38,9,2],[38,9,3],[38,9,4],[39,0,0],[39,0,1],[39,0,2],[39,0,3],[39,0,4],[39,1,0],[39,1,1],[39,1,2],[39,1,3],[39,1,4],[39,2,0],[39,2,1],[39,2,2],[39,2,3],[39,2,4],[39,3,0],[39,3,1],[39,3,2],[39,3,3],[39,3,4],[39,4,0],[39,4,1],[39,4,2],[39,4,3],[39,4,4],[39,5,0],[39,5,1],[39,5,2],[39,5,3],[39,5,4],[39,6,0],[39,6,1],[39,6,2],[39,6,3],[39,6,4],[39,7,0],[39,7,1],[39,7,2],[39,7,3],[39,7,4],[39,8,0],[39,8,1],[39,8,2],[39,8,3],[39,8,4],[39,9,0],[39,9,1],[39,9,2],[39,9,3],[39,9,4],[40,0,0],[40,0,1],[40,0,2],[40,0,3],[40,0,4],[40,1,0],[40,1,1],[40,1,2],[40,1,3],[40,1,4],[40,2,0],[40,2,1],[40,2,2],[40,2,3],[40,2,4],[40,3,0],[40,3,1],[40,3,2],[40,3,3],[40,3,4],[40,4,0],[40,4,1],[40,4,2],[40,4,3],[40,4,4],[40,5,0],[40,5,1],[40,5,2],[40,5,3],[40,5,4],[40,6,0],[40,6,1],[40,6,2],[40,6,3],[40,6,4],[40,7,0],[40,7,1],[40,7,2],[40,7,3],[40,7,4],[40,8,0],[40,8,1],[40,8,2],[40,8,3],[40,8,4],[40,9,0],[40,9,1],[40,9,2],[40,9,3],[40,9,4],[41,0,0],[41,0,1],[41,0,2],[41,0,3],[41,0,4],[41,1,0],[41,1,1],[41,1,2],[41,1,3],[41,1,4],[41,2,0],[41,2,1],[41,2,2],[41,2,3],[41,2,4],[41,3,0],[41,3,1],[41,3,2],[41,3,3],[41,3,4],[41,4,0],[41,4,1],[41,4,2],[41,4,3],[41,4,4],[41,5,0],[41,5,1],[41,5,2],[41,5,3],[41,5,4],[41,6,0],[41,6,1],[41,6,2],[41,6,3],[41,6,4],[41,7,0],[41,7,1],[41,7,2],[41,7,3],[41,7,4],[41,8,0],[41,8,1],[41,8,2],[41,8,3],[41,8,4],[41,9,0],[41,9,1],[41,9,2],[41,9,3],[41,9,4],[42,0,0],[42,0,1],[42,0,2],[42,0,3],[42,0,4],[42,1,0],[42,1,1],[42,1,2],[42,1,3],[42,1,4],[42,2,0],[42,2,1],[42,2,2],[42,2,3],[42,2,4],[42,3,0],[42,3,1],[42,3,2],[42,3,3],[42,3,4],[42,4,0],[42,4,1],[42,4,2],[42,4,3],[42,4,4],[42,5,0],[42,5,1],[42,5,2],[42,5,3],[42,5,4],[42,6,0],[42,6,1],[42,6,2],[42,6,3],[42,6,4],[42,7,0],[42,7,1],[42,7,2],[42,7,3],[42,7,4],[42,8,0],[42,8,1],[42,8,2],[42,8,3],[42,8,4],[42,9,0],[42,9,1],[42,9,2],[42,9,3],[42,9,4],[43,0,0],[43,0,1],[43,0,2],[43,0,3],[43,0,4],[43,1,0],[43,1,1],[43,1,2],[43,1,3],[43,1,4],[43,2,0],[43,2,1],[43,2,2],[43,2,3],[43,2,4],[43,3,0],[43,3,1],[43,3,2],[43,3,3],[43,3,4],[43,4,0],[43,4,1],[43,4,2],[43,4,3],[43,4,4],[43,5,0],[43,5,1],[43,5,2],[43,5,3],[43,5,4],[43,6,0],[43,6,1],[43,6,2],[43,6,3],[43,6,4],[43,7,0],[43,7,1],[43,7,2],[43,7,3],[43,7,4],[43,8,0],[43,8,1],[43,8,2],[43,8,3],[43,8,4],[43,9,0],[43,9,1],[43,9,2],[43,9,3],[43,9,4],[44,0,0],[44,0,1],[44,0,2],[44,0,3],[44,0,4],[44,1,0],[44,1,1],[44,1,2],[44,1,3],[44,1,4],[44,2,0],[44,2,1],[44,2,2],[44,2,3],[44,2,4],[44,3,0],[44,3,1],[44,3,2],[44,3,3],[44,3,4],[44,4,0],[44,4,1],[44,4,2],[44,4,3],[44,4,4],[44,5,0],[44,5,1],[44,5,2],[44,5,3],[44,5,4],[44,6,0],[44,6,1],[44,6,2],[44,6,3],[44,6,4],[44,7,0],[44,7,1],[44,7,2],[44,7,3],[44,7,4],[44,8,0],[44,8,1],[44,8,2],[44,8,3],[44,8,4],[44,9,0],[44,9,1],[44,9,2],[44,9,3],[44,9,4],[45,0,0],[45,0,1],[45,0,2],[45,0,3],[45,0,4],[45,1,0],[45,1,1],[45,1,2],[45,1,3],[45,1,4],[45,2,0],[45,2,1],[45,2,2],[45,2,3],[45,2,4],[45,3,0],[45,3,1],[45,3,2],[45,3,3],[45,3,4],[45,4,0],[45,4,1],[45,4,2],[45,4,3],[45,4,4],[45,5,0],[45,5,1],[45,5,2],[45,5,3],[45,5,4],[45,6,0],[45,6,1],[45,6,2],[45,6,3],[45,6,4],[45,7,0],[45,7,1],[45,7,2],[45,7,3],[45,7,4],[45,8,0],[45,8,1],[45,8,2],[45,8,3],[45,8,4],[45,9,0],[45,9,1],[45,9,2],[45,9,3],[45,9,4],[46,0,0],[46,0,1],[46,0,2],[46,0,3],[46,0,4],[46,1,0],[46,1,1],[46,1,2],[46,1,3],[46,1,4],[46,2,0],[46,2,1],[46,2,2],[46,2,3],[46,2,4],[46,3,0],[46,3,1],[46,3,2],[46,3,3],[46,3,4],[46,4,0],[46,4,1],[46,4,2],[46,4,3],[46,4,4],[46,5,0],[46,5,1],[46,5,2],[46,5,3],[46,5,4],[46,6,0],[46,6,1],[46,6,2],[46,6,3],[46,6,4],[46,7,0],[46,7,1],[46,7,2],[46,7,3],[46,7,4],[46,8,0],[46,8,1],[46,8,2],[46,8,3],[46,8,4],[46,9,0],[46,9,1],[46,9,2],[46,9,3],[46,9,4],[47,0,0],[47,0,1],[47,0,2],[47,0,3],[47,0,4],[47,1,0],[47,1,1],[47,1,2],[47,1,3],[47,1,4],[47,2,0],[47,2,1],[47,2,2],[47,2,3],[47,2,4],[47,3,0],[47,3,1],[47,3,2],[47,3,3],[47,3,4],[47,4,0],[47,4,1],[47,4,2],[47,4,3],[47,4,4],[47,5,0],[47,5,1],[47,5,2],[47,5,3],[47,5,4],[47,6,0],[47,6,1],[47,6,2],[47,6,3],[47,6,4],[47,7,0],[47,7,1],[47,7,2],[47,7,3],[47,7,4],[47,8,0],[47,8,1],[47,8,2],[47,8,3],[47,8,4],[47,9,0],[47,9,1],[47,9,2],[47,9,3],[47,9,4],[48,0,0],[48,0,1],[48,0,2],[48,0,3],[48,0,4],[48,1,0],[48,1,1],[48,1,2],[48,1,3],[48,1,4],[48,2,0],[48,2,1],[48,2,2],[48,2,3],[48,2,4],[48,3,0],[48,3,1],[48,3,2],[48,3,3],[48,3,4],[48,4,0],[48,4,1],[48,4,2],[48,4,3],[48,4,4],[48,5,0],[48,5,1],[48,5,2],[48,5,3],[48,5,4],[48,6,0],[48,6,1],[48,6,2],[48,6,3],[48,6,4],[48,7,0],[48,7,1],[48,7,2],[48,7,3],[48,7,4],[48,8,0],[48,8,1],[48,8,2],[48,8,3],[48,8,4],[48,9,0],[48,9,1],[48,9,2],[48,9,3],[48,9,4],[49,0,0],[49,0,1],[49,0,2],[49,0,3],[49,0,4],[49,1,0],[49,1,1],[49,1,2],[49,1,3],[49,1,4],[49,2,0],[49,2,1],[49,2,2],[49,2,3],[49,2,4],[49,3,0],[49,3,1],[49,3,2],[49,3,3],[49,3,4],[49,4,0],[49,4,1],[49,4,2],[49,4,3],[49,4,4],[49,5,0],[49,5,1],[49,5,2],[49,5,3],[49,5,4],[49,6,0],[49,6,1],[49,6,2],[49,6,3],[49,6,4],[49,7,0],[49,7,1],[49,7,2],[49,7,3],[49,7,4],[49,8,0],[49,8,1],[49,8,2],[49,8,3],[49,8,4],[49,9,0],[49,9,1],[49,9,2],[49,9,3],[49,9,4],[50,0,0],[50,0,1],[50,0,2],[50,0,3],[50,0,4],[50,1,0],[50,1,1],[50,1,2],[50,1,3],[50,1,4],[50,2,0],[50,2,1],[50,2,2],[50,2,3],[50,2,4],[50,3,0],[50,3,1],[50,3,2],[50,3,3],[50,3,4],[50,4,0],[50,4,1],[50,4,2],[50,4,3],[50,4,4],[50,5,0],[50,5,1],[50,5,2],[50,5,3],[50,5,4],[50,6,0],[50,6,1],[50,6,2],[50,6,3],[50,6,4],[50,7,0],[50,7,1],[50,7,2],[50,7,3],[50,7,4],[50,8,0],[50,8,1],[50,8,2],[50,8,3],[50,8,4],[50,9,0],[50,9,1],[50,9,2],[50,9,3],[50,9,4],[51,0,0],[51,0,1],[51,0,2],[51,0,3],[51,0,4],[51,1,0],[51,1,1],[51,1,2],[51,1,3],[51,1,4],[51,2,0],[51,2,1],[51,2,2],[51,2,3],[51,2,4],[51,3,0],[51,3,1],[51,3,2],[51,3,3],[51,3,4],[51,4,0],[51,4,1],[51,4,2],[51,4,3],[51,4,4],[51,5,0],[51,5,1],[51,5,2],[51,5,3],[51,5,4],[51,6,0],[51,6,1],[51,6,2],[51,6,3],[51,6,4],[51,7,0],[51,7,1],[51,7,2],[51,7,3],[51,7,4],[51,8,0],[51,8,1],[51,8,2],[51,8,3],[51,8,4],[51,9,0],[51,9,1],[51,9,2],[51,9,3],[51,9,4],[52,0,0],[52,0,1],[52,0,2],[52,0,3],[52,0,4],[52,1,0],[52,1,1],[52,1,2],[52,1,3],[52,1,4],[52,2,0],[52,2,1],[52,2,2],[52,2,3],[52,2,4],[52,3,0],[52,3,1],[52,3,2],[52,3,3],[52,3,4],[52,4,0],[52,4,1],[52,4,2],[52,4,3],[52,4,4],[52,5,0],[52,5,1],[52,5,2],[52,5,3],[52,5,4],[52,6,0],[52,6,1],[52,6,2],[52,6,3],[52,6,4],[52,7,0],[52,7,1],[52,7,2],[52,7,3],[52,7,4],[52,8,0],[52,8,1],[52,8,2],[52,8,3],[52,8,4],[52,9,0],[52,9,1],[52,9,2],[52,9,3],[52,9,4],[53,0,0],[53,0,1],[53,0,2],[53,0,3],[53,0,4],[53,1,0],[53,1,1],[53,1,2],[53,1,3],[53,1,4],[53,2,0],[53,2,1],[53,2,2],[53,2,3],[53,2,4],[53,3,0],[53,3,1],[53,3,2],[53,3,3],[53,3,4],[53,4,0],[53,4,1],[53,4,2],[53,4,3],[53,4,4],[53,5,0],[53,5,1],[53,5,2],[53,5,3],[53,5,4],[53,6,0],[53,6,1],[53,6,2],[53,6,3],[53,6,4],[53,7,0],[53,7,1],[53,7,2],[53,7,3],[53,7,4],[53,8,0],[53,8,1],[53,8,2],[53,8,3],[53,8,4],[53,9,0],[53,9,1],[53,9,2],[53,9,3],[53,9,4],[54,0,0],[54,0,1],[54,0,2],[54,0,3],[54,0,4],[54,1,0],[54,1,1],[54,1,2],[54,1,3],[54,1,4],[54,2,0],[54,2,1],[54,2,2],[54,2,3],[54,2,4],[54,3,0],[54,3,1],[54,3,2],[54,3,3],[54,3,4],[54,4,0],[54,4,1],[54,4,2],[54,4,3],[54,4,4],[54,5,0],[54,5,1],[54,5,2],[54,5,3],[54,5,4],[54,6,0],[54,6,1],[54,6,2],[54,6,3],[54,6,4],[54,7,0],[54,7,1],[54,7,2],[54,7,3],[54,7,4],[54,8,0],[54,8,1],[54,8,2],[54,8,3],[54,8,4],[54,9,0],[54,9,1],[54,9,2],[54,9,3],[54,9,4],[55,0,0],[55,0,1],[55,0,2],[55,0,3],[55,0,4],[55,1,0],[55,1,1],[55,1,2],[55,1,3],[55,1,4],[55,2,0],[55,2,1],[55,2,2],[55,2,3],[55,2,4],[55,3,0],[55,3,1],[55,3,2],[55,3,3],[55,3,4],[55,4,0],[55,4,1],[55,4,2],[55,4,3],[55,4,4],[55,5,0],[55,5,1],[55,5,2],[55,5,3],[55,5,4],[55,6,0],[55,6,1],[55,6,2],[55,6,3],[55,6,4],[55,7,0],[55,7,1],[55,7,2],[55,7,3],[55,7,4],[55,8,0],[55,8,1],[55,8,2],[55,8,3],[55,8,4],[55,9,0],[55,9,1],[55,9,2],[55,9,3],[55,9,4],[56,0,0],[56,0,1],[56,0,2],[56,0,3],[56,0,4],[56,1,0],[56,1,1],[56,1,2],[56,1,3],[56,1,4],[56,2,0],[56,2,1],[56,2,2],[56,2,3],[56,2,4],[56,3,0],[56,3,1],[56,3,2],[56,3,3],[56,3,4],[56,4,0],[56,4,1],[56,4,2],[56,4,3],[56,4,4],[56,5,0],[56,5,1],[56,5,2],[56,5,3],[56,5,4],[56,6,0],[56,6,1],[56,6,2],[56,6,3],[56,6,4],[56,7,0],[56,7,1],[56,7,2],[56,7,3],[56,7,4],[56,8,0],[56,8,1],[56,8,2],[56,8,3],[56,8,4],[56,9,0],[56,9,1],[56,9,2],[56,9,3],[56,9,4],[57,0,0],[57,0,1],[57,0,2],[57,0,3],[57,0,4],[57,1,0],[57,1,1],[57,1,2],[57,1,3],[57,1,4],[57,2,0],[57,2,1],[57,2,2],[57,2,3],[57,2,4],[57,3,0],[57,3,1],[57,3,2],[57,3,3],[57,3,4],[57,4,0],[57,4,1],[57,4,2],[57,4,3],[57,4,4],[57,5,0],[57,5,1],[57,5,2],[57,5,3],[57,5,4],[57,6,0],[57,6,1],[57,6,2],[57,6,3],[57,6,4],[57,7,0],[57,7,1],[57,7,2],[57,7,3],[57,7,4],[57,8,0],[57,8,1],[57,8,2],[57,8,3],[57,8,4],[57,9,0],[57,9,1],[57,9,2],[57,9,3],[57,9,4],[58,0,0],[58,0,1],[58,0,2],[58,0,3],[58,0,4],[58,1,0],[58,1,1],[58,1,2],[58,1,3],[58,1,4],[58,2,0],[58,2,1],[58,2,2],[58,2,3],[58,2,4],[58,3,0],[58,3,1],[58,3,2],[58,3,3],[58,3,4],[58,4,0],[58,4,1],[58,4,2],[58,4,3],[58,4,4],[58,5,0],[58,5,1],[58,5,2],[58,5,3],[58,5,4],[58,6,0],[58,6,1],[58,6,2],[58,6,3],[58,6,4],[58,7,0],[58,7,1],[58,7,2],[58,7,3],[58,7,4],[58,8,0],[58,8,1],[58,8,2],[58,8,3],[58,8,4],[58,9,0],[58,9,1],[58,9,2],[58,9,3],[58,9,4],[59,0,0],[59,0,1],[59,0,2],[59,0,3],[59,0,4],[59,1,0],[59,1,1],[59,1,2],[59,1,3],[59,1,4],[59,2,0],[59,2,1],[59,2,2],[59,2,3],[59,2,4],[59,3,0],[59,3,1],[59,3,2],[59,3,3],[59,3,4],[59,4,0],[59,4,1],[59,4,2],[59,4,3],[59,4,4],[59,5,0],[59,5,1],[59,5,2],[59,5,3],[59,5,4],[59,6,0],[59,6,1],[59,6,2],[59,6,3],[59,6,4],[59,7,0],[59,7,1],[59,7,2],[59,7,3],[59,7,4],[59,8,0],[59,8,1],[59,8,2],[59,8,3],[59,8,4],[59,9,0],[59,9,1],[59,9,2],[59,9,3],[59,9,4],[60,0,0],[60,0,1],[60,0,2],[60,0,3],[60,0,4],[60,1,0],[60,1,1],[60,1,2],[60,1,3],[60,1,4],[60,2,0],[60,2,1],[60,2,2],[60,2,3],[60,2,4],[60,3,0],[60,3,1],[60,3,2],[60,3,3],[60,3,4],[60,4,0],[60,4,1],[60,4,2],[60,4,3],[60,4,4],[60,5,0],[60,5,1],[60,5,2],[60,5,3],[60,5,4],[60,6,0],[60,6,1],[60,6,2],[60,6,3],[60,6,4],[60,7,0],[60,7,1],[60,7,2],[60,7,3],[60,7,4],[60,8,0],[60,8,1],[60,8,2],[60,8,3],[60,8,4],[60,9,0],[60,9,1],[60,9,2],[60,9,3],[60,9,4],[61,0,0],[61,0,1],[61,0,2],[61,0,3],[61,0,4],[61,1,0],[61,1,1],[61,1,2],[61,1,3],[61,1,4],[61,2,0],[61,2,1],[61,2,2],[61,2,3],[61,2,4],[61,3,0],[61,3,1],[61,3,2],[61,3,3],[61,3,4],[61,4,0],[61,4,1],[61,4,2],[61,4,3],[61,4,4],[61,5,0],[61,5,1],[61,5,2],[61,5,3],[61,5,4],[61,6,0],[61,6,1],[61,6,2],[61,6,3],[61,6,4],[61,7,0],[61,7,1],[61,7,2],[61,7,3],[61,7,4],[61,8,0],[61,8,1],[61,8,2],[61,8,3],[61,8,4],[61,9,0],[61,9,1],[61,9,2],[61,9,3],[61,9,4],[62,0,0],[62,0,1],[62,0,2],[62,0,3],[62,0,4],[62,1,0],[62,1,1],[62,1,2],[62,1,3],[62,1,4],[62,2,0],[62,2,1],[62,2,2],[62,2,3],[62,2,4],[62,3,0],[62,3,1],[62,3,2],[62,3,3],[62,3,4],[62,4,0],[62,4,1],[62,4,2],[62,4,3],[62,4,4],[62,5,0],[62,5,1],[62,5,2],[62,5,3],[62,5,4],[62,6,0],[62,6,1],[62,6,2],[62,6,3],[62,6,4],[62,7,0],[62,7,1],[62,7,2],[62,7,3],[62,7,4],[62,8,0],[62,8,1],[62,8,2],[62,8,3],[62,8,4],[62,9,0],[62,9,1],[62,9,2],[62,9,3],[62,9,4],[63,0,0],[63,0,1],[63,0,2],[63,0,3],[63,0,4],[63,1,0],[63,1,1],[63,1,2],[63,1,3],[63,1,4],[63,2,0],[63,2,1],[63,2,2],[63,2,3],[63,2,4],[63,3,0],[63,3,1],[63,3,2],[63,3,3],[63,3,4],[63,4,0],[63,4,1],[63,4,2],[63,4,3],[63,4,4],[63,5,0],[63,5,1],[63,5,2],[63,5,3],[63,5,4],[63,6,0],[63,6,1],[63,6,2],[63,6,3],[63,6,4],[63,7,0],[63,7,1],[63,7,2],[63,7,3],[63,7,4],[63,8,0],[63,8,1],[63,8,2],[63,8,3],[63,8,4],[63,9,0],[63,9,1],[63,9,2],[63,9,3],[63,9,4],[64,0,0],[64,0,1],[64,0,2],[64,0,3],[64,0,4],[64,1,0],[64,1,1],[64,1,2],[64,1,3],[64,1,4],[64,2,0],[64,2,1],[64,2,2],[64,2,3],[64,2,4],[64,3,0],[64,3,1],[64,3,2],[64,3,3],[64,3,4],[64,4,0],[64,4,1],[64,4,2],[64,4,3],[64,4,4],[64,5,0],[64,5,1],[64,5,2],[64,5,3],[64,5,4],[64,6,0],[64,6,1],[64,6,2],[64,6,3],[64,6,4],[64,7,0],[64,7,1],[64,7,2],[64,7,3],[64,7,4],[64,8,0],[64,8,1],[64,8,2],[64,8,3],[64,8,4],[64,9,0],[64,9,1],[64,9,2],[64,9,3],[64,9,4],[65,0,0],[65,0,1],[65,0,2],[65,0,3],[65,0,4],[65,1,0],[65,1,1],[65,1,2],[65,1,3],[65,1,4],[65,2,0],[65,2,1],[65,2,2],[65,2,3],[65,2,4],[65,3,0],[65,3,1],[65,3,2],[65,3,3],[65,3,4],[65,4,0],[65,4,1],[65,4,2],[65,4,3],[65,4,4],[65,5,0],[65,5,1],[65,5,2],[65,5,3],[65,5,4],[65,6,0],[65,6,1],[65,6,2],[65,6,3],[65,6,4],[65,7,0],[65,7,1],[65,7,2],[65,7,3],[65,7,4],[65,8,0],[65,8,1],[65,8,2],[65,8,3],[65,8,4],[65,9,0],[65,9,1],[65,9,2],[65,9,3],[65,9,4],[66,0,0],[66,0,1],[66,0,2],[66,0,3],[66,0,4],[66,1,0],[66,1,1],[66,1,2],[66,1,3],[66,1,4],[66,2,0],[66,2,1],[66,2,2],[66,2,3],[66,2,4],[66,3,0],[66,3,1],[66,3,2],[66,3,3],[66,3,4],[66,4,0],[66,4,1],[66,4,2],[66,4,3],[66,4,4],[66,5,0],[66,5,1],[66,5,2],[66,5,3],[66,5,4],[66,6,0],[66,6,1],[66,6,2],[66,6,3],[66,6,4],[66,7,0],[66,7,1],[66,7,2],[66,7,3],[66,7,4],[66,8,0],[66,8,1],[66,8,2],[66,8,3],[66,8,4],[66,9,0],[66,9,1],[66,9,2],[66,9,3],[66,9,4],[67,0,0],[67,0,1],[67,0,2],[67,0,3],[67,0,4],[67,1,0],[67,1,1],[67,1,2],[67,1,3],[67,1,4],[67,2,0],[67,2,1],[67,2,2],[67,2,3],[67,2,4],[67,3,0],[67,3,1],[67,3,2],[67,3,3],[67,3,4],[67,4,0],[67,4,1],[67,4,2],[67,4,3],[67,4,4],[67,5,0],[67,5,1],[67,5,2],[67,5,3],[67,5,4],[67,6,0],[67,6,1],[67,6,2],[67,6,3],[67,6,4],[67,7,0],[67,7,1],[67,7,2],[67,7,3],[67,7,4],[67,8,0],[67,8,1],[67,8,2],[67,8,3],[67,8,4],[67,9,0],[67,9,1],[67,9,2],[67,9,3],[67,9,4],[68,0,0],[68,0,1],[68,0,2],[68,0,3],[68,0,4],[68,1,0],[68,1,1],[68,1,2],[68,1,3],[68,1,4],[68,2,0],[68,2,1],[68,2,2],[68,2,3],[68,2,4],[68,3,0],[68,3,1],[68,3,2],[68,3,3],[68,3,4],[68,4,0],[68,4,1],[68,4,2],[68,4,3],[68,4,4],[68,5,0],[68,5,1],[68,5,2],[68,5,3],[68,5,4],[68,6,0],[68,6,1],[68,6,2],[68,6,3],[68,6,4],[68,7,0],[68,7,1],[68,7,2],[68,7,3],[68,7,4],[68,8,0],[68,8,1],[68,8,2],[68,8,3],[68,8,4],[68,9,0],[68,9,1],[68,9,2],[68,9,3],[68,9,4],[69,0,0],[69,0,1],[69,0,2],[69,0,3],[69,0,4],[69,1,0],[69,1,1],[69,1,2],[69,1,3],[69,1,4],[69,2,0],[69,2,1],[69,2,2],[69,2,3],[69,2,4],[69,3,0],[69,3,1],[69,3,2],[69,3,3],[69,3,4],[69,4,0],[69,4,1],[69,4,2],[69,4,3],[69,4,4],[69,5,0],[69,5,1],[69,5,2],[69,5,3],[69,5,4],[69,6,0],[69,6,1],[69,6,2],[69,6,3],[69,6,4],[69,7,0],[69,7,1],[69,7,2],[69,7,3],[69,7,4],[69,8,0],[69,8,1],[69,8,2],[69,8,3],[69,8,4],[69,9,0],[69,9,1],[69,9,2],[69,9,3],[69,9,4],[0,0,0],[0,0,1],[0,0,2],[0,0,3],[0,0,4],[0,1,0],[0,1,1],[0,1,2],[0,1,3],[0,1,4],[0,2,0],[0,2,1],[0,2,2],[0,2,3],[0,2,4],[0,3,0],[0,3,1],[0,3,2],[0,3,3],[0,3,4],[0,4,0],[0,4,1],[0,4,2],[0,4,3],[0,4,4],[0,5,0],[0,5,1],[0,5,2],[0,5,3],[0,5,4],[0,6,0],[0,6,1],[0,6,2],[0,6,3],[0,6,4],[0,7,0],[0,7,1],[0,7,2],[0,7,3],[0,7,4],[0,8,0],[0,8,1],[0,8,2],[0,8,3],[0,8,4],[0,9,0],[0,9,1],[0,9,2],[0,9,3],[0,9,4],[1,0,0],[1,0,1],[1,0,2],[1,0,3],[1,0,4],[1,1,0],[1,1,1],[1,1,2],[1,1,3],[1,1,4],[1,2,0],[1,2,1],[1,2,2],[1,2,3],[1,2,4],[1,3,0],[1,3,1],[1,3,2],[1,3,3],[1,3,4],[1,4,0],[1,4,1],[1,4,2],[1,4,3],[1,4,4],[1,5,0],[1,5,1],[1,5,2],[1,5,3],[1,5,4],[1,6,0],[1,6,1],[1,6,2],[1,6,3],[1,6,4],[1,7,0],[1,7,1],[1,7,2],[1,7,3],[1,7,4],[1,8,0],[1,8,1],[1,8,2],[1,8,3],[1,8,4],[1,9,0],[1,9,1],[1,9,2],[1,9,3],[1,9,4],[2,0,0],[2,0,1],[2,0,2],[2,0,3],[2,0,4],[2,1,0],[2,1,1],[2,1,2],[2,1,3],[2,1,4],[2,2,0],[2,2,1],[2,2,2],[2,2,3],[2,2,4],[2,3,0],[2,3,1],[2,3,2],[2,3,3],[2,3,4],[2,4,0],[2,4,1],[2,4,2],[2,4,3],[2,4,4],[2,5,0],[2,5,1],[2,5,2],[2,5,3],[2,5,4],[2,6,0],[2,6,1],[2,6,2],[2,6,3],[2,6,4],[2,7,0],[2,7,1],[2,7,2],[2,7,3],[2,7,4],[2,8,0],[2,8,1],[2,8,2],[2,8,3],[2,8,4],[2,9,0],[2,9,1],[2,9,2],[2,9,3],[2,9,4],[3,0,0],[3,0,1],[3,0,2],[3,0,3],[3,0,4],[3,1,0],[3,1,1],[3,1,2],[3,1,3],[3,1,4],[3,2,0],[3,2,1],[3,2,2],[3,2,3],[3,2,4],[3,3,0],[3,3,1],[3,3,2],[3,3,3],[3,3,4],[3,4,0],[3,4,1],[3,4,2],[3,4,3],[3,4,4],[3,5,0],[3,5,1],[3,5,2],[3,5,3],[3,5,4],[3,6,0],[3,6,1],[3,6,2],[3,6,3],[3,6,4],[3,7,0],[3,7,1],[3,7,2],[3,7,3],[3,7,4],[3,8,0],[3,8,1],[3,8,2],[3,8,3],[3,8,4],[3,9,0],[3,9,1],[3,9,2],[3,9,3],[3,9,4],[4,0,0],[4,0,1],[4,0,2],[4,0,3],[4,0,4],[4,1,0],[4,1,1],[4,1,2],[4,1,3],[4,1,4],[4,2,0],[4,2,1],[4,2,2],[4,2,3],[4,2,4],[4,3,0],[4,3,1],[4,3,2],[4,3,3],[4,3,4],[4,4,0],[4,4,1],[4,4,2],[4,4,3],[4,4,4],[4,5,0],[4,5,1],[4,5,2],[4,5,3],[4,5,4],[4,6,0],[4,6,1],[4,6,2],[4,6,3],[4,6,4],[4,7,0],[4,7,1],[4,7,2],[4,7,3],[4,7,4],[4,8,0],[4,8,1],[4,8,2],[4,8,3],[4,8,4],[4,9,0],[4,9,1],[4,9,2],[4,9,3],[4,9,4],[5,0,0],[5,0,1],[5,0,2],[5,0,3],[5,0,4],[5,1,0],[5,1,1],[5,1,2],[5,1,3],[5,1,4],[5,2,0],[5,2,1],[5,2,2],[5,2,3],[5,2,4],[5,3,0],[5,3,1],[5,3,2],[5,3,3],[5,3,4],[5,4,0],[5,4,1],[5,4,2],[5,4,3],[5,4,4],[5,5,0],[5,5,1],[5,5,2],[5,5,3],[5,5,4],[5,6,0],[5,6,1],[5,6,2],[5,6,3],[5,6,4],[5,7,0],[5,7,1],[5,7,2],[5,7,3],[5,7,4],[5,8,0],[5,8,1],[5,8,2],[5,8,3],[5,8,4],[5,9,0],[5,9,1],[5,9,2],[5,9,3],[5,9,4],[6,0,0],[6,0,1],[6,0,2],[6,0,3],[6,0,4],[6,1,0],[6,1,1],[6,1,2],[6,1,3],[6,1,4],[6,2,0],[6,2,1],[6,2,2],[6,2,3],[6,2,4],[6,3,0],[6,3,1],[6,3,2],[6,3,3],[6,3,4],[6,4,0],[6,4,1],[6,4,2],[6,4,3],[6,4,4],[6,5,0],[6,5,1],[6,5,2],[6,5,3],[6,5,4],[6,6,0],[6,6,1],[6,6,2],[6,6,3],[6,6,4],[6,7,0],[6,7,1],[6,7,2],[6,7,3],[6,7,4],[6,8,0],[6,8,1],[6,8,2],[6,8,3],[6,8,4],[6,9,0],[6,9,1],[6,9,2],[6,9,3],[6,9,4],[7,0,0],[7,0,1],[7,0,2],[7,0,3],[7,0,4],[7,1,0],[7,1,1],[7,1,2],[7,1,3],[7,1,4],[7,2,0],[7,2,1],[7,2,2],[7,2,3],[7,2,4],[7,3,0],[7,3,1],[7,3,2],[7,3,3],[7,3,4],[7,4,0],[7,4,1],[7,4,2],[7,4,3],[7,4,4],[7,5,0],[7,5,1],[7,5,2],[7,5,3],[7,5,4],[7,6,0],[7,6,1],[7,6,2],[7,6,3],[7,6,4],[7,7,0],[7,7,1],[7,7,2],[7,7,3],[7,7,4],[7,8,0],[7,8,1],[7,8,2],[7,8,3],[7,8,4],[7,9,0],[7,9,1],[7,9,2],[7,9,3],[7,9,4],[8,0,0],[8,0,1],[8,0,2],[8,0,3],[8,0,4],[8,1,0],[8,1,1],[8,1,2],[8,1,3],[8,1,4],[8,2,0],[8,2,1],[8,2,2],[8,2,3],[8,2,4],[8,3,0],[8,3,1],[8,3,2],[8,3,3],[8,3,4],[8,4,0],[8,4,1],[8,4,2],[8,4,3],[8,4,4],[8,5,0],[8,5,1],[8,5,2],[8,5,3],[8,5,4],[8,6,0],[8,6,1],[8,6,2],[8,6,3],[8,6,4],[8,7,0],[8,7,1],[8,7,2],[8,7,3],[8,7,4],[8,8,0],[8,8,1],[8,8,2],[8,8,3],[8,8,4],[8,9,0],[8,9,1],[8,9,2],[8,9,3],[8,9,4],[9,0,0],[9,0,1],[9,0,2],[9,0,3],[9,0,4],[9,1,0],[9,1,1],[9,1,2],[9,1,3],[9,1,4],[9,2,0],[9,2,1],[9,2,2],[9,2,3],[9,2,4],[9,3,0],[9,3,1],[9,3,2],[9,3,3],[9,3,4],[9,4,0],[9,4,1],[9,4,2],[9,4,3],[9,4,4],[9,5,0],[9,5,1],[9,5,2],[9,5,3],[9,5,4],[9,6,0],[9,6,1],[9,6,2],[9,6,3],[9,6,4],[9,7,0],[9,7,1],[9,7,2],[9,7,3],[9,7,4],[9,8,0],[9,8,1],[9,8,2],[9,8,3],[9,8,4],[9,9,0],[9,9,1],[9,9,2],[9,9,3],[9,9,4],[10,0,0],[10,0,1],[10,0,2],[10,0,3],[10,0,4],[10,1,0],[10,1,1],[10,1,2],[10,1,3],[10,1,4],[10,2,0],[10,2,1],[10,2,2],[10,2,3],[10,2,4],[10,3,0],[10,3,1],[10,3,2],[10,3,3],[10,3,4],[10,4,0],[10,4,1],[10,4,2],[10,4,3],[10,4,4],[10,5,0],[10,5,1],[10,5,2],[10,5,3],[10,5,4],[10,6,0],[10,6,1],[10,6,2],[10,6,3],[10,6,4],[10,7,0],[10,7,1],[10,7,2],[10,7,3],[10,7,4],[10,8,0],[10,8,1],[10,8,2],[10,8,3],[10,8,4],[10,9,0],[10,9,1],[10,9,2],[10,9,3],[10,9,4],[11,0,0],[11,0,1],[11,0,2],[11,0,3],[11,0,4],[11,1,0],[11,1,1],[11,1,2],[11,1,3],[11,1,4],[11,2,0],[11,2,1],[11,2,2],[11,2,3],[11,2,4],[11,3,0],[11,3,1],[11,3,2],[11,3,3],[11,3,4],[11,4,0],[11,4,1],[11,4,2],[11,4,3],[11,4,4],[11,5,0],[11,5,1],[11,5,2],[11,5,3],[11,5,4],[11,6,0],[11,6,1],[11,6,2],[11,6,3],[11,6,4],[11,7,0],[11,7,1],[11,7,2],[11,7,3],[11,7,4],[11,8,0],[11,8,1],[11,8,2],[11,8,3],[11,8,4],[11,9,0],[11,9,1],[11,9,2],[11,9,3],[11,9,4],[12,0,0],[12,0,1],[12,0,2],[12,0,3],[12,0,4],[12,1,0],[12,1,1],[12,1,2],[12,1,3],[12,1,4],[12,2,0],[12,2,1],[12,2,2],[12,2,3],[12,2,4],[12,3,0],[12,3,1],[12,3,2],[12,3,3],[12,3,4],[12,4,0],[12,4,1],[12,4,2],[12,4,3],[12,4,4],[12,5,0],[12,5,1],[12,5,2],[12,5,3],[12,5,4],[12,6,0],[12,6,1],[12,6,2],[12,6,3],[12,6,4],[12,7,0],[12,7,1],[12,7,2],[12,7,3],[12,7,4],[12,8,0],[12,8,1],[12,8,2],[12,8,3],[12,8,4],[12,9,0],[12,9,1],[12,9,2],[12,9,3],[12,9,4],[13,0,0],[13,0,1],[13,0,2],[13,0,3],[13,0,4],[13,1,0],[13,1,1],[13,1,2],[13,1,3],[13,1,4],[13,2,0],[13,2,1],[13,2,2],[13,2,3],[13,2,4],[13,3,0],[13,3,1],[13,3,2],[13,3,3],[13,3,4],[13,4,0],[13,4,1],[13,4,2],[13,4,3],[13,4,4],[13,5,0],[13,5,1],[13,5,2],[13,5,3],[13,5,4],[13,6,0],[13,6,1],[13,6,2],[13,6,3],[13,6,4],[13,7,0],[13,7,1],[13,7,2],[13,7,3],[13,7,4],[13,8,0],[13,8,1],[13,8,2],[13,8,3],[13,8,4],[13,9,0],[13,9,1],[13,9,2],[13,9,3],[13,9,4],[14,0,0],[14,0,1],[14,0,2],[14,0,3],[14,0,4],[14,1,0],[14,1,1],[14,1,2],[14,1,3],[14,1,4],[14,2,0],[14,2,1],[14,2,2],[14,2,3],[14,2,4],[14,3,0],[14,3,1],[14,3,2],[14,3,3],[14,3,4],[14,4,0],[14,4,1],[14,4,2],[14,4,3],[14,4,4],[14,5,0],[14,5,1],[14,5,2],[14,5,3],[14,5,4],[14,6,0],[14,6,1],[14,6,2],[14,6,3],[14,6,4],[14,7,0],[14,7,1],[14,7,2],[14,7,3],[14,7,4],[14,8,0],[14,8,1],[14,8,2],[14,8,3],[14,8,4],[14,9,0],[14,9,1],[14,9,2],[14,9,3],[14,9,4],[15,0,0],[15,0,1],[15,0,2],[15,0,3],[15,0,4],[15,1,0],[15,1,1],[15,1,2],[15,1,3],[15,1,4],[15,2,0],[15,2,1],[15,2,2],[15,2,3],[15,2,4],[15,3,0],[15,3,1],[15,3,2],[15,3,3],[15,3,4],[15,4,0],[15,4,1],[15,4,2],[15,4,3],[15,4,4],[15,5,0],[15,5,1],[15,5,2],[15,5,3],[15,5,4],[15,6,0],[15,6,1],[15,6,2],[15,6,3],[15,6,4],[15,7,0],[15,7,1],[15,7,2],[15,7,3],[15,7,4],[15,8,0],[15,8,1],[15,8,2],[15,8,3],[15,8,4],[15,9,0],[15,9,1],[15,9,2],[15,9,3],[15,9,4],[16,0,0],[16,0,1],[16,0,2],[16,0,3],[16,0,4],[16,1,0],[16,1,1],[16,1,2],[16,1,3],[16,1,4],[16,2,0],[16,2,1],[16,2,2],[16,2,3],[16,2,4],[16,3,0],[16,3,1],[16,3,2],[16,3,3],[16,3,4],[16,4,0],[16,4,1],[16,4,2],[16,4,3],[16,4,4],[16,5,0],[16,5,1],[16,5,2],[16,5,3],[16,5,4],[16,6,0],[16,6,1],[16,6,2],[16,6,3],[16,6,4],[16,7,0],[16,7,1],[16,7,2],[16,7,3],[16,7,4],[16,8,0],[16,8,1],[16,8,2],[16,8,3],[16,8,4],[16,9,0],[16,9,1],[16,9,2],[16,9,3],[16,9,4],[17,0,0],[17,0,1],[17,0,2],[17,0,3],[17,0,4],[17,1,0],[17,1,1],[17,1,2],[17,1,3],[17,1,4],[17,2,0],[17,2,1],[17,2,2],[17,2,3],[17,2,4],[17,3,0],[17,3,1],[17,3,2],[17,3,3],[17,3,4],[17,4,0],[17,4,1],[17,4,2],[17,4,3],[17,4,4],[17,5,0],[17,5,1],[17,5,2],[17,5,3],[17,5,4],[17,6,0],[17,6,1],[17,6,2],[17,6,3],[17,6,4],[17,7,0],[17,7,1],[17,7,2],[17,7,3],[17,7,4],[17,8,0],[17,8,1],[17,8,2],[17,8,3],[17,8,4],[17,9,0],[17,9,1],[17,9,2],[17,9,3],[17,9,4],[18,0,0],[18,0,1],[18,0,2],[18,0,3],[18,0,4],[18,1,0],[18,1,1],[18,1,2],[18,1,3],[18,1,4],[18,2,0],[18,2,1],[18,2,2],[18,2,3],[18,2,4],[18,3,0],[18,3,1],[18,3,2],[18,3,3],[18,3,4],[18,4,0],[18,4,1],[18,4,2],[18,4,3],[18,4,4],[18,5,0],[18,5,1],[18,5,2],[18,5,3],[18,5,4],[18,6,0],[18,6,1],[18,6,2],[18,6,3],[18,6,4],[18,7,0],[18,7,1],[18,7,2],[18,7,3],[18,7,4],[18,8,0],[18,8,1],[18,8,2],[18,8,3],[18,8,4],[18,9,0],[18,9,1],[18,9,2],[18,9,3],[18,9,4],[19,0,0],[19,0,1],[19,0,2],[19,0,3],[19,0,4],[19,1,0],[19,1,1],[19,1,2],[19,1,3],[19,1,4],[19,2,0],[19,2,1],[19,2,2],[19,2,3],[19,2,4],[19,3,0],[19,3,1],[19,3,2],[19,3,3],[19,3,4],[19,4,0],[19,4,1],[19,4,2],[19,4,3],[19,4,4],[19,5,0],[19,5,1],[19,5,2],[19,5,3],[19,5,4],[19,6,0],[19,6,1],[19,6,2],[19,6,3],[19,6,4],[19,7,0],[19,7,1],[19,7,2],[19,7,3],[19,7,4],[19,8,0],[19,8,1],[19,8,2],[19,8,3],[19,8,4],[19,9,0],[19,9,1],[19,9,2],[19,9,3],[19,9,4],[20,0,0],[20,0,1],[20,0,2],[20,0,3],[20,0,4],[20,1,0],[20,1,1],[20,1,2],[20,1,3],[20,1,4],[20,2,0],[20,2,1],[20,2,2],[20,2,3],[20,2,4],[20,3,0],[20,3,1],[20,3,2],[20,3,3],[20,3,4],[20,4,0],[20,4,1],[20,4,2],[20,4,3],[20,4,4],[20,5,0],[20,5,1],[20,5,2],[20,5,3],[20,5,4],[20,6,0],[20,6,1],[20,6,2],[20,6,3],[20,6,4],[20,7,0],[20,7,1],[20,7,2],[20,7,3],[20,7,4],[20,8,0],[20,8,1],[20,8,2],[20,8,3],[20,8,4],[20,9,0],[20,9,1],[20,9,2],[20,9,3],[20,9,4],[21,0,0],[21,0,1],[21,0,2],[21,0,3],[21,0,4],[21,1,0],[21,1,1],[21,1,2],[21,1,3],[21,1,4],[21,2,0],[21,2,1],[21,2,2],[21,2,3],[21,2,4],[21,3,0],[21,3,1],[21,3,2],[21,3,3],[21,3,4],[21,4,0],[21,4,1],[21,4,2],[21,4,3],[21,4,4],[21,5,0],[21,5,1],[21,5,2],[21,5,3],[21,5,4],[21,6,0],[21,6,1],[21,6,2],[21,6,3],[21,6,4],[21,7,0],[21,7,1],[21,7,2],[21,7,3],[21,7,4],[21,8,0],[21,8,1],[21,8,2],[21,8,3],[21,8,4],[21,9,0],[21,9,1],[21,9,2],[21,9,3],[21,9,4],[22,0,0],[22,0,1],[22,0,2],[22,0,3],[22,0,4],[22,1,0],[22,1,1],[22,1,2],[22,1,3],[22,1,4],[22,2,0],[22,2,1],[22,2,2],[22,2,3],[22,2,4],[22,3,0],[22,3,1],[22,3,2],[22,3,3],[22,3,4],[22,4,0],[22,4,1],[22,4,2],[22,4,3],[22,4,4],[22,5,0],[22,5,1],[22,5,2],[22,5,3],[22,5,4],[22,6,0],[22,6,1],[22,6,2],[22,6,3],[22,6,4],[22,7,0],[22,7,1],[22,7,2],[22,7,3],[22,7,4],[22,8,0],[22,8,1],[22,8,2],[22,8,3],[22,8,4],[22,9,0],[22,9,1],[22,9,2],[22,9,3],[22,9,4],[23,0,0],[23,0,1],[23,0,2],[23,0,3],[23,0,4],[23,1,0],[23,1,1],[23,1,2],[23,1,3],[23,1,4],[23,2,0],[23,2,1],[23,2,2],[23,2,3],[23,2,4],[23,3,0],[23,3,1],[23,3,2],[23,3,3],[23,3,4],[23,4,0],[23,4,1],[23,4,2],[23,4,3],[23,4,4],[23,5,0],[23,5,1],[23,5,2],[23,5,3],[23,5,4],[23,6,0],[23,6,1],[23,6,2],[23,6,3],[23,6,4],[23,7,0],[23,7,1],[23,7,2],[23,7,3],[23,7,4],[23,8,0],[23,8,1],[23,8,2],[23,8,3],[23,8,4],[23,9,0],[23,9,1],[23,9,2],[23,9,3],[23,9,4],[24,0,0],[24,0,1],[24,0,2],[24,0,3],[24,0,4],[24,1,0],[24,1,1],[24,1,2],[24,1,3],[24,1,4],[24,2,0],[24,2,1],[24,2,2],[24,2,3],[24,2,4],[24,3,0],[24,3,1],[24,3,2],[24,3,3],[24,3,4],[24,4,0],[24,4,1],[24,4,2],[24,4,3],[24,4,4],[24,5,0],[24,5,1],[24,5,2],[24,5,3],[24,5,4],[24,6,0],[24,6,1],[24,6,2],[24,6,3],[24,6,4],[24,7,0],[24,7,1],[24,7,2],[24,7,3],[24,7,4],[24,8,0],[24,8,1],[24,8,2],[24,8,3],[24,8,4],[24,9,0],[24,9,1],[24,9,2],[24,9,3],[24,9,4],[25,0,0],[25,0,1],[25,0,2],[25,0,3],[25,0,4],[25,1,0],[25,1,1],[25,1,2],[25,1,3],[25,1,4],[25,2,0],[25,2,1],[25,2,2],[25,2,3],[25,2,4],[25,3,0],[25,3,1],[25,3,2],[25,3,3],[25,3,4],[25,4,0],[25,4,1],[25,4,2],[25,4,3],[25,4,4],[25,5,0],[25,5,1],[25,5,2],[25,5,3],[25,5,4],[25,6,0],[25,6,1],[25,6,2],[25,6,3],[25,6,4],[25,7,0],[25,7,1],[25,7,2],[25,7,3],[25,7,4],[25,8,0],[25,8,1],[25,8,2],[25,8,3],[25,8,4],[25,9,0],[25,9,1],[25,9,2],[25,9,3],[25,9,4],[26,0,0],[26,0,1],[26,0,2],[26,0,3],[26,0,4],[26,1,0],[26,1,1],[26,1,2],[26,1,3],[26,1,4],[26,2,0],[26,2,1],[26,2,2],[26,2,3],[26,2,4],[26,3,0],[26,3,1],[26,3,2],[26,3,3],[26,3,4],[26,4,0],[26,4,1],[26,4,2],[26,4,3],[26,4,4],[26,5,0],[26,5,1],[26,5,2],[26,5,3],[26,5,4],[26,6,0],[26,6,1],[26,6,2],[26,6,3],[26,6,4],[26,7,0],[26,7,1],[26,7,2],[26,7,3],[26,7,4],[26,8,0],[26,8,1],[26,8,2],[26,8,3],[26,8,4],[26,9,0],[26,9,1],[26,9,2],[26,9,3],[26,9,4],[27,0,0],[27,0,1],[27,0,2],[27,0,3],[27,0,4],[27,1,0],[27,1,1],[27,1,2],[27,1,3],[27,1,4],[27,2,0],[27,2,1],[27,2,2],[27,2,3],[27,2,4],[27,3,0],[27,3,1],[27,3,2],[27,3,3],[27,3,4],[27,4,0],[27,4,1],[27,4,2],[27,4,3],[27,4,4],[27,5,0],[27,5,1],[27,5,2],[27,5,3],[27,5,4],[27,6,0],[27,6,1],[27,6,2],[27,6,3],[27,6,4],[27,7,0],[27,7,1],[27,7,2],[27,7,3],[27,7,4],[27,8,0],[27,8,1],[27,8,2],[27,8,3],[27,8,4],[27,9,0],[27,9,1],[27,9,2],[27,9,3],[27,9,4],[28,0,0],[28,0,1],[28,0,2],[28,0,3],[28,0,4],[28,1,0],[28,1,1],[28,1,2],[28,1,3],[28,1,4],[28,2,0],[28,2,1],[28,2,2],[28,2,3],[28,2,4],[28,3,0],[28,3,1],[28,3,2],[28,3,3],[28,3,4],[28,4,0],[28,4,1],[28,4,2],[28,4,3],[28,4,4],[28,5,0],[28,5,1],[28,5,2],[28,5,3],[28,5,4],[28,6,0],[28,6,1],[28,6,2],[28,6,3],[28,6,4],[28,7,0],[28,7,1],[28,7,2],[28,7,3],[28,7,4],[28,8,0],[28,8,1],[28,8,2],[28,8,3],[28,8,4],[28,9,0],[28,9,1],[28,9,2],[28,9,3],[28,9,4]]},"new_state":"ChooseAlive","max_cell_count":null,"reduce_max":false,"rule_string":"B2n3/S23-q","diagonal_width":null,"skip_subperiod":true,"skip_subsymmetry":false,"known_cells":[{"coord":[0,10,0],"state":0},{"coord":[1,10,0],"state":0},{"coord":[2,10,0],"state":0},{"coord":[3,10,0],"state":1},{"coord":[4,10,0],"state":0},{"coord":[5,10,0],"state":0},{"coord":[6,10,0],"state":1},{"coord":[7,10,0],"state":0},{"coord":[8,10,0],"state":0},{"coord":[9,10,0],"state":0},{"coord":[0,11,0],"state":0},{"coord":[1,11,0],"state":0},{"coord":[2,11,0],"state":0},{"coord":[3,11,0],"state":1},{"coord":[4,11,0],"state":0},{"coord":[5,11,0],"state":0},{"coord":[6,11,0],"state":1},{"coord":[7,11,0],"state":0},{"coord":[8,11,0],"state":0},{"coord":[9,11,0],"state":0},{"coord":[0,12,0],"state":0},{"coord":[1,12,0],"state":0},{"coord":[2,12,0],"state":0},{"coord":[3,12,0],"state":0},{"coord":[4,12,0],"state":1},{"coord":[5,12,0],"state":1},{"coord":[6,12,0],"state":0},{"coord":[7,12,0],"state":0},{"coord":[8,12,0],"state":0},{"coord":[9,12,0],"state":0},{"coord":[0,13,0],"state":0},{"coord":[1,13,0],"state":0},{"coord":[2,13,0],"state":0},{"coord":[3,13,0],"state":0},{"coord":[4,13,0],"state":1},{"coord":[5,13,0],"state":1},{"coord":[6,13,0],"state":0},{"coord":[7,13,0],"state":0},{"coord":[8,13,0],"state":0},{"coord":[9,13,0],"state":0},{"coord":[0,14,0],"state":0},{"coord":[1,14,0],"state":0},{"coord":[2,14,0],"state":0},{"coord":[3,14,0],"state":0},{"coord":[4,14,0],"state":0},{"coord":[5,14,0],"state":0},{"coord":[6,14,0],"state":0},{"coord":[7,14,0],"state":0},{"coord":[8,14,0],"state":0},{"coord":[9,14,0],"state":0},{"coord":[0,15,0],"state":0},{"coord":[1,15,0],"state":0},{"coord":[2,15,0],"state":0},{"coord":[3,15,0],"state":1},{"coord":[4,15,0],"state":0},{"coord":[5,15,0],"state":0},{"coord":[6,15,0],"state":1},{"coord":[7,15,0],"state":0},{"coord":[8,15,0],"state":0},{"coord":[9,15,0],"state":0},{"coord":[0,16,0],"state":0},{"coord":[1,16,0],"state":0},{"coord":[2,16,0],"state":0},{"coord":[3,16,0],"state":1},{"coord":[4,16,0],"state":0},{"coord":[5,16,0],"state":0},{"coord":[6,16,0],"state":1},{"coord":[7,16,0],"state":0},{"coord":[8,16,0],"state":0},{"coord":[9,16,0],"state":0},{"coord":[0,17,0],"state":0},{"coord":[1,17,0],"state":0},{"coord":[2,17,0],"state":0},{"coord":[3,17,0],"state":0},{"coord":[4,17,0],"state":1},{"coord":[5,17,0],"state":1},{"coord":[6,17,0],"state":0},{"coord":[7,17,0],"state":0},{"coord":[8,17,0],"state":0},{"coord":[9,17,0],"state":0},{"coord":[0,18,0],"state":0},{"coord":[1,18,0],"state":0},{"coord":[2,18,0],"state":0},{"coord":[3,18,0],"state":0},{"coord":[4,18,0],"state":1},{"coord":[5,18,0],"state":1},{"coord":[6,18,0],"state":0},{"coord":[7,18,0],"state":0},{"coord":[8,18,0],"state":0},{"coord":[9,18,0],"state":0},{"coord":[0,19,0],"state":0},{"coord":[1,19,0],"state":0},{"coord":[2,19,0],"state":0},{"coord":[3,19,0],"state":0},{"coord":[4,19,0],"state":0},{"coord":[5,19,0],"state":0},{"coord":[6,19,0],"state":0},{"coord":[7,19,0],"state":0},{"coord":[8,19,0],"state":0},{"coord":[9,19,0],"state":0},{"coord":[0,20,0],"state":0},{"coord":[1,20,0],"state":0},{"coord":[2,20,0],"state":0},{"coord":[3,20,0],"state":1},{"coord":[4,20,0],"state":0},{"coord":[5,20,0],"state":0},{"coord":[6,20,0],"state":1},{"coord":[7,20,0],"state":0},{"coord":[8,20,0],"state":0},{"coord":[9,20,0],"state":0},{"coord":[0,21,0],"state":0},{"coord":[1,21,0],"state":0},{"coord":[2,21,0],"state":0},{"coord":[3,21,0],"state":1},{"coord":[4,21,0],"state":0},{"coord":[5,21,0],"state":0},{"coord":[6,21,0],"state":1},{"coord":[7,21,0],"state":0},{"coord":[8,21,0],"state":0},{"coord":[9,21,0],"state":0},{"coord":[0,22,0],"state":0},{"coord":[1,22,0],"state":0},{"coord":[2,22,0],"state":0},{"coord":[3,22,0],"state":0},{"coord":[4,22,0],"state":1},{"coord":[5,22,0],"state":1},{"coord":[6,22,0],"state":0},{"coord":[7,22,0],"state":0},{"coord":[8,22,0],"state":0},{"coord":[9,22,0],"state":0},{"coord":[0,23,0],"state":0},{"coord":[1,23,0],"state":0},{"coord":[2,23,0],"state":0},{"coord":[3,23,0],"state":0},{"coord":[4,23,0],"state":1},{"coord":[5,23,0],"state":1},{"coord":[6,23,0],"state":0},{"coord":[7,23,0],"state":0},{"coord":[8,23,0],"state":0},{"coord":[9,23,0],"state":0},{"coord":[0,24,0],"state":0},{"coord":[1,24,0],"state":0},{"coord":[2,24,0],"state":0},{"coord":[3,24,0],"state":0},{"coord":[4,24,0],"state":0},{"coord":[5,24,0],"state":0},{"coord":[6,24,0],"state":0},{"coord":[7,24,0],"state":0},{"coord":[8,24,0],"state":0},{"coord":[9,24,0],"state":0},{"coord":[0,25,0],"state":0},{"coord":[1,25,0],"state":0},{"coord":[2,25,0],"state":0},{"coord":[3,25,0],"state":1},{"coord":[4,25,0],"state":0},{"coord":[5,25,0],"state":0},{"coord":[6,25,0],"state":1},{"coord":[7,25,0],"state":0},{"coord":[8,25,0],"state":0},{"coord":[9,25,0],"state":0},{"coord":[0,26,0],"state":0},{"coord":[1,26,0],"state":0},{"coord":[2,26,0],"state":0},{"coord":[3,26,0],"state":1},{"coord":[4,26,0],"state":0},{"coord":[5,26,0],"state":0},{"coord":[6,26,0],"state":1},{"coord":[7,26,0],"state":0},{"coord":[8,26,0],"state":0},{"coord":[9,26,0],"state":0},{"coord":[0,27,0],"state":0},{"coord":[1,27,0],"state":0},{"coord":[2,27,0],"state":0},{"coord":[3,27,0],"state":0},{"coord":[4,27,0],"state":1},{"coord":[5,27,0],"state":1},{"coord":[6,27,0],"state":0},{"coord":[7,27,0],"state":0},{"coord":[8,27,0],"state":0},{"coord":[9,27,0],"state":0},{"coord":[0,28,0],"state":0},{"coord":[1,28,0],"state":0},{"coord":[2,28,0],"state":0},{"coord":[3,28,0],"state":0},{"coord":[4,28,0],"state":1},{"coord":[5,28,0],"state":1},{"coord":[6,28,0],"state":0},{"coord":[7,28,0],"state":0},{"coord":[8,28,0],"state":0},{"coord":[9,28,0],"state":0},{"coord":[0,29,0],"state":0},{"coord":[1,29,0],"state":0},{"coord":[2,29,0],"state":0},{"coord":[3,29,0],"state":0},{"coord":[4,29,0],"state":0},{"coord":[5,29,0],"state":0},{"coord":[6,29,0],"state":0},{"coord":[7,29,0],"state":0},{"coord":[8,29,0],"state":0},{"coord":[9,29,0],"state":0}],"backjump":false},"conflicts":0,"set_stack":[],"check_index":0,"timing":{"secs":0,"nanos":0},"extra":{"max_partial":"x = 10, y = 100, rule = B2n3/S23-q\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n...o..o...$\n...o..o...$\n....oo....$\n....oo....$\n..........$\n...o..o...$\n...o..o...$\n....oo....$\n....oo....$\n..........$\n...o..o...$\n...o..o...$\n....oo....$\n....oo....$\n..........$\n...o..o...$\n...o..o...$\n....oo....$\n....oo....$\n..........$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????!\n","max_partial_count":"32"}}

结果并没有从 29 行开始搜,而是开始按列搜。

@HuntingBot
Copy link
Author

grass,我好像把行号和列号搞反了……

@AlephAlpha
Copy link
Owner

@AlephAlpha 这个 search_order 还能用吗?

把下面这个 save 导入 rlifesrc:

{"config":{"width":10,"height":70,"period":5,"dx":0,"dy":0,"transform":"Id","symmetry":"D2|","search_order":{"FromVec":[[29,0,0],[29,0,1],[29,0,2],[29,0,3],[29,0,4],[29,1,0],[29,1,1],[29,1,2],[29,1,3],[29,1,4],[29,2,0],[29,2,1],[29,2,2],[29,2,3],[29,2,4],[29,3,0],[29,3,1],[29,3,2],[29,3,3],[29,3,4],[29,4,0],[29,4,1],[29,4,2],[29,4,3],[29,4,4],[29,5,0],[29,5,1],[29,5,2],[29,5,3],[29,5,4],[29,6,0],[29,6,1],[29,6,2],[29,6,3],[29,6,4],[29,7,0],[29,7,1],[29,7,2],[29,7,3],[29,7,4],[29,8,0],[29,8,1],[29,8,2],[29,8,3],[29,8,4],[29,9,0],[29,9,1],[29,9,2],[29,9,3],[29,9,4],[30,0,0],[30,0,1],[30,0,2],[30,0,3],[30,0,4],[30,1,0],[30,1,1],[30,1,2],[30,1,3],[30,1,4],[30,2,0],[30,2,1],[30,2,2],[30,2,3],[30,2,4],[30,3,0],[30,3,1],[30,3,2],[30,3,3],[30,3,4],[30,4,0],[30,4,1],[30,4,2],[30,4,3],[30,4,4],[30,5,0],[30,5,1],[30,5,2],[30,5,3],[30,5,4],[30,6,0],[30,6,1],[30,6,2],[30,6,3],[30,6,4],[30,7,0],[30,7,1],[30,7,2],[30,7,3],[30,7,4],[30,8,0],[30,8,1],[30,8,2],[30,8,3],[30,8,4],[30,9,0],[30,9,1],[30,9,2],[30,9,3],[30,9,4],[31,0,0],[31,0,1],[31,0,2],[31,0,3],[31,0,4],[31,1,0],[31,1,1],[31,1,2],[31,1,3],[31,1,4],[31,2,0],[31,2,1],[31,2,2],[31,2,3],[31,2,4],[31,3,0],[31,3,1],[31,3,2],[31,3,3],[31,3,4],[31,4,0],[31,4,1],[31,4,2],[31,4,3],[31,4,4],[31,5,0],[31,5,1],[31,5,2],[31,5,3],[31,5,4],[31,6,0],[31,6,1],[31,6,2],[31,6,3],[31,6,4],[31,7,0],[31,7,1],[31,7,2],[31,7,3],[31,7,4],[31,8,0],[31,8,1],[31,8,2],[31,8,3],[31,8,4],[31,9,0],[31,9,1],[31,9,2],[31,9,3],[31,9,4],[32,0,0],[32,0,1],[32,0,2],[32,0,3],[32,0,4],[32,1,0],[32,1,1],[32,1,2],[32,1,3],[32,1,4],[32,2,0],[32,2,1],[32,2,2],[32,2,3],[32,2,4],[32,3,0],[32,3,1],[32,3,2],[32,3,3],[32,3,4],[32,4,0],[32,4,1],[32,4,2],[32,4,3],[32,4,4],[32,5,0],[32,5,1],[32,5,2],[32,5,3],[32,5,4],[32,6,0],[32,6,1],[32,6,2],[32,6,3],[32,6,4],[32,7,0],[32,7,1],[32,7,2],[32,7,3],[32,7,4],[32,8,0],[32,8,1],[32,8,2],[32,8,3],[32,8,4],[32,9,0],[32,9,1],[32,9,2],[32,9,3],[32,9,4],[33,0,0],[33,0,1],[33,0,2],[33,0,3],[33,0,4],[33,1,0],[33,1,1],[33,1,2],[33,1,3],[33,1,4],[33,2,0],[33,2,1],[33,2,2],[33,2,3],[33,2,4],[33,3,0],[33,3,1],[33,3,2],[33,3,3],[33,3,4],[33,4,0],[33,4,1],[33,4,2],[33,4,3],[33,4,4],[33,5,0],[33,5,1],[33,5,2],[33,5,3],[33,5,4],[33,6,0],[33,6,1],[33,6,2],[33,6,3],[33,6,4],[33,7,0],[33,7,1],[33,7,2],[33,7,3],[33,7,4],[33,8,0],[33,8,1],[33,8,2],[33,8,3],[33,8,4],[33,9,0],[33,9,1],[33,9,2],[33,9,3],[33,9,4],[34,0,0],[34,0,1],[34,0,2],[34,0,3],[34,0,4],[34,1,0],[34,1,1],[34,1,2],[34,1,3],[34,1,4],[34,2,0],[34,2,1],[34,2,2],[34,2,3],[34,2,4],[34,3,0],[34,3,1],[34,3,2],[34,3,3],[34,3,4],[34,4,0],[34,4,1],[34,4,2],[34,4,3],[34,4,4],[34,5,0],[34,5,1],[34,5,2],[34,5,3],[34,5,4],[34,6,0],[34,6,1],[34,6,2],[34,6,3],[34,6,4],[34,7,0],[34,7,1],[34,7,2],[34,7,3],[34,7,4],[34,8,0],[34,8,1],[34,8,2],[34,8,3],[34,8,4],[34,9,0],[34,9,1],[34,9,2],[34,9,3],[34,9,4],[35,0,0],[35,0,1],[35,0,2],[35,0,3],[35,0,4],[35,1,0],[35,1,1],[35,1,2],[35,1,3],[35,1,4],[35,2,0],[35,2,1],[35,2,2],[35,2,3],[35,2,4],[35,3,0],[35,3,1],[35,3,2],[35,3,3],[35,3,4],[35,4,0],[35,4,1],[35,4,2],[35,4,3],[35,4,4],[35,5,0],[35,5,1],[35,5,2],[35,5,3],[35,5,4],[35,6,0],[35,6,1],[35,6,2],[35,6,3],[35,6,4],[35,7,0],[35,7,1],[35,7,2],[35,7,3],[35,7,4],[35,8,0],[35,8,1],[35,8,2],[35,8,3],[35,8,4],[35,9,0],[35,9,1],[35,9,2],[35,9,3],[35,9,4],[36,0,0],[36,0,1],[36,0,2],[36,0,3],[36,0,4],[36,1,0],[36,1,1],[36,1,2],[36,1,3],[36,1,4],[36,2,0],[36,2,1],[36,2,2],[36,2,3],[36,2,4],[36,3,0],[36,3,1],[36,3,2],[36,3,3],[36,3,4],[36,4,0],[36,4,1],[36,4,2],[36,4,3],[36,4,4],[36,5,0],[36,5,1],[36,5,2],[36,5,3],[36,5,4],[36,6,0],[36,6,1],[36,6,2],[36,6,3],[36,6,4],[36,7,0],[36,7,1],[36,7,2],[36,7,3],[36,7,4],[36,8,0],[36,8,1],[36,8,2],[36,8,3],[36,8,4],[36,9,0],[36,9,1],[36,9,2],[36,9,3],[36,9,4],[37,0,0],[37,0,1],[37,0,2],[37,0,3],[37,0,4],[37,1,0],[37,1,1],[37,1,2],[37,1,3],[37,1,4],[37,2,0],[37,2,1],[37,2,2],[37,2,3],[37,2,4],[37,3,0],[37,3,1],[37,3,2],[37,3,3],[37,3,4],[37,4,0],[37,4,1],[37,4,2],[37,4,3],[37,4,4],[37,5,0],[37,5,1],[37,5,2],[37,5,3],[37,5,4],[37,6,0],[37,6,1],[37,6,2],[37,6,3],[37,6,4],[37,7,0],[37,7,1],[37,7,2],[37,7,3],[37,7,4],[37,8,0],[37,8,1],[37,8,2],[37,8,3],[37,8,4],[37,9,0],[37,9,1],[37,9,2],[37,9,3],[37,9,4],[38,0,0],[38,0,1],[38,0,2],[38,0,3],[38,0,4],[38,1,0],[38,1,1],[38,1,2],[38,1,3],[38,1,4],[38,2,0],[38,2,1],[38,2,2],[38,2,3],[38,2,4],[38,3,0],[38,3,1],[38,3,2],[38,3,3],[38,3,4],[38,4,0],[38,4,1],[38,4,2],[38,4,3],[38,4,4],[38,5,0],[38,5,1],[38,5,2],[38,5,3],[38,5,4],[38,6,0],[38,6,1],[38,6,2],[38,6,3],[38,6,4],[38,7,0],[38,7,1],[38,7,2],[38,7,3],[38,7,4],[38,8,0],[38,8,1],[38,8,2],[38,8,3],[38,8,4],[38,9,0],[38,9,1],[38,9,2],[38,9,3],[38,9,4],[39,0,0],[39,0,1],[39,0,2],[39,0,3],[39,0,4],[39,1,0],[39,1,1],[39,1,2],[39,1,3],[39,1,4],[39,2,0],[39,2,1],[39,2,2],[39,2,3],[39,2,4],[39,3,0],[39,3,1],[39,3,2],[39,3,3],[39,3,4],[39,4,0],[39,4,1],[39,4,2],[39,4,3],[39,4,4],[39,5,0],[39,5,1],[39,5,2],[39,5,3],[39,5,4],[39,6,0],[39,6,1],[39,6,2],[39,6,3],[39,6,4],[39,7,0],[39,7,1],[39,7,2],[39,7,3],[39,7,4],[39,8,0],[39,8,1],[39,8,2],[39,8,3],[39,8,4],[39,9,0],[39,9,1],[39,9,2],[39,9,3],[39,9,4],[40,0,0],[40,0,1],[40,0,2],[40,0,3],[40,0,4],[40,1,0],[40,1,1],[40,1,2],[40,1,3],[40,1,4],[40,2,0],[40,2,1],[40,2,2],[40,2,3],[40,2,4],[40,3,0],[40,3,1],[40,3,2],[40,3,3],[40,3,4],[40,4,0],[40,4,1],[40,4,2],[40,4,3],[40,4,4],[40,5,0],[40,5,1],[40,5,2],[40,5,3],[40,5,4],[40,6,0],[40,6,1],[40,6,2],[40,6,3],[40,6,4],[40,7,0],[40,7,1],[40,7,2],[40,7,3],[40,7,4],[40,8,0],[40,8,1],[40,8,2],[40,8,3],[40,8,4],[40,9,0],[40,9,1],[40,9,2],[40,9,3],[40,9,4],[41,0,0],[41,0,1],[41,0,2],[41,0,3],[41,0,4],[41,1,0],[41,1,1],[41,1,2],[41,1,3],[41,1,4],[41,2,0],[41,2,1],[41,2,2],[41,2,3],[41,2,4],[41,3,0],[41,3,1],[41,3,2],[41,3,3],[41,3,4],[41,4,0],[41,4,1],[41,4,2],[41,4,3],[41,4,4],[41,5,0],[41,5,1],[41,5,2],[41,5,3],[41,5,4],[41,6,0],[41,6,1],[41,6,2],[41,6,3],[41,6,4],[41,7,0],[41,7,1],[41,7,2],[41,7,3],[41,7,4],[41,8,0],[41,8,1],[41,8,2],[41,8,3],[41,8,4],[41,9,0],[41,9,1],[41,9,2],[41,9,3],[41,9,4],[42,0,0],[42,0,1],[42,0,2],[42,0,3],[42,0,4],[42,1,0],[42,1,1],[42,1,2],[42,1,3],[42,1,4],[42,2,0],[42,2,1],[42,2,2],[42,2,3],[42,2,4],[42,3,0],[42,3,1],[42,3,2],[42,3,3],[42,3,4],[42,4,0],[42,4,1],[42,4,2],[42,4,3],[42,4,4],[42,5,0],[42,5,1],[42,5,2],[42,5,3],[42,5,4],[42,6,0],[42,6,1],[42,6,2],[42,6,3],[42,6,4],[42,7,0],[42,7,1],[42,7,2],[42,7,3],[42,7,4],[42,8,0],[42,8,1],[42,8,2],[42,8,3],[42,8,4],[42,9,0],[42,9,1],[42,9,2],[42,9,3],[42,9,4],[43,0,0],[43,0,1],[43,0,2],[43,0,3],[43,0,4],[43,1,0],[43,1,1],[43,1,2],[43,1,3],[43,1,4],[43,2,0],[43,2,1],[43,2,2],[43,2,3],[43,2,4],[43,3,0],[43,3,1],[43,3,2],[43,3,3],[43,3,4],[43,4,0],[43,4,1],[43,4,2],[43,4,3],[43,4,4],[43,5,0],[43,5,1],[43,5,2],[43,5,3],[43,5,4],[43,6,0],[43,6,1],[43,6,2],[43,6,3],[43,6,4],[43,7,0],[43,7,1],[43,7,2],[43,7,3],[43,7,4],[43,8,0],[43,8,1],[43,8,2],[43,8,3],[43,8,4],[43,9,0],[43,9,1],[43,9,2],[43,9,3],[43,9,4],[44,0,0],[44,0,1],[44,0,2],[44,0,3],[44,0,4],[44,1,0],[44,1,1],[44,1,2],[44,1,3],[44,1,4],[44,2,0],[44,2,1],[44,2,2],[44,2,3],[44,2,4],[44,3,0],[44,3,1],[44,3,2],[44,3,3],[44,3,4],[44,4,0],[44,4,1],[44,4,2],[44,4,3],[44,4,4],[44,5,0],[44,5,1],[44,5,2],[44,5,3],[44,5,4],[44,6,0],[44,6,1],[44,6,2],[44,6,3],[44,6,4],[44,7,0],[44,7,1],[44,7,2],[44,7,3],[44,7,4],[44,8,0],[44,8,1],[44,8,2],[44,8,3],[44,8,4],[44,9,0],[44,9,1],[44,9,2],[44,9,3],[44,9,4],[45,0,0],[45,0,1],[45,0,2],[45,0,3],[45,0,4],[45,1,0],[45,1,1],[45,1,2],[45,1,3],[45,1,4],[45,2,0],[45,2,1],[45,2,2],[45,2,3],[45,2,4],[45,3,0],[45,3,1],[45,3,2],[45,3,3],[45,3,4],[45,4,0],[45,4,1],[45,4,2],[45,4,3],[45,4,4],[45,5,0],[45,5,1],[45,5,2],[45,5,3],[45,5,4],[45,6,0],[45,6,1],[45,6,2],[45,6,3],[45,6,4],[45,7,0],[45,7,1],[45,7,2],[45,7,3],[45,7,4],[45,8,0],[45,8,1],[45,8,2],[45,8,3],[45,8,4],[45,9,0],[45,9,1],[45,9,2],[45,9,3],[45,9,4],[46,0,0],[46,0,1],[46,0,2],[46,0,3],[46,0,4],[46,1,0],[46,1,1],[46,1,2],[46,1,3],[46,1,4],[46,2,0],[46,2,1],[46,2,2],[46,2,3],[46,2,4],[46,3,0],[46,3,1],[46,3,2],[46,3,3],[46,3,4],[46,4,0],[46,4,1],[46,4,2],[46,4,3],[46,4,4],[46,5,0],[46,5,1],[46,5,2],[46,5,3],[46,5,4],[46,6,0],[46,6,1],[46,6,2],[46,6,3],[46,6,4],[46,7,0],[46,7,1],[46,7,2],[46,7,3],[46,7,4],[46,8,0],[46,8,1],[46,8,2],[46,8,3],[46,8,4],[46,9,0],[46,9,1],[46,9,2],[46,9,3],[46,9,4],[47,0,0],[47,0,1],[47,0,2],[47,0,3],[47,0,4],[47,1,0],[47,1,1],[47,1,2],[47,1,3],[47,1,4],[47,2,0],[47,2,1],[47,2,2],[47,2,3],[47,2,4],[47,3,0],[47,3,1],[47,3,2],[47,3,3],[47,3,4],[47,4,0],[47,4,1],[47,4,2],[47,4,3],[47,4,4],[47,5,0],[47,5,1],[47,5,2],[47,5,3],[47,5,4],[47,6,0],[47,6,1],[47,6,2],[47,6,3],[47,6,4],[47,7,0],[47,7,1],[47,7,2],[47,7,3],[47,7,4],[47,8,0],[47,8,1],[47,8,2],[47,8,3],[47,8,4],[47,9,0],[47,9,1],[47,9,2],[47,9,3],[47,9,4],[48,0,0],[48,0,1],[48,0,2],[48,0,3],[48,0,4],[48,1,0],[48,1,1],[48,1,2],[48,1,3],[48,1,4],[48,2,0],[48,2,1],[48,2,2],[48,2,3],[48,2,4],[48,3,0],[48,3,1],[48,3,2],[48,3,3],[48,3,4],[48,4,0],[48,4,1],[48,4,2],[48,4,3],[48,4,4],[48,5,0],[48,5,1],[48,5,2],[48,5,3],[48,5,4],[48,6,0],[48,6,1],[48,6,2],[48,6,3],[48,6,4],[48,7,0],[48,7,1],[48,7,2],[48,7,3],[48,7,4],[48,8,0],[48,8,1],[48,8,2],[48,8,3],[48,8,4],[48,9,0],[48,9,1],[48,9,2],[48,9,3],[48,9,4],[49,0,0],[49,0,1],[49,0,2],[49,0,3],[49,0,4],[49,1,0],[49,1,1],[49,1,2],[49,1,3],[49,1,4],[49,2,0],[49,2,1],[49,2,2],[49,2,3],[49,2,4],[49,3,0],[49,3,1],[49,3,2],[49,3,3],[49,3,4],[49,4,0],[49,4,1],[49,4,2],[49,4,3],[49,4,4],[49,5,0],[49,5,1],[49,5,2],[49,5,3],[49,5,4],[49,6,0],[49,6,1],[49,6,2],[49,6,3],[49,6,4],[49,7,0],[49,7,1],[49,7,2],[49,7,3],[49,7,4],[49,8,0],[49,8,1],[49,8,2],[49,8,3],[49,8,4],[49,9,0],[49,9,1],[49,9,2],[49,9,3],[49,9,4],[50,0,0],[50,0,1],[50,0,2],[50,0,3],[50,0,4],[50,1,0],[50,1,1],[50,1,2],[50,1,3],[50,1,4],[50,2,0],[50,2,1],[50,2,2],[50,2,3],[50,2,4],[50,3,0],[50,3,1],[50,3,2],[50,3,3],[50,3,4],[50,4,0],[50,4,1],[50,4,2],[50,4,3],[50,4,4],[50,5,0],[50,5,1],[50,5,2],[50,5,3],[50,5,4],[50,6,0],[50,6,1],[50,6,2],[50,6,3],[50,6,4],[50,7,0],[50,7,1],[50,7,2],[50,7,3],[50,7,4],[50,8,0],[50,8,1],[50,8,2],[50,8,3],[50,8,4],[50,9,0],[50,9,1],[50,9,2],[50,9,3],[50,9,4],[51,0,0],[51,0,1],[51,0,2],[51,0,3],[51,0,4],[51,1,0],[51,1,1],[51,1,2],[51,1,3],[51,1,4],[51,2,0],[51,2,1],[51,2,2],[51,2,3],[51,2,4],[51,3,0],[51,3,1],[51,3,2],[51,3,3],[51,3,4],[51,4,0],[51,4,1],[51,4,2],[51,4,3],[51,4,4],[51,5,0],[51,5,1],[51,5,2],[51,5,3],[51,5,4],[51,6,0],[51,6,1],[51,6,2],[51,6,3],[51,6,4],[51,7,0],[51,7,1],[51,7,2],[51,7,3],[51,7,4],[51,8,0],[51,8,1],[51,8,2],[51,8,3],[51,8,4],[51,9,0],[51,9,1],[51,9,2],[51,9,3],[51,9,4],[52,0,0],[52,0,1],[52,0,2],[52,0,3],[52,0,4],[52,1,0],[52,1,1],[52,1,2],[52,1,3],[52,1,4],[52,2,0],[52,2,1],[52,2,2],[52,2,3],[52,2,4],[52,3,0],[52,3,1],[52,3,2],[52,3,3],[52,3,4],[52,4,0],[52,4,1],[52,4,2],[52,4,3],[52,4,4],[52,5,0],[52,5,1],[52,5,2],[52,5,3],[52,5,4],[52,6,0],[52,6,1],[52,6,2],[52,6,3],[52,6,4],[52,7,0],[52,7,1],[52,7,2],[52,7,3],[52,7,4],[52,8,0],[52,8,1],[52,8,2],[52,8,3],[52,8,4],[52,9,0],[52,9,1],[52,9,2],[52,9,3],[52,9,4],[53,0,0],[53,0,1],[53,0,2],[53,0,3],[53,0,4],[53,1,0],[53,1,1],[53,1,2],[53,1,3],[53,1,4],[53,2,0],[53,2,1],[53,2,2],[53,2,3],[53,2,4],[53,3,0],[53,3,1],[53,3,2],[53,3,3],[53,3,4],[53,4,0],[53,4,1],[53,4,2],[53,4,3],[53,4,4],[53,5,0],[53,5,1],[53,5,2],[53,5,3],[53,5,4],[53,6,0],[53,6,1],[53,6,2],[53,6,3],[53,6,4],[53,7,0],[53,7,1],[53,7,2],[53,7,3],[53,7,4],[53,8,0],[53,8,1],[53,8,2],[53,8,3],[53,8,4],[53,9,0],[53,9,1],[53,9,2],[53,9,3],[53,9,4],[54,0,0],[54,0,1],[54,0,2],[54,0,3],[54,0,4],[54,1,0],[54,1,1],[54,1,2],[54,1,3],[54,1,4],[54,2,0],[54,2,1],[54,2,2],[54,2,3],[54,2,4],[54,3,0],[54,3,1],[54,3,2],[54,3,3],[54,3,4],[54,4,0],[54,4,1],[54,4,2],[54,4,3],[54,4,4],[54,5,0],[54,5,1],[54,5,2],[54,5,3],[54,5,4],[54,6,0],[54,6,1],[54,6,2],[54,6,3],[54,6,4],[54,7,0],[54,7,1],[54,7,2],[54,7,3],[54,7,4],[54,8,0],[54,8,1],[54,8,2],[54,8,3],[54,8,4],[54,9,0],[54,9,1],[54,9,2],[54,9,3],[54,9,4],[55,0,0],[55,0,1],[55,0,2],[55,0,3],[55,0,4],[55,1,0],[55,1,1],[55,1,2],[55,1,3],[55,1,4],[55,2,0],[55,2,1],[55,2,2],[55,2,3],[55,2,4],[55,3,0],[55,3,1],[55,3,2],[55,3,3],[55,3,4],[55,4,0],[55,4,1],[55,4,2],[55,4,3],[55,4,4],[55,5,0],[55,5,1],[55,5,2],[55,5,3],[55,5,4],[55,6,0],[55,6,1],[55,6,2],[55,6,3],[55,6,4],[55,7,0],[55,7,1],[55,7,2],[55,7,3],[55,7,4],[55,8,0],[55,8,1],[55,8,2],[55,8,3],[55,8,4],[55,9,0],[55,9,1],[55,9,2],[55,9,3],[55,9,4],[56,0,0],[56,0,1],[56,0,2],[56,0,3],[56,0,4],[56,1,0],[56,1,1],[56,1,2],[56,1,3],[56,1,4],[56,2,0],[56,2,1],[56,2,2],[56,2,3],[56,2,4],[56,3,0],[56,3,1],[56,3,2],[56,3,3],[56,3,4],[56,4,0],[56,4,1],[56,4,2],[56,4,3],[56,4,4],[56,5,0],[56,5,1],[56,5,2],[56,5,3],[56,5,4],[56,6,0],[56,6,1],[56,6,2],[56,6,3],[56,6,4],[56,7,0],[56,7,1],[56,7,2],[56,7,3],[56,7,4],[56,8,0],[56,8,1],[56,8,2],[56,8,3],[56,8,4],[56,9,0],[56,9,1],[56,9,2],[56,9,3],[56,9,4],[57,0,0],[57,0,1],[57,0,2],[57,0,3],[57,0,4],[57,1,0],[57,1,1],[57,1,2],[57,1,3],[57,1,4],[57,2,0],[57,2,1],[57,2,2],[57,2,3],[57,2,4],[57,3,0],[57,3,1],[57,3,2],[57,3,3],[57,3,4],[57,4,0],[57,4,1],[57,4,2],[57,4,3],[57,4,4],[57,5,0],[57,5,1],[57,5,2],[57,5,3],[57,5,4],[57,6,0],[57,6,1],[57,6,2],[57,6,3],[57,6,4],[57,7,0],[57,7,1],[57,7,2],[57,7,3],[57,7,4],[57,8,0],[57,8,1],[57,8,2],[57,8,3],[57,8,4],[57,9,0],[57,9,1],[57,9,2],[57,9,3],[57,9,4],[58,0,0],[58,0,1],[58,0,2],[58,0,3],[58,0,4],[58,1,0],[58,1,1],[58,1,2],[58,1,3],[58,1,4],[58,2,0],[58,2,1],[58,2,2],[58,2,3],[58,2,4],[58,3,0],[58,3,1],[58,3,2],[58,3,3],[58,3,4],[58,4,0],[58,4,1],[58,4,2],[58,4,3],[58,4,4],[58,5,0],[58,5,1],[58,5,2],[58,5,3],[58,5,4],[58,6,0],[58,6,1],[58,6,2],[58,6,3],[58,6,4],[58,7,0],[58,7,1],[58,7,2],[58,7,3],[58,7,4],[58,8,0],[58,8,1],[58,8,2],[58,8,3],[58,8,4],[58,9,0],[58,9,1],[58,9,2],[58,9,3],[58,9,4],[59,0,0],[59,0,1],[59,0,2],[59,0,3],[59,0,4],[59,1,0],[59,1,1],[59,1,2],[59,1,3],[59,1,4],[59,2,0],[59,2,1],[59,2,2],[59,2,3],[59,2,4],[59,3,0],[59,3,1],[59,3,2],[59,3,3],[59,3,4],[59,4,0],[59,4,1],[59,4,2],[59,4,3],[59,4,4],[59,5,0],[59,5,1],[59,5,2],[59,5,3],[59,5,4],[59,6,0],[59,6,1],[59,6,2],[59,6,3],[59,6,4],[59,7,0],[59,7,1],[59,7,2],[59,7,3],[59,7,4],[59,8,0],[59,8,1],[59,8,2],[59,8,3],[59,8,4],[59,9,0],[59,9,1],[59,9,2],[59,9,3],[59,9,4],[60,0,0],[60,0,1],[60,0,2],[60,0,3],[60,0,4],[60,1,0],[60,1,1],[60,1,2],[60,1,3],[60,1,4],[60,2,0],[60,2,1],[60,2,2],[60,2,3],[60,2,4],[60,3,0],[60,3,1],[60,3,2],[60,3,3],[60,3,4],[60,4,0],[60,4,1],[60,4,2],[60,4,3],[60,4,4],[60,5,0],[60,5,1],[60,5,2],[60,5,3],[60,5,4],[60,6,0],[60,6,1],[60,6,2],[60,6,3],[60,6,4],[60,7,0],[60,7,1],[60,7,2],[60,7,3],[60,7,4],[60,8,0],[60,8,1],[60,8,2],[60,8,3],[60,8,4],[60,9,0],[60,9,1],[60,9,2],[60,9,3],[60,9,4],[61,0,0],[61,0,1],[61,0,2],[61,0,3],[61,0,4],[61,1,0],[61,1,1],[61,1,2],[61,1,3],[61,1,4],[61,2,0],[61,2,1],[61,2,2],[61,2,3],[61,2,4],[61,3,0],[61,3,1],[61,3,2],[61,3,3],[61,3,4],[61,4,0],[61,4,1],[61,4,2],[61,4,3],[61,4,4],[61,5,0],[61,5,1],[61,5,2],[61,5,3],[61,5,4],[61,6,0],[61,6,1],[61,6,2],[61,6,3],[61,6,4],[61,7,0],[61,7,1],[61,7,2],[61,7,3],[61,7,4],[61,8,0],[61,8,1],[61,8,2],[61,8,3],[61,8,4],[61,9,0],[61,9,1],[61,9,2],[61,9,3],[61,9,4],[62,0,0],[62,0,1],[62,0,2],[62,0,3],[62,0,4],[62,1,0],[62,1,1],[62,1,2],[62,1,3],[62,1,4],[62,2,0],[62,2,1],[62,2,2],[62,2,3],[62,2,4],[62,3,0],[62,3,1],[62,3,2],[62,3,3],[62,3,4],[62,4,0],[62,4,1],[62,4,2],[62,4,3],[62,4,4],[62,5,0],[62,5,1],[62,5,2],[62,5,3],[62,5,4],[62,6,0],[62,6,1],[62,6,2],[62,6,3],[62,6,4],[62,7,0],[62,7,1],[62,7,2],[62,7,3],[62,7,4],[62,8,0],[62,8,1],[62,8,2],[62,8,3],[62,8,4],[62,9,0],[62,9,1],[62,9,2],[62,9,3],[62,9,4],[63,0,0],[63,0,1],[63,0,2],[63,0,3],[63,0,4],[63,1,0],[63,1,1],[63,1,2],[63,1,3],[63,1,4],[63,2,0],[63,2,1],[63,2,2],[63,2,3],[63,2,4],[63,3,0],[63,3,1],[63,3,2],[63,3,3],[63,3,4],[63,4,0],[63,4,1],[63,4,2],[63,4,3],[63,4,4],[63,5,0],[63,5,1],[63,5,2],[63,5,3],[63,5,4],[63,6,0],[63,6,1],[63,6,2],[63,6,3],[63,6,4],[63,7,0],[63,7,1],[63,7,2],[63,7,3],[63,7,4],[63,8,0],[63,8,1],[63,8,2],[63,8,3],[63,8,4],[63,9,0],[63,9,1],[63,9,2],[63,9,3],[63,9,4],[64,0,0],[64,0,1],[64,0,2],[64,0,3],[64,0,4],[64,1,0],[64,1,1],[64,1,2],[64,1,3],[64,1,4],[64,2,0],[64,2,1],[64,2,2],[64,2,3],[64,2,4],[64,3,0],[64,3,1],[64,3,2],[64,3,3],[64,3,4],[64,4,0],[64,4,1],[64,4,2],[64,4,3],[64,4,4],[64,5,0],[64,5,1],[64,5,2],[64,5,3],[64,5,4],[64,6,0],[64,6,1],[64,6,2],[64,6,3],[64,6,4],[64,7,0],[64,7,1],[64,7,2],[64,7,3],[64,7,4],[64,8,0],[64,8,1],[64,8,2],[64,8,3],[64,8,4],[64,9,0],[64,9,1],[64,9,2],[64,9,3],[64,9,4],[65,0,0],[65,0,1],[65,0,2],[65,0,3],[65,0,4],[65,1,0],[65,1,1],[65,1,2],[65,1,3],[65,1,4],[65,2,0],[65,2,1],[65,2,2],[65,2,3],[65,2,4],[65,3,0],[65,3,1],[65,3,2],[65,3,3],[65,3,4],[65,4,0],[65,4,1],[65,4,2],[65,4,3],[65,4,4],[65,5,0],[65,5,1],[65,5,2],[65,5,3],[65,5,4],[65,6,0],[65,6,1],[65,6,2],[65,6,3],[65,6,4],[65,7,0],[65,7,1],[65,7,2],[65,7,3],[65,7,4],[65,8,0],[65,8,1],[65,8,2],[65,8,3],[65,8,4],[65,9,0],[65,9,1],[65,9,2],[65,9,3],[65,9,4],[66,0,0],[66,0,1],[66,0,2],[66,0,3],[66,0,4],[66,1,0],[66,1,1],[66,1,2],[66,1,3],[66,1,4],[66,2,0],[66,2,1],[66,2,2],[66,2,3],[66,2,4],[66,3,0],[66,3,1],[66,3,2],[66,3,3],[66,3,4],[66,4,0],[66,4,1],[66,4,2],[66,4,3],[66,4,4],[66,5,0],[66,5,1],[66,5,2],[66,5,3],[66,5,4],[66,6,0],[66,6,1],[66,6,2],[66,6,3],[66,6,4],[66,7,0],[66,7,1],[66,7,2],[66,7,3],[66,7,4],[66,8,0],[66,8,1],[66,8,2],[66,8,3],[66,8,4],[66,9,0],[66,9,1],[66,9,2],[66,9,3],[66,9,4],[67,0,0],[67,0,1],[67,0,2],[67,0,3],[67,0,4],[67,1,0],[67,1,1],[67,1,2],[67,1,3],[67,1,4],[67,2,0],[67,2,1],[67,2,2],[67,2,3],[67,2,4],[67,3,0],[67,3,1],[67,3,2],[67,3,3],[67,3,4],[67,4,0],[67,4,1],[67,4,2],[67,4,3],[67,4,4],[67,5,0],[67,5,1],[67,5,2],[67,5,3],[67,5,4],[67,6,0],[67,6,1],[67,6,2],[67,6,3],[67,6,4],[67,7,0],[67,7,1],[67,7,2],[67,7,3],[67,7,4],[67,8,0],[67,8,1],[67,8,2],[67,8,3],[67,8,4],[67,9,0],[67,9,1],[67,9,2],[67,9,3],[67,9,4],[68,0,0],[68,0,1],[68,0,2],[68,0,3],[68,0,4],[68,1,0],[68,1,1],[68,1,2],[68,1,3],[68,1,4],[68,2,0],[68,2,1],[68,2,2],[68,2,3],[68,2,4],[68,3,0],[68,3,1],[68,3,2],[68,3,3],[68,3,4],[68,4,0],[68,4,1],[68,4,2],[68,4,3],[68,4,4],[68,5,0],[68,5,1],[68,5,2],[68,5,3],[68,5,4],[68,6,0],[68,6,1],[68,6,2],[68,6,3],[68,6,4],[68,7,0],[68,7,1],[68,7,2],[68,7,3],[68,7,4],[68,8,0],[68,8,1],[68,8,2],[68,8,3],[68,8,4],[68,9,0],[68,9,1],[68,9,2],[68,9,3],[68,9,4],[69,0,0],[69,0,1],[69,0,2],[69,0,3],[69,0,4],[69,1,0],[69,1,1],[69,1,2],[69,1,3],[69,1,4],[69,2,0],[69,2,1],[69,2,2],[69,2,3],[69,2,4],[69,3,0],[69,3,1],[69,3,2],[69,3,3],[69,3,4],[69,4,0],[69,4,1],[69,4,2],[69,4,3],[69,4,4],[69,5,0],[69,5,1],[69,5,2],[69,5,3],[69,5,4],[69,6,0],[69,6,1],[69,6,2],[69,6,3],[69,6,4],[69,7,0],[69,7,1],[69,7,2],[69,7,3],[69,7,4],[69,8,0],[69,8,1],[69,8,2],[69,8,3],[69,8,4],[69,9,0],[69,9,1],[69,9,2],[69,9,3],[69,9,4],[0,0,0],[0,0,1],[0,0,2],[0,0,3],[0,0,4],[0,1,0],[0,1,1],[0,1,2],[0,1,3],[0,1,4],[0,2,0],[0,2,1],[0,2,2],[0,2,3],[0,2,4],[0,3,0],[0,3,1],[0,3,2],[0,3,3],[0,3,4],[0,4,0],[0,4,1],[0,4,2],[0,4,3],[0,4,4],[0,5,0],[0,5,1],[0,5,2],[0,5,3],[0,5,4],[0,6,0],[0,6,1],[0,6,2],[0,6,3],[0,6,4],[0,7,0],[0,7,1],[0,7,2],[0,7,3],[0,7,4],[0,8,0],[0,8,1],[0,8,2],[0,8,3],[0,8,4],[0,9,0],[0,9,1],[0,9,2],[0,9,3],[0,9,4],[1,0,0],[1,0,1],[1,0,2],[1,0,3],[1,0,4],[1,1,0],[1,1,1],[1,1,2],[1,1,3],[1,1,4],[1,2,0],[1,2,1],[1,2,2],[1,2,3],[1,2,4],[1,3,0],[1,3,1],[1,3,2],[1,3,3],[1,3,4],[1,4,0],[1,4,1],[1,4,2],[1,4,3],[1,4,4],[1,5,0],[1,5,1],[1,5,2],[1,5,3],[1,5,4],[1,6,0],[1,6,1],[1,6,2],[1,6,3],[1,6,4],[1,7,0],[1,7,1],[1,7,2],[1,7,3],[1,7,4],[1,8,0],[1,8,1],[1,8,2],[1,8,3],[1,8,4],[1,9,0],[1,9,1],[1,9,2],[1,9,3],[1,9,4],[2,0,0],[2,0,1],[2,0,2],[2,0,3],[2,0,4],[2,1,0],[2,1,1],[2,1,2],[2,1,3],[2,1,4],[2,2,0],[2,2,1],[2,2,2],[2,2,3],[2,2,4],[2,3,0],[2,3,1],[2,3,2],[2,3,3],[2,3,4],[2,4,0],[2,4,1],[2,4,2],[2,4,3],[2,4,4],[2,5,0],[2,5,1],[2,5,2],[2,5,3],[2,5,4],[2,6,0],[2,6,1],[2,6,2],[2,6,3],[2,6,4],[2,7,0],[2,7,1],[2,7,2],[2,7,3],[2,7,4],[2,8,0],[2,8,1],[2,8,2],[2,8,3],[2,8,4],[2,9,0],[2,9,1],[2,9,2],[2,9,3],[2,9,4],[3,0,0],[3,0,1],[3,0,2],[3,0,3],[3,0,4],[3,1,0],[3,1,1],[3,1,2],[3,1,3],[3,1,4],[3,2,0],[3,2,1],[3,2,2],[3,2,3],[3,2,4],[3,3,0],[3,3,1],[3,3,2],[3,3,3],[3,3,4],[3,4,0],[3,4,1],[3,4,2],[3,4,3],[3,4,4],[3,5,0],[3,5,1],[3,5,2],[3,5,3],[3,5,4],[3,6,0],[3,6,1],[3,6,2],[3,6,3],[3,6,4],[3,7,0],[3,7,1],[3,7,2],[3,7,3],[3,7,4],[3,8,0],[3,8,1],[3,8,2],[3,8,3],[3,8,4],[3,9,0],[3,9,1],[3,9,2],[3,9,3],[3,9,4],[4,0,0],[4,0,1],[4,0,2],[4,0,3],[4,0,4],[4,1,0],[4,1,1],[4,1,2],[4,1,3],[4,1,4],[4,2,0],[4,2,1],[4,2,2],[4,2,3],[4,2,4],[4,3,0],[4,3,1],[4,3,2],[4,3,3],[4,3,4],[4,4,0],[4,4,1],[4,4,2],[4,4,3],[4,4,4],[4,5,0],[4,5,1],[4,5,2],[4,5,3],[4,5,4],[4,6,0],[4,6,1],[4,6,2],[4,6,3],[4,6,4],[4,7,0],[4,7,1],[4,7,2],[4,7,3],[4,7,4],[4,8,0],[4,8,1],[4,8,2],[4,8,3],[4,8,4],[4,9,0],[4,9,1],[4,9,2],[4,9,3],[4,9,4],[5,0,0],[5,0,1],[5,0,2],[5,0,3],[5,0,4],[5,1,0],[5,1,1],[5,1,2],[5,1,3],[5,1,4],[5,2,0],[5,2,1],[5,2,2],[5,2,3],[5,2,4],[5,3,0],[5,3,1],[5,3,2],[5,3,3],[5,3,4],[5,4,0],[5,4,1],[5,4,2],[5,4,3],[5,4,4],[5,5,0],[5,5,1],[5,5,2],[5,5,3],[5,5,4],[5,6,0],[5,6,1],[5,6,2],[5,6,3],[5,6,4],[5,7,0],[5,7,1],[5,7,2],[5,7,3],[5,7,4],[5,8,0],[5,8,1],[5,8,2],[5,8,3],[5,8,4],[5,9,0],[5,9,1],[5,9,2],[5,9,3],[5,9,4],[6,0,0],[6,0,1],[6,0,2],[6,0,3],[6,0,4],[6,1,0],[6,1,1],[6,1,2],[6,1,3],[6,1,4],[6,2,0],[6,2,1],[6,2,2],[6,2,3],[6,2,4],[6,3,0],[6,3,1],[6,3,2],[6,3,3],[6,3,4],[6,4,0],[6,4,1],[6,4,2],[6,4,3],[6,4,4],[6,5,0],[6,5,1],[6,5,2],[6,5,3],[6,5,4],[6,6,0],[6,6,1],[6,6,2],[6,6,3],[6,6,4],[6,7,0],[6,7,1],[6,7,2],[6,7,3],[6,7,4],[6,8,0],[6,8,1],[6,8,2],[6,8,3],[6,8,4],[6,9,0],[6,9,1],[6,9,2],[6,9,3],[6,9,4],[7,0,0],[7,0,1],[7,0,2],[7,0,3],[7,0,4],[7,1,0],[7,1,1],[7,1,2],[7,1,3],[7,1,4],[7,2,0],[7,2,1],[7,2,2],[7,2,3],[7,2,4],[7,3,0],[7,3,1],[7,3,2],[7,3,3],[7,3,4],[7,4,0],[7,4,1],[7,4,2],[7,4,3],[7,4,4],[7,5,0],[7,5,1],[7,5,2],[7,5,3],[7,5,4],[7,6,0],[7,6,1],[7,6,2],[7,6,3],[7,6,4],[7,7,0],[7,7,1],[7,7,2],[7,7,3],[7,7,4],[7,8,0],[7,8,1],[7,8,2],[7,8,3],[7,8,4],[7,9,0],[7,9,1],[7,9,2],[7,9,3],[7,9,4],[8,0,0],[8,0,1],[8,0,2],[8,0,3],[8,0,4],[8,1,0],[8,1,1],[8,1,2],[8,1,3],[8,1,4],[8,2,0],[8,2,1],[8,2,2],[8,2,3],[8,2,4],[8,3,0],[8,3,1],[8,3,2],[8,3,3],[8,3,4],[8,4,0],[8,4,1],[8,4,2],[8,4,3],[8,4,4],[8,5,0],[8,5,1],[8,5,2],[8,5,3],[8,5,4],[8,6,0],[8,6,1],[8,6,2],[8,6,3],[8,6,4],[8,7,0],[8,7,1],[8,7,2],[8,7,3],[8,7,4],[8,8,0],[8,8,1],[8,8,2],[8,8,3],[8,8,4],[8,9,0],[8,9,1],[8,9,2],[8,9,3],[8,9,4],[9,0,0],[9,0,1],[9,0,2],[9,0,3],[9,0,4],[9,1,0],[9,1,1],[9,1,2],[9,1,3],[9,1,4],[9,2,0],[9,2,1],[9,2,2],[9,2,3],[9,2,4],[9,3,0],[9,3,1],[9,3,2],[9,3,3],[9,3,4],[9,4,0],[9,4,1],[9,4,2],[9,4,3],[9,4,4],[9,5,0],[9,5,1],[9,5,2],[9,5,3],[9,5,4],[9,6,0],[9,6,1],[9,6,2],[9,6,3],[9,6,4],[9,7,0],[9,7,1],[9,7,2],[9,7,3],[9,7,4],[9,8,0],[9,8,1],[9,8,2],[9,8,3],[9,8,4],[9,9,0],[9,9,1],[9,9,2],[9,9,3],[9,9,4],[10,0,0],[10,0,1],[10,0,2],[10,0,3],[10,0,4],[10,1,0],[10,1,1],[10,1,2],[10,1,3],[10,1,4],[10,2,0],[10,2,1],[10,2,2],[10,2,3],[10,2,4],[10,3,0],[10,3,1],[10,3,2],[10,3,3],[10,3,4],[10,4,0],[10,4,1],[10,4,2],[10,4,3],[10,4,4],[10,5,0],[10,5,1],[10,5,2],[10,5,3],[10,5,4],[10,6,0],[10,6,1],[10,6,2],[10,6,3],[10,6,4],[10,7,0],[10,7,1],[10,7,2],[10,7,3],[10,7,4],[10,8,0],[10,8,1],[10,8,2],[10,8,3],[10,8,4],[10,9,0],[10,9,1],[10,9,2],[10,9,3],[10,9,4],[11,0,0],[11,0,1],[11,0,2],[11,0,3],[11,0,4],[11,1,0],[11,1,1],[11,1,2],[11,1,3],[11,1,4],[11,2,0],[11,2,1],[11,2,2],[11,2,3],[11,2,4],[11,3,0],[11,3,1],[11,3,2],[11,3,3],[11,3,4],[11,4,0],[11,4,1],[11,4,2],[11,4,3],[11,4,4],[11,5,0],[11,5,1],[11,5,2],[11,5,3],[11,5,4],[11,6,0],[11,6,1],[11,6,2],[11,6,3],[11,6,4],[11,7,0],[11,7,1],[11,7,2],[11,7,3],[11,7,4],[11,8,0],[11,8,1],[11,8,2],[11,8,3],[11,8,4],[11,9,0],[11,9,1],[11,9,2],[11,9,3],[11,9,4],[12,0,0],[12,0,1],[12,0,2],[12,0,3],[12,0,4],[12,1,0],[12,1,1],[12,1,2],[12,1,3],[12,1,4],[12,2,0],[12,2,1],[12,2,2],[12,2,3],[12,2,4],[12,3,0],[12,3,1],[12,3,2],[12,3,3],[12,3,4],[12,4,0],[12,4,1],[12,4,2],[12,4,3],[12,4,4],[12,5,0],[12,5,1],[12,5,2],[12,5,3],[12,5,4],[12,6,0],[12,6,1],[12,6,2],[12,6,3],[12,6,4],[12,7,0],[12,7,1],[12,7,2],[12,7,3],[12,7,4],[12,8,0],[12,8,1],[12,8,2],[12,8,3],[12,8,4],[12,9,0],[12,9,1],[12,9,2],[12,9,3],[12,9,4],[13,0,0],[13,0,1],[13,0,2],[13,0,3],[13,0,4],[13,1,0],[13,1,1],[13,1,2],[13,1,3],[13,1,4],[13,2,0],[13,2,1],[13,2,2],[13,2,3],[13,2,4],[13,3,0],[13,3,1],[13,3,2],[13,3,3],[13,3,4],[13,4,0],[13,4,1],[13,4,2],[13,4,3],[13,4,4],[13,5,0],[13,5,1],[13,5,2],[13,5,3],[13,5,4],[13,6,0],[13,6,1],[13,6,2],[13,6,3],[13,6,4],[13,7,0],[13,7,1],[13,7,2],[13,7,3],[13,7,4],[13,8,0],[13,8,1],[13,8,2],[13,8,3],[13,8,4],[13,9,0],[13,9,1],[13,9,2],[13,9,3],[13,9,4],[14,0,0],[14,0,1],[14,0,2],[14,0,3],[14,0,4],[14,1,0],[14,1,1],[14,1,2],[14,1,3],[14,1,4],[14,2,0],[14,2,1],[14,2,2],[14,2,3],[14,2,4],[14,3,0],[14,3,1],[14,3,2],[14,3,3],[14,3,4],[14,4,0],[14,4,1],[14,4,2],[14,4,3],[14,4,4],[14,5,0],[14,5,1],[14,5,2],[14,5,3],[14,5,4],[14,6,0],[14,6,1],[14,6,2],[14,6,3],[14,6,4],[14,7,0],[14,7,1],[14,7,2],[14,7,3],[14,7,4],[14,8,0],[14,8,1],[14,8,2],[14,8,3],[14,8,4],[14,9,0],[14,9,1],[14,9,2],[14,9,3],[14,9,4],[15,0,0],[15,0,1],[15,0,2],[15,0,3],[15,0,4],[15,1,0],[15,1,1],[15,1,2],[15,1,3],[15,1,4],[15,2,0],[15,2,1],[15,2,2],[15,2,3],[15,2,4],[15,3,0],[15,3,1],[15,3,2],[15,3,3],[15,3,4],[15,4,0],[15,4,1],[15,4,2],[15,4,3],[15,4,4],[15,5,0],[15,5,1],[15,5,2],[15,5,3],[15,5,4],[15,6,0],[15,6,1],[15,6,2],[15,6,3],[15,6,4],[15,7,0],[15,7,1],[15,7,2],[15,7,3],[15,7,4],[15,8,0],[15,8,1],[15,8,2],[15,8,3],[15,8,4],[15,9,0],[15,9,1],[15,9,2],[15,9,3],[15,9,4],[16,0,0],[16,0,1],[16,0,2],[16,0,3],[16,0,4],[16,1,0],[16,1,1],[16,1,2],[16,1,3],[16,1,4],[16,2,0],[16,2,1],[16,2,2],[16,2,3],[16,2,4],[16,3,0],[16,3,1],[16,3,2],[16,3,3],[16,3,4],[16,4,0],[16,4,1],[16,4,2],[16,4,3],[16,4,4],[16,5,0],[16,5,1],[16,5,2],[16,5,3],[16,5,4],[16,6,0],[16,6,1],[16,6,2],[16,6,3],[16,6,4],[16,7,0],[16,7,1],[16,7,2],[16,7,3],[16,7,4],[16,8,0],[16,8,1],[16,8,2],[16,8,3],[16,8,4],[16,9,0],[16,9,1],[16,9,2],[16,9,3],[16,9,4],[17,0,0],[17,0,1],[17,0,2],[17,0,3],[17,0,4],[17,1,0],[17,1,1],[17,1,2],[17,1,3],[17,1,4],[17,2,0],[17,2,1],[17,2,2],[17,2,3],[17,2,4],[17,3,0],[17,3,1],[17,3,2],[17,3,3],[17,3,4],[17,4,0],[17,4,1],[17,4,2],[17,4,3],[17,4,4],[17,5,0],[17,5,1],[17,5,2],[17,5,3],[17,5,4],[17,6,0],[17,6,1],[17,6,2],[17,6,3],[17,6,4],[17,7,0],[17,7,1],[17,7,2],[17,7,3],[17,7,4],[17,8,0],[17,8,1],[17,8,2],[17,8,3],[17,8,4],[17,9,0],[17,9,1],[17,9,2],[17,9,3],[17,9,4],[18,0,0],[18,0,1],[18,0,2],[18,0,3],[18,0,4],[18,1,0],[18,1,1],[18,1,2],[18,1,3],[18,1,4],[18,2,0],[18,2,1],[18,2,2],[18,2,3],[18,2,4],[18,3,0],[18,3,1],[18,3,2],[18,3,3],[18,3,4],[18,4,0],[18,4,1],[18,4,2],[18,4,3],[18,4,4],[18,5,0],[18,5,1],[18,5,2],[18,5,3],[18,5,4],[18,6,0],[18,6,1],[18,6,2],[18,6,3],[18,6,4],[18,7,0],[18,7,1],[18,7,2],[18,7,3],[18,7,4],[18,8,0],[18,8,1],[18,8,2],[18,8,3],[18,8,4],[18,9,0],[18,9,1],[18,9,2],[18,9,3],[18,9,4],[19,0,0],[19,0,1],[19,0,2],[19,0,3],[19,0,4],[19,1,0],[19,1,1],[19,1,2],[19,1,3],[19,1,4],[19,2,0],[19,2,1],[19,2,2],[19,2,3],[19,2,4],[19,3,0],[19,3,1],[19,3,2],[19,3,3],[19,3,4],[19,4,0],[19,4,1],[19,4,2],[19,4,3],[19,4,4],[19,5,0],[19,5,1],[19,5,2],[19,5,3],[19,5,4],[19,6,0],[19,6,1],[19,6,2],[19,6,3],[19,6,4],[19,7,0],[19,7,1],[19,7,2],[19,7,3],[19,7,4],[19,8,0],[19,8,1],[19,8,2],[19,8,3],[19,8,4],[19,9,0],[19,9,1],[19,9,2],[19,9,3],[19,9,4],[20,0,0],[20,0,1],[20,0,2],[20,0,3],[20,0,4],[20,1,0],[20,1,1],[20,1,2],[20,1,3],[20,1,4],[20,2,0],[20,2,1],[20,2,2],[20,2,3],[20,2,4],[20,3,0],[20,3,1],[20,3,2],[20,3,3],[20,3,4],[20,4,0],[20,4,1],[20,4,2],[20,4,3],[20,4,4],[20,5,0],[20,5,1],[20,5,2],[20,5,3],[20,5,4],[20,6,0],[20,6,1],[20,6,2],[20,6,3],[20,6,4],[20,7,0],[20,7,1],[20,7,2],[20,7,3],[20,7,4],[20,8,0],[20,8,1],[20,8,2],[20,8,3],[20,8,4],[20,9,0],[20,9,1],[20,9,2],[20,9,3],[20,9,4],[21,0,0],[21,0,1],[21,0,2],[21,0,3],[21,0,4],[21,1,0],[21,1,1],[21,1,2],[21,1,3],[21,1,4],[21,2,0],[21,2,1],[21,2,2],[21,2,3],[21,2,4],[21,3,0],[21,3,1],[21,3,2],[21,3,3],[21,3,4],[21,4,0],[21,4,1],[21,4,2],[21,4,3],[21,4,4],[21,5,0],[21,5,1],[21,5,2],[21,5,3],[21,5,4],[21,6,0],[21,6,1],[21,6,2],[21,6,3],[21,6,4],[21,7,0],[21,7,1],[21,7,2],[21,7,3],[21,7,4],[21,8,0],[21,8,1],[21,8,2],[21,8,3],[21,8,4],[21,9,0],[21,9,1],[21,9,2],[21,9,3],[21,9,4],[22,0,0],[22,0,1],[22,0,2],[22,0,3],[22,0,4],[22,1,0],[22,1,1],[22,1,2],[22,1,3],[22,1,4],[22,2,0],[22,2,1],[22,2,2],[22,2,3],[22,2,4],[22,3,0],[22,3,1],[22,3,2],[22,3,3],[22,3,4],[22,4,0],[22,4,1],[22,4,2],[22,4,3],[22,4,4],[22,5,0],[22,5,1],[22,5,2],[22,5,3],[22,5,4],[22,6,0],[22,6,1],[22,6,2],[22,6,3],[22,6,4],[22,7,0],[22,7,1],[22,7,2],[22,7,3],[22,7,4],[22,8,0],[22,8,1],[22,8,2],[22,8,3],[22,8,4],[22,9,0],[22,9,1],[22,9,2],[22,9,3],[22,9,4],[23,0,0],[23,0,1],[23,0,2],[23,0,3],[23,0,4],[23,1,0],[23,1,1],[23,1,2],[23,1,3],[23,1,4],[23,2,0],[23,2,1],[23,2,2],[23,2,3],[23,2,4],[23,3,0],[23,3,1],[23,3,2],[23,3,3],[23,3,4],[23,4,0],[23,4,1],[23,4,2],[23,4,3],[23,4,4],[23,5,0],[23,5,1],[23,5,2],[23,5,3],[23,5,4],[23,6,0],[23,6,1],[23,6,2],[23,6,3],[23,6,4],[23,7,0],[23,7,1],[23,7,2],[23,7,3],[23,7,4],[23,8,0],[23,8,1],[23,8,2],[23,8,3],[23,8,4],[23,9,0],[23,9,1],[23,9,2],[23,9,3],[23,9,4],[24,0,0],[24,0,1],[24,0,2],[24,0,3],[24,0,4],[24,1,0],[24,1,1],[24,1,2],[24,1,3],[24,1,4],[24,2,0],[24,2,1],[24,2,2],[24,2,3],[24,2,4],[24,3,0],[24,3,1],[24,3,2],[24,3,3],[24,3,4],[24,4,0],[24,4,1],[24,4,2],[24,4,3],[24,4,4],[24,5,0],[24,5,1],[24,5,2],[24,5,3],[24,5,4],[24,6,0],[24,6,1],[24,6,2],[24,6,3],[24,6,4],[24,7,0],[24,7,1],[24,7,2],[24,7,3],[24,7,4],[24,8,0],[24,8,1],[24,8,2],[24,8,3],[24,8,4],[24,9,0],[24,9,1],[24,9,2],[24,9,3],[24,9,4],[25,0,0],[25,0,1],[25,0,2],[25,0,3],[25,0,4],[25,1,0],[25,1,1],[25,1,2],[25,1,3],[25,1,4],[25,2,0],[25,2,1],[25,2,2],[25,2,3],[25,2,4],[25,3,0],[25,3,1],[25,3,2],[25,3,3],[25,3,4],[25,4,0],[25,4,1],[25,4,2],[25,4,3],[25,4,4],[25,5,0],[25,5,1],[25,5,2],[25,5,3],[25,5,4],[25,6,0],[25,6,1],[25,6,2],[25,6,3],[25,6,4],[25,7,0],[25,7,1],[25,7,2],[25,7,3],[25,7,4],[25,8,0],[25,8,1],[25,8,2],[25,8,3],[25,8,4],[25,9,0],[25,9,1],[25,9,2],[25,9,3],[25,9,4],[26,0,0],[26,0,1],[26,0,2],[26,0,3],[26,0,4],[26,1,0],[26,1,1],[26,1,2],[26,1,3],[26,1,4],[26,2,0],[26,2,1],[26,2,2],[26,2,3],[26,2,4],[26,3,0],[26,3,1],[26,3,2],[26,3,3],[26,3,4],[26,4,0],[26,4,1],[26,4,2],[26,4,3],[26,4,4],[26,5,0],[26,5,1],[26,5,2],[26,5,3],[26,5,4],[26,6,0],[26,6,1],[26,6,2],[26,6,3],[26,6,4],[26,7,0],[26,7,1],[26,7,2],[26,7,3],[26,7,4],[26,8,0],[26,8,1],[26,8,2],[26,8,3],[26,8,4],[26,9,0],[26,9,1],[26,9,2],[26,9,3],[26,9,4],[27,0,0],[27,0,1],[27,0,2],[27,0,3],[27,0,4],[27,1,0],[27,1,1],[27,1,2],[27,1,3],[27,1,4],[27,2,0],[27,2,1],[27,2,2],[27,2,3],[27,2,4],[27,3,0],[27,3,1],[27,3,2],[27,3,3],[27,3,4],[27,4,0],[27,4,1],[27,4,2],[27,4,3],[27,4,4],[27,5,0],[27,5,1],[27,5,2],[27,5,3],[27,5,4],[27,6,0],[27,6,1],[27,6,2],[27,6,3],[27,6,4],[27,7,0],[27,7,1],[27,7,2],[27,7,3],[27,7,4],[27,8,0],[27,8,1],[27,8,2],[27,8,3],[27,8,4],[27,9,0],[27,9,1],[27,9,2],[27,9,3],[27,9,4],[28,0,0],[28,0,1],[28,0,2],[28,0,3],[28,0,4],[28,1,0],[28,1,1],[28,1,2],[28,1,3],[28,1,4],[28,2,0],[28,2,1],[28,2,2],[28,2,3],[28,2,4],[28,3,0],[28,3,1],[28,3,2],[28,3,3],[28,3,4],[28,4,0],[28,4,1],[28,4,2],[28,4,3],[28,4,4],[28,5,0],[28,5,1],[28,5,2],[28,5,3],[28,5,4],[28,6,0],[28,6,1],[28,6,2],[28,6,3],[28,6,4],[28,7,0],[28,7,1],[28,7,2],[28,7,3],[28,7,4],[28,8,0],[28,8,1],[28,8,2],[28,8,3],[28,8,4],[28,9,0],[28,9,1],[28,9,2],[28,9,3],[28,9,4]]},"new_state":"ChooseAlive","max_cell_count":null,"reduce_max":false,"rule_string":"B2n3/S23-q","diagonal_width":null,"skip_subperiod":true,"skip_subsymmetry":false,"known_cells":[{"coord":[0,10,0],"state":0},{"coord":[1,10,0],"state":0},{"coord":[2,10,0],"state":0},{"coord":[3,10,0],"state":1},{"coord":[4,10,0],"state":0},{"coord":[5,10,0],"state":0},{"coord":[6,10,0],"state":1},{"coord":[7,10,0],"state":0},{"coord":[8,10,0],"state":0},{"coord":[9,10,0],"state":0},{"coord":[0,11,0],"state":0},{"coord":[1,11,0],"state":0},{"coord":[2,11,0],"state":0},{"coord":[3,11,0],"state":1},{"coord":[4,11,0],"state":0},{"coord":[5,11,0],"state":0},{"coord":[6,11,0],"state":1},{"coord":[7,11,0],"state":0},{"coord":[8,11,0],"state":0},{"coord":[9,11,0],"state":0},{"coord":[0,12,0],"state":0},{"coord":[1,12,0],"state":0},{"coord":[2,12,0],"state":0},{"coord":[3,12,0],"state":0},{"coord":[4,12,0],"state":1},{"coord":[5,12,0],"state":1},{"coord":[6,12,0],"state":0},{"coord":[7,12,0],"state":0},{"coord":[8,12,0],"state":0},{"coord":[9,12,0],"state":0},{"coord":[0,13,0],"state":0},{"coord":[1,13,0],"state":0},{"coord":[2,13,0],"state":0},{"coord":[3,13,0],"state":0},{"coord":[4,13,0],"state":1},{"coord":[5,13,0],"state":1},{"coord":[6,13,0],"state":0},{"coord":[7,13,0],"state":0},{"coord":[8,13,0],"state":0},{"coord":[9,13,0],"state":0},{"coord":[0,14,0],"state":0},{"coord":[1,14,0],"state":0},{"coord":[2,14,0],"state":0},{"coord":[3,14,0],"state":0},{"coord":[4,14,0],"state":0},{"coord":[5,14,0],"state":0},{"coord":[6,14,0],"state":0},{"coord":[7,14,0],"state":0},{"coord":[8,14,0],"state":0},{"coord":[9,14,0],"state":0},{"coord":[0,15,0],"state":0},{"coord":[1,15,0],"state":0},{"coord":[2,15,0],"state":0},{"coord":[3,15,0],"state":1},{"coord":[4,15,0],"state":0},{"coord":[5,15,0],"state":0},{"coord":[6,15,0],"state":1},{"coord":[7,15,0],"state":0},{"coord":[8,15,0],"state":0},{"coord":[9,15,0],"state":0},{"coord":[0,16,0],"state":0},{"coord":[1,16,0],"state":0},{"coord":[2,16,0],"state":0},{"coord":[3,16,0],"state":1},{"coord":[4,16,0],"state":0},{"coord":[5,16,0],"state":0},{"coord":[6,16,0],"state":1},{"coord":[7,16,0],"state":0},{"coord":[8,16,0],"state":0},{"coord":[9,16,0],"state":0},{"coord":[0,17,0],"state":0},{"coord":[1,17,0],"state":0},{"coord":[2,17,0],"state":0},{"coord":[3,17,0],"state":0},{"coord":[4,17,0],"state":1},{"coord":[5,17,0],"state":1},{"coord":[6,17,0],"state":0},{"coord":[7,17,0],"state":0},{"coord":[8,17,0],"state":0},{"coord":[9,17,0],"state":0},{"coord":[0,18,0],"state":0},{"coord":[1,18,0],"state":0},{"coord":[2,18,0],"state":0},{"coord":[3,18,0],"state":0},{"coord":[4,18,0],"state":1},{"coord":[5,18,0],"state":1},{"coord":[6,18,0],"state":0},{"coord":[7,18,0],"state":0},{"coord":[8,18,0],"state":0},{"coord":[9,18,0],"state":0},{"coord":[0,19,0],"state":0},{"coord":[1,19,0],"state":0},{"coord":[2,19,0],"state":0},{"coord":[3,19,0],"state":0},{"coord":[4,19,0],"state":0},{"coord":[5,19,0],"state":0},{"coord":[6,19,0],"state":0},{"coord":[7,19,0],"state":0},{"coord":[8,19,0],"state":0},{"coord":[9,19,0],"state":0},{"coord":[0,20,0],"state":0},{"coord":[1,20,0],"state":0},{"coord":[2,20,0],"state":0},{"coord":[3,20,0],"state":1},{"coord":[4,20,0],"state":0},{"coord":[5,20,0],"state":0},{"coord":[6,20,0],"state":1},{"coord":[7,20,0],"state":0},{"coord":[8,20,0],"state":0},{"coord":[9,20,0],"state":0},{"coord":[0,21,0],"state":0},{"coord":[1,21,0],"state":0},{"coord":[2,21,0],"state":0},{"coord":[3,21,0],"state":1},{"coord":[4,21,0],"state":0},{"coord":[5,21,0],"state":0},{"coord":[6,21,0],"state":1},{"coord":[7,21,0],"state":0},{"coord":[8,21,0],"state":0},{"coord":[9,21,0],"state":0},{"coord":[0,22,0],"state":0},{"coord":[1,22,0],"state":0},{"coord":[2,22,0],"state":0},{"coord":[3,22,0],"state":0},{"coord":[4,22,0],"state":1},{"coord":[5,22,0],"state":1},{"coord":[6,22,0],"state":0},{"coord":[7,22,0],"state":0},{"coord":[8,22,0],"state":0},{"coord":[9,22,0],"state":0},{"coord":[0,23,0],"state":0},{"coord":[1,23,0],"state":0},{"coord":[2,23,0],"state":0},{"coord":[3,23,0],"state":0},{"coord":[4,23,0],"state":1},{"coord":[5,23,0],"state":1},{"coord":[6,23,0],"state":0},{"coord":[7,23,0],"state":0},{"coord":[8,23,0],"state":0},{"coord":[9,23,0],"state":0},{"coord":[0,24,0],"state":0},{"coord":[1,24,0],"state":0},{"coord":[2,24,0],"state":0},{"coord":[3,24,0],"state":0},{"coord":[4,24,0],"state":0},{"coord":[5,24,0],"state":0},{"coord":[6,24,0],"state":0},{"coord":[7,24,0],"state":0},{"coord":[8,24,0],"state":0},{"coord":[9,24,0],"state":0},{"coord":[0,25,0],"state":0},{"coord":[1,25,0],"state":0},{"coord":[2,25,0],"state":0},{"coord":[3,25,0],"state":1},{"coord":[4,25,0],"state":0},{"coord":[5,25,0],"state":0},{"coord":[6,25,0],"state":1},{"coord":[7,25,0],"state":0},{"coord":[8,25,0],"state":0},{"coord":[9,25,0],"state":0},{"coord":[0,26,0],"state":0},{"coord":[1,26,0],"state":0},{"coord":[2,26,0],"state":0},{"coord":[3,26,0],"state":1},{"coord":[4,26,0],"state":0},{"coord":[5,26,0],"state":0},{"coord":[6,26,0],"state":1},{"coord":[7,26,0],"state":0},{"coord":[8,26,0],"state":0},{"coord":[9,26,0],"state":0},{"coord":[0,27,0],"state":0},{"coord":[1,27,0],"state":0},{"coord":[2,27,0],"state":0},{"coord":[3,27,0],"state":0},{"coord":[4,27,0],"state":1},{"coord":[5,27,0],"state":1},{"coord":[6,27,0],"state":0},{"coord":[7,27,0],"state":0},{"coord":[8,27,0],"state":0},{"coord":[9,27,0],"state":0},{"coord":[0,28,0],"state":0},{"coord":[1,28,0],"state":0},{"coord":[2,28,0],"state":0},{"coord":[3,28,0],"state":0},{"coord":[4,28,0],"state":1},{"coord":[5,28,0],"state":1},{"coord":[6,28,0],"state":0},{"coord":[7,28,0],"state":0},{"coord":[8,28,0],"state":0},{"coord":[9,28,0],"state":0},{"coord":[0,29,0],"state":0},{"coord":[1,29,0],"state":0},{"coord":[2,29,0],"state":0},{"coord":[3,29,0],"state":0},{"coord":[4,29,0],"state":0},{"coord":[5,29,0],"state":0},{"coord":[6,29,0],"state":0},{"coord":[7,29,0],"state":0},{"coord":[8,29,0],"state":0},{"coord":[9,29,0],"state":0}],"backjump":false},"conflicts":0,"set_stack":[],"check_index":0,"timing":{"secs":0,"nanos":0},"extra":{"max_partial":"x = 10, y = 100, rule = B2n3/S23-q\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n...o..o...$\n...o..o...$\n....oo....$\n....oo....$\n..........$\n...o..o...$\n...o..o...$\n....oo....$\n....oo....$\n..........$\n...o..o...$\n...o..o...$\n....oo....$\n....oo....$\n..........$\n...o..o...$\n...o..o...$\n....oo....$\n....oo....$\n..........$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????$\n??????????!\n","max_partial_count":"32"}}

结果并没有从 29 行开始搜,而是开始按列搜。

最近除了偶尔升级一下依赖包,我都不怎么维护 rlifesrc 了。已有的功能……应该不会自己坏掉吧?

@HuntingBot
Copy link
Author

@AlephAlpha

最近除了偶尔升级一下依赖包,我都不怎么维护 rlifesrc 了。

别……目前除了 rlifesrc 似乎没有什么别的 INT 搜索工具了。也许我应该自己进行一些修改?但是我现在完全看不懂这个东西的结构(文件有点多。。)另外 Rust 程序的测试似乎也比较麻烦?

@AlephAlpha
Copy link
Owner

但是我现在完全看不懂这个东西的结构(文件有点多。。)

太久没维护,我自己也看不太懂了……

另外 Rust 程序的测试似乎也比较麻烦?

不算网页版的话,测试不算太麻烦,cargo test 即可;我用 GitHub Action 自动测试,但测的例子有点少,很多功能都没测。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants