Energetic

For discussion of other cellular automata.
User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Energetic

Post by KittyTac » September 1st, 2018, 6:16 am

A rule called Annihilation: Life with an additional state that behaves just like regular Life, but if state 1 cells are in contact with state 2, both cells turn into "energy", which is a cell that 1 generation later turns into an 8-directional burst of particles that travel at light speed, and if these energy particles collide with any live cell, the particle turns into a cell of the same state as the live cell.

User avatar
77topaz
Posts: 1496
Joined: January 12th, 2018, 9:19 pm

Re: Rule request thread

Post by 77topaz » September 1st, 2018, 6:44 am

Inserting particle physics into CA... I like it. :)

User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Re: Rule request thread

Post by KittyTac » September 3rd, 2018, 2:29 am

So can anyone make that rule?

wildmyron
Posts: 1542
Joined: August 9th, 2013, 12:45 am
Location: Western Australia

Re: Rule request thread

Post by wildmyron » September 3rd, 2018, 3:39 am

I'll have a go at this. It looks like a good opportunity to try out Rueltable/Nutshell, but it will take me a little while to become familiar with its features. The easiest way to implement this idea is with 8 states for the 8 particle directions. Is that what you had in mind?
The 5S project (Smallest Spaceships Supporting Specific Speeds) is now maintained by AforAmpere. The latest collection is hosted on GitHub and contains well over 1,000,000 spaceships.

Semi-active here - recovering from a severe case of LWTDS.

User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Re: Rule request thread

Post by KittyTac » September 3rd, 2018, 3:48 am

wildmyron wrote:I'll have a go at this. It looks like a good opportunity to try out Rueltable/Nutshell, but it will take me a little while to become familiar with its features. The easiest way to implement this idea is with 8 states for the 8 particle directions. Is that what you had in mind?
Yeah. Also, if a 8-directional energy cell is near an equal amount of live cells, it disappears instead if turning into a live cell (but it releases energy into empty cells).

User avatar
gameoflifemaniac
Posts: 1242
Joined: January 22nd, 2017, 11:17 am
Location: There too

Re: Rule request thread

Post by gameoflifemaniac » September 4th, 2018, 10:20 am

KittyTac wrote:
wildmyron wrote:I'll have a go at this. It looks like a good opportunity to try out Rueltable/Nutshell, but it will take me a little while to become familiar with its features. The easiest way to implement this idea is with 8 states for the 8 particle directions. Is that what you had in mind?
Yeah. Also, if a 8-directional energy cell is near an equal amount of live cells, it disappears instead if turning into a live cell (but it releases energy into empty cells).
An.
I was so socially awkward in the past and it will haunt me for the rest of my life.

Code: Select all

b4o25bo$o29bo$b3o3b3o2bob2o2bob2o2bo3bobo$4bobo3bob2o2bob2o2bobo3bobo$
4bobo3bobo5bo5bo3bobo$o3bobo3bobo5bo6b4o$b3o3b3o2bo5bo9bobo$24b4o!

wildmyron
Posts: 1542
Joined: August 9th, 2013, 12:45 am
Location: Western Australia

Re: Energetic v1

Post by wildmyron » September 8th, 2018, 1:49 pm

KittyTac wrote:A rule called Annihilation: Life with an additional state that behaves just like regular Life, but if state 1 cells are in contact with state 2, both cells turn into "energy", which is a cell that 1 generation later turns into an 8-directional burst of particles that travel at light speed, and if these energy particles collide with any live cell, the particle turns into a cell of the same state as the live cell.
KittyTac wrote:
wildmyron wrote:I'll have a go at this. It looks like a good opportunity to try out Rueltable/Nutshell, but it will take me a little while to become familiar with its features. The easiest way to implement this idea is with 8 states for the 8 particle directions. Is that what you had in mind?
Yeah. Also, if a 8-directional energy cell is near an equal amount of live cells, it disappears instead if turning into a live cell (but it releases energy into empty cells).
Here's a first stab at this idea. There are some inconsistencies in the way that photons behave, particularly near multiple energetic particles. This is partly because there's some ambiguity in the specification and partly because it's fairly tedious to fix. The biggest difficulty with the idea is that it's impossible to ever have a lone energetic particle which can simply decay into eight photons. There will always be at least one other energetic particle and generally several other non-vacuum cells neighbouring each one.

================================
This is v1 of the Energetic rule. It has been superceeded by a later version which preserves symmetry.
Please use v3 instead of this version: https://conwaylife.com/forums/viewtopic ... 585#p64585
================================

Nutshell: https://gist.github.com/apaap/1be76c8a4 ... 497ee323dc

Code: Select all

@RULE Energetic
********************************
**** COMPILED FROM NUTSHELL ****
********************************

A rule with two totalistic Life states combined with energy particles which
decay to eight single cell photons travelling in all eight directions.

Based on suggestion by 'KittyTac'
See: http://conwaylife.com/forums/viewtopic.php?f=11&t=2030&p=63491#p63491

States
0     vacuum
1     Life
2     Life
3     Energetic particle
4-11  Photons with directions N -> NW

@TABLE
neighborhood: Moore
symmetries: none
n_states: 12

var any.0 = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
var any.1 = any.0
var any.2 = any.0
var any.3 = any.0
var any.4 = any.0
var any.5 = any.0
var any.6 = any.0
var any.7 = any.0
var any.8 = any.0
var live.0 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
var alive.0 = {1, 2}
var alive.1 = alive.0
var life.0 = {0, 1, 2}
var life.1 = life.0
var life.2 = life.0
var life.3 = life.0
var life.4 = life.0
var life.5 = life.0
var life.6 = life.0
var life.7 = life.0
var _716888888775130.0 = {0, 3, 4, 5, 6, 7, 8, 9, 10, 11}
var _716888888775130.1 = _716888888775130.0
var _716888888775130.2 = _716888888775130.0
var _716888888775130.3 = _716888888775130.0
var _716888888775130.4 = _716888888775130.0
var _716888888775130.5 = _716888888775130.0
var _188603385896403.0 = {0, 1}
var _188603385896403.1 = _188603385896403.0
var _188603385896403.2 = _188603385896403.0
var _188603385896403.3 = _188603385896403.0
var _188603385896403.4 = _188603385896403.0
var _188603385896403.5 = _188603385896403.0
var _172129488626172.0 = {0, 2}
var _172129488626172.1 = _172129488626172.0
var _172129488626172.2 = _172129488626172.0
var _172129488626172.3 = _172129488626172.0
var _172129488626172.4 = _172129488626172.0
var _172129488626172.5 = _172129488626172.0
var _710501783665629.0 = {3, 4}
var _710501783665629.1 = _710501783665629.0
var _710501783665629.2 = _710501783665629.0
var _710501783665629.3 = _710501783665629.0
var _710501783665629.4 = _710501783665629.0
var _688398911390223.0 = {3, 5}
var _688398911390223.1 = _688398911390223.0
var _688398911390223.2 = _688398911390223.0
var _688398911390223.3 = _688398911390223.0
var _688398911390223.4 = _688398911390223.0
var _688398911390223.5 = _688398911390223.0
var _537895657608921.0 = {3, 6}
var _537895657608921.1 = _537895657608921.0
var _537895657608921.2 = _537895657608921.0
var _537895657608921.3 = _537895657608921.0
var _537895657608921.4 = _537895657608921.0
var _537895657608921.5 = _537895657608921.0
var _537895657608921.6 = _537895657608921.0
var _487705463628354.0 = {3, 7}
var _487705463628354.1 = _487705463628354.0
var _487705463628354.2 = _487705463628354.0
var _487705463628354.3 = _487705463628354.0
var _487705463628354.4 = _487705463628354.0
var _487705463628354.5 = _487705463628354.0
var _487705463628354.6 = _487705463628354.0
var _487705463628354.7 = _487705463628354.0
var _293966399727257.0 = {8, 3}
var _691662787204218.0 = {9, 3}
var _691662787204218.1 = _691662787204218.0
var _153693061857386.0 = {10, 3}
var _153693061857386.1 = _153693061857386.0
var _153693061857386.2 = _153693061857386.0
var _672977476146232.0 = {11, 3}
var _672977476146232.1 = _672977476146232.0
var _672977476146232.2 = _672977476146232.0
var _672977476146232.3 = _672977476146232.0

0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0
0, alive.0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, alive.0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, alive.0, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0
0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, 1, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, 1, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1
1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1
1, _716888888775130.0, 1, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, 1, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, 1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, 1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1
1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, 1, _716888888775130.5, 1
1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _188603385896403.0, _716888888775130.1, 1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1, 1
1, 1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1, 1
1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, 1, _716888888775130.5, 1
1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, 1, _716888888775130.5, 1
1, _188603385896403.0, 1, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, 1, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1, 1
1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1
1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, 1, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, 1, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, 1, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, 1, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, 1, _188603385896403.5, 1
1, 1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1, 1
1, 1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1, 1
1, 1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2, 2
2, 2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2
2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2, 2
2, _716888888775130.0, 2, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, 2, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, 2, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _172129488626172.1, 2, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _172129488626172.0, 2, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, 2, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2
2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2, 2
2, 2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, 2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, 2, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, 2, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, 2, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2
2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, 2, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2, 2
2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2
2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, 2, _172129488626172.5, 2
2, _716888888775130.0, 2, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, 2, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, 2, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, 2, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2
2, 2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, 2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, 2, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, 2, _716888888775130.5, 2
1, life.0, 2, life.1, life.2, life.3, life.4, life.5, life.6, 3
1, life.0, life.1, life.2, 2, life.3, life.4, life.5, life.6, 3
1, life.0, life.1, life.2, life.3, life.4, 2, life.5, life.6, 3
1, life.0, life.1, life.2, life.3, life.4, life.5, 2, life.6, 3
1, life.0, life.1, life.2, life.3, 2, life.4, life.5, life.6, 3
1, 2, life.0, life.1, life.2, life.3, life.4, life.5, life.6, 3
1, life.0, life.1, life.2, life.3, life.4, life.5, life.6, 2, 3
1, life.0, life.1, 2, life.2, life.3, life.4, life.5, life.6, 3
2, life.0, 1, life.1, life.2, life.3, life.4, life.5, life.6, 3
2, life.0, life.1, life.2, 1, life.3, life.4, life.5, life.6, 3
2, life.0, life.1, life.2, life.3, life.4, 1, life.5, life.6, 3
2, life.0, life.1, life.2, life.3, life.4, life.5, 1, life.6, 3
2, life.0, life.1, life.2, life.3, 1, life.4, life.5, life.6, 3
2, 1, life.0, life.1, life.2, life.3, life.4, life.5, life.6, 3
2, life.0, life.1, life.2, life.3, life.4, life.5, life.6, 1, 3
2, life.0, life.1, 1, life.2, life.3, life.4, life.5, life.6, 3
0, life.0, life.1, life.2, any.3, _710501783665629.4, any.5, life.6, life.7, 4
0, life.0, life.1, life.2, life.3, any.4, _688398911390223.5, any.6, life.7, 5
0, life.0, life.1, life.2, life.3, life.4, any.5, _537895657608921.6, any.7, 6
0, any.0, life.1, life.2, life.3, life.4, life.5, any.6, _487705463628354.7, 7
0, _293966399727257.0, any.1, life.2, life.3, life.4, life.5, life.6, any.7, 8
0, any.0, _691662787204218.1, any.2, life.3, life.4, life.5, life.6, life.7, 9
0, life.0, any.1, _153693061857386.2, any.3, life.4, life.5, life.6, life.7, 10
0, life.0, life.1, any.2, _672977476146232.3, any.4, life.5, life.6, life.7, 11
4, alive.0, any.0, any.1, any.2, any.3, any.4, any.5, any.6, alive.0
5, any.0, alive.0, any.1, any.2, any.3, any.4, any.5, any.6, alive.0
6, any.0, any.1, alive.0, any.2, any.3, any.4, any.5, any.6, alive.0
7, any.0, any.1, any.2, alive.0, any.3, any.4, any.5, any.6, alive.0
8, any.0, any.1, any.2, any.3, alive.0, any.4, any.5, any.6, alive.0
9, any.0, any.1, any.2, any.3, any.4, alive.0, any.5, any.6, alive.0
10, any.0, any.1, any.2, any.3, any.4, any.5, alive.0, any.6, alive.0
11, any.0, any.1, any.2, any.3, any.4, any.5, any.6, alive.0, alive.0
live.0, any.1, any.2, any.3, any.4, any.5, any.6, any.7, any.8, 0

@COLORS

0  48  48  48
1 255   0 128
2   0 255 128
3 255 255 255
A test pattern:

Code: Select all

x = 28, y = 18, rule = Energetic
7.B$7.B$.2A4.B$2.A4.B$2.A4.B$2.A4.B$2.A4.2B14.A2.B$2.A19.2A2.2B$2.A
20.A2.B4$2.A.H3.H2.H$A.A$.2A2$11.D$8.D!
Edit: link to latest version of the rule
Last edited by wildmyron on November 6th, 2020, 1:00 am, edited 2 times in total.
The 5S project (Smallest Spaceships Supporting Specific Speeds) is now maintained by AforAmpere. The latest collection is hosted on GitHub and contains well over 1,000,000 spaceships.

Semi-active here - recovering from a severe case of LWTDS.

User avatar
dvgrn
Moderator
Posts: 10610
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: Rule request thread

Post by dvgrn » September 8th, 2018, 2:53 pm

wildmyron wrote:
KittyTac wrote:A rule called Annihilation: Life with an additional state that behaves just like regular Life, but if state 1 cells are in contact with state 2, both cells turn into "energy", which is a cell that 1 generation later turns into an 8-directional burst of particles that travel at light speed, and if these energy particles collide with any live cell, the particle turns into a cell of the same state as the live cell.
Here's a first stab at this idea...
There seems to be something slightly odd going on with this first draft of the rule. Cells are not being born (as the "energy" state) when I think they should be, particularly in symmetrical cases. Compare

Code: Select all

x = 12, y = 3, rule = LifeHistory
A.A6.3A$A.A6.A.A$3A6.A.A!
with

Code: Select all

x = 12, y = 3, rule = Energetic
A.A6.3B$A.A6.B.B$3A6.B.B!
...?

User avatar
gameoflifemaniac
Posts: 1242
Joined: January 22nd, 2017, 11:17 am
Location: There too

Re: Rule request thread

Post by gameoflifemaniac » September 8th, 2018, 3:07 pm

Code: Select all

x = 4, y = 4, rule = Energetic
4C$4C$4C$4C!
The pattern is symmetric, but the result isn't.
I was so socially awkward in the past and it will haunt me for the rest of my life.

Code: Select all

b4o25bo$o29bo$b3o3b3o2bob2o2bob2o2bo3bobo$4bobo3bob2o2bob2o2bobo3bobo$
4bobo3bobo5bo5bo3bobo$o3bobo3bobo5bo6b4o$b3o3b3o2bo5bo9bobo$24b4o!

wildmyron
Posts: 1542
Joined: August 9th, 2013, 12:45 am
Location: Western Australia

Re: Rule request thread

Post by wildmyron » September 8th, 2018, 3:12 pm

dvgrn wrote:There seems to be something slightly odd going on with this first draft of the rule. Cells are not being born (as the "energy" state) when I think they should be, particularly in symmetrical cases.
Well, that was intentional on my part - mainly because it hasn't been specified what should happen when a cell has neighbours of the two different life states. Birth only occurs when there are three state 1 or three state 2 cells and no cells of the other state nor energy particles neighbouring the cell. This is fairly easy to change in the nutshell version of the rule once it's clear what should happen. The harder part is how cells with multiple energy particles as neighbours are meant to behave and how photons behave around other cells, particularly around energy particles. The are also numerous discrepancies about how photons should behave near Life cells, particularly in the vicinity of both Life states. These discrepencies are the cause of the symmetry breaking behaviour observed.

Anyway, I thought it not too bad for a first stab and hopefully useful to clarify the desired behaviour.
The 5S project (Smallest Spaceships Supporting Specific Speeds) is now maintained by AforAmpere. The latest collection is hosted on GitHub and contains well over 1,000,000 spaceships.

Semi-active here - recovering from a severe case of LWTDS.

wildmyron
Posts: 1542
Joined: August 9th, 2013, 12:45 am
Location: Western Australia

Re: Rule request thread

Post by wildmyron » September 9th, 2018, 3:44 am

Here are some test patterns whose evolution depends on most of the ambiguities I mentioned.

Code: Select all

x = 66, y = 20, rule = Energetic
23.A$23.A17.2B18.B$2A2.2B15.B.A17.2B15.5B.A$3A3B15.B.A15.2A2.2B17.B3A
$2A2.2B15.B.A15.2A2.2B13.5B.A$21.B19.2A18.B$21.B19.2A9$23.J$F2.J16.F
19.F19.F3$43.D18.D!
Before I modify the behaviour of the rule I'd like some clarity (or suggestions) on how it is expected to behave. For the patterns on the top row I'd like to see the expected evolution over the next three generations. The bottom row involves photon collisions and a general principal should be sufficient.
The 5S project (Smallest Spaceships Supporting Specific Speeds) is now maintained by AforAmpere. The latest collection is hosted on GitHub and contains well over 1,000,000 spaceships.

Semi-active here - recovering from a severe case of LWTDS.

User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Re: Rule request thread

Post by KittyTac » September 9th, 2018, 4:28 am

How cells with multiple energy cells are meant to behave? All of the energy cells turn into the cell's color, and photons are released from each. Photons should turn into live cells only if they move into the live cell, not if they just fly by.

Cells should be able to be born from a combination of matter and antimatter cells, and if a matter cell borders two antimatter cells and one matter cell (and vice versa) (and with other amounts of cells), it and the two antimatter cells turn into energy.

Gameoflifemaniac's pattern should produce photons in cardinal directions along the sides of the square, and the four corners should produce a single diagonal photon each.

That way the rule should be much more volatile and interesting to watch.
Last edited by KittyTac on September 9th, 2018, 5:00 am, edited 1 time in total.

User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Re: Rule request thread

Post by KittyTac » September 9th, 2018, 4:54 am

A single opposite-state cell flips over a loaf with a largish antimatter explosion.

Code: Select all

x = 4, y = 4, rule = Energetic
.2AB$A2.A$.A.A$2.A!

wildmyron
Posts: 1542
Joined: August 9th, 2013, 12:45 am
Location: Western Australia

Re: Rule request thread

Post by wildmyron » September 9th, 2018, 5:17 am

I'm with you on most of the principles, it's the details that are tricky.
In the examples here I'm going to use the following representation -
M: Life (matter)
A: Life (antimatter)
X: energy cell
.: vacuum
N, NW, W, SW, S, SE, E, NE: Photons moving in eight compass directions
?: To be specified
KittyTac wrote:How cells with multiple energy cells are meant to behave? All of the energy cells turn into the cell's color,
Which cell colour should they turn into? I assumed that the energy cell decayed into photons, so it's evolution goes like this (ignoring the fact that there could never be an isolated energy cell):

Code: Select all

 . . .      NW N NE
 . X .  ->   W . E
 . . .      SW S SE
KittyTac wrote:and photons are released from each.
The question is what happens to the ? cells in the following two examples?

Code: Select all

 . . . .      NW ? ? NE
 . X X .  ->   W ? ? E
 . . . .      SW ? ? SE
 
 . . . .      NW N NE .
 . X . .  ->   W ? ? NE
 . . X .      SW ? ? E
 . . . .      . SW S SE
KittyTac wrote:Photons should turn into live cells only if they move into the live cell, not if they just fly by.
I think this part is working correctly, do you agree?
KittyTac wrote:Cells should be able to be born from a combination of matter and antimatter cells,
If you could evolve just one of the patterns from above by hand, that would be very helpful. In particular, the second test case on the top row would clarify how this should work.
KittyTac wrote:and if a matter cell borders two antimatter cells, all three turn into energy.
I believe this part is also working correctly.

That just leaves two cases: photon collisions, and what happens to this pattern:

Code: Select all

 M . .      . NW N
 M . X  ->  M  ? .
 M . .      . SW S
Edit: ah, i missed your edit about the block of energy particles. That clarifies the orthogonally adjacent case. What about the diagonally adjacent case though?
The 5S project (Smallest Spaceships Supporting Specific Speeds) is now maintained by AforAmpere. The latest collection is hosted on GitHub and contains well over 1,000,000 spaceships.

Semi-active here - recovering from a severe case of LWTDS.

User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Re: Rule request thread

Post by KittyTac » September 9th, 2018, 5:24 am

Assuming I didn't miss anything,

Code: Select all

M . .      . NW N
M . X  ->  M  M .
M . .      . SW S

Code: Select all

. . . .      NW N NE .
. X . .  ->   W . . NE
. . X .      SW . . E
. . . .      . SW S SE
This should make it nice and symmetrical and volatile. Everything is working except for multi-color births, thanks.

wildmyron
Posts: 1542
Joined: August 9th, 2013, 12:45 am
Location: Western Australia

Re: Rule request thread

Post by wildmyron » September 9th, 2018, 5:37 am

Thanks for the response. I can fix up the photon generation now. I figure photon collisions resulting in disappearance of the photons is reasonable, but it would be nicer for near misses to result in the two photons passing with no interaction. I'm out of time for now so it will be several days before I make an update.
The 5S project (Smallest Spaceships Supporting Specific Speeds) is now maintained by AforAmpere. The latest collection is hosted on GitHub and contains well over 1,000,000 spaceships.

Semi-active here - recovering from a severe case of LWTDS.

User avatar
gameoflifemaniac
Posts: 1242
Joined: January 22nd, 2017, 11:17 am
Location: There too

Re: Rule request thread

Post by gameoflifemaniac » September 9th, 2018, 6:05 am

gameoflifemaniac wrote:

Code: Select all

x = 4, y = 4, rule = Energetic
4C$4C$4C$4C!
The pattern is symmetric, but the result isn't.
FIX THIS
I was so socially awkward in the past and it will haunt me for the rest of my life.

Code: Select all

b4o25bo$o29bo$b3o3b3o2bob2o2bob2o2bo3bobo$4bobo3bob2o2bob2o2bobo3bobo$
4bobo3bobo5bo5bo3bobo$o3bobo3bobo5bo6b4o$b3o3b3o2bo5bo9bobo$24b4o!

wildmyron
Posts: 1542
Joined: August 9th, 2013, 12:45 am
Location: Western Australia

Re: Rule request thread

Post by wildmyron » September 9th, 2018, 6:41 am

You demanded:
gameoflifemaniac wrote:
gameoflifemaniac wrote:

Code: Select all

x = 4, y = 4, rule = Energetic
4C$4C$4C$4C!
The pattern is symmetric, but the result isn't.
FIX THIS
Which followed me saying:
wildmyron wrote:I can fix up the photon generation now.
wildmyron wrote:I'm out of time for now so it will be several days before I make an update.
Whilst I didn't directly address you in my responses here, a lot of the discussion has been about how to fix the rule so that it behaves symmetrically in instances such as the one you posted.
The 5S project (Smallest Spaceships Supporting Specific Speeds) is now maintained by AforAmpere. The latest collection is hosted on GitHub and contains well over 1,000,000 spaceships.

Semi-active here - recovering from a severe case of LWTDS.

User avatar
gameoflifemaniac
Posts: 1242
Joined: January 22nd, 2017, 11:17 am
Location: There too

Re: Rule request thread

Post by gameoflifemaniac » September 9th, 2018, 9:47 am

wildmyron wrote:You demanded:
gameoflifemaniac wrote:
gameoflifemaniac wrote:

Code: Select all

x = 4, y = 4, rule = Energetic
4C$4C$4C$4C!
The pattern is symmetric, but the result isn't.
FIX THIS
Which followed me saying:
wildmyron wrote:I can fix up the photon generation now.
wildmyron wrote:I'm out of time for now so it will be several days before I make an update.
Whilst I didn't directly address you in my responses here, a lot of the discussion has been about how to fix the rule so that it behaves symmetrically in instances such as the one you posted.
Ok.
I was so socially awkward in the past and it will haunt me for the rest of my life.

Code: Select all

b4o25bo$o29bo$b3o3b3o2bob2o2bob2o2bo3bobo$4bobo3bob2o2bob2o2bobo3bobo$
4bobo3bobo5bo5bo3bobo$o3bobo3bobo5bo6b4o$b3o3b3o2bo5bo9bobo$24b4o!

User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Re: Rule request thread

Post by KittyTac » September 11th, 2018, 10:37 pm

Beacon laser:

Code: Select all

x = 4, y = 4, rule = Energetic
2.2A$2.CA$BC$2B!
Block crawls along the laser beam:

Code: Select all

x = 29, y = 31, rule = Energetic
$26.E3$23.E3$20.E3$17.E2$17.2A$14.E2.2A$15.E2$11.E$12.E2$8.E$5.2A2.E$
5.2A$7.2B$4.I2.2B$5.I2$.I$2.I!

Hunting
Posts: 4395
Joined: September 11th, 2017, 2:54 am

Re: Rule request thread

Post by Hunting » September 11th, 2018, 11:39 pm

Uh...

Code: Select all

x = 49, y = 49, rule = Energetic
.K2B$K2.B$A2.G$2AG2$6.G$5.G2$9.G$8.G2$12.G$11.G2$15.G$14.G2$18.G$17.G
2$21.G$20.G2$24.G$23.G2$27.G$26.G2$30.G$29.G2$33.G$32.G2$36.G$35.G2$
39.G$38.G2$42.G$41.G2$45.G$44.G.2B$45.B2.B$45.B2.B$46.2B!

Code: Select all

x = 144, y = 144, rule = Energetic
.K$K2$4.K$3.K2$7.K$6.K2$10.K$9.K2$13.K$12.K2$16.K$15.K2$19.K$18.K2$
22.K$21.K2$25.K$24.K2$28.K$27.K2$31.K$30.K2$34.K$33.K2.2B$36.2B$34.2A
$34.2A2.G$37.G2$41.G$40.G2$44.G$43.G2$47.G$46.G2$50.G$49.G2$53.G$52.G
2$56.G$55.G2$59.G$58.G2$62.G$61.G2$65.G$64.G2$68.G$67.G2$71.G$70.G2$
74.G$73.G2$77.G$76.G2$80.G$79.G2$83.G$82.G2$86.G$85.G2$89.G$88.G2$92.
G$91.G2$95.G$94.G2$98.G$97.G2$101.G$100.G2$104.G$103.G2$107.G$106.G2$
110.G$109.G2$113.G$112.G2$116.G$115.G2$119.G$118.G2$122.G$121.G.B$
122.B.B$123.B.B$124.B.B$125.B.B$126.B.B$127.B.B$128.B.B$129.B.B$130.B
.B$131.B.B$132.B.B$133.B.B$134.B.B$135.B.B$136.B.B$137.B.B$138.B.B$
139.B.B$140.B.B$141.B.B$142.B!

User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Re: Rule request thread

Post by KittyTac » September 16th, 2018, 7:12 am

So what is the ETA for the full version of the rule with all the bugs fixed?

User avatar
jimmyChen2013
Posts: 184
Joined: December 11th, 2017, 3:28 am

Re: Rule request thread

Post by jimmyChen2013 » September 16th, 2018, 9:04 am

Energetic: just a suggestion, maybe we can change the 8 directional particles to 4 "photons" to be more uniform?
we can then use symmetry?

Code: Select all

x = 8, y = 13, rule = B3aeiqr4-aijn5c6cei7/S2cn3-ajr4ceiqt5eijkq6-a7c8
2bo$b3o$5o$b5o$2b5o$3b5o$2b5o$b5o$5o$4o$3o$2o$o!

User avatar
KittyTac
Posts: 535
Joined: December 21st, 2017, 9:58 am

Re: Rule request thread

Post by KittyTac » September 16th, 2018, 9:53 am

jimmyChen2013 wrote:Energetic: just a suggestion, maybe we can change the 8 directional particles to 4 "photons" to be more uniform?
we can then use symmetry?
The symmetry is getting fixed with the 8-directional ones. I want 8-directional photons anyways.

User avatar
jimmyChen2013
Posts: 184
Joined: December 11th, 2017, 3:28 am

Re: Rule request thread

Post by jimmyChen2013 » September 16th, 2018, 9:35 pm

KittyTac wrote:
jimmyChen2013 wrote:Energetic: just a suggestion, maybe we can change the 8 directional particles to 4 "photons" to be more uniform?
we can then use symmetry?
The symmetry is getting fixed with the 8-directional ones. I want 8-directional photons anyways.
...by symmetry i meant reflect4rotate, and by photon i meant the light-speed 2-celled one with a head and a back, but oh ok
it would be a much simpler rule by then

also what if a cell of the opposite life matter is created when a particle hit?



EDIT: following the thought...

Code: Select all

@RULE Exnergetic
********************************
**** COMPILED FROM NUTSHELL ****
********************************

A rule with two totalistic Life states combined with energy particles which
decay to eight single cell photons travelling in all eight directions.

Based on suggestion by 'KittyTac'
See: http://conwaylife.com/forums/viewtopic.php?f=11&t=2030&p=63491#p63491

States
0     vacuum
1     Life
2     Life
3     Energetic particle
4-11  Photons with directions N -> NW

@TABLE
neighborhood: Moore
symmetries: none
n_states: 12

var any.0 = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
var any.1 = any.0
var any.2 = any.0
var any.3 = any.0
var any.4 = any.0
var any.5 = any.0
var any.6 = any.0
var any.7 = any.0
var any.8 = any.0
var live.0 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
var alive.0 = {1, 2}
var alive.1 = alive.0
var life.0 = {0, 1, 2}
var life.1 = life.0
var life.2 = life.0
var life.3 = life.0
var life.4 = life.0
var life.5 = life.0
var life.6 = life.0
var life.7 = life.0
var _716888888775130.0 = {0, 3, 4, 5, 6, 7, 8, 9, 10, 11}
var _716888888775130.1 = _716888888775130.0
var _716888888775130.2 = _716888888775130.0
var _716888888775130.3 = _716888888775130.0
var _716888888775130.4 = _716888888775130.0
var _716888888775130.5 = _716888888775130.0
var _188603385896403.0 = {0, 1}
var _188603385896403.1 = _188603385896403.0
var _188603385896403.2 = _188603385896403.0
var _188603385896403.3 = _188603385896403.0
var _188603385896403.4 = _188603385896403.0
var _188603385896403.5 = _188603385896403.0
var _172129488626172.0 = {0, 2}
var _172129488626172.1 = _172129488626172.0
var _172129488626172.2 = _172129488626172.0
var _172129488626172.3 = _172129488626172.0
var _172129488626172.4 = _172129488626172.0
var _172129488626172.5 = _172129488626172.0
var _710501783665629.0 = {3, 4}
var _710501783665629.1 = _710501783665629.0
var _710501783665629.2 = _710501783665629.0
var _710501783665629.3 = _710501783665629.0
var _710501783665629.4 = _710501783665629.0
var _688398911390223.0 = {3, 5}
var _688398911390223.1 = _688398911390223.0
var _688398911390223.2 = _688398911390223.0
var _688398911390223.3 = _688398911390223.0
var _688398911390223.4 = _688398911390223.0
var _688398911390223.5 = _688398911390223.0
var _537895657608921.0 = {3, 6}
var _537895657608921.1 = _537895657608921.0
var _537895657608921.2 = _537895657608921.0
var _537895657608921.3 = _537895657608921.0
var _537895657608921.4 = _537895657608921.0
var _537895657608921.5 = _537895657608921.0
var _537895657608921.6 = _537895657608921.0
var _487705463628354.0 = {3, 7}
var _487705463628354.1 = _487705463628354.0
var _487705463628354.2 = _487705463628354.0
var _487705463628354.3 = _487705463628354.0
var _487705463628354.4 = _487705463628354.0
var _487705463628354.5 = _487705463628354.0
var _487705463628354.6 = _487705463628354.0
var _487705463628354.7 = _487705463628354.0
var _293966399727257.0 = {8, 3}
var _691662787204218.0 = {9, 3}
var _691662787204218.1 = _691662787204218.0
var _153693061857386.0 = {10, 3}
var _153693061857386.1 = _153693061857386.0
var _153693061857386.2 = _153693061857386.0
var _672977476146232.0 = {11, 3}
var _672977476146232.1 = _672977476146232.0
var _672977476146232.2 = _672977476146232.0
var _672977476146232.3 = _672977476146232.0

0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0
0, alive.0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, alive.0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, alive.0, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, alive.0, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0
0, _716888888775130.0, alive.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, alive.0, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0
0, alive.0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0, alive.0
0, _716888888775130.0, _716888888775130.1, alive.0, _716888888775130.2, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, alive.0, _716888888775130.3, alive.0, _716888888775130.4, alive.0
0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, alive.0, alive.0, alive.0
0, alive.0, _716888888775130.0, alive.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0
0, alive.0, _716888888775130.0, _716888888775130.1, _716888888775130.2, alive.0, _716888888775130.3, _716888888775130.4, alive.0, alive.0
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, 1, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, 1, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1
1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1
1, _716888888775130.0, 1, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, 1, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, 1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, 1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1
1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, 1, _716888888775130.5, 1
1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _188603385896403.0, _716888888775130.1, 1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, 1, _716888888775130.5, 1, 1
1, 1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1, 1
1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, _716888888775130.4, 1, _716888888775130.5, 1
1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, 1, _716888888775130.5, 1
1, _188603385896403.0, 1, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, 1, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1, 1
1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1, 1
1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, 1, 1, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, 1, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, 1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, 1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, 1, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, 1, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, 1, _716888888775130.4, _188603385896403.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _188603385896403.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, 1, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, 1, _188603385896403.5, 1
1, 1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, 1, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _188603385896403.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _716888888775130.0, 1, 1, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1, 1
1, 1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, 1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _188603385896403.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1
1, _716888888775130.0, 1, _716888888775130.1, _188603385896403.2, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, _716888888775130.4, _188603385896403.5, 1
1, _188603385896403.0, 1, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, 1, _716888888775130.2, 1, _716888888775130.3, _188603385896403.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _716888888775130.3, 1, _188603385896403.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, 1, _716888888775130.4, _716888888775130.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, 1, _188603385896403.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _188603385896403.0, _716888888775130.1, _716888888775130.2, 1, 1, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 1, _188603385896403.5, 1, 1
1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, 1, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
1, _716888888775130.0, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, 1, _716888888775130.5, 1, 1
1, 1, _188603385896403.0, _716888888775130.1, 1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 1
1, 1, _716888888775130.0, 1, _716888888775130.1, _716888888775130.2, _188603385896403.3, _716888888775130.4, _716888888775130.5, 1
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2, 2
2, 2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2
2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2, 2
2, _716888888775130.0, 2, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, 2, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, 2, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _172129488626172.1, 2, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _172129488626172.0, 2, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, 2, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2
2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2, 2
2, 2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, 2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, 2, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, 2, 2, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, 2, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2
2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, 2, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, 2, _716888888775130.5, 2, 2
2, 2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2
2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, 2, _172129488626172.5, 2
2, _716888888775130.0, 2, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, 2, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, 2, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _172129488626172.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, 2, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, 2, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, 2, 2, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, 2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, 2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, 2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, 2, _172129488626172.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, 2, _172129488626172.5, 2
2, 2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, 2, _172129488626172.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, 2, _716888888775130.0, _172129488626172.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, 2, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, 2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, 2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _716888888775130.3, _172129488626172.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, 2, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, 2, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _716888888775130.2, _172129488626172.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, 2, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _172129488626172.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, 2, _716888888775130.5, 2
2, _716888888775130.0, _716888888775130.1, 2, 2, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2
2, 2, _716888888775130.0, _716888888775130.1, _716888888775130.2, _716888888775130.3, _716888888775130.4, _172129488626172.5, 2, 2
2, _716888888775130.0, 2, _716888888775130.1, _172129488626172.2, _716888888775130.3, 2, _716888888775130.4, _716888888775130.5, 2
2, _172129488626172.0, _716888888775130.1, _716888888775130.2, 2, _716888888775130.3, _716888888775130.4, _716888888775130.5, 2, 2
2, _716888888775130.0, _716888888775130.1, _172129488626172.2, _716888888775130.3, _716888888775130.4, 2, 2, _716888888775130.5, 2
1, life.0, 2, life.1, life.2, life.3, life.4, life.5, life.6, 3
1, life.0, life.1, life.2, 2, life.3, life.4, life.5, life.6, 3
1, life.0, life.1, life.2, life.3, life.4, 2, life.5, life.6, 3
1, life.0, life.1, life.2, life.3, life.4, life.5, 2, life.6, 3
1, life.0, life.1, life.2, life.3, 2, life.4, life.5, life.6, 3
1, 2, life.0, life.1, life.2, life.3, life.4, life.5, life.6, 3
1, life.0, life.1, life.2, life.3, life.4, life.5, life.6, 2, 3
1, life.0, life.1, 2, life.2, life.3, life.4, life.5, life.6, 3
2, life.0, 1, life.1, life.2, life.3, life.4, life.5, life.6, 3
2, life.0, life.1, life.2, 1, life.3, life.4, life.5, life.6, 3
2, life.0, life.1, life.2, life.3, life.4, 1, life.5, life.6, 3
2, life.0, life.1, life.2, life.3, life.4, life.5, 1, life.6, 3
2, life.0, life.1, life.2, life.3, 1, life.4, life.5, life.6, 3
2, 1, life.0, life.1, life.2, life.3, life.4, life.5, life.6, 3
2, life.0, life.1, life.2, life.3, life.4, life.5, life.6, 1, 3
2, life.0, life.1, 1, life.2, life.3, life.4, life.5, life.6, 3
0, life.0, life.1, life.2, any.3, _710501783665629.4, any.5, life.6, life.7, 4
0, life.0, life.1, life.2, life.3, any.4, _688398911390223.5, any.6, life.7, 5
0, life.0, life.1, life.2, life.3, life.4, any.5, _537895657608921.6, any.7, 6
0, any.0, life.1, life.2, life.3, life.4, life.5, any.6, _487705463628354.7, 7
0, _293966399727257.0, any.1, life.2, life.3, life.4, life.5, life.6, any.7, 8
0, any.0, _691662787204218.1, any.2, life.3, life.4, life.5, life.6, life.7, 9
0, life.0, any.1, _153693061857386.2, any.3, life.4, life.5, life.6, life.7, 10
0, life.0, life.1, any.2, _672977476146232.3, any.4, life.5, life.6, life.7, 11
4, 1, any.0, any.1, any.2, any.3, any.4, any.5, any.6, 2
5, any.0, 1, any.1, any.2, any.3, any.4, any.5, any.6, 2
6, any.0, any.1, 1, any.2, any.3, any.4, any.5, any.6, 2
7, any.0, any.1, any.2, 1, any.3, any.4, any.5, any.6, 2
8, any.0, any.1, any.2, any.3, 1, any.4, any.5, any.6, 2
9, any.0, any.1, any.2, any.3, any.4, 1, any.5, any.6, 2
10, any.0, any.1, any.2, any.3, any.4, any.5, 1, any.6, 2
11, any.0, any.1, any.2, any.3, any.4, any.5, any.6, 1, 2
4, 2, any.0, any.1, any.2, any.3, any.4, any.5, any.6, 1
5, any.0, 2, any.1, any.2, any.3, any.4, any.5, any.6, 1
6, any.0, any.1, 2, any.2, any.3, any.4, any.5, any.6, 1
7, any.0, any.1, any.2, 2, any.3, any.4, any.5, any.6, 1
8, any.0, any.1, any.2, any.3, 2, any.4, any.5, any.6, 1
9, any.0, any.1, any.2, any.3, any.4, 2, any.5, any.6, 1
10, any.0, any.1, any.2, any.3, any.4, any.5, 2, any.6, 1
11, any.0, any.1, any.2, any.3, any.4, any.5, any.6, 2, 1
live.0, any.1, any.2, any.3, any.4, any.5, any.6, any.7, any.8, 0

@COLORS

0  48  48  48
1 255   0 128
2   0 255 128
3 255 255 255

Code: Select all

x = 9, y = 10, rule = Exnergetic
2.2A$2.CA$BC$2B5$7.2B$7.2B!

Code: Select all

x = 8, y = 13, rule = B3aeiqr4-aijn5c6cei7/S2cn3-ajr4ceiqt5eijkq6-a7c8
2bo$b3o$5o$b5o$2b5o$3b5o$2b5o$b5o$5o$4o$3o$2o$o!

Post Reply