<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://conwaylife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Atavoidirc</id>
	<title>LifeWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://conwaylife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Atavoidirc"/>
	<link rel="alternate" type="text/html" href="https://conwaylife.com/wiki/Special:Contributions/Atavoidirc"/>
	<updated>2026-09-06T21:18:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=File:OT_spaceship_map.png&amp;diff=172038</id>
		<title>File:OT spaceship map.png</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=File:OT_spaceship_map.png&amp;diff=172038"/>
		<updated>2026-03-10T01:08:06Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: fixed typo in code&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
A map of the outer-totalistic rulespace (spanning all &amp;lt;tt&amp;gt;512&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&amp;lt;/tt&amp;gt; rules), by support for spaceships.&lt;br /&gt;
&lt;br /&gt;
Birth conditions are in a Gray code rightwards in the x axis (with b0 having the highest precedence, occupying the right half, b1 the central half, b2 the central halves of each half, etc.), survival ones are in one downwards in the y axis (with s0 having the highest precedence in the left half and s8 in the right half). In the bottom-right quadrant, the birth conditions&#039; precedence is inverted again, to make it appear less fragmented.&lt;br /&gt;
&lt;br /&gt;
Each one is coloured in accordance with the existence of spaceships in it. (For s8 rules, only the empty space of off cells is considered a valid background agar, except for the bottom-right quadrant, which has b0 so considers only the all-on agar, and as such duplicates all rules in the left half without S8, so may be excluded in a future version.)&lt;br /&gt;
&lt;br /&gt;
Green rules have explicit examples known in the [https://github.com/jedlimlx/HROT-Glider-DB/blob/master/R1-C2-NM-gliders.db.txt extension] of David Eppstein&#039;s glider database, while the existence of spaceships in red ones is disproven. Black ones are unknown, grey rules are strobing thereof, and the white one (in a top-right corner of a green part in the top-left corner, and duplicated in the bottom-right) is Life.&lt;br /&gt;
&lt;br /&gt;
The proofs regarding strobing rules come from [https://conwaylife.com/forums/viewtopic.php?f=11&amp;amp;t=1074&amp;amp;p=93966#p93966 this post] by LaundryPizza03.&lt;br /&gt;
&lt;br /&gt;
Generated by means of the following program (the disproofs from LaundryPizza03 enclosed in double-brackets)&amp;lt;pre&amp;gt;&lt;br /&gt;
import os,sys&lt;br /&gt;
from functools import reduce&lt;br /&gt;
from itertools import product,chain,starmap&lt;br /&gt;
ORsum=lambda l: reduce(int.__or__,l,0)&lt;br /&gt;
tarmap=lambda f,*l:tuple(starmap(f,*l))&lt;br /&gt;
tilter=lambda f,i: tuple(filter(f,i))&lt;br /&gt;
&lt;br /&gt;
def niceA030101(d,n):&lt;br /&gt;
    b=d-1#d.bit_length()-1&lt;br /&gt;
    l=b.bit_length()&lt;br /&gt;
    o=c=(1&amp;lt;&amp;lt;(1&amp;lt;&amp;lt;l))-1&lt;br /&gt;
    for i in range(l):&lt;br /&gt;
        s=1&amp;lt;&amp;lt;l+~i #s=1&amp;lt;&amp;lt;i&lt;br /&gt;
        o^=o&amp;lt;&amp;lt;s #o=c//((1&amp;lt;&amp;lt;(s&amp;lt;&amp;lt;1))-1)*((1&amp;lt;&amp;lt;s)-1)&lt;br /&gt;
        n=(n&amp;amp;o)&amp;lt;&amp;lt;s|n&amp;gt;&amp;gt;s&amp;amp;o&lt;br /&gt;
    return(n&amp;gt;&amp;gt;1+(~d^~0&amp;lt;&amp;lt;d.bit_length()) if d&amp;amp;d-1 else n)&lt;br /&gt;
&lt;br /&gt;
from PIL import Image&lt;br /&gt;
mask=~(~0&amp;lt;&amp;lt;9)&lt;br /&gt;
rules=[False]*(1&amp;lt;&amp;lt;18)&lt;br /&gt;
with open(os.path.join(sys.path[0],&#039;R1-C2-NM-gliders.db.txt&#039;),newline=&#039;&#039;) as db: #https://github.com/jedlimlx/HROT-Glider-DB/blob/master/R1-C2-NM-gliders.db.txt&lt;br /&gt;
    for s in db:&lt;br /&gt;
        for _ in range(2): s=s[s.index(&#039;:&#039;)+1:]&lt;br /&gt;
        minr=s[:(c:=s.index(&#039;:&#039;))]&lt;br /&gt;
        s=s[c+1:]&lt;br /&gt;
        maxr=s[:s.index(&#039;:&#039;)]&lt;br /&gt;
        minr,maxr=map(lambda r: (lambda b,s: b|s&amp;lt;&amp;lt;9)(*map(lambda t: ORsum(map(lambda i: (str(i) in t)&amp;lt;&amp;lt;i,range(9))),r.split(&#039;/&#039;))),(minr,maxr))&lt;br /&gt;
        diff=minr^maxr&lt;br /&gt;
        indexes=tilter(lambda i: diff&amp;gt;&amp;gt;i&amp;amp;1,range(18))&lt;br /&gt;
        for rule in map(ORsum,product(*map(lambda i: (0,1&amp;lt;&amp;lt;i),indexes))):&lt;br /&gt;
            rules[rule|minr]=True&lt;br /&gt;
            if minr&amp;amp;1 and ~minr&amp;amp;1&amp;lt;&amp;lt;17: #strobing&lt;br /&gt;
                rules[niceA030101(18,~(~0&amp;lt;&amp;lt;18)^(rule|minr))]=True #black/white reversal&lt;br /&gt;
spaceship=lambda b,s: rules[b|s&amp;lt;&amp;lt;9]&lt;br /&gt;
img=Image.frombytes(&#039;RGB&#039;,2*(1&amp;lt;&amp;lt;9,),bytes(chain.from_iterable(tarmap(lambda b,s: (lambda b,s: 3*(0xff,) if b==0b1000 and s==0b1100 else (0,0xff,0) if spaceship(b,s) else ((0xff,spaceship(b,s) and 0xff,0) if not(~b&amp;amp;0b1110 or s&amp;amp;0b11100000) or not(~b&amp;amp;0b111110000 or s&amp;amp;0b11111) or not(~b&amp;amp;0b011110000 or s&amp;amp;0b11110) or not((b^0b0010)&amp;amp;0b1110 or (s^0b1100000)&amp;amp;0b11100000) or ~b&amp;amp;1&amp;lt;&amp;lt;1 and s&amp;amp;1&amp;lt;&amp;lt;7 or b&amp;amp;1&amp;lt;&amp;lt;1 and ~b&amp;amp;1&amp;lt;&amp;lt;2 and not ~s&amp;amp;0b11&amp;lt;&amp;lt;6 or (((~b&amp;amp;0b10 or ~b&amp;amp;0b1100 and not s&amp;amp;0b1111 or not b&amp;amp;0b1100 and not s&amp;amp;1 or not s&amp;amp;0b11111) and (s&amp;amp;1&amp;lt;&amp;lt;7 or not ~b&amp;amp;0b111110000 or not ~b&amp;amp;0b111100000 and s&amp;amp;0b1100000 or b&amp;amp;1&amp;lt;&amp;lt;8 and not ~s&amp;amp;0b1100000) or s&amp;amp;1&amp;lt;&amp;lt;6 and not b&amp;amp;0b110 or not ~s&amp;amp;0b11&amp;lt;&amp;lt;6 and not b&amp;amp;0b100 or not ~b&amp;amp;0b1110 and not s&amp;amp;0b111&amp;lt;&amp;lt;5)) else 3*(0x33,)) if b&amp;amp;1 else (0xff,spaceship(b,s) and 0xff,0) if not b&amp;amp;0b1110 or not ~s&amp;amp;0b1111 or b&amp;amp;0b10 or not(~b&amp;amp;0b1100) and s&amp;amp;1 or not (s^0b11110)&amp;amp;0b11111 or ((b&amp;amp;0b10 or not ~b&amp;amp;0b1100 and s&amp;amp;1 or not ~s&amp;amp;0b1111110 or not ~b&amp;amp;0b11000 and not ~s&amp;amp;0b111110 or not ~b&amp;amp;0b111000 and not ~s&amp;amp;0b11110 or ~b&amp;amp;0b100 and not ~s&amp;amp;0b11111100 or not ~s&amp;amp;0b11111 or b&amp;amp;0b11&amp;lt;&amp;lt;2 and not ~s&amp;amp;0b1111)) else 3*(0,))(*((niceA030101(9,mask^s),niceA030101(9,mask^b)) if b&amp;amp;1 and s&amp;amp;1&amp;lt;&amp;lt;8 else (b,s))),starmap(lambda x,y: map(lambda n: niceA030101(9,n^n&amp;gt;&amp;gt;1),(x,y)) if x&amp;lt;1&amp;lt;&amp;lt;8 else (niceA030101(9,x^x&amp;gt;&amp;gt;1),y^y&amp;gt;&amp;gt;1) if y&amp;lt;1&amp;lt;&amp;lt;8 else ((x&amp;amp;~(1&amp;lt;&amp;lt;8))^(x&amp;amp;~(1&amp;lt;&amp;lt;8))&amp;lt;&amp;lt;1|1,y^y&amp;gt;&amp;gt;1),product(range(1&amp;lt;&amp;lt;9),repeat=2)) if True else chain(product(map(lambda n: niceA030101(9,n^n&amp;gt;&amp;gt;1),range(1&amp;lt;&amp;lt;8)),map(lambda n: niceA030101(9,n^n&amp;gt;&amp;gt;1),range(1&amp;lt;&amp;lt;9))),product(map(lambda n: niceA030101(9,n^n&amp;gt;&amp;gt;1),range(1&amp;lt;&amp;lt;8,1&amp;lt;&amp;lt;9)),map(lambda n: n^n&amp;gt;&amp;gt;1,range(1&amp;lt;&amp;lt;9)))))))).transpose(5)&lt;br /&gt;
img.show()&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Catagolue_naming_conventions&amp;diff=163829</id>
		<title>Catagolue naming conventions</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Catagolue_naming_conventions&amp;diff=163829"/>
		<updated>2025-09-02T12:52:00Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* Objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Catagolue]] has been designed to be compatible with future expansion. In particular, it is very permissive to allow the following:&lt;br /&gt;
&lt;br /&gt;
* Custom [[rule]]s;&lt;br /&gt;
* Custom symmetries;&lt;br /&gt;
* Custom objects.&lt;br /&gt;
&lt;br /&gt;
To avoid breaking Catagolue, there are a number of conventions about how to name rules, symmetries, and objects.&lt;br /&gt;
&lt;br /&gt;
==Census names==&lt;br /&gt;
&lt;br /&gt;
The name of a census is of one of the following forms:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;tt&amp;gt;[rule]/[symmetry]&amp;lt;/tt&amp;gt; for a main census;&lt;br /&gt;
* &amp;lt;tt&amp;gt;[rule]/[symmetry]-[date]&amp;lt;/tt&amp;gt; for a frozen backup of a main census.&lt;br /&gt;
&lt;br /&gt;
The rule and symmetry should satisfy the conventions below, lest the census is potentially subject to automatic deletion. Likewise, for backup censuses, the date should be of the form yyyy-mm-dd.&lt;br /&gt;
&lt;br /&gt;
==Rule names==&lt;br /&gt;
&lt;br /&gt;
A Catagolue rule string must satisfy the regular expression &amp;lt;tt&amp;gt;[a-z][a-zA-Z0-9_-]+&amp;lt;/tt&amp;gt;. The first letter describes the rule family, for example:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;b&#039;&#039;&#039;: a 2-state Moore-neighbourhood outer-totalistic or isotropic rule;&lt;br /&gt;
* &#039;&#039;&#039;r&#039;&#039;&#039;: an extended-range rule (such as [[Larger than Life]]);&lt;br /&gt;
* &#039;&#039;&#039;g&#039;&#039;&#039;: a multi-state [[Generations]] rule;&lt;br /&gt;
* &#039;&#039;&#039;x&#039;&#039;&#039;: a custom rule.&lt;br /&gt;
&lt;br /&gt;
The custom rule syntax allows results from arbitrary rules (from [[Golly]], or other software) to be exchanged without infringing on existing rules. For instance, the rule &amp;lt;tt&amp;gt;xLangtons-Loops&amp;lt;/tt&amp;gt; in Catagolue will map to the rule &#039;Langtons-Loops&#039; in Golly. This should be used for rules that do not fit into any of the other rule families.&lt;br /&gt;
&lt;br /&gt;
For rules which fit into one of the rule families, the name of the rule should be canonical so as to avoid census fragmentation.&lt;br /&gt;
&lt;br /&gt;
==Symmetries==&lt;br /&gt;
&lt;br /&gt;
A Catagolue symmetry must satisfy the regular expression &amp;lt;tt&amp;gt;([A-Z][a-zA-Z0-9_]*~)?[a-zA-Z0-9+_]+&amp;lt;/tt&amp;gt;. If a tilde is present in the symmetry, everything to its left denotes the &#039;&#039;topology&#039;&#039; of the universe (for unbounded Euclidean universes, omit this). The rest of the symmetry string specifies how to create the initial seed in the universe; for instance, &#039;C1&#039; specifies a 16-by-16 seed derived in a standard way from a SHA-256 hash.&lt;br /&gt;
&lt;br /&gt;
It is encouraged to use symmetries beginning with your initials and ending in &#039;Test&#039; when experimenting with new symmetries.&lt;br /&gt;
&lt;br /&gt;
The 20 official symmetries, for which Catagolue knows how to generate the RLE of the initial seed, are tabulated below:&lt;br /&gt;
&lt;br /&gt;
* C1, 8x32, 4x64, 2x128, 1x256: asymmetric soups of various sizes&lt;br /&gt;
* C2_1, C2_2, C2_4: 180° (two-fold) rotational symmetry&lt;br /&gt;
* C4_1, C4_4: 90° (four-fold) rotational symmetry&lt;br /&gt;
* D2_+1, D2_+2: reflectional symmetry along an orthogonal line&lt;br /&gt;
* D2_x: reflectional symmetry along a diagonal line&lt;br /&gt;
* D4_+1, D4_+2, D4_+4: reflectional symmetry along two perpendicular orthogonal lines&lt;br /&gt;
* D4_x1, D4_x4: reflectional symmetry along two perpendicular diagonal lines&lt;br /&gt;
* D8_1, D8_4: reflectional symmetry along four orthogonal/diagonal through a common center&lt;br /&gt;
&lt;br /&gt;
If a topology is specified, it will be appended to the rule with a delimiting colon, with any &#039;x&#039; replaced by a comma, any &#039;f&#039; replaced by an asterisk, and any &#039;p&#039; replaced by a plus sign. This allows Catagolue to generate RLEs compatible with the bounded grid support in [[Golly]].&lt;br /&gt;
&lt;br /&gt;
==Objects==&lt;br /&gt;
&lt;br /&gt;
An object must satisfy one of the following regular expressions:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;tt&amp;gt;zz_[A-Z]+&amp;lt;/tt&amp;gt; for unclassifiable infinite-growth patterns;&lt;br /&gt;
* &amp;lt;tt&amp;gt;PATHOLOGICAL&amp;lt;/tt&amp;gt; for unclassifiable objects which do not appear to grow infinitely;&lt;br /&gt;
* &amp;lt;tt&amp;gt;me(gasized|ssless|ethuselah)_[0-9]+(h|k)&amp;lt;/tt&amp;gt; for long-lived soups;&lt;br /&gt;
* &amp;lt;tt&amp;gt;gun(true)?_[0-9]+&amp;lt;/tt&amp;gt; for guns in the [https://catagolue.hatsya.com/census/b3s23/synthesis-costs/gun &amp;lt;tt&amp;gt;gun&amp;lt;/tt&amp;gt;] and [https://catagolue.hatsya.com/census/b3s23/synthesis-costs/guntrue &amp;lt;tt&amp;gt;guntrue&amp;lt;/tt&amp;gt;] tabulations of &amp;lt;tt&amp;gt;synthesis-costs&amp;lt;/tt&amp;gt;;&lt;br /&gt;
* &amp;lt;tt&amp;gt;yl[0-9]+_[0-9]+_[0-9]+_[a-z]+&amp;lt;/tt&amp;gt; for classifiable linear growth patterns;&lt;br /&gt;
* &amp;lt;tt&amp;gt;ov_[spq][0-9]+&amp;lt;/tt&amp;gt; for oversized objects;&lt;br /&gt;
* &amp;lt;tt&amp;gt;x[spq][0-9]+(_[a-z0-9]+)+&amp;lt;/tt&amp;gt; for everything else.&lt;br /&gt;
&lt;br /&gt;
If an object begins with the letter &#039;x&#039;, it is assumed to be an [[apgcode]] giving an exact canonical form of the pattern. An object beginning with &#039;y&#039; is a classifiable infinite-growth pattern, and an object beginning with &#039;ov&#039; is oversized (too large to admit a Catagolue-friendly apgcode).&lt;br /&gt;
&lt;br /&gt;
{{CatagolueNavbox}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Censuses]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Catagolue_naming_conventions&amp;diff=163828</id>
		<title>Catagolue naming conventions</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Catagolue_naming_conventions&amp;diff=163828"/>
		<updated>2025-09-02T12:51:50Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* Objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Catagolue]] has been designed to be compatible with future expansion. In particular, it is very permissive to allow the following:&lt;br /&gt;
&lt;br /&gt;
* Custom [[rule]]s;&lt;br /&gt;
* Custom symmetries;&lt;br /&gt;
* Custom objects.&lt;br /&gt;
&lt;br /&gt;
To avoid breaking Catagolue, there are a number of conventions about how to name rules, symmetries, and objects.&lt;br /&gt;
&lt;br /&gt;
==Census names==&lt;br /&gt;
&lt;br /&gt;
The name of a census is of one of the following forms:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;tt&amp;gt;[rule]/[symmetry]&amp;lt;/tt&amp;gt; for a main census;&lt;br /&gt;
* &amp;lt;tt&amp;gt;[rule]/[symmetry]-[date]&amp;lt;/tt&amp;gt; for a frozen backup of a main census.&lt;br /&gt;
&lt;br /&gt;
The rule and symmetry should satisfy the conventions below, lest the census is potentially subject to automatic deletion. Likewise, for backup censuses, the date should be of the form yyyy-mm-dd.&lt;br /&gt;
&lt;br /&gt;
==Rule names==&lt;br /&gt;
&lt;br /&gt;
A Catagolue rule string must satisfy the regular expression &amp;lt;tt&amp;gt;[a-z][a-zA-Z0-9_-]+&amp;lt;/tt&amp;gt;. The first letter describes the rule family, for example:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;b&#039;&#039;&#039;: a 2-state Moore-neighbourhood outer-totalistic or isotropic rule;&lt;br /&gt;
* &#039;&#039;&#039;r&#039;&#039;&#039;: an extended-range rule (such as [[Larger than Life]]);&lt;br /&gt;
* &#039;&#039;&#039;g&#039;&#039;&#039;: a multi-state [[Generations]] rule;&lt;br /&gt;
* &#039;&#039;&#039;x&#039;&#039;&#039;: a custom rule.&lt;br /&gt;
&lt;br /&gt;
The custom rule syntax allows results from arbitrary rules (from [[Golly]], or other software) to be exchanged without infringing on existing rules. For instance, the rule &amp;lt;tt&amp;gt;xLangtons-Loops&amp;lt;/tt&amp;gt; in Catagolue will map to the rule &#039;Langtons-Loops&#039; in Golly. This should be used for rules that do not fit into any of the other rule families.&lt;br /&gt;
&lt;br /&gt;
For rules which fit into one of the rule families, the name of the rule should be canonical so as to avoid census fragmentation.&lt;br /&gt;
&lt;br /&gt;
==Symmetries==&lt;br /&gt;
&lt;br /&gt;
A Catagolue symmetry must satisfy the regular expression &amp;lt;tt&amp;gt;([A-Z][a-zA-Z0-9_]*~)?[a-zA-Z0-9+_]+&amp;lt;/tt&amp;gt;. If a tilde is present in the symmetry, everything to its left denotes the &#039;&#039;topology&#039;&#039; of the universe (for unbounded Euclidean universes, omit this). The rest of the symmetry string specifies how to create the initial seed in the universe; for instance, &#039;C1&#039; specifies a 16-by-16 seed derived in a standard way from a SHA-256 hash.&lt;br /&gt;
&lt;br /&gt;
It is encouraged to use symmetries beginning with your initials and ending in &#039;Test&#039; when experimenting with new symmetries.&lt;br /&gt;
&lt;br /&gt;
The 20 official symmetries, for which Catagolue knows how to generate the RLE of the initial seed, are tabulated below:&lt;br /&gt;
&lt;br /&gt;
* C1, 8x32, 4x64, 2x128, 1x256: asymmetric soups of various sizes&lt;br /&gt;
* C2_1, C2_2, C2_4: 180° (two-fold) rotational symmetry&lt;br /&gt;
* C4_1, C4_4: 90° (four-fold) rotational symmetry&lt;br /&gt;
* D2_+1, D2_+2: reflectional symmetry along an orthogonal line&lt;br /&gt;
* D2_x: reflectional symmetry along a diagonal line&lt;br /&gt;
* D4_+1, D4_+2, D4_+4: reflectional symmetry along two perpendicular orthogonal lines&lt;br /&gt;
* D4_x1, D4_x4: reflectional symmetry along two perpendicular diagonal lines&lt;br /&gt;
* D8_1, D8_4: reflectional symmetry along four orthogonal/diagonal through a common center&lt;br /&gt;
&lt;br /&gt;
If a topology is specified, it will be appended to the rule with a delimiting colon, with any &#039;x&#039; replaced by a comma, any &#039;f&#039; replaced by an asterisk, and any &#039;p&#039; replaced by a plus sign. This allows Catagolue to generate RLEs compatible with the bounded grid support in [[Golly]].&lt;br /&gt;
&lt;br /&gt;
==Objects==&lt;br /&gt;
&lt;br /&gt;
An object must satisfy one of the following regular expressions:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;tt&amp;gt;zz_[A-Z]+&amp;lt;/tt&amp;gt; for unclassifiable infinite-growth patterns;&lt;br /&gt;
* &amp;lt;tt&amp;gt;PATHOLOGICAL&amp;lt;/tt&amp;gt; for unclassifiable objects which do not appear to grow infinitely;&lt;br /&gt;
* &amp;lt;tt&amp;gt;me(gasized|ssless|ethuselah)_[0-9]+(h|k)&amp;lt;/tt&amp;gt; for long-lived soups;&lt;br /&gt;
* &amp;lt;tt&amp;gt;gun(true)?_[0-9]+&amp;lt;/tt&amp;gt; for guns in the [https://catagolue.hatsya.com/census/b3s23/synthesis-costs/gun &amp;lt;tt&amp;gt;gun&amp;lt;/tt&amp;gt;] and [https://catagolue.hatsya.com/census/b3s23/synthesis-costs/guntrue &amp;lt;tt&amp;gt;guntrue&amp;lt;/tt&amp;gt;] tabulations of &amp;lt;tt&amp;gt;synthesis-costs&amp;lt;/tt&amp;gt;;&lt;br /&gt;
* &amp;lt;tt&amp;gt;yl[0-9]+_[0-9]+_[0-9]+_[a-z]+&amp;lt;/tt&amp;gt; for classifiable linear growth patterns;&lt;br /&gt;
* &amp;lt;tt&amp;gt;ov_[spq][0-9]+ for oversized objects;&lt;br /&gt;
* &amp;lt;tt&amp;gt;x[spq][0-9]+(_[a-z0-9]+)+&amp;lt;/tt&amp;gt; for everything else.&lt;br /&gt;
&lt;br /&gt;
If an object begins with the letter &#039;x&#039;, it is assumed to be an [[apgcode]] giving an exact canonical form of the pattern. An object beginning with &#039;y&#039; is a classifiable infinite-growth pattern, and an object beginning with &#039;ov&#039; is oversized (too large to admit a Catagolue-friendly apgcode).&lt;br /&gt;
&lt;br /&gt;
{{CatagolueNavbox}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Censuses]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=List_of_natural_spaceships&amp;diff=163806</id>
		<title>List of natural spaceships</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=List_of_natural_spaceships&amp;diff=163806"/>
		<updated>2025-09-01T22:43:18Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* Semi-natural spaceships */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a &#039;&#039;&#039;list of [[natural]] [[spaceship]]s&#039;&#039;&#039; in the [[Conway&#039;s Game of Life|Game of Life]], specifically [[Catagolue]]&#039;s B3/S23/[[symmetry|C1]] census as of October 15, 2022, comprising slightly over 3 quadrillion object occurrences.&lt;br /&gt;
&lt;br /&gt;
In addition, several objects that have appeared naturally or semi-naturally but are not in the Catagolue census are included in a separate table after the main natural objects table (pink).&lt;br /&gt;
&lt;br /&gt;
This is not a list of [[common]] objects, as certainly only the first few rows occur frequently, and some would argue only [[glider]] truly fits the definition of common.&lt;br /&gt;
&lt;br /&gt;
The [[relative frequency]] column gives an estimate of the fraction of all randomly-occurring spaceships. However, glider accounts for 99.8% of spaceship occurrences, and the patterns in this table beyond row 5 occur so infrequently that their order in the table should be viewed as approximate.&lt;br /&gt;
&lt;br /&gt;
== Truly natural spaceships ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto; margin-right:auto; clear:both; text-align:center&amp;quot;&lt;br /&gt;
! &lt;br /&gt;
! Image&lt;br /&gt;
! Pattern&lt;br /&gt;
! [[Period]]&lt;br /&gt;
! [[Heat]]&lt;br /&gt;
! [[Speed]]&lt;br /&gt;
! Minimum # of [[cell]]s&lt;br /&gt;
! [[Glider synthesis|Glider cost]]&lt;br /&gt;
! [[Relative frequency]]&lt;br /&gt;
! [[Frequency class]]&lt;br /&gt;
! [[Apgcode]]&lt;br /&gt;
|-&lt;br /&gt;
! 1&lt;br /&gt;
| [[File:Glider.png|64px]]&lt;br /&gt;
| [[Glider]]&lt;br /&gt;
| {{periodS|4|brief}}&lt;br /&gt;
| 4&lt;br /&gt;
| [[c/4 diagonal]]&lt;br /&gt;
| 5&lt;br /&gt;
| {{gliders|2|brief}}&lt;br /&gt;
| 1 in 1.0019127&amp;lt;br&amp;gt;(99.809%)&lt;br /&gt;
| 1.8&lt;br /&gt;
| {{LinkCatagolue|xq4_153|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 2&lt;br /&gt;
| [[File:Lwss.png|64px]]&lt;br /&gt;
| [[Lightweight spaceship]]&lt;br /&gt;
| 4&lt;br /&gt;
| 11&lt;br /&gt;
| [[c/2 orthogonal|2c/4 orthogonal]]&lt;br /&gt;
| 9&lt;br /&gt;
| {{gliders|3|brief}}&lt;br /&gt;
| 1 in 685.81&amp;lt;br&amp;gt;(0.146%)&lt;br /&gt;
| 11.2&lt;br /&gt;
| {{LinkCatagolue|xq4_6frc|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 3&lt;br /&gt;
| [[File:Mwss.png|64px]]&lt;br /&gt;
| [[Middleweight spaceship]]&lt;br /&gt;
| 4&lt;br /&gt;
| 15&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 11&lt;br /&gt;
| 3&lt;br /&gt;
| 1 in 2,603.1&amp;lt;br&amp;gt;(0.038%)&lt;br /&gt;
| 13.2&lt;br /&gt;
| {{LinkCatagolue|xq4_27dee6|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 4&lt;br /&gt;
| [[File:Hwss.png|64px]]&lt;br /&gt;
| [[Heavyweight spaceship]]&lt;br /&gt;
| 4&lt;br /&gt;
| 19&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 13&lt;br /&gt;
| 3&lt;br /&gt;
| 1 in 14,979&amp;lt;br&amp;gt;(0.007%)&lt;br /&gt;
| 15.7&lt;br /&gt;
| {{LinkCatagolue|xq4_27deee6|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 5&lt;br /&gt;
| [[File:Mwssonmwss1.png|64px]]&lt;br /&gt;
| [[MWSS on MWSS 1]]&lt;br /&gt;
| 4&lt;br /&gt;
| 29&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 20&lt;br /&gt;
| {{gliders|5|brief}}&lt;br /&gt;
| 1 in 5.32 billion&lt;br /&gt;
| 34.1&lt;br /&gt;
| {{LinkCatagolue|xq4_27dee6z4eb776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 6&lt;br /&gt;
| [[File:Hwssonhwss1.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 1]]&lt;br /&gt;
| 4&lt;br /&gt;
| 36&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| {{gliders|6|brief}}&lt;br /&gt;
| 1 in 17.8 billion&lt;br /&gt;
| 35.9&lt;br /&gt;
| {{LinkCatagolue|xq4_27deee6z4eb7776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 7&lt;br /&gt;
| [[File:Lwssonmwss1.png|64px]]&lt;br /&gt;
| [[LWSS on MWSS 1]]&lt;br /&gt;
| 4&lt;br /&gt;
| 26.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 20&lt;br /&gt;
| {{gliders|7|brief}}&lt;br /&gt;
| 1 in 45.1 billion&lt;br /&gt;
| 37.2&lt;br /&gt;
| {{LinkCatagolue|xq4_27de6z4eb776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 8&lt;br /&gt;
| [[File:Lwssonmwss2.png|64px]]&lt;br /&gt;
| [[LWSS on MWSS 2]]&lt;br /&gt;
| 4&lt;br /&gt;
| 26.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 23&lt;br /&gt;
| 6&lt;br /&gt;
| 1 in 56.4 billion&lt;br /&gt;
| 37.5&lt;br /&gt;
| {{LinkCatagolue|xq4_0791h1az8smec|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 9&lt;br /&gt;
| [[File:Lwssonhwss1.png|64px]]&lt;br /&gt;
| [[LWSS on HWSS 1]]&lt;br /&gt;
| 4&lt;br /&gt;
| 29&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 20&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 62.2 billion&lt;br /&gt;
| 37.7&lt;br /&gt;
| {{LinkCatagolue|xq4_27de6z4eb7776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 10&lt;br /&gt;
| [[File:Lwssonmwss3.png|64px]]&lt;br /&gt;
| [[LWSS on MWSS 3]]&lt;br /&gt;
| 4&lt;br /&gt;
| 26&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 23&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 117 billion&lt;br /&gt;
| 38.6&lt;br /&gt;
| {{LinkCatagolue|xq4_27du6ze98885|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 11&lt;br /&gt;
| [[File:Mwssonmwss4.png|64px]]&lt;br /&gt;
| [[MWSS on MWSS 4]]&lt;br /&gt;
| 4&lt;br /&gt;
| 30&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 26&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 180 billion&lt;br /&gt;
| 39.2&lt;br /&gt;
| {{LinkCatagolue|xq4_06eed72zaghgis|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 12&lt;br /&gt;
| [[File:Lwssonhwss2.png|64px]]&lt;br /&gt;
| [[LWSS on HWSS 2]]&lt;br /&gt;
| 4&lt;br /&gt;
| 29&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 20&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 346 billion&lt;br /&gt;
| 40.1&lt;br /&gt;
| {{LinkCatagolue|xq4_6ed72z6777be4|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 13&lt;br /&gt;
| [[File:Lwssonhwss7.png|64px]]&lt;br /&gt;
| [[LWSS on HWSS 7]]&lt;br /&gt;
| 4&lt;br /&gt;
| 29.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 25&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 362 billion&lt;br /&gt;
| 40.2&lt;br /&gt;
| {{LinkCatagolue|xq4_27dumze988885|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 14&lt;br /&gt;
| [[File:Lwssonhwss3.png|64px]]&lt;br /&gt;
| [[LWSS on HWSS 3]]&lt;br /&gt;
| 4&lt;br /&gt;
| 30.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| 6&lt;br /&gt;
| 1 in 405 billion&lt;br /&gt;
| 40.4&lt;br /&gt;
| {{LinkCatagolue|xq4_27de6zw8smeeec|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 15&lt;br /&gt;
| [[File:Mwssonmwss5.png|64px]]&lt;br /&gt;
| [[MWSS on MWSS 5]]&lt;br /&gt;
| 4&lt;br /&gt;
| 29.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 26&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 449 billion&lt;br /&gt;
| 40.5&lt;br /&gt;
| {{LinkCatagolue|xq4_27due6ze98885|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 16&lt;br /&gt;
| [[File:Lwssonhwss5.png|64px]]&lt;br /&gt;
| [[LWSS on HWSS 5]]&lt;br /&gt;
| 4&lt;br /&gt;
| 31&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 450 billion&lt;br /&gt;
| 40.5&lt;br /&gt;
| {{LinkCatagolue|xq4_27de6z8smeeec|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 17&lt;br /&gt;
| [[File:Mwssonmwss2.png|64px]]&lt;br /&gt;
| [[MWSS on MWSS 2]]&lt;br /&gt;
| 4&lt;br /&gt;
| 29&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 20&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 467 billion&lt;br /&gt;
| 40.6&lt;br /&gt;
| {{LinkCatagolue|xq4_27dee6zw4eb776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 18&lt;br /&gt;
| [[File:Lwssonhwss4.png|64px]]&lt;br /&gt;
| [[LWSS on HWSS 4]]&lt;br /&gt;
| 4&lt;br /&gt;
| 31&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| 6&lt;br /&gt;
| 1 in 515 billion&lt;br /&gt;
| 40.7&lt;br /&gt;
| {{LinkCatagolue|xq4_027deee6z8smec|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 19&lt;br /&gt;
| [[File:Mwssonhwss2.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 2]]&lt;br /&gt;
| 4&lt;br /&gt;
| 33.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 536 billion&lt;br /&gt;
| 40.8&lt;br /&gt;
| {{LinkCatagolue|xq4_27dee6z4eb7776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 20&lt;br /&gt;
| [[File:Mwssonmwss3.png|64px]]&lt;br /&gt;
| [[MWSS on MWSS 3]]&lt;br /&gt;
| 4&lt;br /&gt;
| 30&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 24&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 569 billion&lt;br /&gt;
| 40.9&lt;br /&gt;
| {{LinkCatagolue|xq4_677be4zx48889e|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 21&lt;br /&gt;
| [[File:Lwssonhwss6.png|64px]]&lt;br /&gt;
| [[LWSS on HWSS 6]]&lt;br /&gt;
| 4&lt;br /&gt;
| 31&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 648 billion&lt;br /&gt;
| 41.0&lt;br /&gt;
| {{LinkCatagolue|xq4_06eeed72zcems8|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 22&lt;br /&gt;
| [[File:Mwssonhwss10.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 10]]&lt;br /&gt;
| 4&lt;br /&gt;
| 33.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 27&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 994 billion&lt;br /&gt;
| 41.7&lt;br /&gt;
| {{LinkCatagolue|xq4_6eeed72zaghgis|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 23&lt;br /&gt;
| [[File:Mwssonhwss6.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 6]]&lt;br /&gt;
| 4&lt;br /&gt;
| 35&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 24&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 1.01 trillion&lt;br /&gt;
| 41.7&lt;br /&gt;
| {{LinkCatagolue|xq4_sighgazz791hh1a|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 24&lt;br /&gt;
| [[File:Mwssonhwss12.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 12]]&lt;br /&gt;
| 4&lt;br /&gt;
| 34&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 28&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 1.14 trillion&lt;br /&gt;
| 41.9&lt;br /&gt;
| {{LinkCatagolue|xq4_0791hh1az8smeec|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 25&lt;br /&gt;
| [[File:Mwssonhwss14.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 14]]&lt;br /&gt;
| 4&lt;br /&gt;
| 34&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 28&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 1.24 trillion&lt;br /&gt;
| 42.0&lt;br /&gt;
| {{LinkCatagolue|xq4_6eed72zaghhgis|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 26&lt;br /&gt;
| [[File:Mwssonhwss3.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 3]]&lt;br /&gt;
| 4&lt;br /&gt;
| 33.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 1.41 trillion&lt;br /&gt;
| 42.2&lt;br /&gt;
| {{LinkCatagolue|xq4_06eeed72z677be4|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 27&lt;br /&gt;
| [[File:Mwssonhwss7.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 7]]&lt;br /&gt;
| 4&lt;br /&gt;
| 35&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 24&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 1.57 trillion&lt;br /&gt;
| 42.3&lt;br /&gt;
| {{LinkCatagolue|xq4_aghgiszza1hh197|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 28&lt;br /&gt;
| [[File:Mwssonhwss15.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 15]]&lt;br /&gt;
| 4&lt;br /&gt;
| 33&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 28&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 1.64 trillion&lt;br /&gt;
| 42.4&lt;br /&gt;
| {{LinkCatagolue|xq4_27dee6zw4eb7776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 29&lt;br /&gt;
| [[File:Mwssonhwss5.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 5]]&lt;br /&gt;
| 4&lt;br /&gt;
| 34.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 24&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 1.78 trillion&lt;br /&gt;
| 42.5&lt;br /&gt;
| {{LinkCatagolue|xq4_0sighhgazz791h1a|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 30&lt;br /&gt;
| [[File:Mwssonhwss8.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 8]]&lt;br /&gt;
| 4&lt;br /&gt;
| 34.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 24&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 1.84 trillion&lt;br /&gt;
| 42.5&lt;br /&gt;
| {{LinkCatagolue|xq4_0aghhgiszza1h197|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 31&lt;br /&gt;
| [[File:Mwssonhwss11.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 11]]&lt;br /&gt;
| 4&lt;br /&gt;
| 33.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 28&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 2.0 trillion&lt;br /&gt;
| 42.7&lt;br /&gt;
| {{LinkCatagolue|xq4_27duee6ze98885|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 32&lt;br /&gt;
| [[File:Mwssonhwss1.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 1]]&lt;br /&gt;
| 4&lt;br /&gt;
| 33&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 2.1 trillion&lt;br /&gt;
| 42.7&lt;br /&gt;
| {{LinkCatagolue|xq4_27dee6zw4eb7776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 33&lt;br /&gt;
| [[File:Mwssonhwss4.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 4]]&lt;br /&gt;
| 4&lt;br /&gt;
| 34.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 24&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 2.1 trillion&lt;br /&gt;
| 42.7&lt;br /&gt;
| {{LinkCatagolue|xq4_27dee6zx8smeeec|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 34&lt;br /&gt;
| [[File:Mwssonhwss9.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 9]]&lt;br /&gt;
| 4&lt;br /&gt;
| 32.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 25&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 2.1 trillion&lt;br /&gt;
| 42.8&lt;br /&gt;
| {{LinkCatagolue|xq4_02111197zcssqe4|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 35&lt;br /&gt;
| [[File:Mwssonhwss13.png|64px]]&lt;br /&gt;
| [[MWSS on HWSS 13]]&lt;br /&gt;
| 4&lt;br /&gt;
| 33.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 28&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 2.4 trillion&lt;br /&gt;
| 43.0&lt;br /&gt;
| {{LinkCatagolue|xq4_27duu6ze988885|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 36&lt;br /&gt;
| [[File:Coeship.png|64px]]&lt;br /&gt;
| [[Coe ship]]&lt;br /&gt;
| {{periodS|16|brief}}&lt;br /&gt;
| 38&lt;br /&gt;
| 8c/16 orthogonal&lt;br /&gt;
| 28&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 3.6 trillion&lt;br /&gt;
| 43.5&lt;br /&gt;
| {{LinkCatagolue|xq16_gcbgzvgg826frc|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 37&lt;br /&gt;
| [[File:Hwssonhwss8.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 8]]&lt;br /&gt;
| 4&lt;br /&gt;
| 37&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 29&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 4.4 trillion&lt;br /&gt;
| 43.8&lt;br /&gt;
| {{LinkCatagolue|xq4_06eeed72zaghhgis|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 38&lt;br /&gt;
| [[File:Hwssonhwss2.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 2]]&lt;br /&gt;
| 4&lt;br /&gt;
| 36&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 22&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 5.8 trillion&lt;br /&gt;
| 44.2&lt;br /&gt;
| {{LinkCatagolue|xq4_27deee6zw4eb7776|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 39&lt;br /&gt;
| [[File:Hwssonhwss5.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 5]]&lt;br /&gt;
| 4&lt;br /&gt;
| 39&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 26&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 6.1 trillion&lt;br /&gt;
| 44.3&lt;br /&gt;
| {{LinkCatagolue|xq4_aghhgiszzwa1hh197|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 40&lt;br /&gt;
| [[File:Hwssonhwss4.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 4]]&lt;br /&gt;
| 4&lt;br /&gt;
| 39&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 26&lt;br /&gt;
| 6&lt;br /&gt;
| 1 in 6.6 trillion&lt;br /&gt;
| 44.4&lt;br /&gt;
| {{LinkCatagolue|xq4_0aghhgiszza1hh197|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 41&lt;br /&gt;
| [[File:Hwssonhwss6.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 6]]&lt;br /&gt;
| 4&lt;br /&gt;
| 37&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 29&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 9.4 trillion&lt;br /&gt;
| 44.9&lt;br /&gt;
| {{LinkCatagolue|xq4_027deee6zsighhga|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 42&lt;br /&gt;
| [[File:Hwssonhwss10.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 10]]&lt;br /&gt;
| 4&lt;br /&gt;
| 37&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 31&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 10 trillion&lt;br /&gt;
| 45.0&lt;br /&gt;
| {{LinkCatagolue|xq4_027deee6zsighhga|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 43&lt;br /&gt;
| [[File:Hwssonhwss7.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 7]]&lt;br /&gt;
| 4&lt;br /&gt;
| 37&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 29&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 11 trillion&lt;br /&gt;
| 45.1&lt;br /&gt;
| {{LinkCatagolue|xq4_27duue6ze988885|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 44&lt;br /&gt;
| [[File:Hwssonhwss9.png|64px]]&lt;br /&gt;
| [[HWSS on HWSS 9]]&lt;br /&gt;
| 4&lt;br /&gt;
| 37&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 30&lt;br /&gt;
| 7&lt;br /&gt;
| 1 in 13 trillion&lt;br /&gt;
| 45.4&lt;br /&gt;
| {{LinkCatagolue|xq4_a1hh197zx6777be4|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 45&lt;br /&gt;
| [[File:Sidecar.png|64px]]&lt;br /&gt;
| [[Sidecar]]&lt;br /&gt;
| 4&lt;br /&gt;
| 33.5&lt;br /&gt;
| 2c/4 orthogonal&lt;br /&gt;
| 24&lt;br /&gt;
| 8&lt;br /&gt;
| &amp;lt;1 in 50 trillion&lt;br /&gt;
| 47&lt;br /&gt;
| {{LinkCatagolue|xq4_027deee6z4eqscc6|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 46&lt;br /&gt;
| [[File:Lightweightschickengine.png|96px]]&lt;br /&gt;
| [[Lightweight Schick engine]]&lt;br /&gt;
| {{periodS|12|brief}}&lt;br /&gt;
| 43.2&lt;br /&gt;
| 6c/12 orthogonal&lt;br /&gt;
| 39&lt;br /&gt;
| {{gliders|9|brief}}&lt;br /&gt;
| &amp;lt;1 in 100 trillion&lt;br /&gt;
| 48&lt;br /&gt;
| {{LinkCatagolue|xq12_fh1i0i1hfzw8sms8zxfjf|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 47&lt;br /&gt;
| [[File:Loafer.png|64px]]&lt;br /&gt;
| [[Loafer]]&lt;br /&gt;
| {{periodS|7|brief}}&lt;br /&gt;
| 14.6&lt;br /&gt;
| c/7 othogonal&lt;br /&gt;
| 20&lt;br /&gt;
| {{gliders|8|brief}}&lt;br /&gt;
| &amp;lt;1 in 200 trillion&lt;br /&gt;
| 49&lt;br /&gt;
| {{LinkCatagolue|xq7_3nw17862z6952|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 48&lt;br /&gt;
| [[File:mwssandhwssdraggingblock.png|64px]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | [[MWSS and HWSS dragging block]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 38.5&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 2c/4 orthogonal&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 28&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{LinkCatagolue|xq4_gfvuwogwggz131y2crf7|style=tabulated}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Semi-natural spaceships ==&lt;br /&gt;
There are also a handful of spaceships which have occurred in symmetric soups, but not asymmetric soups.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto; margin-right:auto; clear:both; text-align:center&amp;quot;&lt;br /&gt;
! &lt;br /&gt;
! Image&lt;br /&gt;
! Pattern&lt;br /&gt;
! [[Period]]&lt;br /&gt;
! [[Heat]]&lt;br /&gt;
! [[Speed]]&lt;br /&gt;
! Minimum # of [[cell]]s&lt;br /&gt;
! [[Glider synthesis|Glider cost]]&lt;br /&gt;
! [[Relative frequency]]&lt;br /&gt;
! [[Frequency class]]&lt;br /&gt;
! [[Apgcode]]&lt;br /&gt;
|-&lt;br /&gt;
! 1&lt;br /&gt;
| [[File:x66.png|64px]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | [[x66]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 31&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 2c/4 orthogonal&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 34&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{gliders|11|brief}}&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{LinkCatagolue|xq4_0oorxroozdjio404oijd|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 2&lt;br /&gt;
| [[File:Copperhead.png|64px]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | [[Copperhead]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 26.8&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | c/10 orthogonal&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 28&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{gliders|13|brief}}&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{LinkCatagolue|xq10_o5995ozes88sezw33|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 3&lt;br /&gt;
| [[File:bigabehindtwolwss.png|64px]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | [[Big A]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 51&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 2c/4 orthogonal&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 32&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{gliders|18|brief}}&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{LinkCatagolue|xq4_7911azy0ehhvhzsigga|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 4&lt;br /&gt;
| [[File:dart.png|64px]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | [[Dart]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 32&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | c/3 orthogonal&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 34&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{gliders|24|brief}}&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{LinkCatagolue|xq3_mhqkzarahh0heezdhb5|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 5&lt;br /&gt;
| [[File:58p8h4v0.png|96px]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | [[58P8H4V0]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 50&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 2c/4 orthogonal&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 58&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{gliders|25|brief}}&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background:pink;max-width:40px;overflow-wrap:break-word;&amp;quot; | {{LinkCatagolue|xq8_ciire2272hm0mh2722eriiczw1x2c8960698c2x1|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 6&lt;br /&gt;
| [[File:44p5h2v0.png|64px]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | [[44P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 47.2&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 2c/5 orthogonal&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 44&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{gliders|23|brief}}&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{LinkCatagolue|xq5_0sg3pnxnp3gsz4s01tve0evt10s4|style=tabulated}}&lt;br /&gt;
|-&lt;br /&gt;
! 7&lt;br /&gt;
| [[File:54p12h6v0.png|96px]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | [[54P12H6V0]]&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 16&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 46.0&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 6c/12 orthogonal&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | 54&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | {{gliders|22|brief}}&lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background:pink&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background:pink;max-width:40px;overflow-wrap:break-word;&amp;quot; | {{LinkCatagolue|xq12_cur6wgs2i6o0o6i2sgw6ruczy2nh011x110hn|style=tabulated}}&lt;br /&gt;
|}&lt;br /&gt;
{{CatagolueNavbox}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists of patterns]]&lt;br /&gt;
[[Category:Lists of patterns with synthesis costs]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Canada_goose&amp;diff=163288</id>
		<title>Canada goose</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Canada_goose&amp;diff=163288"/>
		<updated>2025-07-25T19:51:22Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* Glider synthesis */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{About|the [[glider]] [[tagalong]]|the [[extensible]] [[greyship]]|Canada Grey}}&lt;br /&gt;
{{Spaceship&lt;br /&gt;
|name             = Canada goose&lt;br /&gt;
|pname            = canadagoose&lt;br /&gt;
|type             = Tagalong&lt;br /&gt;
|c                = 36&lt;br /&gt;
|bx               = 13&lt;br /&gt;
|by               = 12&lt;br /&gt;
|dir              = Diagonal&lt;br /&gt;
|p                = 4&lt;br /&gt;
|m                = 2&lt;br /&gt;
|s                = c/4&lt;br /&gt;
|z                = c/4&lt;br /&gt;
|h                = 28.0&lt;br /&gt;
|symmetry         = n/e&lt;br /&gt;
|discoverer       = Jason Summers&lt;br /&gt;
|discoveryear     = 1999&lt;br /&gt;
|rulemin          = B3/S23&lt;br /&gt;
|rulemax          = B378/S023678&lt;br /&gt;
|isorulemin       = B3-ky/S2-n3-cey&lt;br /&gt;
|isorulemax       = B2in34ceqw5aceky6-k78/S0234-aikrz5ekny678&lt;br /&gt;
|plaintext        = true&lt;br /&gt;
|rle              = true&lt;br /&gt;
|animated         = true&lt;br /&gt;
|viewerconfig     = #C [[ HEIGHT 600 THUMBSIZE 3 ZOOM 36 GPS 4 TRACKLOOP 4 -1/4 -1/4 ]]&lt;br /&gt;
|apgcode          = xq4_3518ow8c4624zwgc2e0kt288zw33&lt;br /&gt;
|pentadecathlonid = 36P4H1V1.1&lt;br /&gt;
}}&lt;br /&gt;
The &#039;&#039;&#039;Canada goose&#039;&#039;&#039; was found by [[Jason Summers]] in January {{year|1999}}. It consists of a [[glider]] pulling a [[tagalong]].&lt;br /&gt;
&lt;br /&gt;
At the time of its discovery, the Canada goose was the smallest known diagonal [[spaceship]] other than the glider, but this record has since been beaten, first by [[Orion 2]], and more recently by the [[crab]].&lt;br /&gt;
&lt;br /&gt;
== Modifications ==&lt;br /&gt;
It was discovered in January 1999 by [[Stephen Silver]] that Canada geese can be welded together by their wings, creating an [[extensible]] spaceship. [[Gabriel Nivasch]], later that same month, reported that because the [[swan]] uses the same wing, swans and Canada geese can be welded together. He also found that a [[glider emulator]] can replace the glider at the front end of the Canada goose.&lt;br /&gt;
&lt;br /&gt;
The [[crane]] has the same wing as well, so may also be welded.&lt;br /&gt;
{{gallery top}}&lt;br /&gt;
{{gallery item|{{EmbedViewer&lt;br /&gt;
|pname        = weldedgeese&lt;br /&gt;
|viewerconfig = #C [[ HEIGHT 400 THUMBSIZE 2 ZOOM 8 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = Two Canada geese welded together, as discovered by Stephen Silver&lt;br /&gt;
|apgcode      = xq4_y63518ow8c4624zy88k2e0kt288z3518ow8c0222bzwgc2e0kt288zw33&lt;br /&gt;
|style        = width:300px;&lt;br /&gt;
}}}}&lt;br /&gt;
{{gallery item|{{EmbedViewer&lt;br /&gt;
|pname        = swanweldgoose&lt;br /&gt;
|viewerconfig = #C [[ HEIGHT 400 THUMBSIZE 2 ZOOM 8 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A swan and a Canada goose welded together, as discovered by Gabriel Nivasch&lt;br /&gt;
|apgcode      = xq4_xgc1hbzsm0201zfnhea82ez01ppozy0lskoogwgg0a64zy21p0qf3ppozy31021x26&lt;br /&gt;
|style        = width:300px;&lt;br /&gt;
}}}}&lt;br /&gt;
{{gallery item|{{EmbedViewer&lt;br /&gt;
|rle          = x = 29, y = 30, rule = B3/S23&lt;br /&gt;
16b3o$16bo9b2o$17bo6b3obo$2o17b2o2b2o$obo17bo$o23bo$3bo4bo11b2o3bo$3b2o2bobo9bobob2o$7bobo8bo2bo2bob2o$7b2o10bo3b2o$7bo11bo$6bo2bo6b4o$14bo$7bobo3b2o4bo$9b2o$10bo3bo2$12bo$10b2o$10bo$11bo$12bo2$12b2ob2o$14b2obo$14b2obo2$15bobo$17bo$17bo!&lt;br /&gt;
|viewerconfig = #C [[ HEIGHT 400 THUMBSIZE 2 ZOOM 8 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A crane and a Canada goose welded together&amp;lt;!--, as discovered by DroneBetter--&amp;gt;&lt;br /&gt;
|apgcode      = xq4_x235g88zy3ss02csozy9gcv721160848zc68y0ggg0sbv6y433451a8zxjfs8rj8gz04b92w222&lt;br /&gt;
|style        = width:300px;&lt;br /&gt;
}}}}&lt;br /&gt;
{{gallery item|{{EmbedViewer&lt;br /&gt;
|pname        = longcanadagoose&lt;br /&gt;
|viewerconfig = #C [[ HEIGHT 400 THUMBSIZE 2 ZOOM 8 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A Canada goose with the front glider replaced by a [[glider emulator]].&lt;br /&gt;
|apgcode      = xq4_wgmg8g0gt6zgg1klc08py7ob8ooz111y3e730440ui2902069hsgzy62ge6gg011619asgx147m2gzy2dc4ic813w3so8y02e70ko8031zy51224scgx10d6ugzyb2ceaoc011&lt;br /&gt;
|style        = width:300px;&lt;br /&gt;
}}}}&lt;br /&gt;
{{gallery item|{{EmbedViewer&lt;br /&gt;
|rle          = x = 19, y = 19, rule = B3/S23&lt;br /&gt;
3o$o9b2o$bo6b3obo$3b2o2b2o$4bo$8bo$4b2o3bo$3bobob2o5b2o$3bobo2bob2ob2o3bo$2bo4b2o6bob2o$2b2o9bo$2b2o7b3o$10bo3bo$8bo$7b2o4bo$8b2o$8b3o$8bo$9b2o!&lt;br /&gt;
|viewerconfig = #C [[ HEIGHT 400 THUMBSIZE 2 ZOOM 8 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A Canada goose pulling an unnamed tagalong (which may itself support a larger tagalong still: {{LinkCatagolue|xq4_y6cc488g0go217zxg8ooc8xc9dh80cozx101o0ghe80rgy053zgouigsf42xd81ze0e|style=brief}} with the same backend as a different such spaceship: {{LinkCatagolue|xq4_y1oo4h93z0o6n211hvc8ea153zk6n455lbfz303x1|style=brief}})&lt;br /&gt;
|apgcode      = xq4_3518ow8c4624zwgc2e0kt28808ck0gozw33xgo0422j4zy47ba&lt;br /&gt;
|style        = width:300px;&lt;br /&gt;
}}}}&lt;br /&gt;
{{gallery bottom}}&lt;br /&gt;
&lt;br /&gt;
== Glider synthesis ==&lt;br /&gt;
As of July 2025, the Canada goose is tied for the smallest spaceship to have no glider synthesis discovered.&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* {{LinkLexicon|lex_c.htm#canadagoose}}&lt;br /&gt;
* {{LinkCatagolue|xq4_3518ow8c4624zwgc2e0kt288zw33}}&lt;br /&gt;
* {{LinkPentadecathlonObject|36P4H1V1.1}}&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Density&amp;diff=148601</id>
		<title>Density</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Density&amp;diff=148601"/>
		<updated>2024-05-02T13:17:44Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* Densities of other objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Glossary}}&lt;br /&gt;
The &#039;&#039;&#039;density&#039;&#039;&#039; of a pattern is the proportion of live [[cell]]s within its [[bounding box]].&lt;br /&gt;
&lt;br /&gt;
==Still lifes==&lt;br /&gt;
The maximum densities of square still lifes up to {{times|20|20}} were known in 2002.&amp;lt;ref&amp;gt;{{cite web|url=https://web.archive.org/web/20130731001049/http://www.ai.sri.com/~nysmith/life  |title=Maximum Density Still Life |publisher=Neil Yorke-Smith|date=August 4, 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The general problem of finding the maximum population of an {{times|n|n}} square [[pseudo]] [[still life]] (&amp;lt;tt&amp;gt;{{OEIS|A055397|tt=tt}}(n)&amp;lt;/tt&amp;gt;) was solved for all n in 2012.&amp;lt;ref name=ref1&amp;gt;{{cite web|url=https://people.eng.unimelb.edu.au/pstuckey/papers/still-life.pdf | title=A Complete Solution to the Maximum Density Still Life Problem  | publisher=Geoffrey Chu, Peter J. Stuckey, NICTA Victoria Laboratory, Department of Computing and Information Systems, University of Melbourne, Australia | date=November 8, 2013}}&amp;lt;/ref&amp;gt; It is given by the following function:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;first=(0,0,4,6,8,16,18,28,36,43,54,64,76,90,104,119,136,152,171,190,210,232,253,276,302,326,353,379,407,437,467,497,531,563,598,&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;opacity: 0&amp;quot;&amp;gt;. . . .&amp;lt;/span&amp;gt;633,668,706,744,782,824,864,907,949,993,1039,1085,1132,1181,1229,1280,1331,1382,1436,1490,1545,1602,1658,1717,1776,1835)&amp;lt;br /&amp;gt;def cells(n):&amp;lt;br /&amp;gt;&amp;lt;span style=&amp;quot;opacity: 0&amp;quot;&amp;gt;. . &amp;lt;/span&amp;gt;if n&amp;lt;61:&amp;lt;br /&amp;gt;&amp;lt;span style=&amp;quot;opacity: 0&amp;quot;&amp;gt;. . . . &amp;lt;/span&amp;gt;return first[n]&amp;lt;br /&amp;gt;&amp;lt;span style=&amp;quot;opacity: 0&amp;quot;&amp;gt;. . &amp;lt;/span&amp;gt;elif n%54 in {0,1,3,8,9,11,16,17,19,25,27,31,33,39,41,47,49}:&amp;lt;br /&amp;gt;&amp;lt;span style=&amp;quot;opacity: 0&amp;quot;&amp;gt;. . . . &amp;lt;/span&amp;gt;return ⌊(27*n&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;+34*n)/54⌋-2&amp;lt;br /&amp;gt;&amp;lt;span style=&amp;quot;opacity: 0&amp;quot;&amp;gt;. . &amp;lt;/span&amp;gt;else:&amp;lt;br /&amp;gt;&amp;lt;span style=&amp;quot;opacity: 0&amp;quot;&amp;gt;. . . . &amp;lt;/span&amp;gt;return ⌊(27*n&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;+34*n)/54⌋-1&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The following table contains maximum density still life information for side lengths through 25.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Side length !! Max. density !! Max. population&amp;lt;sup&amp;gt;&amp;amp;dagger;&amp;lt;/sup&amp;gt;&amp;lt;br/&amp;gt;(example) !! Example pattern(s) !! Total patterns&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0 || 0 || || 0&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 1 || 4&amp;lt;br/&amp;gt;[[block]] || {{EmbedViewer|pname=block|viewerconfig= #C [[ THUMBSIZE 3 ]]}} || 1&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 0.6667 || 6&amp;lt;br/&amp;gt;[[ship]] || {{EmbedViewer|pname=ship|viewerconfig= #C [[ THUMBSIZE 3 ]]}} || 1&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 0.5 || 8&amp;lt;br/&amp;gt;[[pond]]&amp;lt;br/&amp;gt;[[long ship]] || {{EmbedViewer|pname=pond|viewerconfig= #C [[ THUMBSIZE 3 ]]}}&amp;lt;br&amp;gt;{{EmbedViewer|pname=longship|viewerconfig= #C [[ THUMBSIZE 3 ]]}} || 2&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 0.64 || 16&amp;lt;br/&amp;gt;{{LinkCatagolue|xs16_rr0rr|name=four blocks|style=raw}} || {{EmbedViewer|pname=4blocks|viewerconfig= #C [[ THUMBSIZE 3 ]]}} || 1&lt;br /&gt;
|-&lt;br /&gt;
| 6 || 0.5 || 18&amp;lt;br/&amp;gt;two [[long shillelagh]]s&amp;lt;br/&amp;gt;{{LinkCatagolue|xs18_j5mgdbz1101|name=trans-snake-tie with ship|style=raw}}&amp;lt;br/&amp;gt;[https://catagolue.hatsya.com/object/xs18_gbr0rrz11/b3s23 three blocks with ship] || {{EmbedViewer|pname=twolongshillelaghs|viewerconfig= #C [[ THUMBSIZE 3 ]]}} &amp;lt;br /&amp;gt;{{EmbedViewer|pname=transsnaketiewithship|viewerconfig= #C [[ THUMBSIZE 3 ]]}} &amp;lt;br /&amp;gt;{{EmbedViewer|pname=3blockswithship|viewerconfig= #C [[ THUMBSIZE 3 ]]}} &amp;lt;br /&amp;gt;{{EmbedViewer|pname=6x6maxdensitystilllifes|viewerconfig= #C [[ THUMBSIZE 3 ]]}} || 9&lt;br /&gt;
|-&lt;br /&gt;
| 7 || 0.5714 || 28&amp;lt;br/&amp;gt;{{LinkCatagolue|xs28_db8n9arz3123032|name=tub of snakes|style=raw}} || {{EmbedViewer|pname=7x7maxdensity |viewerconfig= #C [[ THUMBSIZE 3 ]]}} || 1&lt;br /&gt;
|-&lt;br /&gt;
| 8 || 0.5625 || 36&amp;lt;br/&amp;gt;nine blocks || {{EmbedViewer|pname=9blocks|viewerconfig= #C [[ THUMBSIZE 3 ]]}} || 1&lt;br /&gt;
|-&lt;br /&gt;
| 9 || 0.5309 || 43 || {{EmbedViewer|pname=43cell9x9pseudostilllifes|viewerconfig= #C [[ THUMBSIZE 3 ]]}} || 10&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.5400 || 54 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=10x10maxdensity }} || &amp;gt;100&lt;br /&gt;
|-&lt;br /&gt;
| 11 || 0.5289 || 64&amp;lt;br/&amp;gt;sixteen blocks|| {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=11x11maxdensity }} || 1&lt;br /&gt;
|-&lt;br /&gt;
| 12 || 0.5278 || 76 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=12x12maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 13 || 0.5325 || 90 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=13x13maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 14 || 0.5306 || 104 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=14x14maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 15 || 0.5289 || 119 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=15x15maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 16 || 0.531 || 136 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=16x16maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 17 || 0.526 || 152 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=17x17maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 18 || 0.528 || 171 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=18x18maxdensity }} &lt;br /&gt;
|-&lt;br /&gt;
| 19 || 0.526 || 190 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=19x19maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 0.525 || 210 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=20x20maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 21 || 0.526 || 232 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=21x21maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 22 || 0.523 || 253 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=22x22maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 23 || 0.522 || 276 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=23x23maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 24 || 0.523 || 301 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=24x24maxdensity }}&lt;br /&gt;
|-&lt;br /&gt;
| 25 || 0.522 || 326 || {{EmbedViewer|viewerconfig= #C [[ THUMBSIZE 3 ]] | pname=25x25maxdensity }}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*For any side length of the form 3n-1, a segment of [[block agar]] can be used to reach a population of 4n&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;; to n=4 this is the optimal solution, as can be seen in the above table.&lt;br /&gt;
*The maximum density of an {{times|n|n}} still life is greater than or equal to 1/2 for all finite n&amp;gt;1.&amp;lt;ref name=&amp;quot;cgolmc_1&amp;quot;&amp;gt;{{citeCGoLMC|section=2.5}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Densities of other objects ==&lt;br /&gt;
* The maximum density of a still life agar was proven to be 1/2 by [[Noam Elkies]]&amp;lt;ref&amp;gt;{{cite web|url=https://arxiv.org/abs/math/9905194 |title=The still-Life density problem and its generalizations|author=Noam D. Elkies| accessdate=May 26, 2022| date=May 31, 1999}}&amp;lt;/ref&amp;gt; (this is known as the &#039;&#039;&#039;still life conjecture&#039;&#039;&#039;).&lt;br /&gt;
* The maximum average density of an oscillating agar is conjectured but not proven to be 1/2. The current upper bound is 1176/2087≈0.563, proven by [[Keith Amling]] in {{year|2024}}.&amp;lt;ref name=&amp;quot;post175245&amp;quot; /&amp;gt;&lt;br /&gt;
* The density of [[ash]] is [[Achim Flammenkamp&#039;s census|approximately 0.0287]] (1 in 35).&lt;br /&gt;
* By observation, the density of a [[space dust]]y oscillator or spaceship is usually between 0.25 and 0.3.&amp;lt;ref name=&amp;quot;post146282&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post175245&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Unproven conjectures&lt;br /&gt;
|p      = 175245&lt;br /&gt;
|author = Keith Amling&lt;br /&gt;
|date   = January 9, 2024&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post146282&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Can we substantiate this claim?&lt;br /&gt;
|p      = 146282&lt;br /&gt;
|author = David Raucci&lt;br /&gt;
|date   = May 29, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{LinkLexicon|lex_d.htm#density}}&lt;br /&gt;
*[https://golhobby.com/patman Maximum Density Still Lifes-PatMan pattern collection] all n=2...200&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=147664</id>
		<title>User:Atavoidirc</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=147664"/>
		<updated>2024-03-22T17:31:34Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* Other Pages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is a hub page&lt;br /&gt;
[[User:Atavoidirc/Spaceship table]]&lt;br /&gt;
==[[User:GUYTU6J]]/Neighbourhood==&lt;br /&gt;
{{User:GUYTU6J/Neighbourhood}}&lt;br /&gt;
==Life wiki Pages==&lt;br /&gt;
* [[LifeWiki:Game of Life Status page]]&lt;br /&gt;
* [[LifeWiki:Spaceship Search Status Page]]&lt;br /&gt;
* [[LifeWiki:Smallest Spaceships Supporting Specific Speeds]]&lt;br /&gt;
* [[LifeWiki:Project OmniOsci/Overview]]&lt;br /&gt;
* [[LifeWiki:LifeViewer cheatsheet for LifeWiki articles]]&lt;br /&gt;
* [[LifeWiki:List of ongoing projects]]&lt;br /&gt;
&lt;br /&gt;
==Other Pages==&lt;br /&gt;
* [[Table of oscillators by period]]&lt;br /&gt;
* [https://conwaylife.com/wiki/Special:PrefixIndex?prefix=Galoomba&amp;amp;namespace=2 Galoombauserpages]&lt;br /&gt;
&lt;br /&gt;
==Rules in Userspace==&lt;br /&gt;
*   [[User:Carbon6/Gnarl]]&lt;br /&gt;
*   [[User:Drc/GlideLife]]&lt;br /&gt;
*   [[User:Prime Raptor21/Nothing (Rule)]] &lt;br /&gt;
*   [[User:Evin/BiLife]]&lt;br /&gt;
*   [[User:Moosey/eatsplosion]]&lt;br /&gt;
*   [[User:Evin/Silverseeds]]&lt;br /&gt;
*   [[User:Evin/OCA:E1]]&lt;br /&gt;
*   [[User:Evin/Wlife]]&lt;br /&gt;
*   [[User:GUYTU6J/OCA:Glimmering Garden]]&lt;br /&gt;
*   [[User:Yujh/B34kz5e7c8/S23-a4ityz5k]]&lt;br /&gt;
*   [[User:Cvojan/TubularTest]]&lt;br /&gt;
*   [[User:Ultimium/OCA:LeapLife]]&lt;br /&gt;
*   [[User:Cgoler2/rrlife]]&lt;br /&gt;
*   [[User:Cgoler2/Clife]]&lt;br /&gt;
*   [[User:Pzq Alex/BitLife]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=147663</id>
		<title>User:Atavoidirc</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=147663"/>
		<updated>2024-03-22T17:30:25Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* Other Pages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is a hub page&lt;br /&gt;
[[User:Atavoidirc/Spaceship table]]&lt;br /&gt;
==[[User:GUYTU6J]]/Neighbourhood==&lt;br /&gt;
{{User:GUYTU6J/Neighbourhood}}&lt;br /&gt;
==Life wiki Pages==&lt;br /&gt;
* [[LifeWiki:Game of Life Status page]]&lt;br /&gt;
* [[LifeWiki:Spaceship Search Status Page]]&lt;br /&gt;
* [[LifeWiki:Smallest Spaceships Supporting Specific Speeds]]&lt;br /&gt;
* [[LifeWiki:Project OmniOsci/Overview]]&lt;br /&gt;
* [[LifeWiki:LifeViewer cheatsheet for LifeWiki articles]]&lt;br /&gt;
* [[LifeWiki:List of ongoing projects]]&lt;br /&gt;
&lt;br /&gt;
==Other Pages==&lt;br /&gt;
* [[Table of oscillators by period]]&lt;br /&gt;
* [[Special:PrefixIndex?prefix=Galoomba&amp;amp;namespace=2]]&lt;br /&gt;
&lt;br /&gt;
==Rules in Userspace==&lt;br /&gt;
*   [[User:Carbon6/Gnarl]]&lt;br /&gt;
*   [[User:Drc/GlideLife]]&lt;br /&gt;
*   [[User:Prime Raptor21/Nothing (Rule)]] &lt;br /&gt;
*   [[User:Evin/BiLife]]&lt;br /&gt;
*   [[User:Moosey/eatsplosion]]&lt;br /&gt;
*   [[User:Evin/Silverseeds]]&lt;br /&gt;
*   [[User:Evin/OCA:E1]]&lt;br /&gt;
*   [[User:Evin/Wlife]]&lt;br /&gt;
*   [[User:GUYTU6J/OCA:Glimmering Garden]]&lt;br /&gt;
*   [[User:Yujh/B34kz5e7c8/S23-a4ityz5k]]&lt;br /&gt;
*   [[User:Cvojan/TubularTest]]&lt;br /&gt;
*   [[User:Ultimium/OCA:LeapLife]]&lt;br /&gt;
*   [[User:Cgoler2/rrlife]]&lt;br /&gt;
*   [[User:Cgoler2/Clife]]&lt;br /&gt;
*   [[User:Pzq Alex/BitLife]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=147662</id>
		<title>User:Atavoidirc</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=147662"/>
		<updated>2024-03-22T16:29:29Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* Other Pages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is a hub page&lt;br /&gt;
[[User:Atavoidirc/Spaceship table]]&lt;br /&gt;
==[[User:GUYTU6J]]/Neighbourhood==&lt;br /&gt;
{{User:GUYTU6J/Neighbourhood}}&lt;br /&gt;
==Life wiki Pages==&lt;br /&gt;
* [[LifeWiki:Game of Life Status page]]&lt;br /&gt;
* [[LifeWiki:Spaceship Search Status Page]]&lt;br /&gt;
* [[LifeWiki:Smallest Spaceships Supporting Specific Speeds]]&lt;br /&gt;
* [[LifeWiki:Project OmniOsci/Overview]]&lt;br /&gt;
* [[LifeWiki:LifeViewer cheatsheet for LifeWiki articles]]&lt;br /&gt;
* [[LifeWiki:List of ongoing projects]]&lt;br /&gt;
&lt;br /&gt;
==Other Pages==&lt;br /&gt;
* [[Table of oscillators by period]]&lt;br /&gt;
* [[Special:PrefixIndex?prefix=Galoomba&amp;amp;namespace=2&lt;br /&gt;
&lt;br /&gt;
==Rules in Userspace==&lt;br /&gt;
*   [[User:Carbon6/Gnarl]]&lt;br /&gt;
*   [[User:Drc/GlideLife]]&lt;br /&gt;
*   [[User:Prime Raptor21/Nothing (Rule)]] &lt;br /&gt;
*   [[User:Evin/BiLife]]&lt;br /&gt;
*   [[User:Moosey/eatsplosion]]&lt;br /&gt;
*   [[User:Evin/Silverseeds]]&lt;br /&gt;
*   [[User:Evin/OCA:E1]]&lt;br /&gt;
*   [[User:Evin/Wlife]]&lt;br /&gt;
*   [[User:GUYTU6J/OCA:Glimmering Garden]]&lt;br /&gt;
*   [[User:Yujh/B34kz5e7c8/S23-a4ityz5k]]&lt;br /&gt;
*   [[User:Cvojan/TubularTest]]&lt;br /&gt;
*   [[User:Ultimium/OCA:LeapLife]]&lt;br /&gt;
*   [[User:Cgoler2/rrlife]]&lt;br /&gt;
*   [[User:Cgoler2/Clife]]&lt;br /&gt;
*   [[User:Pzq Alex/BitLife]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=LifeWiki:Moderators&amp;diff=147533</id>
		<title>LifeWiki:Moderators</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=LifeWiki:Moderators&amp;diff=147533"/>
		<updated>2024-03-20T15:38:26Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: added INoMed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Moderators&#039;&#039;&#039;, also known as &#039;&#039;&#039;sysops&#039;&#039;&#039; (and formerly known as &#039;&#039;&#039;Administrators&#039;&#039;&#039;), are users who have special tools that aid them in the maintenance of the site. These users may be recommended by the community and are promoted at the discretion of [[User:Nathaniel|Nathaniel]]. They have the ability to protect and delete pages, block malicious users, and undo these actions as well. By default, moderators are appointed for life, but may step down at any time.&lt;br /&gt;
&lt;br /&gt;
This is a list of the current Moderators of LifeWiki (an automatically-generated list is also available from [[Special:Listusers/sysop]]). If you need to tell them something or request their services, feel free to [[LifeWiki:Contact|contact]] one of them.&lt;br /&gt;
&lt;br /&gt;
* [[User:Nathaniel|Nathaniel]] ([[User talk:Nathaniel|Talk]]) – &#039;&#039;Site administrator&#039;&#039;&lt;br /&gt;
* [[User:Codeholic|Codeholic]] ([[User talk:Codeholic|Talk]])&lt;br /&gt;
* [[User:Dvgrn|Dvgrn]] ([[User talk:Dvgrn|Talk]])&lt;br /&gt;
* [[User:Sokwe|Sokwe]] ([[User talk:Sokwe|Talk]])&lt;br /&gt;
* [[User:Apple_Bottom|Apple Bottom]] ([[User talk:Apple_Bottom|Talk]])&lt;br /&gt;
* [[User:Ian07|Ian07]] ([[User talk:Ian07|Talk]])&lt;br /&gt;
* [[User:INoMed|INoMed]] ([[User talk:INoMed|Talk]])&lt;br /&gt;
&lt;br /&gt;
Moderators have a few more permissions than [[LifeWiki:Editors|Editors]] on the wiki. Most notably, Moderators can [[LifeWiki:Dispute_resolution|moderate disputes]] and issue bans/warnings while Editors cannot.&lt;br /&gt;
&lt;br /&gt;
== Moderator responsibilities ==&lt;br /&gt;
The community looks to moderators to perform essential chores and tasks that require the extra tools that moderators are entrusted with.  These duties include:&lt;br /&gt;
* &#039;&#039;&#039;Deleting pages&#039;&#039;&#039;: Moderator are responsible for monitoring the [[:Category:Pending deletion|Marked for deletion]] category and carrying out any requested deletions.&lt;br /&gt;
** All deletions should be in accordance with the LifeWiki&#039;s [[LifeWiki:Deletion policy|deletion policy]].&lt;br /&gt;
* &#039;&#039;&#039;Blocking users&#039;&#039;&#039;: Moderator are able to block users in cases where it is necessary to prevent damage to the site. Vandalism is an example of a reason to block.&lt;br /&gt;
* &#039;&#039;&#039;Protecting pages&#039;&#039;&#039;: Some pages on the wiki are [[:LifeWiki:Protection policy|protected]].&lt;br /&gt;
* &#039;&#039;&#039;Editing protected pages&#039;&#039;&#039;: Any edits to fully protected pages need to be made by moderators.  These pages include:&lt;br /&gt;
** [[Main Page]] - The main page of LifeWiki&lt;br /&gt;
** [[MediaWiki:Common.css]] - The style sheet that determines the overall appearance of all LifeWiki pages&lt;br /&gt;
** [[MediaWiki:Sidebar]] - The list of links shown on the left-hand side of all LifeWiki pages&lt;br /&gt;
Finally, since moderators are expected to be experienced with the procedures of LifeWiki, editors will often turn to one when they need information or advice.&lt;br /&gt;
&lt;br /&gt;
== Moderator conflicts ==&lt;br /&gt;
Moderators should not override or undo another&#039;s administrative actions; any such action can lead to a [http://en.wikipedia.org/wiki/Wikipedia:Wheel_war wheel war].  This includes deleting official warnings or notifications placed on a user&#039;s talk page; however, another moderator may choose to add their own comments to a user talk page (e.g., for emphasis, clarification, or to point out an overlooked circumstance).  This does not apply in cases where there have been new developments since the first action was taken: for example, if one moderator warned a user about inappropriate behaviour (first action), and the user then resumed the behaviour (new developments), any moderator may then proceed to take further action (i.e., blocking) against the user.  Also, this does not apply to regular contributions (such as routine editing) done by a moderator; the standard etiquette that applies to all editors should be used for any non-administrative types of contributions.&lt;br /&gt;
&lt;br /&gt;
If a moderator has a disagreement with another moderator&#039;s actions, it is recommended that a discussion be started on that moderator&#039;s talk page: ask why the first moderator chose that course of action, and point out what other alternatives there may have been (in particular whether any policies apply).  If the first moderator agrees, it should be left up to the first moderator to undo their own actions.  If there is no existing policy covering the situation, or the policy is ambiguous, a more general discussion involving the rest of the community may be needed to try to establish an appropriate policy.&lt;br /&gt;
&lt;br /&gt;
If you believe that another moderator has in some way undone one of your administrative actions, it is best to assume that the moderator was not aware of your previous action.  Do not override the new action; instead, explain the situation to the other moderator and follow the same guidelines as in the previous paragraph.&lt;br /&gt;
&lt;br /&gt;
If two moderators can not reach an agreement on what is appropriate, other moderators may be asked to provide their opinion on the situation.  As a last resort, Nathaniel can be asked to provide arbitration.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[LifeWiki:Dispute resolution]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Wikipedia:Administrators Wikipedia:Administrators] – Wikipedia&#039;s article about moderators and their roles&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Wikipedia:Administrators&#039;_how-to_guide How-to guide for administrators] at Wikipedia&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Wikipedia:Administrators&#039;_reading_list Reading list for administrators] at Wikipedia&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Rule:Durnak_wires&amp;diff=147532</id>
		<title>Rule:Durnak wires</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Rule:Durnak_wires&amp;diff=147532"/>
		<updated>2024-03-20T15:10:08Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: fixing double redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Rule:CoralLifeBalance]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=44P12.2&amp;diff=147531</id>
		<title>44P12.2</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=44P12.2&amp;diff=147531"/>
		<updated>2024-03-20T15:09:47Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: fixing double redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Eye of Sauron]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=134P39.1&amp;diff=137192</id>
		<title>134P39.1</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=134P39.1&amp;diff=137192"/>
		<updated>2023-09-17T17:29:53Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Oscillator&lt;br /&gt;
|name             = 134P39.1&lt;br /&gt;
|pname            = 134p39.1&lt;br /&gt;
|c                = 134&lt;br /&gt;
|bx               = 25&lt;br /&gt;
|by               = 29&lt;br /&gt;
|p                = 39&lt;br /&gt;
|m                = 39&lt;br /&gt;
|h                = 33.1&lt;br /&gt;
|v                = 0.46&lt;br /&gt;
|sv               = 0.01&lt;br /&gt;
|discoverer       = Noam Elkies&lt;br /&gt;
|discoverer2      = David Buckingham&lt;br /&gt;
|discoveryear     = 2000&lt;br /&gt;
|rulemin          = B3/S23&lt;br /&gt;
|rulemax          = B38/S2378&lt;br /&gt;
|rulespecial      = [[Conway&#039;s Game of Life|Conway&#039;s Life]]&lt;br /&gt;
|isorulemin       = B3/S23&lt;br /&gt;
|isorulemax       = B36c8/S234cer5-ijqr6aen78&lt;br /&gt;
|plaintext        = true&lt;br /&gt;
|rle              = true&lt;br /&gt;
|apgcode          = xp39_y68kkm0mk13zy91011wgca6zw8e1f0brggy35dll552z355h0nni22q5ic0ccx123z32qj43wgd04bl553zy5dd11&lt;br /&gt;
|pentadecathlonid = 134P39.1&lt;br /&gt;
|animated         = yes&lt;br /&gt;
|viewerconfig     = #C [[ GPS 3 LOOP 39 THUMBSIZE 2 ZOOM 8 ]]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;134P39.1&#039;&#039;&#039; is an unnamed {{period|39}} [[oscillator]]. It was the first [[non-trivial]] period 39 oscillator to be found,&amp;lt;ref&amp;gt;{{CiteSummersPattern|name=jslife|accessdate=April 9, 2009}}&amp;lt;/ref&amp;gt; all previously known period 39 oscillators being made up of disjoint period-3 and period-13 oscillators, and was discovered by [[Noam Elkies]] with the help of [[David Buckingham]] on July 24, {{year|2000}}.&amp;lt;ref&amp;gt;{{cite web|url=http://entropymine.com/jason/life/status.html |title=Game of Life Status page |accessdate=April 9, 2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It features one of [[Stephen Silver]]&#039;s modifications of [[eater 2]], a large unnamed period 3 oscillator, and a period {{period|13|brief}} oscillator based on [[Buckingham&#039;s p13]].&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[90P51]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
{{LinkCatagolue|xp39_y68kkm0mk13zy91011wgca6zw8e1f0brggy35dll552z355h0nni22q5ic0ccx123z32qj43wgd04bl553zy5dd11}}&lt;br /&gt;
{{LinkPentadecathlonObject|134P39.1}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unnamed periodic objects]]&lt;br /&gt;
[[Category:Least-common-multiple oscillators]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=134P39.1&amp;diff=137191</id>
		<title>134P39.1</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=134P39.1&amp;diff=137191"/>
		<updated>2023-09-17T17:28:21Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Oscillator&lt;br /&gt;
|name             = 134P39.1&lt;br /&gt;
|pname            = 134p39.1&lt;br /&gt;
|c                = 134&lt;br /&gt;
|bx               = 25&lt;br /&gt;
|by               = 29&lt;br /&gt;
|p                = 39&lt;br /&gt;
|m                = 39&lt;br /&gt;
|h                = 33.1&lt;br /&gt;
|v                = 0.46&lt;br /&gt;
|sv               = 0.01&lt;br /&gt;
|discoverer       = Noam Elkies&lt;br /&gt;
|discoverer2      = David Buckingham&lt;br /&gt;
|discoveryear     = 2000&lt;br /&gt;
|rulemin          = B3/S23&lt;br /&gt;
|rulemax          = B38/S2378&lt;br /&gt;
|rulespecial      = [[Conway&#039;s Game of Life|Conway&#039;s Life]]&lt;br /&gt;
|isorulemin       = B3/S23&lt;br /&gt;
|isorulemax       = B36c8/S234cer5-ijqr6aen78&lt;br /&gt;
|plaintext        = true&lt;br /&gt;
|rle              = true&lt;br /&gt;
|apgcode          = xp39_y68kkm0mk13zy91011wgca6zw8e1f0brggy35dll552z355h0nni22q5ic0ccx123z32qj43wgd04bl553zy5dd11&lt;br /&gt;
|pentadecathlonid = 134P39.1&lt;br /&gt;
|animated         = yes&lt;br /&gt;
|viewerconfig     = #C [[ GPS 3 LOOP 39 THUMBSIZE 2 ZOOM 8 ]]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;134P39.1&#039;&#039;&#039; is an unnamed {{period|39}} [[oscillator]]. It was the first [[non-trivial]] period 39 oscillator to be found,&amp;lt;ref&amp;gt;{{CiteSummersPattern|name=jslife|accessdate=April 9, 2009}}&amp;lt;/ref&amp;gt; and was discovered by [[Noam Elkies]] with the help of [[David Buckingham]] on July 24, {{year|2000}}.&amp;lt;ref&amp;gt;{{cite web|url=http://entropymine.com/jason/life/status.html |title=Game of Life Status page |accessdate=April 9, 2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It features one of [[Stephen Silver]]&#039;s modifications of [[eater 2]], a large unnamed period 3 oscillator, and a period {{period|13|brief}} oscillator based on [[Buckingham&#039;s p13]].&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[90P51]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
{{LinkCatagolue|xp39_y68kkm0mk13zy91011wgca6zw8e1f0brggy35dll552z355h0nni22q5ic0ccx123z32qj43wgd04bl553zy5dd11}}&lt;br /&gt;
{{LinkPentadecathlonObject|134P39.1}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unnamed periodic objects]]&lt;br /&gt;
[[Category:Least-common-multiple oscillators]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Omniperiodic&amp;diff=137190</id>
		<title>Omniperiodic</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Omniperiodic&amp;diff=137190"/>
		<updated>2023-09-17T17:27:58Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: as p3, p13 and p17 had been discovered prior to 2000, trivial p39 and p51 oscillators could have been constructed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Glossary}}&lt;br /&gt;
A [[cellular automaton]] is said to be &#039;&#039;&#039;omniperiodic&#039;&#039;&#039; if it has [[oscillator]]s of all [[period]]s.&lt;br /&gt;
&lt;br /&gt;
[[Conway&#039;s Game of Life]] is omniperiodic, since there are oscillators of every period, with the last found period being {{period|41|text=p41}} in July {{year|2023}}. The last periods to be found are as follows:&lt;br /&gt;
&lt;br /&gt;
*{{period|39|text=p39}} (the first [[non-trivial]] example) in July {{year|2000}}&lt;br /&gt;
*{{period|27|text=p27}} in November {{year|2002}}&lt;br /&gt;
*{{period|51|text=p51}} (the first [[non-trivial]] example) in March {{year|2009}}&lt;br /&gt;
*{{period|37|text=p37}} in April {{year|2009}}&lt;br /&gt;
*{{period|31|text=p31}} in November {{year|2010}}&lt;br /&gt;
*{{period|43|text=p43}} and {{period|53|text=p53}} in April {{year|2013}}&lt;br /&gt;
*{{period|23|text=p23}} in November {{year|2019}}&lt;br /&gt;
*{{period|38|text=p38}} in January {{year|2022}}&lt;br /&gt;
*{{period|34|text=p34}} (the first [[non-trivial]] example) in July {{year|2022}}&lt;br /&gt;
*{{period|19|text=p19}} and {{period|41|text=p41}} in July {{year|2023}}&lt;br /&gt;
&lt;br /&gt;
==Large-period oscillators==&lt;br /&gt;
In October {{year|1996}}, [[David Buckingham]] wrote the article &#039;&#039;My Experience with B-heptominos in Oscillators&#039;&#039;&amp;lt;ref&amp;gt;{{LinkCallahan|patterns/bhept/bhept.html|patternname=Buckingham on B-heptomino/Herschel oscillators|nobullet=nobullet}}&amp;lt;/ref&amp;gt; that describes his discovery of [[Herschel conduit]]s, including sufficient [[stable conduit]]s to enable, for the first time, the construction of [[period]] &#039;&#039;&#039;&#039;&#039;n&#039;&#039;&#039;&#039;&#039; [[oscillator]]s for every &#039;&#039;&#039;&#039;&#039;n&#039;&#039;&#039;&#039;&#039; ≥ 58, and true period &#039;&#039;&#039;&#039;&#039;n&#039;&#039;&#039;&#039;&#039; [[gun]]s for every &#039;&#039;&#039;&#039;&#039;n&#039;&#039;&#039;&#039;&#039; ≥ 62. &lt;br /&gt;
&lt;br /&gt;
The discovery of the [[Snark]] by [[Mike Playle]] in April 2013 allowed the construction of oscillators of all periods greater than or equal to 43.&lt;br /&gt;
&lt;br /&gt;
==Other rules==&lt;br /&gt;
By running [[Dean Hickerson]]&#039;s [[drifter]] searcher to find signals that can be manipulated like Herschels, it is possible to prove that a variety of [[Life-like cellular automata]] are omniperiodic.&amp;lt;ref name=&amp;quot;post2521&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post139416&amp;quot; /&amp;gt; However, these signals are more like the [[2c/3 wire|2c/3 signal]], in that they operate on a dense background and can closely follow each other. There is a significant possibility that such a signal turner exists for Conway&#039;s Game of Life, but no explicit examples have been found.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Emu]]&lt;br /&gt;
* [[Herschel loop]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post2521&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format     = ref&lt;br /&gt;
|p          = 2521&lt;br /&gt;
|title      = Re: B3/S234&lt;br /&gt;
|author     = Matthias Merzenich&lt;br /&gt;
|date       = June 4, 2010&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post139416&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format     = ref&lt;br /&gt;
|p          = 139416&lt;br /&gt;
|title      = Re: Suggested LifeWiki edits&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|date       = December 26, 2021&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* {{LinkLexicon|lex_m.htm#myexperiencewithbheptominosinoscillators|patternname=My Experience with B-heptominos in Oscillators}}&lt;br /&gt;
* {{LinkLexicon|lex_o.htm#omniperiodic}}&lt;br /&gt;
* {{LinkGoLNews|2011/01/is_life_omniperiodic.html|title=Is Life omniperiodic?|date=January 16, 2011|author=Adam P. Goucher}}&lt;br /&gt;
* {{LinkForumThread|format=ref|f=11|t=1217|title=Which Life-like CA have been proven omniperiodic?}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Omniperiodic&amp;diff=137189</id>
		<title>Omniperiodic</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Omniperiodic&amp;diff=137189"/>
		<updated>2023-09-17T17:26:08Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Glossary}}&lt;br /&gt;
A [[cellular automaton]] is said to be &#039;&#039;&#039;omniperiodic&#039;&#039;&#039; if it has [[oscillator]]s of all [[period]]s.&lt;br /&gt;
&lt;br /&gt;
[[Conway&#039;s Game of Life]] is omniperiodic, since there are oscillators of every period, with the last found period being {{period|41|text=p41}} in July {{year|2023}}. The last periods to be found are as follows:&lt;br /&gt;
&lt;br /&gt;
*{{period|39|text=p39}} in July {{year|2000}}&lt;br /&gt;
*{{period|27|text=p27}} in November {{year|2002}}&lt;br /&gt;
*{{period|51|text=p51}} in March {{year|2009}}&lt;br /&gt;
*{{period|37|text=p37}} in April {{year|2009}}&lt;br /&gt;
*{{period|31|text=p31}} in November {{year|2010}}&lt;br /&gt;
*{{period|43|text=p43}} and {{period|53|text=p53}} in April {{year|2013}}&lt;br /&gt;
*{{period|23|text=p23}} in November {{year|2019}}&lt;br /&gt;
*{{period|38|text=p38}} in January {{year|2022}}&lt;br /&gt;
*{{period|34|text=p34}} (the first [[non-trivial]] example) in July {{year|2022}}&lt;br /&gt;
*{{period|19|text=p19}} and {{period|41|text=p41}} in July {{year|2023}}&lt;br /&gt;
&lt;br /&gt;
==Large-period oscillators==&lt;br /&gt;
In October {{year|1996}}, [[David Buckingham]] wrote the article &#039;&#039;My Experience with B-heptominos in Oscillators&#039;&#039;&amp;lt;ref&amp;gt;{{LinkCallahan|patterns/bhept/bhept.html|patternname=Buckingham on B-heptomino/Herschel oscillators|nobullet=nobullet}}&amp;lt;/ref&amp;gt; that describes his discovery of [[Herschel conduit]]s, including sufficient [[stable conduit]]s to enable, for the first time, the construction of [[period]] &#039;&#039;&#039;&#039;&#039;n&#039;&#039;&#039;&#039;&#039; [[oscillator]]s for every &#039;&#039;&#039;&#039;&#039;n&#039;&#039;&#039;&#039;&#039; ≥ 58, and true period &#039;&#039;&#039;&#039;&#039;n&#039;&#039;&#039;&#039;&#039; [[gun]]s for every &#039;&#039;&#039;&#039;&#039;n&#039;&#039;&#039;&#039;&#039; ≥ 62. &lt;br /&gt;
&lt;br /&gt;
The discovery of the [[Snark]] by [[Mike Playle]] in April 2013 allowed the construction of oscillators of all periods greater than or equal to 43.&lt;br /&gt;
&lt;br /&gt;
==Other rules==&lt;br /&gt;
By running [[Dean Hickerson]]&#039;s [[drifter]] searcher to find signals that can be manipulated like Herschels, it is possible to prove that a variety of [[Life-like cellular automata]] are omniperiodic.&amp;lt;ref name=&amp;quot;post2521&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post139416&amp;quot; /&amp;gt; However, these signals are more like the [[2c/3 wire|2c/3 signal]], in that they operate on a dense background and can closely follow each other. There is a significant possibility that such a signal turner exists for Conway&#039;s Game of Life, but no explicit examples have been found.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Emu]]&lt;br /&gt;
* [[Herschel loop]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post2521&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format     = ref&lt;br /&gt;
|p          = 2521&lt;br /&gt;
|title      = Re: B3/S234&lt;br /&gt;
|author     = Matthias Merzenich&lt;br /&gt;
|date       = June 4, 2010&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post139416&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format     = ref&lt;br /&gt;
|p          = 139416&lt;br /&gt;
|title      = Re: Suggested LifeWiki edits&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|date       = December 26, 2021&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* {{LinkLexicon|lex_m.htm#myexperiencewithbheptominosinoscillators|patternname=My Experience with B-heptominos in Oscillators}}&lt;br /&gt;
* {{LinkLexicon|lex_o.htm#omniperiodic}}&lt;br /&gt;
* {{LinkGoLNews|2011/01/is_life_omniperiodic.html|title=Is Life omniperiodic?|date=January 16, 2011|author=Adam P. Goucher}}&lt;br /&gt;
* {{LinkForumThread|format=ref|f=11|t=1217|title=Which Life-like CA have been proven omniperiodic?}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=4-glider_collision&amp;diff=135563</id>
		<title>4-glider collision</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=4-glider_collision&amp;diff=135563"/>
		<updated>2023-08-18T22:41:23Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Glossary}}{{stub}}&lt;br /&gt;
{|style=&amp;quot;float:right;margin-left:16px;margin-bottom:8px;width:300px;&amp;quot;&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|rle          = x = 40, y = 27, rule = B3/S23&lt;br /&gt;
37b2o$36bo2bo$37b2o$o$b2o34b2o$2o34bo2bo$37b2o2$37b2o$36bo2bo$37b2o6$&lt;br /&gt;
11b3o$13bo$12bo13b2o$25b2o$27bo4$14b3o$16bo$15bo!&lt;br /&gt;
|viewerconfig = #C [[ THUMBSIZE 2 ZOOM 12 HEIGHT 450 THEME Book AUTOSTART GPS 12 T 0 PAUSE 1 T 20 PAUSE 3 T 88 PAUSE 2 LOOP 89 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A four-glider synthesis of a [[pseudo still life|stack]] of three [[beehive]]s, found in April {{year|2023}}&amp;lt;ref group=c name=&amp;quot;j4179541540&amp;quot; /&amp;gt;&lt;br /&gt;
|apgcode      = xs18_69606960696&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|rle          = x = 33, y = 25, rule = B3/S23&lt;br /&gt;
15bo$14bo$14b3o3$30bo$29bobo$30bobo$31bo2$30bo$29bobo$30bo3$3o13b3o$2bo13bo$bo15bo5$28b3o$28bo$29bo!&lt;br /&gt;
|viewerconfig = #C [[ THUMBSIZE 2 ZOOM 12 HEIGHT 450 THEME Book AUTOSTART GPS 12 T 0 PAUSE 1 T 20 PAUSE 4 T 32 PAUSE 1 T 69 PAUSE 3 LOOP 70 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A small stable constellation is constructed via a four-glider synthesis discovered in March 2023.&amp;lt;ref group=c name=&amp;quot;j4003237887&amp;quot; /&amp;gt; Previously constructed with 5 gliders, this constellation is the result of the first step of an incremental synthesis of [[Negentropy]], reducing the glider cost of the oscillator from 90 to 89 gliders.&amp;lt;ref group=c name=&amp;quot;c_negentropy&amp;quot; /&amp;gt;&lt;br /&gt;
|apgcode      = xs10_25204a52&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
A &#039;&#039;&#039;4-glider collision&#039;&#039;&#039; is a [[collision]] between four [[glider]]s. There are infinitely many distinct 4-glider collisions.&lt;br /&gt;
&lt;br /&gt;
There are no known attempts of a systematic classification or description of all possible (families of) four-glider collisions.&amp;lt;ref name=&amp;quot;post115310&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post49067&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post43893&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post21948&amp;quot; /&amp;gt; In particular, it is unknown whether or not it is possible to find a four-glider [[reverse caber-tosser]]; there is no known way to rule out with certainty a four-glider synthesis for any given glider-constructible target pattern.&amp;lt;ref name=&amp;quot;post151662&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[2-glider collision]], [[3-glider collision]]&lt;br /&gt;
* {{CategoryLink|Patterns that can be constructed with 4 gliders}}&lt;br /&gt;
* [[4g-to-5g reaction]]&lt;br /&gt;
* [[LifeWiki:Did you know/45]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post21948&amp;quot;&amp;gt;{{LinkForumThread|format=ref|p=21948|title=Re: Searching algorithms|author=Adam P. Goucher|date=August 16, 2015}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post43893&amp;quot;&amp;gt;{{LinkForumThread|format=ref|p=43893|title=Re: Enumerating Three-Glider Collisions|author=Dave Greene|date=May 30, 2017}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post49067&amp;quot;&amp;gt;{{LinkForumThread|format=ref|p=49067|title=Re: Thread for basic questions|author=Dave Greene|date=August 17, 2017}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post115310&amp;quot;&amp;gt;{{LinkForumThread|format=ref|p=115310|title=Re: Thread for basic questions|author=goldenratio|date=December 11, 2020}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post151662&amp;quot;&amp;gt;{{LinkForumThread|format=ref|p=151662|title=Re: Unproven conjectures|author=Dave Greene|date=October 2, 2022}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; Catagolue&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references group=c&amp;gt;&lt;br /&gt;
&amp;lt;ref name=c_negentropy&amp;gt;Syntheses of Negentropy on Catagolue: [https://web.archive.org/web/20210717121538/https://catagolue.hatsya.com/textsamples/xp2_gg0gba9jz1107ac87066zx3213/b3s23/synthesis 90-glider synthesis] (archived copy as of 2021-07-17), [https://web.archive.org/web/20230329054202/https://catagolue.hatsya.com/textsamples/xp2_gg0gba9jz1107ac87066zx3213/b3s23/synthesis 89-glider synthesis] (archived copy as of 2023-03-29)&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;j4003237887&amp;quot;&amp;gt;{{CiteCatagolueJob|job=4003237887|date=March 26, 2023}} [https://web.archive.org/web/20230326224706/https://catagolue.hatsya.com/textcensus/b3s23/synthesis-costs-2023-03-25/xs10 synthesis-costs-2023-03-25/xs10]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;j4179541540&amp;quot;&amp;gt;{{CiteCatagolueJob|job=4179541540|date=April 26, 2023}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* {{LinkForumThread|f=2|t=1394|title=4 glider syntheses}}&lt;br /&gt;
* [https://github.com/dvgrn/glider-collisions glider-collisions code repository] by [[Dave Greene]] (contains collision database and search scripts)&lt;br /&gt;
* {{LinkForumThread|f=9|t=5782|title=New 4-glider collision database|author=Carson Cheng|date=August 24, 2022}}&lt;br /&gt;
* {{LinkNiemiec|objcost.htm#cost-g4|Objects buildable with 4 gliders}}&lt;br /&gt;
* [https://conwaylife.com/ref/DRH/syntheses.html 2, 3, and 4-glider syntheses] at [[Dean Hickerson]]&#039;s Life page&lt;br /&gt;
&lt;br /&gt;
[[Category:Patterns that can be constructed with 4 gliders| ]]&lt;br /&gt;
[[Category:Synthesis]]&lt;br /&gt;
[[Category:Collisions]]&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=3-glider_collision&amp;diff=135562</id>
		<title>3-glider collision</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=3-glider_collision&amp;diff=135562"/>
		<updated>2023-08-18T22:41:19Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Glossary}}&lt;br /&gt;
{|style=&amp;quot;float:right;margin-left:16px;margin-bottom:8px;width:300px;&amp;quot;&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|pname        = pentadecathlonsynthesis&lt;br /&gt;
|viewerconfig = #C [[ THUMBSIZE 2 THEME Book AUTOSTART PAUSE 3 LOOP 60 GPS 12 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = 3-glider [[pentadecathlon]] synthesis&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|pname        = hwsssynthesis&lt;br /&gt;
|viewerconfig = #C [[ THUMBSIZE 2 THEME Book AUTOSTART PAUSE 3 LOOP 60 GPS 12 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = 3-glider [[HWSS]] synthesis&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
A &#039;&#039;&#039;3-glider collision&#039;&#039;&#039; is a [[collision]] of three [[glider]]s. There are infinitely many distinct 3-glider collisions as some [[2-glider collision]]s generate output gliders, making it possible for another glider to collide with the output glider to form an arbitrarily faraway object or [[constellation]].&lt;br /&gt;
&lt;br /&gt;
In late {{year|2017}}, an enumeration of 3G collisions was done by [[2718281828]], resulting in a database containing 464,746 entries.&amp;lt;ref group=note&amp;gt;The data can be found [https://conwaylife.com/forums/viewtopic.php?p=55572#p55572 in this forum post]. Obtaining an exact count of &amp;quot;essentially different&amp;quot; 3G collisions is complicated by a number of factors, such as existence of glider-producing [[2G collision]]s and [[Heisenburp]]-type [[reaction]]s, and the difference between counting distinct reactions and counting distinct outputs.&amp;lt;/ref&amp;gt; Multiple scripts exist to search through the database to find 3-glider [[syntheses]] of stable constellations and unstable patterns.&amp;lt;ref group=note&amp;gt;For the use of these scripts, please see [[Tutorials/Glider syntheses#3-glider collision database|the tutorial section of the 3-glider database]]; see also [[octo3g database]].&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following single [[object]]s have known 3-glider syntheses:&lt;br /&gt;
* 11 still lifes: [[paperclip]], [[half-bakery]], [[bi-pond]], [[tub]], [[barge]], [[ship]], [[long boat]], [[long barge]], [[mango]], [[very long boat]], [[hat]]&lt;br /&gt;
* 4 oscillators: [[beacon]], [[toad]], [[pulsar]], [[pentadecathlon]]&lt;br /&gt;
* 3 spaceships: [[middleweight spaceship]], [[heavyweight spaceship]], [[lightweight spaceship]]&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references group=note /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[2-glider collision]], [[4-glider collision]]&lt;br /&gt;
* {{CategoryLink|Patterns that can be constructed with 3 gliders}}&lt;br /&gt;
* [[Ternary reaction]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* {{LinkForumThread|f=9|t=2833|title=Enumerating Three-Glider Collisions}}&lt;br /&gt;
* [https://github.com/dvgrn/glider-collisions glider-collisions code repository] by [[Dave Greene]] (contains collision database and search scripts)&lt;br /&gt;
* {{LinkNiemiec|glider-3.htm|Life Objects Buildable With 3 Gliders}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Patterns that can be constructed with 3 gliders| ]]&lt;br /&gt;
[[Category:Synthesis]]&lt;br /&gt;
[[Category:Collisions]]&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=2-glider_collision&amp;diff=135561</id>
		<title>2-glider collision</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=2-glider_collision&amp;diff=135561"/>
		<updated>2023-08-18T22:41:13Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Glossary}}&lt;br /&gt;
A &#039;&#039;&#039;2-glider collision&#039;&#039;&#039; is a [[collision]] of two [[glider]]s at right angles or head-on.{{refn|group=note|The direction requirement is a necessary but not sufficient condition for the 2-glider collision to be &#039;&#039;valid&#039;&#039;. Two gliders moving in the same direction either never interact or collapse in at most 4 ticks due to being very close. In the latter case, the gliders cannot [[Rewind|come from infinity]] and this &amp;quot;collision&amp;quot; is deemed invalid. Glider syntheses should avoid such glider pairs.&amp;lt;ref name=&amp;quot;post16856&amp;quot; /&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
The gliders can react with each other in many different ways. A large number of the reactions cleanly destroy both gliders leaving nothing. Many of the remaining reactions cleanly create some [[common]] objects, and so are used as the first steps in [[Glider synthesis|glider syntheses]] or as part of constructing interesting objects using [[rake]]s. Only a small number of collisions can be considered [[dirty]] due to creating multiple objects or a mess.&lt;br /&gt;
&lt;br /&gt;
== Results ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible&amp;quot;&amp;gt;&lt;br /&gt;
Below are tabulated possible results of a two-glider collision, along with how many distinct ways they can occur.&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Result !! Right-angle !! Head-on&lt;br /&gt;
|-&lt;br /&gt;
| [[Vacuum (empty space)|&#039;&#039;nothing&#039;&#039;]] || 11 || 17&lt;br /&gt;
|-&lt;br /&gt;
| [[Beehive]] || 1 || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[B-heptomino]] || 1 || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Bi-block]] || 1 || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Blinker]] || 2 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Block]] || 3 || 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Boat]] || 0 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Eater 1]] || 1 || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Kickback|Glider]] || 1 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Honey farm]] || 3 || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Interchange]] || 1 || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Loaf]] || 0 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Lumps of muck]] || 1 || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Two-glider octomino]] || 0 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Pi-heptomino]] || 2 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Pond]] || 1 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Teardrop]] || 1 || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Traffic light]] || 2 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Four skewed blocks]] || 0 || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Dirty]] || 6 || 0&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The messiest of the two-glider collisions in the &amp;quot;dirty&amp;quot; category is [[2-glider mess]]. &lt;br /&gt;
&lt;br /&gt;
{{EmbedViewer&lt;br /&gt;
|pname        = twoglidersyntheses&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = All 71 distinct 2-glider collisions,&amp;lt;ref&amp;gt;{{citeLifeline|vol=5|pages= page 6}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;post123750&amp;quot; /&amp;gt; arranged by what they synthesize in a pattern constructed by [[Jason Summers]]&amp;lt;ref&amp;gt;{{LinkGoLNews|2005/01/71_glider_collisions.html|title=71 Glider Collisions|date=January 29, 2005|author=Dave Greene}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|viewerconfig = #C [[ WIDTH 800 HEIGHT 800 ZOOM 2 ]]&lt;br /&gt;
|style        = width:300px;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Classification of the results ==&lt;br /&gt;
&lt;br /&gt;
In {{year|1973}}, [[Everett Boyer]] et al. proposed a classification scheme for 90° two-glider collisions.&amp;lt;ref&amp;gt;{{CiteLifeline|vol=11|pages=page 10}}&amp;lt;/ref&amp;gt; By considering the &#039;&#039;delay&#039;&#039; and &#039;&#039;parity&#039;&#039; of separation, a two-glider collision is labelled with a number and a plus/minus sign. For instance, in the collision that gives a bi-block, the paths of two gliders are separated by an odd number of cells (the effect can be seen clearly under {{rl|LifeHistory}}), and two gliders arrive simultaneously to the intersection point of two paths — therefore it is labelled &amp;quot;0-&amp;quot;. Delaying any of the two gliders gives a &amp;quot;1-&amp;quot; reaction that synthesizes a B-heptomino.&lt;br /&gt;
&lt;br /&gt;
The results are tabulated below. A pair of colliding gliders has the same [[parity]] with an even delay (or different with odd ones), and has the same [[color]] with an even parity of separation (or different with odd ones). &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; | Delay&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | Parity of separation&lt;br /&gt;
|-&lt;br /&gt;
! Even (+)&lt;br /&gt;
! Odd (-)&lt;br /&gt;
|-&lt;br /&gt;
| 0 || (0+) [[Interchange]]{{refn|group=note|The two gliders can be reflected by a block, as shown in the [[rephaser]] and [[glider-block cycle]] article.}} || (0-) [[Bi-block]]{{refn|group=note|This reaction can also be seen as a tagalong for a c/3 orthogonal dot sparker, as discovered by MathAndCode and wwei23.&amp;lt;ref name=&amp;quot;post117181&amp;quot; /&amp;gt;}}&lt;br /&gt;
|-&lt;br /&gt;
| 1 || (1+) 94-tick [[spark]] ([[Ghost Herschel]] / [[Banana spark|banana]] / [[domino]]) || (1-) [[B-heptomino]]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || (2+) [[Honeyfarm]] || (2-) [[Blinker]]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || (3+) [[Pond]] || (3-) 32-tick spark ([[Ghost Herschel]] / [[Banana spark|banana]] / [[domino]])&lt;br /&gt;
|-&lt;br /&gt;
| 4 || (4+) 4-tick spark ([[obo! spark]]) || (4-) [[Traffic light]] and [[glider]]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || (5+) [[Honeyfarm]] || (5-) 6-tick spark&lt;br /&gt;
|-&lt;br /&gt;
| 6 || (6+) [[Honeyfarm]] || (6-) 13-tick spark ([[P-pentomino]] / [[V spark]] / [[domino]])&lt;br /&gt;
|-&lt;br /&gt;
| 7 || (7+) [[Teardrop]] || (7-) 10-tick spark ([[domino]])&lt;br /&gt;
|-&lt;br /&gt;
| 8 || (8+) [[Blinker]], [[loaf]], [[block]] and [[tub]]{{refn|group=note|name=xp2_xccy3252zgw8kicz3|[[Ash]] on {{LinkCatagolue|style=brief|xp2_xccy3252zgw8kicz3}}}}|| (8-) 8-tick spark (domino)&lt;br /&gt;
|-&lt;br /&gt;
| 9 || (9+) [[Eater 1]] || (9-) [[Lumps of muck]]&lt;br /&gt;
|-&lt;br /&gt;
| 10 || (10+) [[Block]] || (10-) [[Blinker]]&lt;br /&gt;
|-&lt;br /&gt;
| 11 || (11+) 4-tick spark (xp0_14) || (11-) [[Traffic light]]&lt;br /&gt;
|-&lt;br /&gt;
| 12 || (12+) [[Beehive]] || (12-) [[Block]]&lt;br /&gt;
|-&lt;br /&gt;
| 13 || (13+) [[Two-glider mess]] || (13-) 11-tick spark ([[P-pentomino]] / [[V spark]] / [[domino]])&lt;br /&gt;
|-&lt;br /&gt;
| 14 || (14+) [[Half-blockade]] || (14-) 13-tick spark ([[V spark]] / [[domino]])&lt;br /&gt;
|-&lt;br /&gt;
| 15 || (15+) [[House]] || (15-) 4-tick spark&lt;br /&gt;
|-&lt;br /&gt;
| 16 || (16+) [[Pi-heptomino]] || (16-) [[Traffic light]]&lt;br /&gt;
|-&lt;br /&gt;
| 17 || (17+) [[Block]] || (17-) [[Glider]] (90° [[kickback]])&lt;br /&gt;
|-&lt;br /&gt;
| 18 || (18+) [[Blinker]] and [[loaf]]{{refn|group=note|name=xp2_7zw6952|[[Ash]] on {{LinkCatagolue|style=brief|xp2_7zw6952}}}} || (18-) [[Blinker]] and [[loaf]]{{refn|group=note|name=xp2_7zw6952}}&lt;br /&gt;
|-&lt;br /&gt;
| ≥19 || colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center;&amp;quot; | No reaction onwards&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Another table of 180° collisions can be similarly made.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; | Lane offset&lt;br /&gt;
! colspan=&amp;quot;5&amp;quot; | Time offset&lt;br /&gt;
|-&lt;br /&gt;
! 0&lt;br /&gt;
! 4&lt;br /&gt;
! 1&lt;br /&gt;
! 3&lt;br /&gt;
! 2&lt;br /&gt;
|-&lt;br /&gt;
| 0 || colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center;&amp;quot; | 4-tick spark (xp0_108) || colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center;&amp;quot; | 6-tick spark (xp0_106 / [[dot]]) || 6-tick spark ([[duoplet]])&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10-tick spark || [[Block]] || 5-tick spark ([[Banana spark|banana]] / [[domino]]) || [[Honey farm]] || [[Two-glider octomino]]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 5-tick spark || 4-tick spark (domino) || 4-tick spark (domino) || 5-tick spark (domino) || [[Loaf]] (from [[V-pentomino]] or [[W-pentomino]])&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 4-tick spark (xp0_h) || 5-tick spark || [[Honey farm]] || [[Boat]] || [[Blinker]] (from [[Angel]])&lt;br /&gt;
|-&lt;br /&gt;
| 4 ||  5-tick spark || 12-tick spark || [[Traffic light]] || [[B-heptomino]] || [[Pi-heptomino]]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 3-tick spark || 8-tick spark || [[Pond]] || [[Block]] || [[Glider]] (180° [[kickback]])&lt;br /&gt;
|-&lt;br /&gt;
| 6 || [[Four skewed blocks]] || 7-tick spark ([[domino]]) || [[Block]] || 12-tick spark ([[Banana spark|banana]] / [[domino]]) || [[B-heptaplet]]&lt;br /&gt;
|-&lt;br /&gt;
| ≥7 || colspan=&amp;quot;5&amp;quot; style=&amp;quot;text-align: center;&amp;quot; | No reaction onwards&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[3-glider collision]]&lt;br /&gt;
* [[Collisions of a glider with common objects]]&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references group=&amp;quot;note&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post16856&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p      = 16856&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Errors of glider synthesis&lt;br /&gt;
|author = Bob Shemyakin&lt;br /&gt;
|date   = February 15, 2015&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post123750&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref &lt;br /&gt;
|title  = Re: Thread For Your Accidental Discoveries&lt;br /&gt;
|p      = 123750&lt;br /&gt;
|author = Mark Niemiec&lt;br /&gt;
|date   = February 25, 2021&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post117181&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref &lt;br /&gt;
|title  = Re: Thread for your Trolls&lt;br /&gt;
|p      = 117181&lt;br /&gt;
|author = wwei23&lt;br /&gt;
|date   = December 29, 2020&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* {{LinkLexicon|lex_1.htm#a-2glidercollision}}&lt;br /&gt;
* {{LinkNiemiec|glider-2.htm|Life Objects Buildable With 2 Gliders}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Patterns that can be constructed with 2 gliders| ]]&lt;br /&gt;
[[Category:Synthesis]]&lt;br /&gt;
[[Category:Collisions]]&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=File:Identify-map.png&amp;diff=133914</id>
		<title>File:Identify-map.png</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=File:Identify-map.png&amp;diff=133914"/>
		<updated>2023-07-22T15:10:54Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pattern is [[p96 Hans Leo hassler]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=File:Identify-map.png&amp;diff=133913</id>
		<title>File:Identify-map.png</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=File:Identify-map.png&amp;diff=133913"/>
		<updated>2023-07-22T15:10:19Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pattern is [[B-heptomino hasslers#p96]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=133072</id>
		<title>User:Atavoidirc</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=133072"/>
		<updated>2023-07-07T23:58:58Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is a hub page&lt;br /&gt;
[[User:Atavoidirc/Spaceship table]]&lt;br /&gt;
==[[User:GUYTU6J]]/Neighbourhood==&lt;br /&gt;
{{User:GUYTU6J/Neighbourhood}}&lt;br /&gt;
==Life wiki Pages==&lt;br /&gt;
* [[LifeWiki:Game of Life Status page]]&lt;br /&gt;
* [[LifeWiki:Spaceship Search Status Page]]&lt;br /&gt;
* [[LifeWiki:Smallest Spaceships Supporting Specific Speeds]]&lt;br /&gt;
* [[LifeWiki:Project OmniOsci/Overview]]&lt;br /&gt;
* [[LifeWiki:LifeViewer cheatsheet for LifeWiki articles]]&lt;br /&gt;
* [[LifeWiki:List of ongoing projects]]&lt;br /&gt;
&lt;br /&gt;
==Other Pages==&lt;br /&gt;
* [[Table of oscillators by period]]&lt;br /&gt;
&lt;br /&gt;
==Rules in Userspace==&lt;br /&gt;
*   [[User:Carbon6/Gnarl]]&lt;br /&gt;
*   [[User:Drc/GlideLife]]&lt;br /&gt;
*   [[User:Prime Raptor21/Nothing (Rule)]] &lt;br /&gt;
*   [[User:Evin/BiLife]]&lt;br /&gt;
*   [[User:Moosey/eatsplosion]]&lt;br /&gt;
*   [[User:Evin/Silverseeds]]&lt;br /&gt;
*   [[User:Evin/OCA:E1]]&lt;br /&gt;
*   [[User:Evin/Wlife]]&lt;br /&gt;
*   [[User:GUYTU6J/OCA:Glimmering Garden]]&lt;br /&gt;
*   [[User:Yujh/B34kz5e7c8/S23-a4ityz5k]]&lt;br /&gt;
*   [[User:Cvojan/TubularTest]]&lt;br /&gt;
*   [[User:Ultimium/OCA:LeapLife]]&lt;br /&gt;
*   [[User:Cgoler2/rrlife]]&lt;br /&gt;
*   [[User:Cgoler2/Clife]]&lt;br /&gt;
*   [[User:Pzq Alex/BitLife]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=133070</id>
		<title>User:Atavoidirc</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=133070"/>
		<updated>2023-07-07T23:50:33Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is a hub page&lt;br /&gt;
[[User:Atavoidirc/Spaceship table]]&lt;br /&gt;
&lt;br /&gt;
[[User:Atavoidirc/All Conduit Inputs and Outputs]]&lt;br /&gt;
==[[User:GUYTU6J]]/Neighbourhood==&lt;br /&gt;
{{User:GUYTU6J/Neighbourhood}}&lt;br /&gt;
==Life wiki Pages==&lt;br /&gt;
* [[LifeWiki:Game of Life Status page]]&lt;br /&gt;
* [[LifeWiki:Spaceship Search Status Page]]&lt;br /&gt;
* [[LifeWiki:Smallest Spaceships Supporting Specific Speeds]]&lt;br /&gt;
* [[LifeWiki:Project OmniOsci/Overview]]&lt;br /&gt;
* [[LifeWiki:LifeViewer cheatsheet for LifeWiki articles]]&lt;br /&gt;
* [[LifeWiki:List of ongoing projects]]&lt;br /&gt;
&lt;br /&gt;
==Other Pages==&lt;br /&gt;
* [[Table of oscillators by period]]&lt;br /&gt;
&lt;br /&gt;
==Rules in Userspace==&lt;br /&gt;
*   [[User:Carbon6/Gnarl]]&lt;br /&gt;
*   [[User:Drc/GlideLife]]&lt;br /&gt;
*   [[User:Prime Raptor21/Nothing (Rule)]] &lt;br /&gt;
*   [[User:Evin/BiLife]]&lt;br /&gt;
*   [[User:Moosey/eatsplosion]]&lt;br /&gt;
*   [[User:Evin/Silverseeds]]&lt;br /&gt;
*   [[User:Evin/OCA:E1]]&lt;br /&gt;
*   [[User:Evin/Wlife]]&lt;br /&gt;
*   [[User:GUYTU6J/OCA:Glimmering Garden]]&lt;br /&gt;
*   [[User:Yujh/B34kz5e7c8/S23-a4ityz5k]]&lt;br /&gt;
*   [[User:Cvojan/TubularTest]]&lt;br /&gt;
*   [[User:Ultimium/OCA:LeapLife]]&lt;br /&gt;
*   [[User:Cgoler2/rrlife]]&lt;br /&gt;
*   [[User:Cgoler2/Clife]]&lt;br /&gt;
*   [[User:Pzq Alex/BitLife]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Static_symmetry&amp;diff=132787</id>
		<title>Static symmetry</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Static_symmetry&amp;diff=132787"/>
		<updated>2023-06-27T09:56:10Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* On a square grid */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &#039;&#039;&#039;static symmetry&#039;&#039;&#039;&amp;lt;ref name=&amp;quot;post138823&amp;quot; /&amp;gt; refers to the combined rotational and reflectional symmetries of an arrangement of cells on a grid. Most isotropic rules preserve all such symmetries.&lt;br /&gt;
&lt;br /&gt;
This page specifically only covers purely geometric symmetries. Other preserved attributes which are not necessarily geometrical symmetries, notably gutters, are compiled on the [[Minor static symmetries]] page. Symmetries which apply to periodic objects, such as still lifes, oscillators and spaceships, which also includes time symmetries, are listed on the [[Kinetic symmetry]] page.&lt;br /&gt;
&lt;br /&gt;
== Basic theory ==&lt;br /&gt;
The Life transition rule, like that of any [[Isotropic non-totalistic cellular automaton|isotropic cellular automaton]], is invariant under valid reflections and rotations. That is, the change in state of a cell remains the same if its [[neighbourhood]] is rotated or reflected. This implies there are &#039;&#039;&#039;symmetries&#039;&#039;&#039; which if present in a pattern are present in all its successors. Note that the converse is not true: a pattern need not have the full symmetry of one of its successor states.&lt;br /&gt;
&lt;br /&gt;
== On a square grid ==&lt;br /&gt;
[[File:Symmetries.png|center|frame|Overview of symmetries (excluding D8_2).]]&lt;br /&gt;
&lt;br /&gt;
=== Rotational ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible&amp;quot;&amp;gt;&lt;br /&gt;
Rotational symmetries are prefixed with &amp;quot;C&amp;quot;, referring to the cyclic groups.&amp;lt;ref&amp;gt;[https://en.wikipedia.org/wiki/Cyclic_group Cyclic group] on Wikipedia&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== C1 ====&lt;br /&gt;
&#039;&#039;&#039;C1&#039;&#039;&#039;: Symmetric under 360° rotation. This is essentially no symmetry at all. Example: [[Eater 1]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 16, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 160&lt;br /&gt;
|height = 160&lt;br /&gt;
|caption = C1 symmetry&lt;br /&gt;
}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== C2 ====&lt;br /&gt;
&#039;&#039;&#039;C2&#039;&#039;&#039;: Symmetric under 180° rotation. There are three possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;C2_1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle of a C2_1 pattern is odd by odd. Example: [[Long snake]]&lt;br /&gt;
* &#039;&#039;&#039;C2_2&#039;&#039;&#039;: Rotation around the midpoint of a side of a cell. The bounding rectangle is even by odd. Example: [[Aircraft carrier]]&lt;br /&gt;
* &#039;&#039;&#039;C2_4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[Snake]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$31o&lt;br /&gt;
$15bo14bo$15bo14bo$15bo9b2o3bo$15bo8b4o2bo$15bo8b4o2bo$15bo2b10o2bo$&lt;br /&gt;
15bo14bo$15bo14bo$15bo3b2o4b2o3bo$15bo2bo2bo2bo2bo2bo$15bo2bo2bo2bo2bo&lt;br /&gt;
2bo$15bo3b2o4b2o3bo$15bo14bo$15bo14bo$15b16o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C2_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 32, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o&lt;br /&gt;
$15b16o$15bo14bo$15bo14bo$15bo9b2o3bo$15bo8b4o2bo$15bo8b4o2bo$15bo2b&lt;br /&gt;
10o2bo$15bo14bo$15bo14bo$15bo3b2o4b2o3bo$15bo2bo2bo2bo2bo2bo$15bo2bo2b&lt;br /&gt;
o2bo2bo2bo$15bo3b2o4b2o3bo$15bo14bo$15bo14bo$15b16o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C2_2 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o&lt;br /&gt;
$16b16o$16bo14bo$16bo14bo$16bo9b2o3bo$16bo8b4o2bo$16bo8b4o2bo$16bo2b&lt;br /&gt;
10o2bo$16bo14bo$16bo14bo$16bo3b2o4b2o3bo$16bo2bo2bo2bo2bo2bo$16bo2bo2b&lt;br /&gt;
o2bo2bo2bo$16bo3b2o4b2o3bo$16bo14bo$16bo14bo$16b16o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C2_4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== C4 ====&lt;br /&gt;
&#039;&#039;&#039;C4&#039;&#039;&#039;: Symmetric under 90° rotation. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;C4_1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle is odd by odd. Example: [[Shuriken]]&lt;br /&gt;
* &#039;&#039;&#039;C4_4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[Quad]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
31o$o14bo14bo$o14bo14bo$o3b2o4b2o3bo3b3o3b2o3bo$o2bo2bo2bo2bo2bo2b4o2b&lt;br /&gt;
o2bo2bo$o2bo2bo2bo2bo2bo2b4o2bo2bo2bo$o3b2o4b2o3bo3b3o3b2o3bo$o14bo5bo&lt;br /&gt;
8bo$o14bo5bo8bo$o2b10o2bo5bo3b2o3bo$o2b4o8bo5bo2bo2bo2bo$o2b4o8bo5bo2b&lt;br /&gt;
o2bo2bo$o3b2o9bo5bo3b2o3bo$o14bo14bo$o14bo14bo$31o$o14bo14bo$o14bo14bo&lt;br /&gt;
$o3b2o3bo5bo9b2o3bo$o2bo2bo2bo5bo8b4o2bo$o2bo2bo2bo5bo8b4o2bo$o3b2o3bo&lt;br /&gt;
5bo2b10o2bo$o8bo5bo14bo$o8bo5bo14bo$o3b2o3b3o3bo3b2o4b2o3bo$o2bo2bo2b&lt;br /&gt;
4o2bo2bo2bo2bo2bo2bo$o2bo2bo2b4o2bo2bo2bo2bo2bo2bo$o3b2o3b3o3bo3b2o4b&lt;br /&gt;
2o3bo$o14bo14bo$o14bo14bo$31o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C4_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b3o3b2o3bo$o2bo2bo2bo2bo2b2o2b&lt;br /&gt;
4o2bo2bo2bo$o2bo2bo2bo2bo2b2o2b4o2bo2bo2bo$o3b2o4b2o3b2o3b3o3b2o3bo$o&lt;br /&gt;
14b2o5bo8bo$o14b2o5bo8bo$o2b10o2b2o5bo3b2o3bo$o2b4o8b2o5bo2bo2bo2bo$o&lt;br /&gt;
2b4o8b2o5bo2bo2bo2bo$o3b2o9b2o5bo3b2o3bo$o14b2o14bo$o14b2o14bo$32o$32o&lt;br /&gt;
$o14b2o14bo$o14b2o14bo$o3b2o3bo5b2o9b2o3bo$o2bo2bo2bo5b2o8b4o2bo$o2bo&lt;br /&gt;
2bo2bo5b2o8b4o2bo$o3b2o3bo5b2o2b10o2bo$o8bo5b2o14bo$o8bo5b2o14bo$o3b2o&lt;br /&gt;
3b3o3b2o3b2o4b2o3bo$o2bo2bo2b4o2b2o2bo2bo2bo2bo2bo$o2bo2bo2b4o2b2o2bo&lt;br /&gt;
2bo2bo2bo2bo$o3b2o3b3o3b2o3b2o4b2o3bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C4_4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
C4 tends to produce record [[diehard]]s and [[megasized]] soups compared to other symmetries.&lt;br /&gt;
&lt;br /&gt;
=== Reflectional ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible&amp;quot;&amp;gt;&lt;br /&gt;
Reflectional symmetries are prefixed with &amp;quot;D&amp;quot;, referring to the dihedral groups.&amp;lt;ref&amp;gt;[https://en.wikipedia.org/wiki/Dihedral_group Dihedral group] on Wikipedia&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== D2 ====&lt;br /&gt;
&#039;&#039;&#039;D2&#039;&#039;&#039;: Symmetric under reflection through a line. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D2_+&#039;&#039;&#039; The line is orthogonal. There are two sub-possibilities:&lt;br /&gt;
** &#039;&#039;&#039;D2_+1&#039;&#039;&#039; The line bisects a row of cells. The bounding rectangle is odd by any. Example: [[Hat]]&lt;br /&gt;
** &#039;&#039;&#039;D2_+2&#039;&#039;&#039; The line lies between two rows of cells. The bounding rectangle is even by any. Example: [[Frutterfly]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 31, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o&lt;br /&gt;
$o14bo$o14bo$o3b2o9bo$o2b4o8bo$o2b4o8bo$o2b10o2bo$o14bo$o14bo$o3b2o4b&lt;br /&gt;
2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b2o3bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 160&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D2_+1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 32, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o&lt;br /&gt;
$16o$o14bo$o14bo$o3b2o9bo$o2b4o8bo$o2b4o8bo$o2b10o2bo$o14bo$o14bo$o3b&lt;br /&gt;
2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b2o3bo$o14bo$o14bo$&lt;br /&gt;
16o!&lt;br /&gt;
|width = 160&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D2_+2 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D2_x&#039;&#039;&#039; The line is diagonal. Example: [[Elevener]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 16, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o7bo6bo$o6bobo5bo$o7bo3bo2bo$o11bo2bo$o3bo7bo2bo$o2bob&lt;br /&gt;
o6bo2bo$o3bo6bo3bo$o9bo4bo$o8bo5bo$o4b4o6bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 160&lt;br /&gt;
|height = 160&lt;br /&gt;
|caption = D2_x symmetry}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== D4 ====&lt;br /&gt;
&#039;&#039;&#039;D4&#039;&#039;&#039;: Symmetric under both reflection and 180° rotation. The reflection symmetry will be with respect to two lines. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D4_+&#039;&#039;&#039;: The lines are orthogonal. There are three sub-possibilities:&lt;br /&gt;
** &#039;&#039;&#039;D4_+1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle is odd by odd. Example: [[Dead spark coil]]&lt;br /&gt;
** &#039;&#039;&#039;D4_+2&#039;&#039;&#039;: Rotation around the midpoint of a side of a cell. The bounding rectangle is even by odd. Example: [[Honeycomb]]&lt;br /&gt;
** &#039;&#039;&#039;D4_+4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[A for all]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
31o$o14bo14bo$o14bo14bo$o3b2o4b2o3bo3b2o4b2o3bo$o2bo2bo2bo2bo2bo2bo2bo&lt;br /&gt;
2bo2bo2bo$o2bo2bo2bo2bo2bo2bo2bo2bo2bo2bo$o3b2o4b2o3bo3b2o4b2o3bo$o14b&lt;br /&gt;
o14bo$o14bo14bo$o2b10o2bo2b10o2bo$o2b4o8bo8b4o2bo$o2b4o8bo8b4o2bo$o3b&lt;br /&gt;
2o9bo9b2o3bo$o14bo14bo$o14bo14bo$31o$o14bo14bo$o14bo14bo$o3b2o9bo9b2o&lt;br /&gt;
3bo$o2b4o8bo8b4o2bo$o2b4o8bo8b4o2bo$o2b10o2bo2b10o2bo$o14bo14bo$o14bo&lt;br /&gt;
14bo$o3b2o4b2o3bo3b2o4b2o3bo$o2bo2bo2bo2bo2bo2bo2bo2bo2bo2bo$o2bo2bo2b&lt;br /&gt;
o2bo2bo2bo2bo2bo2bo2bo$o3b2o4b2o3bo3b2o4b2o3bo$o14bo14bo$o14bo14bo$31o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_+1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 31, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b2o4b2o3bo$o2bo2bo2bo2bo2b2o2b&lt;br /&gt;
o2bo2bo2bo2bo$o2bo2bo2bo2bo2b2o2bo2bo2bo2bo2bo$o3b2o4b2o3b2o3b2o4b2o3b&lt;br /&gt;
o$o14b2o14bo$o14b2o14bo$o2b10o2b2o2b10o2bo$o2b4o8b2o8b4o2bo$o2b4o8b2o&lt;br /&gt;
8b4o2bo$o3b2o9b2o9b2o3bo$o14b2o14bo$o14b2o14bo$32o$o14b2o14bo$o14b2o&lt;br /&gt;
14bo$o3b2o9b2o9b2o3bo$o2b4o8b2o8b4o2bo$o2b4o8b2o8b4o2bo$o2b10o2b2o2b&lt;br /&gt;
10o2bo$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b2o4b2o3bo$o2bo2bo2bo2bo2b&lt;br /&gt;
2o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2b2o2bo2bo2bo2bo2bo$o3b2o4b2o3b2o3b2o4b&lt;br /&gt;
2o3bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_+2 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b2o4b2o3bo$o2bo2bo2bo2bo2b2o2b&lt;br /&gt;
o2bo2bo2bo2bo$o2bo2bo2bo2bo2b2o2bo2bo2bo2bo2bo$o3b2o4b2o3b2o3b2o4b2o3b&lt;br /&gt;
o$o14b2o14bo$o14b2o14bo$o2b10o2b2o2b10o2bo$o2b4o8b2o8b4o2bo$o2b4o8b2o&lt;br /&gt;
8b4o2bo$o3b2o9b2o9b2o3bo$o14b2o14bo$o14b2o14bo$32o$32o$o14b2o14bo$o14b&lt;br /&gt;
2o14bo$o3b2o9b2o9b2o3bo$o2b4o8b2o8b4o2bo$o2b4o8b2o8b4o2bo$o2b10o2b2o2b&lt;br /&gt;
10o2bo$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b2o4b2o3bo$o2bo2bo2bo2bo2b&lt;br /&gt;
2o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2b2o2bo2bo2bo2bo2bo$o3b2o4b2o3b2o3b2o4b&lt;br /&gt;
2o3bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_+4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D4_x&#039;&#039;&#039; The lines are diagonal. There are two sub-possibilities:&lt;br /&gt;
** &#039;&#039;&#039;D4_x1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle is odd by odd. Example: [[Loaf siamese loaf]]&lt;br /&gt;
** &#039;&#039;&#039;D4_x4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[Long ship]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
31o$o14bo14bo$o14bo14bo$o7bo6bo5b3o6bo$o6bobo5bo5bobo6bo$o7bo3bo2bo2bo&lt;br /&gt;
2b3o6bo$o11bo2bo2b2o10bo$o3bo7bo2bo2b2o5b3o2bo$o2bobo6bo2bo2b3o4bobo2b&lt;br /&gt;
o$o3bo6bo3bo3b2o4b3o2bo$o9bo4bo3b4o7bo$o8bo5bo4b5o5bo$o4b4o6bo6b4o4bo$&lt;br /&gt;
o14bo14bo$o14bo14bo$31o$o14bo14bo$o14bo14bo$o4b4o6bo6b4o4bo$o5b5o4bo5b&lt;br /&gt;
o8bo$o7b4o3bo4bo9bo$o2b3o4b2o3bo3bo6bo3bo$o2bobo4b3o2bo2bo6bobo2bo$o2b&lt;br /&gt;
3o5b2o2bo2bo7bo3bo$o10b2o2bo2bo11bo$o6b3o2bo2bo2bo3bo7bo$o6bobo5bo5bob&lt;br /&gt;
o6bo$o6b3o5bo6bo7bo$o14bo14bo$o14bo14bo$31o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_x1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o7bo6b2o5b3o6bo$o6bobo5b2o5bobo6bo$o7bo3bo2b&lt;br /&gt;
2o2bo2b3o6bo$o11bo2b2o2b2o10bo$o3bo7bo2b2o2b2o5b3o2bo$o2bobo6bo2b2o2b&lt;br /&gt;
3o4bobo2bo$o3bo6bo3b2o3b2o4b3o2bo$o9bo4b2o3b4o7bo$o8bo5b2o4b5o5bo$o4b&lt;br /&gt;
4o6b2o6b4o4bo$o14b2o14bo$o14b2o14bo$32o$32o$o14b2o14bo$o14b2o14bo$o4b&lt;br /&gt;
4o6b2o6b4o4bo$o5b5o4b2o5bo8bo$o7b4o3b2o4bo9bo$o2b3o4b2o3b2o3bo6bo3bo$o&lt;br /&gt;
2bobo4b3o2b2o2bo6bobo2bo$o2b3o5b2o2b2o2bo7bo3bo$o10b2o2b2o2bo11bo$o6b&lt;br /&gt;
3o2bo2b2o2bo3bo7bo$o6bobo5b2o5bobo6bo$o6b3o5b2o6bo7bo$o14b2o14bo$o14b&lt;br /&gt;
2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_x4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== D8 ====&lt;br /&gt;
&#039;&#039;&#039;D8&#039;&#039;&#039;: Symmetric under both reflection and 90° rotation. The reflection symmetry will be with respect to horizontal, vertical, and diagonal lines. There are three possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D8_1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle is odd by odd. Example: [[Pulsar]]&lt;br /&gt;
* &#039;&#039;&#039;D8_2&#039;&#039;&#039;: Rotation around a edge of a cell. The bounding rectangle is even by odd. This symmetry is not preserved by Life (reverting to D4_+2), but is with most bilaterally symmetric rules.&lt;br /&gt;
* &#039;&#039;&#039;D8_4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[Lake 2]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
31o$o14bo14bo$o14bo14bo$o7bo6bo6bo7bo$o6bobo5bo5bobo6bo$o7bo3bo2bo2bo&lt;br /&gt;
3bo7bo$o11bo2bo2bo11bo$o3bo7bo2bo2bo7bo3bo$o2bobo6bo2bo2bo6bobo2bo$o3b&lt;br /&gt;
o6bo3bo3bo6bo3bo$o9bo4bo4bo9bo$o8bo5bo5bo8bo$o4b4o6bo6b4o4bo$o14bo14bo&lt;br /&gt;
$o14bo14bo$31o$o14bo14bo$o14bo14bo$o4b4o6bo6b4o4bo$o8bo5bo5bo8bo$o9bo&lt;br /&gt;
4bo4bo9bo$o3bo6bo3bo3bo6bo3bo$o2bobo6bo2bo2bo6bobo2bo$o3bo7bo2bo2bo7bo&lt;br /&gt;
3bo$o11bo2bo2bo11bo$o7bo3bo2bo2bo3bo7bo$o6bobo5bo5bobo6bo$o7bo6bo6bo7b&lt;br /&gt;
o$o14bo14bo$o14bo14bo$31o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D8_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 31, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o7bo6b2o6bo7bo$o6bobo5b2o5bobo6bo$o7bo3bo2b&lt;br /&gt;
2o2bo3bo7bo$o11bo2b2o2bo11bo$o3bo7bo2b2o2bo7bo3bo$o2bobo6bo2b2o2bo6bob&lt;br /&gt;
o2bo$o3bo6bo3b2o3bo6bo3bo$o9bo4b2o4bo9bo$o8bo5b2o5bo8bo$o4b4o6b2o6b4o&lt;br /&gt;
4bo$o14b2o14bo$o14b2o14bo$32o$o14b2o14bo$o14b2o14bo$o4b4o6b2o6b4o4bo$o&lt;br /&gt;
8bo5b2o5bo8bo$o9bo4b2o4bo9bo$o3bo6bo3b2o3bo6bo3bo$o2bobo6bo2b2o2bo6bob&lt;br /&gt;
o2bo$o3bo7bo2b2o2bo7bo3bo$o11bo2b2o2bo11bo$o7bo3bo2b2o2bo3bo7bo$o6bobo&lt;br /&gt;
5b2o5bobo6bo$o7bo6b2o6bo7bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D8_2 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o7bo6b2o6bo7bo$o6bobo5b2o5bobo6bo$o7bo3bo2b&lt;br /&gt;
2o2bo3bo7bo$o11bo2b2o2bo11bo$o3bo7bo2b2o2bo7bo3bo$o2bobo6bo2b2o2bo6bob&lt;br /&gt;
o2bo$o3bo6bo3b2o3bo6bo3bo$o9bo4b2o4bo9bo$o8bo5b2o5bo8bo$o4b4o6b2o6b4o&lt;br /&gt;
4bo$o14b2o14bo$o14b2o14bo$32o$32o$o14b2o14bo$o14b2o14bo$o4b4o6b2o6b4o&lt;br /&gt;
4bo$o8bo5b2o5bo8bo$o9bo4b2o4bo9bo$o3bo6bo3b2o3bo6bo3bo$o2bobo6bo2b2o2b&lt;br /&gt;
o6bobo2bo$o3bo7bo2b2o2bo7bo3bo$o11bo2b2o2bo11bo$o7bo3bo2b2o2bo3bo7bo$o&lt;br /&gt;
6bobo5b2o5bobo6bo$o7bo6b2o6bo7bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D8_4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
To preserve D8_2 symmetry, the following [[isotropic non-totalistic]] transitions must either all exist simultaneously with all other transitions in the same line or none should:&amp;lt;ref name=&amp;quot;post143859&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*B4i=B2a=B2i=B1e&lt;br /&gt;
*S6a=S7e=S4t=S6i&lt;br /&gt;
*S4c=S3y=S4q&lt;br /&gt;
*B1c=B2c=B4c&lt;br /&gt;
*S3a=S1e=S0&lt;br /&gt;
*S7c=S6c=S4e&lt;br /&gt;
*B5y=B4w=B4e&lt;br /&gt;
*B8=B7e=B5a&lt;br /&gt;
*B5e=B4n&lt;br /&gt;
*B4a=B5i&lt;br /&gt;
*B4t=B5r&lt;br /&gt;
*S5y=S5q&lt;br /&gt;
*S5e=S5j&lt;br /&gt;
*B6i=B3i&lt;br /&gt;
*B6c=B6k&lt;br /&gt;
*S4i=S3r&lt;br /&gt;
*B3j=B3e&lt;br /&gt;
*B3y=B3q&lt;br /&gt;
*S2k=S2c&lt;br /&gt;
*S4a=S3i&lt;br /&gt;
*S3e=S4r&lt;br /&gt;
*S5i=S2i&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== On a hexagonal or triangular grid ==&lt;br /&gt;
[[Hexagonal neighbourhood|Hexagonal]] and [[triangular neighbourhood|triangular]] grids have the same set of admissible symmetries as each other (by planar&amp;lt;ref&amp;gt;[http://mathworld.wolfram.com/DualTessellation.html Dual tessellation] on mathworld.wolfram.com&amp;lt;/ref&amp;gt; or polytopic duality&amp;lt;ref&amp;gt;[https://en.wikipedia.org/wiki/Dual_polyhedron#Dual_polytopes_and_tessellations Dual polyhedron] on Wikipedia&amp;lt;/ref&amp;gt; - see also [[Schläfli symbol]]), but these are not the same symmetries as square grids. Due to how hexagonal and triangular grids are handled by programs such as [[Golly]] and [[LifeViewer]], they will also appear markedly different in these respects. C2, D2, and D4 symmetries are still compatible, but C4 symmetries become meaningless because the cells no longer have a side count that is perfectly divisible by 4. Other symmetries are exclusive to these alternative grids, as indicated below:&lt;br /&gt;
&lt;br /&gt;
* C1&lt;br /&gt;
* C2_1&lt;br /&gt;
* C2_4&lt;br /&gt;
* C3_1&lt;br /&gt;
* C3_3 (unsupported by apgsearch)&lt;br /&gt;
* C6&lt;br /&gt;
* D2_xo&lt;br /&gt;
* D2_x&lt;br /&gt;
* D4_x1&lt;br /&gt;
* D4_x4&lt;br /&gt;
* D6_1&lt;br /&gt;
* D6_1o&lt;br /&gt;
* D6_3 (unsupported by apgsearch)&lt;br /&gt;
* D12&lt;br /&gt;
&lt;br /&gt;
[[apgsearch]] currently supports most higher symmetries for hexagonal rules; the rest (C3_3 and D6_3) will be added in a future version.&amp;lt;ref name=&amp;quot;post66638&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another type of rotational symmetry which may not have been accounted for in the above list, arising as an alternate form of C2_2, was described in November 2021. Whether this is an actually distinct type of symmetry, however, is unknown and needs investigation.&amp;lt;ref name=&amp;quot;post137220&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Rotational ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible&amp;quot;&amp;gt;&lt;br /&gt;
Click on &amp;quot;Expand&amp;quot; to the right to view a list of hexagonal/triangular rotational symmetries. &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== C1 ====&lt;br /&gt;
&#039;&#039;&#039;C1&#039;&#039;&#039;: Symmetric under 360° rotation. This is essentially no symmetry at all.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 16, rule = B/S0123456H&lt;br /&gt;
16o$o14bo$o14bo$o5b2o7bo$o5bobo6bo$o6b2o6bo$o2b2o10bo$o2bobo9bo$o3b2o&lt;br /&gt;
4b2o3bo$o8b2o4bo$o7b2o5bo$o7b3o4bo$o8b2o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 200&lt;br /&gt;
|height = 200&lt;br /&gt;
|caption = C1 symmetry&lt;br /&gt;
}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== C2 ====&lt;br /&gt;
&#039;&#039;&#039;C2&#039;&#039;&#039;: Symmetric under 180° rotation. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;C2_1&#039;&#039;&#039;: Rotation around the center of a cell.&lt;br /&gt;
* &#039;&#039;&#039;C2_2&#039;&#039;&#039;: Rotation around the midpoint of a side of a cell.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S0123456H&lt;br /&gt;
15b16o$15bo14bo$15bo14bo$15bo4b2o8bo$15bo4b3o7bo$15bo5b2o7bo$15bo4b2o&lt;br /&gt;
8bo$15bo3b2o4b2o3bo$15bo9bobo2bo$15bo10b2o2bo$15bo6b2o6bo$15bo6bobo5bo&lt;br /&gt;
$15bo7b2o5bo$15bo14bo$15bo14bo$31o$o14bo$o14bo$o5b2o7bo$o5bobo6bo$o6b&lt;br /&gt;
2o6bo$o2b2o10bo$o2bobo9bo$o3b2o4b2o3bo$o8b2o4bo$o7b2o5bo$o7b3o4bo$o8b&lt;br /&gt;
2o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = C2_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S0123456H&lt;br /&gt;
16b16o$16bo14bo$16bo14bo$16bo4b2o8bo$16bo4b3o7bo$16bo5b2o7bo$16bo4b2o&lt;br /&gt;
8bo$16bo3b2o4b2o3bo$16bo9bobo2bo$16bo10b2o2bo$16bo6b2o6bo$16bo6bobo5bo&lt;br /&gt;
$16bo7b2o5bo$16bo14bo$16bo14bo$16b16o$16o$o14bo$o14bo$o5b2o7bo$o5bobo&lt;br /&gt;
6bo$o6b2o6bo$o2b2o10bo$o2bobo9bo$o3b2o4b2o3bo$o8b2o4bo$o7b2o5bo$o7b3o&lt;br /&gt;
4bo$o8b2o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = C2_4(?) symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== C3 ====&lt;br /&gt;
&#039;&#039;&#039;C3&#039;&#039;&#039;: Symmetric under 120° rotation. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;C3_1&#039;&#039;&#039;: Rotation around the center of a cell.&lt;br /&gt;
* &#039;&#039;&#039;C3_3&#039;&#039;&#039;: Rotation around a corner of a cell. (unsupported by apgsearch)&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 46, y = 46, rule = B/S0123456H&lt;br /&gt;
o$2o$obo$o2bo$o3bo$o4bo$o5bo$o6bo$o7bo$o8bo$o9bo$o6b2o2bo$o2b2o2bobo2b&lt;br /&gt;
o$o2b3o2b2o3bo$o3b2o8bo$o5bo8bo$bo4bo8bo$2bo4bo2b2o3bo$3bo3bo2bobo2bo$&lt;br /&gt;
4bo6b2o2bo$5bo9bo$6bo8bo$7bo7bo$8bo6bo$9bo5bo$10bo4bo$11bo3bo$12bo2bo$&lt;br /&gt;
13bobo$14b2o$31o$o14b2o14bo$o14bobo14bo$o5b2o7bo2bo14bo$o5bobo6bo3bo7b&lt;br /&gt;
o6bo$o6b2o6bo4bo7b2ob2o2bo$o2b2o10bo5bo8b4o2bo$o2bobo9bo6bo3b2o4b2o3bo&lt;br /&gt;
$o3b2o4b2o3bo7bo2bobo9bo$o8b2o4bo8bo2b2o10bo$o7b2o5bo9bo6b2o6bo$o7b3o&lt;br /&gt;
4bo10bo5bobo6bo$o8b2o4bo11bo5b2o7bo$o14bo12bo14bo$o14bo13bo14bo$16o14b&lt;br /&gt;
16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = C3_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 48, y = 48, rule = B/S0123456H&lt;br /&gt;
o$2o$obo$o2bo$o3bo$o4bo$o5bo$o6bo$o7bo$o8bo$o9bo$o6b2o2bo$o2b2o2bobo2b&lt;br /&gt;
o$o2b3o2b2o3bo$o3b2o8bo$o5bo8bo$bo4bo8bo$2bo4bo2b2o3bo$3bo3bo2bobo2bo$&lt;br /&gt;
4bo6b2o2bo$5bo9bo$6bo8bo$7bo7bo$8bo6bo$9bo5bo$10bo4bo$11bo3bo$12bo2bo$&lt;br /&gt;
13bobo$14b2o$15bo2$16ob16o$o14bo2bo14bo$o14bo3bo14bo$o5b2o7bo4bo14bo$o&lt;br /&gt;
5bobo6bo5bo7bo6bo$o6b2o6bo6bo7b2ob2o2bo$o2b2o10bo7bo8b4o2bo$o2bobo9bo&lt;br /&gt;
8bo3b2o4b2o3bo$o3b2o4b2o3bo9bo2bobo9bo$o8b2o4bo10bo2b2o10bo$o7b2o5bo&lt;br /&gt;
11bo6b2o6bo$o7b3o4bo12bo5bobo6bo$o8b2o4bo13bo5b2o7bo$o14bo14bo14bo$o&lt;br /&gt;
14bo15bo14bo$16o16b16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = C3_3 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== C6 ====&lt;br /&gt;
&#039;&#039;&#039;C6&#039;&#039;&#039;: Symmetric under 60° rotation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 61, y = 61, rule = B/S0123456H&lt;br /&gt;
15bo$15b2o$15bobo$15bo2bo$15bo3bo$15bo4bo$15bo5bo$15bo6bo$15bo7bo$15bo&lt;br /&gt;
8bo$15bo9bo$15bo6b2o2bo$15bo2b2o2bobo2bo$15bo2b3o2b2o3bo$15bo3b2o8bo$&lt;br /&gt;
16o5bo8b16o$bo14bo4bo8bo14bo$2bo14bo4bo2b2o3bo14bo$3bo7b2o5bo3bo2bobo&lt;br /&gt;
2bo4b2o8bo$4bo6bobo5bo6b2o2bo4b3o7bo$5bo6b2o6bo9bo5b2o7bo$6bo10b2o2bo&lt;br /&gt;
8bo4b2o8bo$7bo9bobo2bo7bo3b2o4b2o3bo$8bo3b2o4b2o3bo6bo9bobo2bo$9bo2b4o&lt;br /&gt;
8bo5bo10b2o2bo$10bo2b2ob2o7bo4bo6b2o6bo$11bo6bo7bo3bo6bobo5bo$12bo14bo&lt;br /&gt;
2bo7b2o5bo$13bo14bobo14bo$14bo14b2o14bo$15b31o$15bo14b2o14bo$15bo14bob&lt;br /&gt;
o14bo$15bo5b2o7bo2bo14bo$15bo5bobo6bo3bo7bo6bo$15bo6b2o6bo4bo7b2ob2o2b&lt;br /&gt;
o$15bo2b2o10bo5bo8b4o2bo$15bo2bobo9bo6bo3b2o4b2o3bo$15bo3b2o4b2o3bo7bo&lt;br /&gt;
2bobo9bo$15bo8b2o4bo8bo2b2o10bo$15bo7b2o5bo9bo6b2o6bo$15bo7b3o4bo2b2o&lt;br /&gt;
6bo5bobo6bo$15bo8b2o4bo2bobo2bo3bo5b2o7bo$15bo14bo3b2o2bo4bo14bo$15bo&lt;br /&gt;
14bo8bo4bo14bo$15b16o8bo5b16o$31bo8b2o3bo$32bo3b2o2b3o2bo$33bo2bobo2b&lt;br /&gt;
2o2bo$34bo2b2o6bo$35bo9bo$36bo8bo$37bo7bo$38bo6bo$39bo5bo$40bo4bo$41bo&lt;br /&gt;
3bo$42bo2bo$43bobo$44b2o$45bo!&lt;br /&gt;
|width = 500&lt;br /&gt;
|height = 500&lt;br /&gt;
|caption = C6 symmetry}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Reflectional ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible&amp;quot;&amp;gt;&lt;br /&gt;
Click on &amp;quot;Expand&amp;quot; to the right to view a list of hexagonal/triangular reflectional symmetries. &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== D2 ====&lt;br /&gt;
&#039;&#039;&#039;D2&#039;&#039;&#039;: There is line symmetry. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D2_x&#039;&#039;&#039;: Through the vertices of a cell. &lt;br /&gt;
* &#039;&#039;&#039;D2_xo&#039;&#039;&#039;: Through the edges of a cell.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 16, rule = B/S0123456H&lt;br /&gt;
16o$o14bo$o14bo$o5b2o7bo$o5bobo6bo$o2bo3b2o6bo$o2bo11bo$o2bo6b2o3bo$o&lt;br /&gt;
2bo6bobo2bo$o3bo6b2o2bo$o4bo9bo$o5bo8bo$o6b4o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 300&lt;br /&gt;
|height = 300&lt;br /&gt;
|caption = D2_x symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S0123456H&lt;br /&gt;
16o$bo14bo$2bo14bo$3bo8b2o4bo$4bo7b3o4bo$5bo7b2o5bo$6bo8b2o4bo$7bo3b2o&lt;br /&gt;
4b2o3bo$8bo2bobo9bo$9bo2b2o10bo$10bo6b2o6bo$11bo5bobo6bo$12bo5b2o7bo$&lt;br /&gt;
13bo14bo$14bo14bo$15b16o$15bo14bo$15bo14bo$15bo5b2o7bo$15bo5bobo6bo$15b&lt;br /&gt;
o6b2o6bo$15bo2b2o10bo$15bo2bobo9bo$15bo3b2o4b2o3bo$15bo8b2o4bo$15bo7b&lt;br /&gt;
2o5bo$15bo7b3o4bo$15bo8b2o4bo$15bo14bo$15bo14bo$15b16o!&lt;br /&gt;
|width = 300&lt;br /&gt;
|height = 300&lt;br /&gt;
|caption = D2_xo symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== D4 ====&lt;br /&gt;
&#039;&#039;&#039;D4&#039;&#039;&#039;: Symmetric under both reflection and 180° rotation. The reflection symmetry will be with respect to two lines. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D4_x1&#039;&#039;&#039;: Rotation around the center of a cell.&lt;br /&gt;
* &#039;&#039;&#039;D4_x4&#039;&#039;&#039;: Rotation around the edges of a cell.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S0123456H&lt;br /&gt;
15b16o$15bo14bo$15bo14bo$15bo4b4o6bo$15bo8bo5bo$15bo9bo4bo$15bo2b2o6bo&lt;br /&gt;
3bo$15bo2bobo6bo2bo$15bo3b2o6bo2bo$15bo11bo2bo$15bo6b2o3bo2bo$15bo6bob&lt;br /&gt;
o5bo$15bo7b2o5bo$15bo14bo$15bo14bo$31o$o14bo$o14bo$o5b2o7bo$o5bobo6bo$&lt;br /&gt;
o2bo3b2o6bo$o2bo11bo$o2bo6b2o3bo$o2bo6bobo2bo$o3bo6b2o2bo$o4bo9bo$o5bo&lt;br /&gt;
8bo$o6b4o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D4_x1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S0123456H&lt;br /&gt;
16b16o$16bo14bo$16bo14bo$16bo4b4o6bo$16bo8bo5bo$16bo9bo4bo$16bo2b2o6bo&lt;br /&gt;
3bo$16bo2bobo6bo2bo$16bo3b2o6bo2bo$16bo11bo2bo$16bo6b2o3bo2bo$16bo6bob&lt;br /&gt;
o5bo$16bo7b2o5bo$16bo14bo$16bo14bo$16b16o$16o$o14bo$o14bo$o5b2o7bo$o5b&lt;br /&gt;
obo6bo$o2bo3b2o6bo$o2bo11bo$o2bo6b2o3bo$o2bo6bobo2bo$o3bo6b2o2bo$o4bo&lt;br /&gt;
9bo$o5bo8bo$o6b4o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D4_x4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== D6 ====&lt;br /&gt;
&#039;&#039;&#039;D6&#039;&#039;&#039;: Symmetric under both reflection and 120° rotation. The reflection symmetry will be with respect to three lines. There are three possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D6_1&#039;&#039;&#039;: Rotation around the center of a cell with lines going through the edges of cells.&lt;br /&gt;
* &#039;&#039;&#039;D6_1o&#039;&#039;&#039;: Rotation around the center of a cell with lines going through the centers of cells.&lt;br /&gt;
* &#039;&#039;&#039;D6_3&#039;&#039;&#039;: Rotation around the corner of a cell. (unsupported by apgsearch)&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 46, y = 46, rule = B/S0123456H&lt;br /&gt;
o$2o$obo$o2bo$o3bo$o4bo$o5bo$o6bo$o7bo$o8bo$o2b5o2bo$o2bo4bo2bo$o2bo5b&lt;br /&gt;
o2bo$o2bo6bo2bo$o13bo$o14bo$bo13bo$2bo3b2o2b2o3bo$3bo2bobobobo2bo$4bo&lt;br /&gt;
2b2o2b2o2bo$5bo9bo$6bo8bo$7bo7bo$8bo6bo$9bo5bo$10bo4bo$11bo3bo$12bo2bo&lt;br /&gt;
$13bobo$14b2o$31o$o14b2o14bo$o14bobo14bo$o5b2o7bo2bo7b2o5bo$o5bobo6bo&lt;br /&gt;
3bo6bobo5bo$o2bo3b2o6bo4bo6b2o3bo2bo$o2bo11bo5bo11bo2bo$o2bo6b2o3bo6bo&lt;br /&gt;
3b2o6bo2bo$o2bo6bobo2bo7bo2bobo6bo2bo$o3bo6b2o2bo8bo2b2o6bo3bo$o4bo9bo&lt;br /&gt;
9bo9bo4bo$o5bo8bo10bo8bo5bo$o6b4o4bo11bo4b4o6bo$o14bo12bo14bo$o14bo13b&lt;br /&gt;
o14bo$16o14b16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D6_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B2/S34H&lt;br /&gt;
16o$2o14bo$obo14bo$o2bo4b5o5bo$o3bo8b2o4bo$o4bo9b2o3bo$o5bo3b2o5b2o2bo&lt;br /&gt;
$o6bo2bobo6bo2bo$o2bo4bo2b2o7bo2bo$o2bo5bo11bo2bo$o2bo2b2o2bo7b2o2bo2b&lt;br /&gt;
o$o2bo2bobo2bo6bobo5bo$o2bo3b2o3bo6b2o6bo$o3bo8bo14bo$o3bo9bo14bo$o4bo&lt;br /&gt;
9b16o$bo3bo9bo14bo$2bo3bo8bo14bo$3bo2bo3b2o3bo6b2o6bo$4bo2bo2bobo2bo6b&lt;br /&gt;
obo5bo$5bo2bo2b2o2bo7b2o2bo2bo$6bo2bo5bo11bo2bo$7bo2bo4bo2b2o7bo2bo$8b&lt;br /&gt;
o6bo2bobo6bo2bo$9bo5bo3b2o5b2o2bo$10bo4bo9b2o3bo$11bo3bo8b2o4bo$12bo2b&lt;br /&gt;
o4b5o5bo$13bobo14bo$14b2o14bo$15b16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D6_1o symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 48, y = 48, rule = B/S0123456H&lt;br /&gt;
o$2o$obo$o2bo$o3bo$o4bo$o5bo$o6bo$o7bo$o8bo$o2b5o2bo$o2bo4bo2bo$o2bo5b&lt;br /&gt;
o2bo$o2bo6bo2bo$o13bo$o14bo$bo13bo$2bo3b2o2b2o3bo$3bo2bobobobo2bo$4bo&lt;br /&gt;
2b2o2b2o2bo$5bo9bo$6bo8bo$7bo7bo$8bo6bo$9bo5bo$10bo4bo$11bo3bo$12bo2bo&lt;br /&gt;
$13bobo$14b2o$15bo2$16ob16o$o14bo2bo14bo$o14bo3bo14bo$o5b2o7bo4bo7b2o&lt;br /&gt;
5bo$o5bobo6bo5bo6bobo5bo$o2bo3b2o6bo6bo6b2o3bo2bo$o2bo11bo7bo11bo2bo$o&lt;br /&gt;
2bo6b2o3bo8bo3b2o6bo2bo$o2bo6bobo2bo9bo2bobo6bo2bo$o3bo6b2o2bo10bo2b2o&lt;br /&gt;
6bo3bo$o4bo9bo11bo9bo4bo$o5bo8bo12bo8bo5bo$o6b4o4bo13bo4b4o6bo$o14bo&lt;br /&gt;
14bo14bo$o14bo15bo14bo$16o16b16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D6_3 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== D12 ====&lt;br /&gt;
&#039;&#039;&#039;D12&#039;&#039;&#039;: Symmetric under both reflection and 60° rotation. The reflection symmetry will be with respect to six lines.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 61, y = 61, rule = B/S0123456H&lt;br /&gt;
15bo$15b2o$15bobo$15bo2bo$15bo3bo$15bo4bo$15bo5bo$15bo6bo$15bo7bo$15bo&lt;br /&gt;
8bo$15bo2b5o2bo$15bo2bo4bo2bo$15bo2bo5bo2bo$15bo2bo6bo2bo$15bo13bo$16o&lt;br /&gt;
14b16o$bo14bo13bo14bo$2bo14bo3b2o2b2o3bo14bo$3bo6b4o4bo2bobobobo2bo4b&lt;br /&gt;
4o6bo$4bo5bo8bo2b2o2b2o2bo8bo5bo$5bo4bo9bo9bo9bo4bo$6bo3bo6b2o2bo8bo2b&lt;br /&gt;
2o6bo3bo$7bo2bo6bobo2bo7bo2bobo6bo2bo$8bo2bo6b2o3bo6bo3b2o6bo2bo$9bo2b&lt;br /&gt;
o11bo5bo11bo2bo$10bo2bo3b2o6bo4bo6b2o3bo2bo$11bo5bobo6bo3bo6bobo5bo$&lt;br /&gt;
12bo5b2o7bo2bo7b2o5bo$13bo14bobo14bo$14bo14b2o14bo$15b31o$15bo14b2o14b&lt;br /&gt;
o$15bo14bobo14bo$15bo5b2o7bo2bo7b2o5bo$15bo5bobo6bo3bo6bobo5bo$15bo2bo&lt;br /&gt;
3b2o6bo4bo6b2o3bo2bo$15bo2bo11bo5bo11bo2bo$15bo2bo6b2o3bo6bo3b2o6bo2bo&lt;br /&gt;
$15bo2bo6bobo2bo7bo2bobo6bo2bo$15bo3bo6b2o2bo8bo2b2o6bo3bo$15bo4bo9bo&lt;br /&gt;
9bo9bo4bo$15bo5bo8bo2b2o2b2o2bo8bo5bo$15bo6b4o4bo2bobobobo2bo4b4o6bo$&lt;br /&gt;
15bo14bo3b2o2b2o3bo14bo$15bo14bo13bo14bo$15b16o14b16o$31bo13bo$32bo2bo&lt;br /&gt;
6bo2bo$33bo2bo5bo2bo$34bo2bo4bo2bo$35bo2b5o2bo$36bo8bo$37bo7bo$38bo6bo&lt;br /&gt;
$39bo5bo$40bo4bo$41bo3bo$42bo2bo$43bobo$44b2o$45bo!&lt;br /&gt;
|width = 500&lt;br /&gt;
|height = 500&lt;br /&gt;
|caption = D12 symmetry}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post138823&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Help with symmetries&lt;br /&gt;
|p      = 138823&lt;br /&gt;
|author = GUYTU6J&lt;br /&gt;
|date   = December 13, 2021&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post143859&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Truly Bilateral Life-Like rules&lt;br /&gt;
|p      = 143859&lt;br /&gt;
|author = LaundryPizza03&lt;br /&gt;
|date   = April 6, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post66638&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: apgsearch v4.0&lt;br /&gt;
|p      = 66638&lt;br /&gt;
|author = Adam P. Goucher&lt;br /&gt;
|date   = December 20, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post137220&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Help with symmetries&lt;br /&gt;
|p      = 137220&lt;br /&gt;
|author = GUYTU6J&lt;br /&gt;
|date   = November 2, 2021&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* {{LinkLexicon|lex_s.htm#symmetric|name=Symmetric}}&lt;br /&gt;
* {{LinkForumThread|f=7|t=1898|title=Help with symmetries}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Everything else]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc/Spaceship_table&amp;diff=132764</id>
		<title>User:Atavoidirc/Spaceship table</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc/Spaceship_table&amp;diff=132764"/>
		<updated>2023-06-25T00:15:38Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: WIP&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following table displays all known [[spaceship]] [[speed]]s and directions that are reasonably small (&amp;lt;1000 cells).&lt;br /&gt;
&lt;br /&gt;
[[List of spaceships|Show all]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! [[Speed]]&lt;br /&gt;
! Smallest known&lt;br /&gt;
! Min. [[population]]&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! First found&lt;br /&gt;
! Discoverer&lt;br /&gt;
! Year found &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#80ff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Orthogonal]] speeds&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/2 orthogonal|c/2]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[64P2H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|32}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[64P2H1V0]]{{refn|group=note|Although Hickerson does not remember which specific c/2 spaceship was discovered first, this was among the earliest.}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1971}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[2c/4 orthogonal|2c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|9}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[John Conway]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[8c/16 orthogonal|8/16]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Coe ship]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|28}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Coe ship]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1995}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[10c/20 orthogonal|10c/20]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sidewinder]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|32}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Ecologist]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Bill Gosper]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1971}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[3c/7 orthogonal|3c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[232P7H3V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|232}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spaghetti monster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[2c/5 orthogonal|2c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[30P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|30}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[44P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/3 orthogonal|c/3]]{{refn|group=note|Although neither the first nor the smallest known c/3 spaceships have appeared on [[Catagolue]], the speed as a whole is semi-natural, as on March 4, {{year|2022}}, a symmetric [[soup]] was found containing a [[dart]].&amp;lt;ref name=&amp;quot;post142429&amp;quot; /&amp;gt;}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[25P3H1V0.1]], [[25P3H1V0.2]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|25}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[84P3H1V0.1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2c/7 orthogonal|2c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|36}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[David Eppstein]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/4 orthogonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[37P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|37}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[119P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 orthogonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spider]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[snail]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1996}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 orthogonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[56P6H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|56}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[dragon]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Paul Tooke]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/7 orthogonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|20}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Josh Ball]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|2013}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/10 orthogonal|c/10]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{cells|28}}&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[zdr]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Diagonal]] speeds&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; |  [[c/4 diagonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|5}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Richard K. Guy]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 diagonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[58P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[295P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Jason Summers]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 diagonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[77P6H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|77}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[seal]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Nicolay Beluchenko]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2005}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/7 diagonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|83}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Matthias Merzenich]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2011}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/8 diagonal|c/8]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|68}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/12 diagonal|c/12]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|100}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[13-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffa0a0;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Knightship]]s ([[slope]] 2)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[(2,1)c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|282}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]] and [[Tomas Rokicki]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2018}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;color:#0131b7;&amp;quot; | This spaceship has occurred from an asymmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;color:#0180b7;&amp;quot; | This spaceship has occurred from a symmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;color:#006100;&amp;quot; | This spaceship is an [[Spaceship#Elementary spaceships|elementary spaceship]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&amp;lt;references group=note /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post142429&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Soup search results&lt;br /&gt;
|p      = 142429&lt;br /&gt;
|author = cvojan&lt;br /&gt;
|date   = March 4, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc/Spaceship_table&amp;diff=132763</id>
		<title>User:Atavoidirc/Spaceship table</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc/Spaceship_table&amp;diff=132763"/>
		<updated>2023-06-25T00:08:10Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following table displays all known [[spaceship]] [[speed]]s and directions that are reasonably small (&amp;lt;1000 cells).&lt;br /&gt;
&lt;br /&gt;
[[List of spaceships|Show all]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! [[Speed]]&lt;br /&gt;
! Smallest known&lt;br /&gt;
! Min. [[population]]&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! First found&lt;br /&gt;
! Discoverer&lt;br /&gt;
! Year found &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#80ff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Orthogonal]] speeds&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/2 orthogonal|c/2]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|9}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[John Conway]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[3c/7 orthogonal|3c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[232P7H3V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|232}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spaghetti monster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[2c/5 orthogonal|2c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[30P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|30}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[44P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/3 orthogonal|c/3]]{{refn|group=note|Although neither the first nor the smallest known c/3 spaceships have appeared on [[Catagolue]], the speed as a whole is semi-natural, as on March 4, {{year|2022}}, a symmetric [[soup]] was found containing a [[dart]].&amp;lt;ref name=&amp;quot;post142429&amp;quot; /&amp;gt;}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[25P3H1V0.1]], [[25P3H1V0.2]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|25}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[84P3H1V0.1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2c/7 orthogonal|2c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|36}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[David Eppstein]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/4 orthogonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[37P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|37}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[119P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 orthogonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spider]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[snail]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1996}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 orthogonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[56P6H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|56}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[dragon]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Paul Tooke]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/7 orthogonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|20}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Josh Ball]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|2013}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/10 orthogonal|c/10]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{cells|28}}&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[zdr]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Diagonal]] speeds&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; |  [[c/4 diagonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|5}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Richard K. Guy]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 diagonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[58P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[295P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Jason Summers]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 diagonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[77P6H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|77}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[seal]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Nicolay Beluchenko]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2005}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/7 diagonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|83}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Matthias Merzenich]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2011}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/8 diagonal|c/8]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|68}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/12 diagonal|c/12]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|100}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[13-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffa0a0;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Knightship]]s ([[slope]] 2)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[(2,1)c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|282}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]] and [[Tomas Rokicki]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2018}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;color:#0131b7;&amp;quot; | This spaceship has occurred from an asymmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;color:#0180b7;&amp;quot; | This spaceship has occurred from a symmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;color:#006100;&amp;quot; | This spaceship is an [[Spaceship#Elementary spaceships|elementary spaceship]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&amp;lt;references group=note /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post142429&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Soup search results&lt;br /&gt;
|p      = 142429&lt;br /&gt;
|author = cvojan&lt;br /&gt;
|date   = March 4, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists of patterns]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc/Spaceship_table&amp;diff=132762</id>
		<title>User:Atavoidirc/Spaceship table</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc/Spaceship_table&amp;diff=132762"/>
		<updated>2023-06-25T00:07:49Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: Created page with &amp;quot;The following table displays all known spaceship speeds and directions that are reasonably small (&amp;lt;1000 cells).  Show all  {| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot; |- ! Speed ! Smallest known ! Min. population ! &amp;amp;nbsp; ! First found ! Discoverer ! Year found  |- ! style=&amp;quot;background-color:#80ff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | Orthogonal speeds |- ! style=&amp;quot;background-color:#dfdfff;&amp;quot; | c/2 | style=&amp;quot;back...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following table displays all known [[spaceship]] [[speed]]s and directions that are reasonably small (&amp;lt;1000 cells).&lt;br /&gt;
&lt;br /&gt;
[[List of spaceships|Show all]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! [[Speed]]&lt;br /&gt;
! Smallest known&lt;br /&gt;
! Min. [[population]]&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! First found&lt;br /&gt;
! Discoverer&lt;br /&gt;
! Year found &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#80ff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Orthogonal]] speeds&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/2 orthogonal|c/2]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|9}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[John Conway]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[3c/7 orthogonal|3c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[232P7H3V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|232}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spaghetti monster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[2c/5 orthogonal|2c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[30P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|30}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[44P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[17c/45 orthogonal|17c/45]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[caterpillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|11,880,039}}&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=1258&amp;amp;start=75#p32418|title=Re: Caterpillar&#039;s little brother research|author=Dave Greene|date=28 June 2016|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[caterpillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Gabriel Nivasch]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2004}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/3 orthogonal|c/3]]{{refn|group=note|Although neither the first nor the smallest known c/3 spaceships have appeared on [[Catagolue]], the speed as a whole is semi-natural, as on March 4, {{year|2022}}, a symmetric [[soup]] was found containing a [[dart]].&amp;lt;ref name=&amp;quot;post142429&amp;quot; /&amp;gt;}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[25P3H1V0.1]], [[25P3H1V0.2]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|25}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[84P3H1V0.1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2c/7 orthogonal|2c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|36}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[David Eppstein]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/4 orthogonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[37P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|37}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[119P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 orthogonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spider]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[snail]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1996}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 orthogonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[56P6H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|56}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[dragon]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Paul Tooke]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/7 orthogonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|20}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Josh Ball]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|2013}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/10 orthogonal|c/10]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{cells|28}}&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[zdr]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Diagonal]] speeds&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; |  [[c/4 diagonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|5}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Richard K. Guy]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 diagonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[58P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[295P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Jason Summers]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 diagonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[77P6H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|77}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[seal]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Nicolay Beluchenko]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2005}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/7 diagonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|83}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Matthias Merzenich]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2011}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/8 diagonal|c/8]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|68}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/12 diagonal|c/12]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|100}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[13-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffa0a0;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Knightship]]s ([[slope]] 2)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[(2,1)c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|282}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]] and [[Tomas Rokicki]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2018}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;color:#0131b7;&amp;quot; | This spaceship has occurred from an asymmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;color:#0180b7;&amp;quot; | This spaceship has occurred from a symmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;color:#006100;&amp;quot; | This spaceship is an [[Spaceship#Elementary spaceships|elementary spaceship]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&amp;lt;references group=note /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post142429&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Soup search results&lt;br /&gt;
|p      = 142429&lt;br /&gt;
|author = cvojan&lt;br /&gt;
|date   = March 4, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists of patterns]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=132761</id>
		<title>User:Atavoidirc</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc&amp;diff=132761"/>
		<updated>2023-06-25T00:06:01Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is a hub page&lt;br /&gt;
[[User:Atavoidirc/Spaceship table]]&lt;br /&gt;
==[[User:GUYTU6J]]/Neighbourhood==&lt;br /&gt;
{{User:GUYTU6J/Neighbourhood}}&lt;br /&gt;
==Life wiki Pages==&lt;br /&gt;
* [[LifeWiki:Game of Life Status page]]&lt;br /&gt;
* [[LifeWiki:Spaceship Search Status Page]]&lt;br /&gt;
* [[LifeWiki:Smallest Spaceships Supporting Specific Speeds]]&lt;br /&gt;
* [[LifeWiki:Project OmniOsci/Overview]]&lt;br /&gt;
* [[LifeWiki:LifeViewer cheatsheet for LifeWiki articles]]&lt;br /&gt;
* [[LifeWiki:List of ongoing projects]]&lt;br /&gt;
&lt;br /&gt;
==Other Pages==&lt;br /&gt;
* [[Table of oscillators by period]]&lt;br /&gt;
&lt;br /&gt;
==Rules in Userspace==&lt;br /&gt;
*   [[User:Carbon6/Gnarl]]&lt;br /&gt;
*   [[User:Drc/GlideLife]]&lt;br /&gt;
*   [[User:Prime Raptor21/Nothing (Rule)]] &lt;br /&gt;
*   [[User:Evin/BiLife]]&lt;br /&gt;
*   [[User:Moosey/eatsplosion]]&lt;br /&gt;
*   [[User:Evin/Silverseeds]]&lt;br /&gt;
*   [[User:Evin/OCA:E1]]&lt;br /&gt;
*   [[User:Evin/Wlife]]&lt;br /&gt;
*   [[User:GUYTU6J/OCA:Glimmering Garden]]&lt;br /&gt;
*   [[User:Yujh/B34kz5e7c8/S23-a4ityz5k]]&lt;br /&gt;
*   [[User:Cvojan/TubularTest]]&lt;br /&gt;
*   [[User:Ultimium/OCA:LeapLife]]&lt;br /&gt;
*   [[User:Cgoler2/rrlife]]&lt;br /&gt;
*   [[User:Cgoler2/Clife]]&lt;br /&gt;
*   [[User:Pzq Alex/BitLife]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc/Sandbox&amp;diff=132720</id>
		<title>User:Atavoidirc/Sandbox</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc/Sandbox&amp;diff=132720"/>
		<updated>2023-06-22T23:23:01Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: Atavoidirc changed the content model of the page User:Atavoidirc/Sandbox from &amp;quot;wikitext&amp;quot; to &amp;quot;CSS&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
riwjwuejugwunehhnshdfynhsvdndhvnvhfaniapsnjanovinshid svvaf--&amp;gt;{{InfoboxStart&lt;br /&gt;
|typename      = Spaceship&lt;br /&gt;
|defaultconfig = spaceship&lt;br /&gt;
|viewerconfig  = {{{viewerconfig|}}}&lt;br /&gt;
|name          = {{{name|}}}&lt;br /&gt;
|zip           = {{{zip|}}}&lt;br /&gt;
|mc            = {{{mc|}}}&lt;br /&gt;
|life105       = {{{life105|}}}&lt;br /&gt;
|life106       = {{{life106|}}}&lt;br /&gt;
|plaintext     = {{{plaintext|}}}&lt;br /&gt;
|rle           = {{{rle|}}}&lt;br /&gt;
|nofile        = {{{nofile|}}}&lt;br /&gt;
|pname         = {{{pname|}}}&lt;br /&gt;
|animated      = {{{animated|}}}&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display pattern type and related information&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th valign=&amp;quot;top&amp;quot;&amp;gt; Pattern type &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{type|}}} | [[{{{type|}}}]]&amp;lt;br /&amp;gt; }}[[Spaceship]] &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
{{#if: {{{family|}}} | &lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; Family &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; [[:Category:{{{family}}} variants|{{{family}}}]] &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display population and bounding box. Passing catextra= ensures we also get spaceship-specific categories, e.g. &amp;quot;Spaceships with ... cells&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{PatternPopulationAndBoundingBox&lt;br /&gt;
|c        = {{{c|}}}&lt;br /&gt;
|bx       = {{{bx|}}}&lt;br /&gt;
|by       = {{{by|}}}&lt;br /&gt;
|fc       = {{{fc|}}}&lt;br /&gt;
|catextra = Spaceships&lt;br /&gt;
|periodic = true&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display an infobox divider&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{InfoboxDivider}}&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Direction]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{dir|}}} | [[:Category:{{{dir}}} spaceships|{{{dir}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
{{#if: {{{slope|}}} | &lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Slope]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; [[:Category:Spaceships with slope {{{slope}}}|{{{slope}}}]] &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Period#Spaceships|Period]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{p|}}} | [[:Category:Spaceships with period {{{p}}}|{{{p}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Mod]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{m|}}} | [[:Category:Spaceships with mod {{{m}}}|{{{m}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Speed]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{s|}}} | [[:Category:Spaceships with speed {{{s}}}|{{{s}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Speed]] (unsimplified) &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{z|}}} | [[:Category:Spaceships with unsimplified speed {{{z}}}|{{{z}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Heat]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{h|}}} | {{#iferror: {{#expr: floor({{{h}}})}} | {{{h}}} | [[:Category:Spaceships with heat {{CellsCategoryName|{{#expr: floor({{{h}}})}}}}|{{{h}}}]] }} | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display an infobox divider&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{InfoboxDivider}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display discoverers and year of discovery&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{PatternDiscovery&lt;br /&gt;
|discoverer   = {{{discoverer|}}}&lt;br /&gt;
|discoverer2  = {{{discoverer2|}}}&lt;br /&gt;
|discoverer3  = {{{discoverer3|}}}&lt;br /&gt;
|discoverer4  = {{{discoverer4|}}}&lt;br /&gt;
|discoverer5  = {{{discoverer5|}}}&lt;br /&gt;
|discoveryear = {{{discoveryear|}}}&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display &amp;quot;Rules&amp;quot;, &amp;quot;Glider synthesis&amp;quot;, &amp;quot;Pattern files&amp;quot; sections&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{PatternDownload&lt;br /&gt;
|synthesis    = {{{synthesis|}}}&lt;br /&gt;
|synthesis2   = {{{synthesis2|}}}&lt;br /&gt;
|synthesisRLE = {{{synthesisRLE|}}}&lt;br /&gt;
|apgcode      = {{{apgcode|}}}&lt;br /&gt;
|apgcode2     = {{{apgcode2|}}}&lt;br /&gt;
|life105      = {{{life105|}}}&lt;br /&gt;
|life106      = {{{life106|}}}&lt;br /&gt;
|plaintext    = {{{plaintext|}}}&lt;br /&gt;
|zip          = {{{zip|}}}&lt;br /&gt;
|mc           = {{{mc|}}}&lt;br /&gt;
|rle          = {{{rle|}}}&lt;br /&gt;
|pname        = {{{pname|}}}&lt;br /&gt;
|rulespecial  = {{{rulespecial|}}}&lt;br /&gt;
|rulemax      = {{{rulemax|}}}&lt;br /&gt;
|rulemin      = {{{rulemin|}}} &lt;br /&gt;
|isorulemax   = {{{isorulemax|}}}&lt;br /&gt;
|isorulemin   = {{{isorulemin|}}}&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display &amp;quot;Identifiers&amp;quot; section&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{PatternIdentifiers&lt;br /&gt;
|apgcode          = {{{apgcode|}}}&lt;br /&gt;
|apgcode2         = {{{apgcode2|}}}&lt;br /&gt;
|niemiecid        = {{{niemiecid|}}}&lt;br /&gt;
|pentadecathlonid = {{{pentadecathlonid|}}}&lt;br /&gt;
|eppsteinid       = {{{eppsteinid|}}}&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
End infobox&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=User:Atavoidirc/Sandbox&amp;diff=132719</id>
		<title>User:Atavoidirc/Sandbox</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=User:Atavoidirc/Sandbox&amp;diff=132719"/>
		<updated>2023-06-22T23:22:54Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
riwjwuejugwunehhnshdfynhsvdndhvnvhfaniapsnjanovinshid svvaf--&amp;gt;{{InfoboxStart&lt;br /&gt;
|typename      = Spaceship&lt;br /&gt;
|defaultconfig = spaceship&lt;br /&gt;
|viewerconfig  = {{{viewerconfig|}}}&lt;br /&gt;
|name          = {{{name|}}}&lt;br /&gt;
|zip           = {{{zip|}}}&lt;br /&gt;
|mc            = {{{mc|}}}&lt;br /&gt;
|life105       = {{{life105|}}}&lt;br /&gt;
|life106       = {{{life106|}}}&lt;br /&gt;
|plaintext     = {{{plaintext|}}}&lt;br /&gt;
|rle           = {{{rle|}}}&lt;br /&gt;
|nofile        = {{{nofile|}}}&lt;br /&gt;
|pname         = {{{pname|}}}&lt;br /&gt;
|animated      = {{{animated|}}}&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display pattern type and related information&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th valign=&amp;quot;top&amp;quot;&amp;gt; Pattern type &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{type|}}} | [[{{{type|}}}]]&amp;lt;br /&amp;gt; }}[[Spaceship]] &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
{{#if: {{{family|}}} | &lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; Family &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; [[:Category:{{{family}}} variants|{{{family}}}]] &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display population and bounding box. Passing catextra= ensures we also get spaceship-specific categories, e.g. &amp;quot;Spaceships with ... cells&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{PatternPopulationAndBoundingBox&lt;br /&gt;
|c        = {{{c|}}}&lt;br /&gt;
|bx       = {{{bx|}}}&lt;br /&gt;
|by       = {{{by|}}}&lt;br /&gt;
|fc       = {{{fc|}}}&lt;br /&gt;
|catextra = Spaceships&lt;br /&gt;
|periodic = true&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display an infobox divider&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{InfoboxDivider}}&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Direction]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{dir|}}} | [[:Category:{{{dir}}} spaceships|{{{dir}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
{{#if: {{{slope|}}} | &lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Slope]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; [[:Category:Spaceships with slope {{{slope}}}|{{{slope}}}]] &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Period#Spaceships|Period]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{p|}}} | [[:Category:Spaceships with period {{{p}}}|{{{p}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Mod]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{m|}}} | [[:Category:Spaceships with mod {{{m}}}|{{{m}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Speed]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{s|}}} | [[:Category:Spaceships with speed {{{s}}}|{{{s}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Speed]] (unsimplified) &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{z|}}} | [[:Category:Spaceships with unsimplified speed {{{z}}}|{{{z}}}]] | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt; [[Heat]] &amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt; {{#if: {{{h|}}} | {{#iferror: {{#expr: floor({{{h}}})}} | {{{h}}} | [[:Category:Spaceships with heat {{CellsCategoryName|{{#expr: floor({{{h}}})}}}}|{{{h}}}]] }} | Unknown }} &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display an infobox divider&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{InfoboxDivider}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display discoverers and year of discovery&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{PatternDiscovery&lt;br /&gt;
|discoverer   = {{{discoverer|}}}&lt;br /&gt;
|discoverer2  = {{{discoverer2|}}}&lt;br /&gt;
|discoverer3  = {{{discoverer3|}}}&lt;br /&gt;
|discoverer4  = {{{discoverer4|}}}&lt;br /&gt;
|discoverer5  = {{{discoverer5|}}}&lt;br /&gt;
|discoveryear = {{{discoveryear|}}}&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display &amp;quot;Rules&amp;quot;, &amp;quot;Glider synthesis&amp;quot;, &amp;quot;Pattern files&amp;quot; sections&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{PatternDownload&lt;br /&gt;
|synthesis    = {{{synthesis|}}}&lt;br /&gt;
|synthesis2   = {{{synthesis2|}}}&lt;br /&gt;
|synthesisRLE = {{{synthesisRLE|}}}&lt;br /&gt;
|apgcode      = {{{apgcode|}}}&lt;br /&gt;
|apgcode2     = {{{apgcode2|}}}&lt;br /&gt;
|life105      = {{{life105|}}}&lt;br /&gt;
|life106      = {{{life106|}}}&lt;br /&gt;
|plaintext    = {{{plaintext|}}}&lt;br /&gt;
|zip          = {{{zip|}}}&lt;br /&gt;
|mc           = {{{mc|}}}&lt;br /&gt;
|rle          = {{{rle|}}}&lt;br /&gt;
|pname        = {{{pname|}}}&lt;br /&gt;
|rulespecial  = {{{rulespecial|}}}&lt;br /&gt;
|rulemax      = {{{rulemax|}}}&lt;br /&gt;
|rulemin      = {{{rulemin|}}} &lt;br /&gt;
|isorulemax   = {{{isorulemax|}}}&lt;br /&gt;
|isorulemin   = {{{isorulemin|}}}&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
Display &amp;quot;Identifiers&amp;quot; section&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{PatternIdentifiers&lt;br /&gt;
|apgcode          = {{{apgcode|}}}&lt;br /&gt;
|apgcode2         = {{{apgcode2|}}}&lt;br /&gt;
|niemiecid        = {{{niemiecid|}}}&lt;br /&gt;
|pentadecathlonid = {{{pentadecathlonid|}}}&lt;br /&gt;
|eppsteinid       = {{{eppsteinid|}}}&lt;br /&gt;
}}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
End infobox&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=W-pentomino&amp;diff=132718</id>
		<title>W-pentomino</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=W-pentomino&amp;diff=132718"/>
		<updated>2023-06-22T23:17:58Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: Atavoidirc changed the content model of the page W-pentomino from &amp;quot;JavaScript&amp;quot; to &amp;quot;wikitext&amp;quot;: yeah i don&amp;#039;t think i should be able to do this&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Polyomino#Pentominoes]]&lt;br /&gt;
[[Category:Patterns]]&lt;br /&gt;
[[Category:Patterns_with_5_cells]]&lt;br /&gt;
[[Category:Patterns_with_bilateral_diagonal_symmetry]]&lt;br /&gt;
[[Category:Patterns that can be constructed with 2 gliders]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=W-pentomino&amp;diff=132717</id>
		<title>W-pentomino</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=W-pentomino&amp;diff=132717"/>
		<updated>2023-06-22T23:17:27Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: Atavoidirc changed the content model of the page W-pentomino from &amp;quot;wikitext&amp;quot; to &amp;quot;JavaScript&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Polyomino#Pentominoes]]&lt;br /&gt;
[[Category:Patterns]]&lt;br /&gt;
[[Category:Patterns_with_5_cells]]&lt;br /&gt;
[[Category:Patterns_with_bilateral_diagonal_symmetry]]&lt;br /&gt;
[[Category:Patterns that can be constructed with 2 gliders]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=2-engine_Cordership&amp;diff=132716</id>
		<title>2-engine Cordership</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=2-engine_Cordership&amp;diff=132716"/>
		<updated>2023-06-22T23:16:35Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: fixing template error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Spaceship&lt;br /&gt;
|name         = 2-engine Cordership&lt;br /&gt;
|pname        = 2enginecordership&lt;br /&gt;
|family       = Cordership&lt;br /&gt;
|c            = 100&lt;br /&gt;
|bx           = 41&lt;br /&gt;
|by           = 48&lt;br /&gt;
|dir          = Diagonal&lt;br /&gt;
|p            = 96&lt;br /&gt;
|m            = 96&lt;br /&gt;
|s            = c/12&lt;br /&gt;
|z            = 8c/96&lt;br /&gt;
|h            = 110.4&lt;br /&gt;
|discoverer   = praosylen&lt;br /&gt;
|discoveryear = 2017&lt;br /&gt;
|rulemin      = B3/S23&lt;br /&gt;
|rulemax      = B3/S23&lt;br /&gt;
|rulespecial  = [[Conway&#039;s Game of Life|Conway Life]]&lt;br /&gt;
|isorulemin   = B3/S23&lt;br /&gt;
|isorulemax   = B3/S23&lt;br /&gt;
|synthesis    = 9&lt;br /&gt;
|synthesisRLE = true&lt;br /&gt;
|plaintext    = true&lt;br /&gt;
|rle          = true&lt;br /&gt;
|apgcode      = xq96_y8573w8aegvzys33zwg8gyvoozsvv0338gy2442cia049uo239e4z037e8x1z08464ogzy011zy3oozyf51guozyd2451032&lt;br /&gt;
|viewerconfig = #C [[ TRACK 1/12 1/12 THUMBSIZE 2 GPS 48 HEIGHT 480 WIDTH 480 ]]&lt;br /&gt;
}}&lt;br /&gt;
The &#039;&#039;&#039;2-engine Cordership&#039;&#039;&#039; is a [[c/12 diagonal]] [[spaceship]] that was discovered by praosylen on December 31, {{year|2017}}.&amp;lt;ref name=&amp;quot;post54444&amp;quot; /&amp;gt; It is the [[Cordership]] that uses the fewest number of [[switch engine]]s known to be possible (ahead of the [[3-engine Cordership]]) as well as the smallest Cordership in terms of population (ahead of a variant of the [[4-engine Cordership]]) and the smallest engineered spaceship.{{refn|group=note|Status as engineered is debated.}}&lt;br /&gt;
&lt;br /&gt;
The {{POTY|year=2017|rank=1}}&lt;br /&gt;
&lt;br /&gt;
==Reactions==&lt;br /&gt;
[[Dave Greene]] noted that the 2-engine Cordership, like its [[3-engine Cordership|3-engine]] counterpart, can be stopped by a single [[glider]] from behind without releasing any [[glider]]s or other [[spaceship]]s,&amp;lt;ref name=&amp;quot;post54470&amp;quot; /&amp;gt; and updated [[Martin Grant]]&#039;s [[Model D Heisenburp|Model D]] [[Heisenburp device]] for the 2-engine Cordership.&amp;lt;ref name=&amp;quot;post54470&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Dave Greene]], [[BlinkerSpawn]] and [[Matthias Merzenich]] noted that the 2-engine Cordership can be eaten by a constellation of two [[eater]]s and three [[block]]s:&amp;lt;ref name=&amp;quot;post54470&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{EmbedViewer&lt;br /&gt;
|pname        = 2eceater&lt;br /&gt;
|caption      = 2-engine Cordership eater&lt;br /&gt;
|position     = center&lt;br /&gt;
|viewerconfig = #C [[ THEME 6 THUMBNAIL THUMBSIZE 2 ZOOM 6 HEIGHT 600 WIDTH 600 ]]&lt;br /&gt;
|style        = width:360px;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[gmc_nxtman]] pointed out that the 2-engine Cordership can reflect a glider 180 degrees, while preserving its mod-4 timing, resulting in an updated version of [[glider loop]].&amp;lt;ref name=&amp;quot;post54583&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Synthesis and seeds==&lt;br /&gt;
[[Dave Greene]] found a {{gliders|13}} [[synthesis]] of the 2-engine Cordership on the day of its discovery,&amp;lt;ref name=&amp;quot;post54450&amp;quot; /&amp;gt; which [[Luka Okanishi]] improved to {{gliders|9|text=9 gliders}}.&amp;lt;ref name=&amp;quot;post54453&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Two-glider [[seed]]s using as few as 9 still lifes and [[one-glider seed]]s using 15 still lifes are known.&amp;lt;ref name=&amp;quot;post54492&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post57674&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{EmbedViewer&lt;br /&gt;
|pname        = 2enginecordershipslowsalvo&lt;br /&gt;
|caption      = [[Slow salvo]] construction of a one-glider seed&lt;br /&gt;
|position     = center&lt;br /&gt;
|viewerconfig = #C [[ THEME 6 THUMBNAIL THUMBSIZE 2 AUTOSTART X -375 Y -375 ZOOM 6 LOOP 5000 ]]&lt;br /&gt;
                #C [[ PAUSE 2 LINEAR ZOOM WIDTH 600 HEIGHT 600 ]]&lt;br /&gt;
                #C [[ T 500 ]]&lt;br /&gt;
                #C [[ T 1000  X -200 Y -200 Z -1 STEP 5 ]]&lt;br /&gt;
                #C [[ T 3000 X -350 Y -350 Z 4 LINEAR ZOOM ]]&lt;br /&gt;
                #C [[ T 3200 X -380 Y -380 Z 8 LINEAR ZOOM ]] &lt;br /&gt;
                #C [[ T 4000 X -425 Y -425 ]]&lt;br /&gt;
|style        = width:360px;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Uses==&lt;br /&gt;
[[David Bell]] built a [[log(t) growth]] from four 2-engine Corderships,&amp;lt;ref name=&amp;quot;post54585&amp;quot; /&amp;gt; and a 4-engine Cordership [[rake]] from two adjacent 2-engine Corderships,&amp;lt;ref name=&amp;quot;post54628&amp;quot; /&amp;gt; both on January 3rd, {{year|2018}}. [[2718281828]], [[Dave Greene]] and [[Chris Cain]] posted glider syntheses for this rake on January 7th, allowing for the construction of [[breeder]]s.&amp;lt;ref name=&amp;quot;post54798&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post54801&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post54808&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bell further built two different period-96 c/12 forward rakes, one using the 4-engine rake, along with the 2-engine Cordership and an older 3-engine block [[puffer]],&amp;lt;ref name=&amp;quot;post54784&amp;quot; /&amp;gt; the other using a new Cordership [[boat]] and [[block]] puffer, two 2-engine Corderships, and a sideways rake, both on January 6th, 2018.&amp;lt;ref name=&amp;quot;post54784&amp;quot; /&amp;gt; He also built a different Cordership made from a two-engine boat puffer and a 2-engine Cordership that contains a glider which can escape if the [[boat]] is deleted by a sideways or forward glider.&amp;lt;ref name=&amp;quot;post54784&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Chris Cain]] updated the [[infinite glider hotel]] to use the 2-engine Cordership on January 3rd, 2018.&amp;lt;ref name=&amp;quot;post54590&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Entity Valkyrie]] built an {{times|714|501}} 2-engine Cordership gun on January 6, 2018, using [[Luka Okanishi]]&#039;s 9-glider synthesis;&amp;lt;ref name=&amp;quot;post54750&amp;quot; /&amp;gt; [[BlinkerSpawn]] noted that this gun could be compacted to {{times|385|253}} using the [[quadri-Snark]].&amp;lt;ref name=&amp;quot;post54753&amp;quot; /&amp;gt; [[Dave Greene]] built an unrelated period-556 2-engine Cordership gun on January 7.&amp;lt;ref name=&amp;quot;post54814&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post54815&amp;quot; /&amp;gt; Entity Valkyrie built a different gun using a [[boat]] [[keeper]] reaction on January 10.&amp;lt;ref name=&amp;quot;post54928&amp;quot; /&amp;gt; On August 29 that year, [[Nathaniel Johnston]] completed a stable glider to 2-engine Cordership [[converter]],&amp;lt;ref name=&amp;quot;post63153&amp;quot; /&amp;gt; which converts an input glider to a 2-engine Cordership at [[repeat time]] 556 ticks, thus allowing for arbitrary high-period guns to be built. The following is an improved design by Dave Greene:&lt;br /&gt;
{{EmbedViewer&lt;br /&gt;
|pname = gliderto2ec&lt;br /&gt;
|position     = center&lt;br /&gt;
|viewerconfig = #C [[ THUMBSIZE 2 ZOOM -1.5 GPS 60 STEP 6 Y 36 AUTOSTART LOOP 4146 HEIGHT 480 ]]&lt;br /&gt;
|caption      = Converts an input glider to a 2-engine Cordership&lt;br /&gt;
|style        = width:360px;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Using a variant of the same script used to discover it, [[praosylen]] combined the 2-engine Cordership with an additional switch engine to obtain various puffers.&amp;lt;ref name=&amp;quot;post54816&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
[https://conwaylife.com/w/index.php?title=RLE:Singlechannel2ecshotgun&amp;amp;action=edit This] is a 2494x2711 single-channel 2-engine Cordership slide gun assembled by Entity Valkyrie.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Toward the end of 2018, Adam P. Goucher added a &amp;quot;0-degree&amp;quot; slow-salvo synthesis of a 2-engine Cordership to [[slmake]], to allow more efficient long [[elbow]] pushes to be automatically compiled in [[self-constructing]] [[spaceship]] [[recipe]]s.&amp;lt;ref name=&amp;quot;post63956&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* {{CategoryLink|Corderships}}&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references group=&amp;quot;note&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54444&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54444&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = praosylen&lt;br /&gt;
|accessdate = January 4, 2018&lt;br /&gt;
|date       = December 31, 2017&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54450&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54450&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 4, 2018&lt;br /&gt;
|date       = December 31, 2017&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54453&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54453&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = [[Luka Okanishi]] (AbhpzTa)&lt;br /&gt;
|accessdate = January 4, 2018&lt;br /&gt;
|date       = December 31, 2017&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54470&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54470&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54492&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54492&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 1, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54583&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54583&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = gmc_nxtman&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54585&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54585&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = David Bell&lt;br /&gt;
|accessdate = August 10, 2019&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54590&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54590&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Chris Cain&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54628&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54628&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = David Bell&lt;br /&gt;
|accessdate = January 4, 2018&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54750&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54750&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Guns Discussion Thread&lt;br /&gt;
|author     = Entity Valkyrie&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 6, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54753&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54753&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Guns Discussion Thread&lt;br /&gt;
|author     = BlinkerSpawn&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 6, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54784&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54784&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = David Bell&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 6, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54798&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54798&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = 2718281828&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54801&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54801&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54808&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54808&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Chris Cain&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54814&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54814&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Guns Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54815&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54815&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54816&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54816&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = praosylen&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54928&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54928&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Small Spaceship Syntheses&lt;br /&gt;
|author     = Entity Valkyrie&lt;br /&gt;
|accessdate = January 10, 2018&lt;br /&gt;
|date       = January 10, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post57674&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 57674&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Thread For Synthesisable Spaceship Guns&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = March 11, 2018&lt;br /&gt;
|date       = March 10, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post63956&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 63956&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Slow-salvo recipes&lt;br /&gt;
|author     = Adam P. Goucher&lt;br /&gt;
|accessdate = December 31, 2018&lt;br /&gt;
|date       = September 23, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post63153&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|author = Nathaniel Johnston&lt;br /&gt;
|title  = Re: Stable Signal Converters&lt;br /&gt;
|format = ref&lt;br /&gt;
|p      = 63153&lt;br /&gt;
|date   = August 29, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* {{LinkLexicon|lex_1.htm#a-2enginecordership}}&lt;br /&gt;
* {{LinkCatagolue|xq96_y8573w8aegvzys33zwg8gyvoozsvv0338gy2442cia049uo239e4z037e8x1z08464ogzy011zy3oozyf51guozyd2451032|format=extended}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Engineered spaceships]]&lt;br /&gt;
[[Category:Non-monotonic spaceships]]&lt;br /&gt;
[[Category:Patterns involving switch engines]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=2-engine_Cordership&amp;diff=132715</id>
		<title>2-engine Cordership</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=2-engine_Cordership&amp;diff=132715"/>
		<updated>2023-06-22T23:15:25Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Spaceship&lt;br /&gt;
|name         = 2-engine Cordership&lt;br /&gt;
|pname        = 2enginecordership&lt;br /&gt;
|family       = Cordership&lt;br /&gt;
|c            = 100&lt;br /&gt;
|bx           = 41&lt;br /&gt;
|by           = 48&lt;br /&gt;
|dir          = Diagonal&lt;br /&gt;
|p            = 96&lt;br /&gt;
|m            = 96&lt;br /&gt;
|s            = c/12&lt;br /&gt;
|z            = 8c/96&lt;br /&gt;
|h            = 110.4&lt;br /&gt;
|discoverer   = praosylen&lt;br /&gt;
|discoveryear = 2017&lt;br /&gt;
|rulemin      = B3/S23&lt;br /&gt;
|rulemax      = B3/S23&lt;br /&gt;
|rulespecial  = [[Conway&#039;s Game of Life|Conway Life]]&lt;br /&gt;
|isorulemin   = B3/S23&lt;br /&gt;
|isorulemax   = B3/S23&lt;br /&gt;
|synthesis    = 9&lt;br /&gt;
|synthesisRLE = true&lt;br /&gt;
|plaintext    = true&lt;br /&gt;
|rle          = true&lt;br /&gt;
|apgcode      = xq96_y8573w8aegvzys33zwg8gyvoozsvv0338gy2442cia049uo239e4z037e8x1z08464ogzy011zy3oozyf51guozyd2451032&lt;br /&gt;
|viewerconfig = #C [[ TRACK 1/12 1/12 THUMBSIZE 2 GPS 48 HEIGHT 480 WIDTH 480 ]]&lt;br /&gt;
}}&lt;br /&gt;
The &#039;&#039;&#039;2-engine Cordership&#039;&#039;&#039; is a [[c/12 diagonal]] [[spaceship]] that was discovered by praosylen on December 31, {{year|2017}}.&amp;lt;ref name=&amp;quot;post54444&amp;quot; /&amp;gt; It is the [[Cordership]] that uses the fewest number of [[switch engine]]s known to be possible (ahead of the [[3-engine Cordership]]) as well as the smallest Cordership in terms of population (ahead of a variant of the [[4-engine Cordership]]) and the smallest engineered spaceship.{{refn|group=note|Status as engineered is debated.}}&lt;br /&gt;
&lt;br /&gt;
The {{POTY|year=2017|rank=1}}&lt;br /&gt;
&lt;br /&gt;
==Reactions==&lt;br /&gt;
[[Dave Greene]] noted that the 2-engine Cordership, like its [[3-engine Cordership|3-engine]] counterpart, can be stopped by a single [[glider]] from behind without releasing any [[glider]]s or other [[spaceship]]s,&amp;lt;ref name=&amp;quot;post54470&amp;quot; /&amp;gt; and updated [[Martin Grant]]&#039;s [[Model D Heisenburp|Model D]] [[Heisenburp device]] for the 2-engine Cordership.&amp;lt;ref name=&amp;quot;post54470&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Dave Greene]], [[BlinkerSpawn]] and [[Matthias Merzenich]] noted that the 2-engine Cordership can be eaten by a constellation of two [[eater]]s and three [[block]]s:&amp;lt;ref name=&amp;quot;post54470&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{EmbedViewer&lt;br /&gt;
|pname        = 2eceater&lt;br /&gt;
|caption      = 2-engine Cordership eater&lt;br /&gt;
|position     = center&lt;br /&gt;
|viewerconfig = #C [[ THEME 6 THUMBNAIL THUMBSIZE 2 ZOOM 6 HEIGHT 600 WIDTH 600 ]]&lt;br /&gt;
|style        = width:360px;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[gmc_nxtman]] pointed out that the 2-engine Cordership can reflect a glider 180 degrees, while preserving its mod-4 timing, resulting in an updated version of [[glider loop]].&amp;lt;ref name=&amp;quot;post54583&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Synthesis and seeds==&lt;br /&gt;
[[Dave Greene]] found a {{gliders|13}} [[synthesis]] of the 2-engine Cordership on the day of its discovery,&amp;lt;ref name=&amp;quot;post54450&amp;quot; /&amp;gt; which [[Luka Okanishi]] improved to {{gliders|9|text=9 gliders}}.&amp;lt;ref name=&amp;quot;post54453&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Two-glider [[seed]]s using as few as 9 still lifes and [[one-glider seed]]s using 15 still lifes are known.&amp;lt;ref name=&amp;quot;post54492&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post57674&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{EmbedViewer&lt;br /&gt;
|pname        = 2enginecordershipslowsalvo&lt;br /&gt;
|caption      = [[Slow salvo]] construction of a one-glider seed&lt;br /&gt;
|position     = center&lt;br /&gt;
|viewerconfig = #C [[ THEME 6 THUMBNAIL THUMBSIZE 2 AUTOSTART X -375 Y -375 ZOOM 6 LOOP 5000 ]]&lt;br /&gt;
                #C [[ PAUSE 2 LINEAR ZOOM WIDTH 600 HEIGHT 600 ]]&lt;br /&gt;
                #C [[ T 500 ]]&lt;br /&gt;
                #C [[ T 1000  X -200 Y -200 Z -1 STEP 5 ]]&lt;br /&gt;
                #C [[ T 3000 X -350 Y -350 Z 4 LINEAR ZOOM ]]&lt;br /&gt;
                #C [[ T 3200 X -380 Y -380 Z 8 LINEAR ZOOM ]] &lt;br /&gt;
                #C [[ T 4000 X -425 Y -425 ]]&lt;br /&gt;
|style        = width:360px;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Uses==&lt;br /&gt;
[[David Bell]] built a [[log(t) growth]] from four 2-engine Corderships,&amp;lt;ref name=&amp;quot;post54585&amp;quot; /&amp;gt; and a 4-engine Cordership [[rake]] from two adjacent 2-engine Corderships,&amp;lt;ref name=&amp;quot;post54628&amp;quot; /&amp;gt; both on January 3rd, {{year|2018}}. [[2718281828]], [[Dave Greene]] and [[Chris Cain]] posted glider syntheses for this rake on January 7th, allowing for the construction of [[breeder]]s.&amp;lt;ref name=&amp;quot;post54798&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post54801&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post54808&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bell further built two different period-96 c/12 forward rakes, one using the 4-engine rake, along with the 2-engine Cordership and an older 3-engine block [[puffer]],&amp;lt;ref name=&amp;quot;post54784&amp;quot; /&amp;gt; the other using a new Cordership [[boat]] and [[block]] puffer, two 2-engine Corderships, and a sideways rake, both on January 6th, 2018.&amp;lt;ref name=&amp;quot;post54784&amp;quot; /&amp;gt; He also built a different Cordership made from a two-engine boat puffer and a 2-engine Cordership that contains a glider which can escape if the [[boat]] is deleted by a sideways or forward glider.&amp;lt;ref name=&amp;quot;post54784&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Chris Cain]] updated the [[infinite glider hotel]] to use the 2-engine Cordership on January 3rd, 2018.&amp;lt;ref name=&amp;quot;post54590&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Entity Valkyrie]] built an {{times|714|501}} 2-engine Cordership gun on January 6, 2018, using [[Luka Okanishi]]&#039;s 9-glider synthesis;&amp;lt;ref name=&amp;quot;post54750&amp;quot; /&amp;gt; [[BlinkerSpawn]] noted that this gun could be compacted to {{times|385|253}} using the [[quadri-Snark]].&amp;lt;ref name=&amp;quot;post54753&amp;quot; /&amp;gt; [[Dave Greene]] built an unrelated period-556 2-engine Cordership gun on January 7.&amp;lt;ref name=&amp;quot;post54814&amp;quot; /&amp;gt;&amp;lt;ref name=&amp;quot;post54815&amp;quot; /&amp;gt; Entity Valkyrie built a different gun using a [[boat]] [[keeper]] reaction on January 10.&amp;lt;ref name=&amp;quot;post54928&amp;quot; /&amp;gt; On August 29 that year, [[Nathaniel Johnston]] completed a stable glider to 2-engine Cordership [[converter]],&amp;lt;ref name=&amp;quot;post63153&amp;quot; /&amp;gt; which converts an input glider to a 2-engine Cordership at [[repeat time]] 556 ticks, thus allowing for arbitrary high-period guns to be built. The following is an improved design by Dave Greene:&lt;br /&gt;
{{EmbedViewer&lt;br /&gt;
|pname = gliderto2ec&lt;br /&gt;
|position     = center&lt;br /&gt;
|viewerconfig = #C [[ THUMBSIZE 2 ZOOM -1.5 GPS 60 STEP 6 Y 36 AUTOSTART LOOP 4146 HEIGHT 480 ]]&lt;br /&gt;
|caption      = Converts an input glider to a 2-engine Cordership&lt;br /&gt;
|style        = width:360px;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Using a variant of the same script used to discover it, [[praosylen]] combined the 2-engine Cordership with an additional switch engine to obtain various puffers.&amp;lt;ref name=&amp;quot;post54816&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
[https://conwaylife.com/w/index.php?title=RLE:Singlechannel2ecshotgun&amp;amp;action=edit This] is a 2494x2711 single-channel 2-engine Cordership slide gun assembled by Entity Valkyrie.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Toward the end of 2018, Adam P. Goucher added a &amp;quot;0-degree&amp;quot; slow-salvo synthesis of a 2-engine Cordership to [[slmake]], to allow more efficient long [[elbow]] pushes to be automatically compiled in [[self-constructing]] [[spaceship]] [[recipe]]s.&amp;lt;ref name=&amp;quot;post63956&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* {{CategoryLink|Corderships}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54444&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54444&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = praosylen&lt;br /&gt;
|accessdate = January 4, 2018&lt;br /&gt;
|date       = December 31, 2017&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54450&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54450&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 4, 2018&lt;br /&gt;
|date       = December 31, 2017&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54453&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54453&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = [[Luka Okanishi]] (AbhpzTa)&lt;br /&gt;
|accessdate = January 4, 2018&lt;br /&gt;
|date       = December 31, 2017&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54470&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54470&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54492&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54492&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 1, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54583&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54583&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = gmc_nxtman&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54585&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54585&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = David Bell&lt;br /&gt;
|accessdate = August 10, 2019&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54590&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54590&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Chris Cain&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54628&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54628&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = David Bell&lt;br /&gt;
|accessdate = January 4, 2018&lt;br /&gt;
|date       = January 3, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54750&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54750&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Guns Discussion Thread&lt;br /&gt;
|author     = Entity Valkyrie&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 6, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54753&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54753&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Guns Discussion Thread&lt;br /&gt;
|author     = BlinkerSpawn&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 6, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54784&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54784&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = David Bell&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 6, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54798&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54798&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = 2718281828&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54801&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54801&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54808&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54808&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Chris Cain&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54814&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54814&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Guns Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54815&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54815&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54816&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54816&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Spaceship Discussion Thread&lt;br /&gt;
|author     = praosylen&lt;br /&gt;
|accessdate = January 8, 2018&lt;br /&gt;
|date       = January 7, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post54928&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 54928&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Small Spaceship Syntheses&lt;br /&gt;
|author     = Entity Valkyrie&lt;br /&gt;
|accessdate = January 10, 2018&lt;br /&gt;
|date       = January 10, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post57674&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 57674&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Thread For Synthesisable Spaceship Guns&lt;br /&gt;
|author     = Dave Greene&lt;br /&gt;
|accessdate = March 11, 2018&lt;br /&gt;
|date       = March 10, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post63956&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|p          = 63956&lt;br /&gt;
|format     = ref&lt;br /&gt;
|title      = Re: Slow-salvo recipes&lt;br /&gt;
|author     = Adam P. Goucher&lt;br /&gt;
|accessdate = December 31, 2018&lt;br /&gt;
|date       = September 23, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post63153&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|author = Nathaniel Johnston&lt;br /&gt;
|title  = Re: Stable Signal Converters&lt;br /&gt;
|format = ref&lt;br /&gt;
|p      = 63153&lt;br /&gt;
|date   = August 29, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* {{LinkLexicon|lex_1.htm#a-2enginecordership}}&lt;br /&gt;
* {{LinkCatagolue|xq96_y8573w8aegvzys33zwg8gyvoozsvv0338gy2442cia049uo239e4z037e8x1z08464ogzy011zy3oozyf51guozyd2451032|format=extended}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Engineered spaceships]]&lt;br /&gt;
[[Category:Non-monotonic spaceships]]&lt;br /&gt;
[[Category:Patterns involving switch engines]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=List_of_spaceships/noadjustable&amp;diff=132714</id>
		<title>List of spaceships/noadjustable</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=List_of_spaceships/noadjustable&amp;diff=132714"/>
		<updated>2023-06-22T23:12:32Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following table displays all known [[spaceship]] [[speed]]s and directions that do not rely on [[Spaceship#Adjustable spaceships|adjustable ships]].&lt;br /&gt;
&lt;br /&gt;
[[List of spaceships|Show all]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! [[Speed]]&lt;br /&gt;
! Smallest known&lt;br /&gt;
! Min. [[population]]&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! First found&lt;br /&gt;
! Discoverer&lt;br /&gt;
! Year found &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#80ff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Orthogonal]] speeds&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/2 orthogonal|c/2]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|9}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[John Conway]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[3c/7 orthogonal|3c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[232P7H3V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|232}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spaghetti monster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[2c/5 orthogonal|2c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[30P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|30}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[44P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[17c/45 orthogonal|17c/45]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[caterpillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|11,880,039}}&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=1258&amp;amp;start=75#p32418|title=Re: Caterpillar&#039;s little brother research|author=Dave Greene|date=28 June 2016|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[caterpillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Gabriel Nivasch]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2004}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/3 orthogonal|c/3]]{{refn|group=note|Although neither the first nor the smallest known c/3 spaceships have appeared on [[Catagolue]], the speed as a whole is semi-natural, as on March 4, {{year|2022}}, a symmetric [[soup]] was found containing a [[dart]].&amp;lt;ref name=&amp;quot;post142429&amp;quot; /&amp;gt;}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[25P3H1V0.1]], [[25P3H1V0.2]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|25}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[84P3H1V0.1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2c/7 orthogonal|2c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|36}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[David Eppstein]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/4 orthogonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[37P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|37}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[119P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 orthogonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spider]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[snail]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1996}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 orthogonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[56P6H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|56}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[dragon]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Paul Tooke]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/7 orthogonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|20}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Josh Ball]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|2013}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[31c/240 orthogonal|31c/240]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[silverfish]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|210,108}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[shield bug]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Dave Greene]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/10 orthogonal|c/10]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{cells|28}}&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[zdr]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Diagonal]] speeds&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; |  [[c/4 diagonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|5}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Richard K. Guy]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 diagonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[58P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[295P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Jason Summers]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 diagonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[77P6H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|77}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[seal]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Nicolay Beluchenko]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2005}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/7 diagonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|83}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Matthias Merzenich]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2011}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/8 diagonal|c/8]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|68}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/12 diagonal|c/12]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|100}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[13-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffa0a0;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Knightship]]s ([[slope]] 2)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[(2,1)c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|282}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]] and [[Tomas Rokicki]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2018}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#57aadd;&amp;quot; colspan=&amp;quot;7&amp;quot; | Slope 34/7&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[:Category:Spaceships with speed (34,7)c/156|(34,7)c/156]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Unnamed (34,7)c/156 spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|25,013,268}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Unnamed (34,7)c/156 spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Luka Okanishi]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffa0a0;&amp;quot; colspan=&amp;quot;7&amp;quot; | Slope 23/5&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[:Category:Spaceships with speed (23,5)c/79|(23,5)c/79]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[waterbear]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|197,896}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[waterbear]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Brett Berger]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;color:#0131b7;&amp;quot; | This spaceship has occurred from an asymmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;color:#0180b7;&amp;quot; | This spaceship has occurred from a symmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;color:#006100;&amp;quot; | This spaceship is an [[Spaceship#Elementary spaceships|elementary spaceship]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;color:#8a7600;&amp;quot; | This spaceship is an [[Spaceship#Engineered spaceships|engineered spaceship]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&amp;lt;references group=note /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post142429&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Soup search results&lt;br /&gt;
|p      = 142429&lt;br /&gt;
|author = cvojan&lt;br /&gt;
|date   = March 4, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists of patterns]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=List_of_spaceships&amp;diff=132713</id>
		<title>List of spaceships</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=List_of_spaceships&amp;diff=132713"/>
		<updated>2023-06-22T23:10:13Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: added missing column&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following table displays &#039;&#039;&#039;all&#039;&#039;&#039; known [[spaceship]] [[speed]]s and directions.&lt;br /&gt;
&lt;br /&gt;
[[List of spaceships/noadjustable|Hide adjustable spaceships]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! [[Speed]]&lt;br /&gt;
! Smallest known&lt;br /&gt;
! Min. [[population]]&lt;br /&gt;
! | &amp;amp;nbsp;&lt;br /&gt;
! First found&lt;br /&gt;
! Discoverer&lt;br /&gt;
! Year found &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#80ff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Orthogonal]] speeds ([[slope]] 0)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/2 orthogonal|c/2]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|9}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[John Conway]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[3c/7 orthogonal|3c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[232P7H3V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|232}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spaghetti monster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[2c/5 orthogonal|2c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[30P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|30}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[44P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[17c/45 orthogonal|17c/45]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[caterpillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|11,880,039}}&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=1258&amp;amp;start=75#p32418|title=Re: Caterpillar&#039;s little brother research|author=Dave Greene|date=28 June 2016|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[caterpillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Gabriel Nivasch]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2004}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/3 orthogonal|c/3]]{{refn|group=note|Although neither the first nor the smallest known c/3 spaceships have appeared on [[Catagolue]], the speed as a whole is semi-natural, as on March 4, {{year|2022}}, a symmetric [[soup]] was found containing a [[dart]].&amp;lt;ref name=&amp;quot;post142429&amp;quot; /&amp;gt;}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[25P3H1V0.1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|25}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[84P3H1V0.1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2c/7 orthogonal|2c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|36}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[David Eppstein]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/4 orthogonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[37P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|37}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[119P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 5c/21&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|5c/21 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|915,290}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|5c/21 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 4c/17&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|4c/17 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|801,673}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|4c/17 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/13&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/13 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|658,860}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/13 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/9&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/9 caterloopillar]]&amp;lt;ref name=MoreLoops&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=50#p30060|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=16 April 2016|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|545,843}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/9 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 4c/19&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|4c/19 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|407,817}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|4c/19 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 orthogonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spider]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[snail]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1996}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 4c/21&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|4c/21 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|319,572}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|4c/21 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/16&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/16 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|307,754}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/16 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/11&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/11 caterloopillar]]&amp;lt;ref name=MoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|279,482}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/11 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/17&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/17 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|265,261}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/17 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 orthogonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[56P6H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|56}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[dragon]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Paul Tooke]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 11c/67&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|11c/67 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|359,218}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|11c/67 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/19&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/19 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|228,196}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/19 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/13&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/13 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|218,478}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/13 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/20&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/20 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|203,690}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/20 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/7 orthogonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|20}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Josh Ball]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|2013}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/15&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/15 caterloopillar]]&amp;lt;ref name=EMoreLoops&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=50#p30105|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=16 April 2016|accessdate=4 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|188,470}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/15 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[31c/240 orthogonal|31c/240]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[silverfish]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|210,108}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[shield bug]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Dave Greene]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[c/8 orthogonal|c/8]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|Original caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|232,815}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|Original caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/17&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/17 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|171,658}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/17 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[c/9 orthogonal|c/9]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/9 caterloopillar]]&amp;lt;ref name=NineEleven&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=50#p30046|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=15 April 2016|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|169,476}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/9 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 49c/456&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|49c/456 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|433,416}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|49c/456 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/19&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/19 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|153,619}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/19 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/10 orthogonal|c/10]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{cells|28}}&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[zdr]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/21&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/21 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|144,020}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/21 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/11&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/11 caterloopillar]]&amp;lt;ref name=NineEleven/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|149,061}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/11 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/12&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/12 caterloopillar]]&amp;lt;ref name=MoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|125,427}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/12 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/13&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/13 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|117,090}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/13 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/15&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/15 caterloopillar]]&amp;lt;ref name=EMoreLoops&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=50#p30105|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=16 April 2016|accessdate=4 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|108,728}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/15 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/16&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/16 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|106,262}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/16 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/17&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/17 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|98,621}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/17 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/19&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/19 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|93,555}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/19 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/20&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/20 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|93,497}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/20 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/21&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/21 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|88,972}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/21 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/24&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/24 caterloopillar]]&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=75#p30110|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=thunk|date=17 April 2016|accessdate=4 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|83,722}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/24 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[thunk]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/25&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/25 caterloopillar]]&amp;lt;ref name=YMoreLoops&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=75#p30134|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=17 April 2016|accessdate=4 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|84,876}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/25 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/27&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/27 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|84,154}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/27 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/28&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/28 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|83,516}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/28 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/29&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/29 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|81,582}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/29 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/31&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/31 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|77,445}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/31 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/32&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/32 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|77,591}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/32 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/33&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/33 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|77,143}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/33 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/35&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/35 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|74,769}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/35 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/67&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/67 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|63,135}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/67 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/87&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/87 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|62,343}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/87 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Diagonal]] speeds ([[slope]] 1)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; |  [[c/4 diagonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|5}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Richard K. Guy]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 diagonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[58P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[295P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Jason Summers]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 1746011c/8916896&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Speed Demonoid]] Version 1&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|1,021,124}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Speed Demonoid]] Version 1&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Pavel Grankovskiy]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2020}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 436513c/2215479&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | lowest-period [[Speed Demonoid]] Version 1&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|1,021,124}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | lowest-period [[Speed Demonoid]] Version 1&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Pavel Grankovskiy]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2020}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 1642811c/8246964&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | smallest bounding box [[Speed Demonoid]] Version 2&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|426,464}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | smallest bounding box [[Speed Demonoid]] Version 2&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Pavel Grankovskiy]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2020}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 diagonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[77P6H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|77}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[seal]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Nicolay Beluchenko]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2005}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/7 diagonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|83}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Matthias Merzenich]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2011}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/8 diagonal|c/8]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|68}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/12 diagonal|c/12]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|100}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[13-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 65c/438852&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|0hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|27,250}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|0hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2015}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 13c/96228&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|0hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[:Category:Patterns with (number) cells|?]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|0hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2015}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 65c/818356&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|10hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|47,701}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|10hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2015}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/12700&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=1469&amp;amp;start=150#p25401|title=Re: Demonoid (diagonal Geminoid) completed!|author=Dave Greene|date=26 November 2015|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|10hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[:Category:Patterns with (number) cells|?]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|10hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2015}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffa0a0;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Knightship]]s (slope 2)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | (2,1)c/6&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|282}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]] and [[Tomas Rokicki]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2018}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (4096,2048)c/17783745&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini|Gemini 2]]&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=406&amp;amp;start=25#p2578|title=Re: Shrinking Gemini: Four Ideas|author=Dave Greene|date=13 June 2010|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[:Category:Patterns with between 100,000 and 999,999 cells|&amp;amp;le;&amp;amp;nbsp;872,252]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini|Gemini 2]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Dave Greene]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2010}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (6,3)c/245912&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Parallel HBK]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|132,945}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Parallel HBK]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (6,3)c/2621440&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Half-baked knightship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|1,049,395}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Half-baked knightship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Adam P. Goucher]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#5dcc5d;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Camelship]]s (slope 3)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (3072,1024)c/36000001&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini|Gemini 3]]&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=406&amp;amp;start=25#p2590|title=Re: Shrinking Gemini: Four Ideas|author=Dave Greene|date=14 June 2010|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[:Category:Patterns with between 100,000 and 999,999 cells|&amp;amp;le;&amp;amp;nbsp;850,932]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini|Gemini 3]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Dave Greene]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2010}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (3,1)c/3948264&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Camelship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|239,822}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Camelship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2018}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#fdce5e;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Giraffeship]]s (slope 4)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#ff8888;&amp;quot; colspan=&amp;quot;7&amp;quot; align=&amp;quot;center&amp;quot; | none found&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ff5757;&amp;quot; colspan=&amp;quot;7&amp;quot; | Slope 23/5&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[:Category:Spaceships with speed (23,5)c/79|(23,5)c/79]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[waterbear]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|197,896}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[waterbear]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Brett Berger]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#57aadd;&amp;quot; colspan=&amp;quot;7&amp;quot; | Slope 34/7&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[:Category:Spaceships with speed (34,7)c/156|(34,7)c/156]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Unnamed (34,7)c/156 spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|25,013,268}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Unnamed (34,7)c/156 spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Luka Okanishi]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#fa8072;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Ibisship]]s (slope 5)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (5120,1024)c/16849793&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|846,278}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Andrew J. Wade]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2010}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;color:#0131b7;&amp;quot; | This spaceship has occurred from an asymmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;color:#0180b7;&amp;quot; | This spaceship has occurred from a symmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;color:#006100;&amp;quot; | This spaceship is an [[Spaceship#Elementary spaceships|elementary spaceship]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;color:#8a7600;&amp;quot; | This spaceship is an [[Spaceship#Engineered spaceships|engineered spaceship]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;color:#9c0006;&amp;quot; | This spaceship is an [[Spaceship#Adjustable spaceships|adjustable spaceship]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&amp;lt;references group=note /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post142429&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Soup search results&lt;br /&gt;
|p      = 142429&lt;br /&gt;
|author = cvojan&lt;br /&gt;
|date   = March 4, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists of patterns]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=List_of_spaceships&amp;diff=132712</id>
		<title>List of spaceships</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=List_of_spaceships&amp;diff=132712"/>
		<updated>2023-06-22T23:07:51Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: added (34,7)c/156 ship&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following table displays &#039;&#039;&#039;all&#039;&#039;&#039; known [[spaceship]] [[speed]]s and directions.&lt;br /&gt;
&lt;br /&gt;
[[List of spaceships/noadjustable|Hide adjustable spaceships]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! [[Speed]]&lt;br /&gt;
! Smallest known&lt;br /&gt;
! Min. [[population]]&lt;br /&gt;
! style=&amp;quot;background-color:white;border-top-color:white;&amp;quot; | &amp;amp;nbsp;&lt;br /&gt;
! First found&lt;br /&gt;
! Discoverer&lt;br /&gt;
! Year found &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#80ff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Orthogonal]] speeds ([[slope]] 0)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/2 orthogonal|c/2]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|9}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[lightweight spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[John Conway]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[3c/7 orthogonal|3c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[232P7H3V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|232}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spaghetti monster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[2c/5 orthogonal|2c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[30P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|30}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[44P5H2V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[17c/45 orthogonal|17c/45]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[caterpillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|11,880,039}}&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=1258&amp;amp;start=75#p32418|title=Re: Caterpillar&#039;s little brother research|author=Dave Greene|date=28 June 2016|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[caterpillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Gabriel Nivasch]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2004}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/3 orthogonal|c/3]]{{refn|group=note|Although neither the first nor the smallest known c/3 spaceships have appeared on [[Catagolue]], the speed as a whole is semi-natural, as on March 4, {{year|2022}}, a symmetric [[soup]] was found containing a [[dart]].&amp;lt;ref name=&amp;quot;post142429&amp;quot; /&amp;gt;}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[25P3H1V0.1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|25}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[84P3H1V0.1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2c/7 orthogonal|2c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|36}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[weekender]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[David Eppstein]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/4 orthogonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[37P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|37}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[119P4H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1989}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 5c/21&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|5c/21 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|915,290}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|5c/21 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 4c/17&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|4c/17 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|801,673}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|4c/17 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/13&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/13 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|658,860}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/13 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/9&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/9 caterloopillar]]&amp;lt;ref name=MoreLoops&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=50#p30060|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=16 April 2016|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|545,843}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/9 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 4c/19&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|4c/19 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|407,817}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|4c/19 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 orthogonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[spider]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[snail]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tim Coe]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1996}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 4c/21&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|4c/21 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|319,572}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|4c/21 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/16&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/16 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|307,754}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/16 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/11&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/11 caterloopillar]]&amp;lt;ref name=MoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|279,482}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/11 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/17&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/17 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|265,261}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/17 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 orthogonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[56P6H1V0]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|56}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[dragon]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Paul Tooke]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 11c/67&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|11c/67 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|359,218}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|11c/67 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/19&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/19 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|228,196}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/19 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/13&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/13 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|218,478}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/13 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 3c/20&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|3c/20 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|203,690}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|3c/20 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[c/7 orthogonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|20}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[loafer]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Josh Ball]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|2013}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/15&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/15 caterloopillar]]&amp;lt;ref name=EMoreLoops&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=50#p30105|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=16 April 2016|accessdate=4 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|188,470}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/15 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[31c/240 orthogonal|31c/240]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[silverfish]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|210,108}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[shield bug]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Dave Greene]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[c/8 orthogonal|c/8]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|Original caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|232,815}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|Original caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/17&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/17 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|171,658}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/17 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[c/9 orthogonal|c/9]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/9 caterloopillar]]&amp;lt;ref name=NineEleven&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=50#p30046|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=15 April 2016|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|169,476}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/9 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 49c/456&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|49c/456 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|433,416}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|49c/456 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/19&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/19 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|153,619}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/19 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;&amp;quot; | [[c/10 orthogonal|c/10]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{cells|28}}&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[copperhead]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | [[zdr]]&lt;br /&gt;
| style=&amp;quot;background-color:#cfffff;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 2c/21&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|2c/21 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|144,020}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|2c/21 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/11&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/11 caterloopillar]]&amp;lt;ref name=NineEleven/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|149,061}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/11 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/12&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/12 caterloopillar]]&amp;lt;ref name=MoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|125,427}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/12 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/13&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/13 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|117,090}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/13 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/15&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/15 caterloopillar]]&amp;lt;ref name=EMoreLoops&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=50#p30105|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=16 April 2016|accessdate=4 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|108,728}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/15 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/16&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/16 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|106,262}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/16 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/17&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/17 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|98,621}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/17 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/19&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/19 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|93,555}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/19 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/20&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/20 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|93,497}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/20 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/21&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/21 caterloopillar]]&amp;lt;ref name=EMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|88,972}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/21 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/24&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/24 caterloopillar]]&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=75#p30110|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=thunk|date=17 April 2016|accessdate=4 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|83,722}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/24 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[thunk]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/25&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/25 caterloopillar]]&amp;lt;ref name=YMoreLoops&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=2151&amp;amp;start=75#p30134|title=Re: Caterloopillar WIP (all speeds &amp;lt; c/4)|author=Michael Simkin|date=17 April 2016|accessdate=4 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|84,876}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/25 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/27&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/27 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|84,154}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/27 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/28&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/28 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|83,516}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/28 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/29&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/29 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|81,582}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/29 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/31&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/31 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|77,445}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/31 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/32&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/32 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|77,591}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/32 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/33&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/33 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|77,143}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/33 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/35&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/35 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|74,769}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/35 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/67&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/67 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|63,135}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/67 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/87&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Caterloopillar|c/87 caterloopillar]]&amp;lt;ref name=YMoreLoops/&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|62,343}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[caterloopillar|c/87 caterloopillar]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Michael Simkin]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2016}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffff80;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Diagonal]] speeds ([[slope]] 1)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;&amp;quot; |  [[c/4 diagonal|c/4]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{cells|5}}&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[glider]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | [[Richard K. Guy]]&lt;br /&gt;
| style=&amp;quot;background-color:#dfdfff;&amp;quot; | {{year|1970}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/5 diagonal|c/5]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[58P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|58}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[295P5H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Jason Summers]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2000}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 1746011c/8916896&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Speed Demonoid]] Version 1&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|1,021,124}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Speed Demonoid]] Version 1&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Pavel Grankovskiy]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2020}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 436513c/2215479&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | lowest-period [[Speed Demonoid]] Version 1&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|1,021,124}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | lowest-period [[Speed Demonoid]] Version 1&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Pavel Grankovskiy]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2020}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 1642811c/8246964&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | smallest bounding box [[Speed Demonoid]] Version 2&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|426,464}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | smallest bounding box [[Speed Demonoid]] Version 2&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Pavel Grankovskiy]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2020}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/6 diagonal|c/6]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[77P6H1V1]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|77}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[seal]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Nicolay Beluchenko]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2005}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/7 diagonal|c/7]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|83}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[lobster (spaceship)|lobster]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Matthias Merzenich]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2011}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/8 diagonal|c/8]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|68}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[walrus]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | [[c/12 diagonal|c/12]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[2-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|100}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[13-engine Cordership]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Dean Hickerson]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|1991}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 65c/438852&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|0hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|27,250}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|0hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2015}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 13c/96228&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|0hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[:Category:Patterns with (number) cells|?]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|0hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2015}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | 65c/818356&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|10hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|47,701}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|10hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2015}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | c/12700&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=1469&amp;amp;start=150#p25401|title=Re: Demonoid (diagonal Geminoid) completed!|author=Dave Greene|date=26 November 2015|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|10hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[:Category:Patterns with (number) cells|?]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Demonoid|10hd Demonoid]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2015}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffa0a0;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Knightship]]s (slope 2)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;&amp;quot; | (2,1)c/6&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{cells|282}}&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Sir Robin]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Adam P. Goucher]] and [[Tomas Rokicki]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | {{year|2018}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (4096,2048)c/17783745&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini|Gemini 2]]&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=406&amp;amp;start=25#p2578|title=Re: Shrinking Gemini: Four Ideas|author=Dave Greene|date=13 June 2010|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[:Category:Patterns with between 100,000 and 999,999 cells|&amp;amp;le;&amp;amp;nbsp;872,252]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini|Gemini 2]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Dave Greene]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2010}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (6,3)c/245912&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Parallel HBK]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|132,945}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Parallel HBK]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (6,3)c/2621440&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Half-baked knightship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|1,049,395}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Half-baked knightship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Adam P. Goucher]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#5dcc5d;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Camelship]]s (slope 3)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (3072,1024)c/36000001&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini|Gemini 3]]&amp;lt;ref&amp;gt;{{cite web|url=https://conwaylife.com/forums/viewtopic.php?f=2&amp;amp;t=406&amp;amp;start=25#p2590|title=Re: Shrinking Gemini: Four Ideas|author=Dave Greene|date=14 June 2010|accessdate=2 July 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[:Category:Patterns with between 100,000 and 999,999 cells|&amp;amp;le;&amp;amp;nbsp;850,932]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini|Gemini 3]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Dave Greene]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2010}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (3,1)c/3948264&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Camelship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|239,822}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Camelship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Chris Cain]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2018}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#fdce5e;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Giraffeship]]s (slope 4)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#ff8888;&amp;quot; colspan=&amp;quot;7&amp;quot; align=&amp;quot;center&amp;quot; | none found&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ff5757;&amp;quot; colspan=&amp;quot;7&amp;quot; | Slope 23/5&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[:Category:Spaceships with speed (23,5)c/79|(23,5)c/79]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[waterbear]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|197,896}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[waterbear]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Brett Berger]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2014}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#57aadd;&amp;quot; colspan=&amp;quot;7&amp;quot; | Slope 34/7&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[:Category:Spaceships with speed (34,7)c/156|(34,7)c/156]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Unnamed (34,7)c/156 spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{cells|25,013,268}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Unnamed (34,7)c/156 spaceship]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | [[Luka Okanishi]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffffdd;&amp;quot; | {{year|2023}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#fa8072;&amp;quot; colspan=&amp;quot;7&amp;quot; | [[Ibisship]]s (slope 5)&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;&amp;quot; | (5120,1024)c/16849793&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{cells|846,278}}&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Gemini]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Andrew J. Wade]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | {{year|2010}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left:auto;margin-right:auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#dfdfff;color:#0131b7;&amp;quot; | This spaceship has occurred from an asymmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#cfffff;color:#0180b7;&amp;quot; | This spaceship has occurred from a symmetric [[soup]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#c6efce;color:#006100;&amp;quot; | This spaceship is an [[Spaceship#Elementary spaceships|elementary spaceship]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffffdd;color:#8a7600;&amp;quot; | This spaceship is an [[Spaceship#Engineered spaceships|engineered spaceship]].&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color:#ffc7ce;color:#9c0006;&amp;quot; | This spaceship is an [[Spaceship#Adjustable spaceships|adjustable spaceship]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&amp;lt;references group=note /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post142429&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Soup search results&lt;br /&gt;
|p      = 142429&lt;br /&gt;
|author = cvojan&lt;br /&gt;
|date   = March 4, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists of patterns]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Ss&amp;diff=132679</id>
		<title>Ss</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Ss&amp;diff=132679"/>
		<updated>2023-06-21T13:18:10Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: Changed redirect target from Salvo to Salvo#Classification&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Salvo#Classification]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Ss&amp;diff=132678</id>
		<title>Ss</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Ss&amp;diff=132678"/>
		<updated>2023-06-21T13:17:35Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: Changed redirect target from Slow Salvo to Salvo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Salvo]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Ss&amp;diff=132677</id>
		<title>Ss</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Ss&amp;diff=132677"/>
		<updated>2023-06-21T13:17:26Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: Redirected page to Slow Salvo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Slow Salvo]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Static_symmetry&amp;diff=132657</id>
		<title>Static symmetry</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Static_symmetry&amp;diff=132657"/>
		<updated>2023-06-20T16:05:51Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* On a square grid */  adding examples for reflectional symmetry (note: examples are not the smallest with each symmetry, but objects that i believe illustrate the symmetry well)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &#039;&#039;&#039;static symmetry&#039;&#039;&#039;&amp;lt;ref name=&amp;quot;post138823&amp;quot; /&amp;gt; refers to the combined rotational and reflectional symmetries of an arrangement of cells on a grid. Most isotropic rules preserve all such symmetries.&lt;br /&gt;
&lt;br /&gt;
This page specifically only covers purely geometric symmetries. Other preserved attributes which are not necessarily geometrical symmetries, notably gutters, are compiled on the [[Minor static symmetries]] page. Symmetries which apply to periodic objects, such as still lifes, oscillators and spaceships, which also includes time symmetries, are listed on the [[Kinetic symmetry]] page.&lt;br /&gt;
&lt;br /&gt;
== Basic theory ==&lt;br /&gt;
The Life transition rule, like that of any [[Isotropic non-totalistic cellular automaton|isotropic cellular automaton]], is invariant under valid reflections and rotations. That is, the change in state of a cell remains the same if its [[neighbourhood]] is rotated or reflected. This implies there are &#039;&#039;&#039;symmetries&#039;&#039;&#039; which if present in a pattern are present in all its successors. Note that the converse is not true: a pattern need not have the full symmetry of one of its successor states.&lt;br /&gt;
&lt;br /&gt;
== On a square grid ==&lt;br /&gt;
[[File:Symmetries.png|center|frame|Overview of symmetries (excluding D8_2).]]&lt;br /&gt;
&lt;br /&gt;
=== Rotational ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
Rotational symmetries are prefixed with &amp;quot;C&amp;quot;, referring to the [https://en.wikipedia.org/wiki/Cyclic_group cyclic groups]. Click on &amp;quot;Expand&amp;quot; to the right to view a list of them. &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== C1 ====&lt;br /&gt;
&#039;&#039;&#039;C1&#039;&#039;&#039;: Symmetric under 360° rotation. This is essentially no symmetry at all. Example: [[Eater 1]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 16, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 160&lt;br /&gt;
|height = 160&lt;br /&gt;
|caption = C1 symmetry&lt;br /&gt;
}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== C2 ====&lt;br /&gt;
&#039;&#039;&#039;C2&#039;&#039;&#039;: Symmetric under 180° rotation. There are three possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;C2_1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle of a C2_1 pattern is odd by odd. Example: [[Long snake]]&lt;br /&gt;
* &#039;&#039;&#039;C2_2&#039;&#039;&#039;: Rotation around the midpoint of a side of a cell. The bounding rectangle is even by odd. Example: [[Aircraft carrier]]&lt;br /&gt;
* &#039;&#039;&#039;C2_4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[Snake]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$31o&lt;br /&gt;
$15bo14bo$15bo14bo$15bo9b2o3bo$15bo8b4o2bo$15bo8b4o2bo$15bo2b10o2bo$&lt;br /&gt;
15bo14bo$15bo14bo$15bo3b2o4b2o3bo$15bo2bo2bo2bo2bo2bo$15bo2bo2bo2bo2bo&lt;br /&gt;
2bo$15bo3b2o4b2o3bo$15bo14bo$15bo14bo$15b16o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C2_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 32, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o&lt;br /&gt;
$15b16o$15bo14bo$15bo14bo$15bo9b2o3bo$15bo8b4o2bo$15bo8b4o2bo$15bo2b&lt;br /&gt;
10o2bo$15bo14bo$15bo14bo$15bo3b2o4b2o3bo$15bo2bo2bo2bo2bo2bo$15bo2bo2b&lt;br /&gt;
o2bo2bo2bo$15bo3b2o4b2o3bo$15bo14bo$15bo14bo$15b16o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C2_2 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o&lt;br /&gt;
$16b16o$16bo14bo$16bo14bo$16bo9b2o3bo$16bo8b4o2bo$16bo8b4o2bo$16bo2b&lt;br /&gt;
10o2bo$16bo14bo$16bo14bo$16bo3b2o4b2o3bo$16bo2bo2bo2bo2bo2bo$16bo2bo2b&lt;br /&gt;
o2bo2bo2bo$16bo3b2o4b2o3bo$16bo14bo$16bo14bo$16b16o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C2_4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== C4 ====&lt;br /&gt;
&#039;&#039;&#039;C4&#039;&#039;&#039;: Symmetric under 90° rotation. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;C4_1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle is odd by odd. Example: [[Shuriken]]&lt;br /&gt;
* &#039;&#039;&#039;C4_4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[Quad]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
31o$o14bo14bo$o14bo14bo$o3b2o4b2o3bo3b3o3b2o3bo$o2bo2bo2bo2bo2bo2b4o2b&lt;br /&gt;
o2bo2bo$o2bo2bo2bo2bo2bo2b4o2bo2bo2bo$o3b2o4b2o3bo3b3o3b2o3bo$o14bo5bo&lt;br /&gt;
8bo$o14bo5bo8bo$o2b10o2bo5bo3b2o3bo$o2b4o8bo5bo2bo2bo2bo$o2b4o8bo5bo2b&lt;br /&gt;
o2bo2bo$o3b2o9bo5bo3b2o3bo$o14bo14bo$o14bo14bo$31o$o14bo14bo$o14bo14bo&lt;br /&gt;
$o3b2o3bo5bo9b2o3bo$o2bo2bo2bo5bo8b4o2bo$o2bo2bo2bo5bo8b4o2bo$o3b2o3bo&lt;br /&gt;
5bo2b10o2bo$o8bo5bo14bo$o8bo5bo14bo$o3b2o3b3o3bo3b2o4b2o3bo$o2bo2bo2b&lt;br /&gt;
4o2bo2bo2bo2bo2bo2bo$o2bo2bo2b4o2bo2bo2bo2bo2bo2bo$o3b2o3b3o3bo3b2o4b&lt;br /&gt;
2o3bo$o14bo14bo$o14bo14bo$31o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C4_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b3o3b2o3bo$o2bo2bo2bo2bo2b2o2b&lt;br /&gt;
4o2bo2bo2bo$o2bo2bo2bo2bo2b2o2b4o2bo2bo2bo$o3b2o4b2o3b2o3b3o3b2o3bo$o&lt;br /&gt;
14b2o5bo8bo$o14b2o5bo8bo$o2b10o2b2o5bo3b2o3bo$o2b4o8b2o5bo2bo2bo2bo$o&lt;br /&gt;
2b4o8b2o5bo2bo2bo2bo$o3b2o9b2o5bo3b2o3bo$o14b2o14bo$o14b2o14bo$32o$32o&lt;br /&gt;
$o14b2o14bo$o14b2o14bo$o3b2o3bo5b2o9b2o3bo$o2bo2bo2bo5b2o8b4o2bo$o2bo&lt;br /&gt;
2bo2bo5b2o8b4o2bo$o3b2o3bo5b2o2b10o2bo$o8bo5b2o14bo$o8bo5b2o14bo$o3b2o&lt;br /&gt;
3b3o3b2o3b2o4b2o3bo$o2bo2bo2b4o2b2o2bo2bo2bo2bo2bo$o2bo2bo2b4o2b2o2bo&lt;br /&gt;
2bo2bo2bo2bo$o3b2o3b3o3b2o3b2o4b2o3bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = C4_4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
C4 tends to produce record [[diehard]]s and [[megasized]] soups compared to other symmetries.&lt;br /&gt;
&lt;br /&gt;
=== Reflectional ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
Reflectional symmetries are prefixed with &amp;quot;D&amp;quot;, referring to the [https://en.wikipedia.org/wiki/Dihedral_group dihedral groups]. Click on &amp;quot;Expand&amp;quot; to the right to view a list of them. &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== D2 ====&lt;br /&gt;
&#039;&#039;&#039;D2&#039;&#039;&#039;: Symmetric under reflection through a line. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D2_+&#039;&#039;&#039; The line is orthogonal. There are two sub-possibilities:&lt;br /&gt;
** &#039;&#039;&#039;D2_+1&#039;&#039;&#039; The line bisects a row of cells. The bounding rectangle is odd by any. Example: [[Hat]]&lt;br /&gt;
** &#039;&#039;&#039;D2_+2&#039;&#039;&#039; The line lies between two rows of cells. The bounding rectangle is even by any. Example: [[Frutterfly]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 31, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o&lt;br /&gt;
$o14bo$o14bo$o3b2o9bo$o2b4o8bo$o2b4o8bo$o2b10o2bo$o14bo$o14bo$o3b2o4b&lt;br /&gt;
2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b2o3bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 160&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D2_+1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 32, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o3b2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b&lt;br /&gt;
2o3bo$o14bo$o14bo$o2b10o2bo$o2b4o8bo$o2b4o8bo$o3b2o9bo$o14bo$o14bo$16o&lt;br /&gt;
$16o$o14bo$o14bo$o3b2o9bo$o2b4o8bo$o2b4o8bo$o2b10o2bo$o14bo$o14bo$o3b&lt;br /&gt;
2o4b2o3bo$o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2bo$o3b2o4b2o3bo$o14bo$o14bo$&lt;br /&gt;
16o!&lt;br /&gt;
|width = 160&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D2_+2 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D2_x&#039;&#039;&#039; The line is diagonal. Example: [[Elevener]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 16, rule = B/S012345678&lt;br /&gt;
16o$o14bo$o14bo$o7bo6bo$o6bobo5bo$o7bo3bo2bo$o11bo2bo$o3bo7bo2bo$o2bob&lt;br /&gt;
o6bo2bo$o3bo6bo3bo$o9bo4bo$o8bo5bo$o4b4o6bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 160&lt;br /&gt;
|height = 160&lt;br /&gt;
|caption = D2_x symmetry}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== D4 ====&lt;br /&gt;
&#039;&#039;&#039;D4&#039;&#039;&#039;: Symmetric under both reflection and 180° rotation. The reflection symmetry will be with respect to two lines. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D4_+&#039;&#039;&#039;: The lines are orthogonal. There are three sub-possibilities:&lt;br /&gt;
** &#039;&#039;&#039;D4_+1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle is odd by odd. Example: [[Dead spark coil]]&lt;br /&gt;
** &#039;&#039;&#039;D4_+2&#039;&#039;&#039;: Rotation around the midpoint of a side of a cell. The bounding rectangle is even by odd. Example: [[Honeycomb]]&lt;br /&gt;
** &#039;&#039;&#039;D4_+4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[A for all]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
31o$o14bo14bo$o14bo14bo$o3b2o4b2o3bo3b2o4b2o3bo$o2bo2bo2bo2bo2bo2bo2bo&lt;br /&gt;
2bo2bo2bo$o2bo2bo2bo2bo2bo2bo2bo2bo2bo2bo$o3b2o4b2o3bo3b2o4b2o3bo$o14b&lt;br /&gt;
o14bo$o14bo14bo$o2b10o2bo2b10o2bo$o2b4o8bo8b4o2bo$o2b4o8bo8b4o2bo$o3b&lt;br /&gt;
2o9bo9b2o3bo$o14bo14bo$o14bo14bo$31o$o14bo14bo$o14bo14bo$o3b2o9bo9b2o&lt;br /&gt;
3bo$o2b4o8bo8b4o2bo$o2b4o8bo8b4o2bo$o2b10o2bo2b10o2bo$o14bo14bo$o14bo&lt;br /&gt;
14bo$o3b2o4b2o3bo3b2o4b2o3bo$o2bo2bo2bo2bo2bo2bo2bo2bo2bo2bo$o2bo2bo2b&lt;br /&gt;
o2bo2bo2bo2bo2bo2bo2bo$o3b2o4b2o3bo3b2o4b2o3bo$o14bo14bo$o14bo14bo$31o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_+1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 31, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b2o4b2o3bo$o2bo2bo2bo2bo2b2o2b&lt;br /&gt;
o2bo2bo2bo2bo$o2bo2bo2bo2bo2b2o2bo2bo2bo2bo2bo$o3b2o4b2o3b2o3b2o4b2o3b&lt;br /&gt;
o$o14b2o14bo$o14b2o14bo$o2b10o2b2o2b10o2bo$o2b4o8b2o8b4o2bo$o2b4o8b2o&lt;br /&gt;
8b4o2bo$o3b2o9b2o9b2o3bo$o14b2o14bo$o14b2o14bo$32o$o14b2o14bo$o14b2o&lt;br /&gt;
14bo$o3b2o9b2o9b2o3bo$o2b4o8b2o8b4o2bo$o2b4o8b2o8b4o2bo$o2b10o2b2o2b&lt;br /&gt;
10o2bo$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b2o4b2o3bo$o2bo2bo2bo2bo2b&lt;br /&gt;
2o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2b2o2bo2bo2bo2bo2bo$o3b2o4b2o3b2o3b2o4b&lt;br /&gt;
2o3bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_+2 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b2o4b2o3bo$o2bo2bo2bo2bo2b2o2b&lt;br /&gt;
o2bo2bo2bo2bo$o2bo2bo2bo2bo2b2o2bo2bo2bo2bo2bo$o3b2o4b2o3b2o3b2o4b2o3b&lt;br /&gt;
o$o14b2o14bo$o14b2o14bo$o2b10o2b2o2b10o2bo$o2b4o8b2o8b4o2bo$o2b4o8b2o&lt;br /&gt;
8b4o2bo$o3b2o9b2o9b2o3bo$o14b2o14bo$o14b2o14bo$32o$32o$o14b2o14bo$o14b&lt;br /&gt;
2o14bo$o3b2o9b2o9b2o3bo$o2b4o8b2o8b4o2bo$o2b4o8b2o8b4o2bo$o2b10o2b2o2b&lt;br /&gt;
10o2bo$o14b2o14bo$o14b2o14bo$o3b2o4b2o3b2o3b2o4b2o3bo$o2bo2bo2bo2bo2b&lt;br /&gt;
2o2bo2bo2bo2bo2bo$o2bo2bo2bo2bo2b2o2bo2bo2bo2bo2bo$o3b2o4b2o3b2o3b2o4b&lt;br /&gt;
2o3bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_+4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D4_x&#039;&#039;&#039; The lines are diagonal. There are two sub-possibilities:&lt;br /&gt;
** &#039;&#039;&#039;D4_x1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle is odd by odd. Example: [[Loaf siamese loaf]]&lt;br /&gt;
** &#039;&#039;&#039;D4_x4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[Long ship]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
31o$o14bo14bo$o14bo14bo$o7bo6bo5b3o6bo$o6bobo5bo5bobo6bo$o7bo3bo2bo2bo&lt;br /&gt;
2b3o6bo$o11bo2bo2b2o10bo$o3bo7bo2bo2b2o5b3o2bo$o2bobo6bo2bo2b3o4bobo2b&lt;br /&gt;
o$o3bo6bo3bo3b2o4b3o2bo$o9bo4bo3b4o7bo$o8bo5bo4b5o5bo$o4b4o6bo6b4o4bo$&lt;br /&gt;
o14bo14bo$o14bo14bo$31o$o14bo14bo$o14bo14bo$o4b4o6bo6b4o4bo$o5b5o4bo5b&lt;br /&gt;
o8bo$o7b4o3bo4bo9bo$o2b3o4b2o3bo3bo6bo3bo$o2bobo4b3o2bo2bo6bobo2bo$o2b&lt;br /&gt;
3o5b2o2bo2bo7bo3bo$o10b2o2bo2bo11bo$o6b3o2bo2bo2bo3bo7bo$o6bobo5bo5bob&lt;br /&gt;
o6bo$o6b3o5bo6bo7bo$o14bo14bo$o14bo14bo$31o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_x1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o7bo6b2o5b3o6bo$o6bobo5b2o5bobo6bo$o7bo3bo2b&lt;br /&gt;
2o2bo2b3o6bo$o11bo2b2o2b2o10bo$o3bo7bo2b2o2b2o5b3o2bo$o2bobo6bo2b2o2b&lt;br /&gt;
3o4bobo2bo$o3bo6bo3b2o3b2o4b3o2bo$o9bo4b2o3b4o7bo$o8bo5b2o4b5o5bo$o4b&lt;br /&gt;
4o6b2o6b4o4bo$o14b2o14bo$o14b2o14bo$32o$32o$o14b2o14bo$o14b2o14bo$o4b&lt;br /&gt;
4o6b2o6b4o4bo$o5b5o4b2o5bo8bo$o7b4o3b2o4bo9bo$o2b3o4b2o3b2o3bo6bo3bo$o&lt;br /&gt;
2bobo4b3o2b2o2bo6bobo2bo$o2b3o5b2o2b2o2bo7bo3bo$o10b2o2b2o2bo11bo$o6b&lt;br /&gt;
3o2bo2b2o2bo3bo7bo$o6bobo5b2o5bobo6bo$o6b3o5b2o6bo7bo$o14b2o14bo$o14b&lt;br /&gt;
2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D4_x4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== D8 ====&lt;br /&gt;
&#039;&#039;&#039;D8&#039;&#039;&#039;: Symmetric under both reflection and 90° rotation. The reflection symmetry will be with respect to horizontal, vertical, and diagonal lines. There are three possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D8_1&#039;&#039;&#039;: Rotation around the center of a cell. The bounding rectangle is odd by odd. Example: [[Pulsar]]&lt;br /&gt;
* &#039;&#039;&#039;D8_2&#039;&#039;&#039;: Rotation around a edge of a cell. The bounding rectangle is even by odd. This symmetry is not preserved by Life (reverting to D4_+2), but is with most bilaterally symmetric rules.&lt;br /&gt;
* &#039;&#039;&#039;D8_4&#039;&#039;&#039;: Rotation around a corner of a cell. The bounding rectangle is even by even. Example: [[Lake 2]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S012345678&lt;br /&gt;
31o$o14bo14bo$o14bo14bo$o7bo6bo6bo7bo$o6bobo5bo5bobo6bo$o7bo3bo2bo2bo&lt;br /&gt;
3bo7bo$o11bo2bo2bo11bo$o3bo7bo2bo2bo7bo3bo$o2bobo6bo2bo2bo6bobo2bo$o3b&lt;br /&gt;
o6bo3bo3bo6bo3bo$o9bo4bo4bo9bo$o8bo5bo5bo8bo$o4b4o6bo6b4o4bo$o14bo14bo&lt;br /&gt;
$o14bo14bo$31o$o14bo14bo$o14bo14bo$o4b4o6bo6b4o4bo$o8bo5bo5bo8bo$o9bo&lt;br /&gt;
4bo4bo9bo$o3bo6bo3bo3bo6bo3bo$o2bobo6bo2bo2bo6bobo2bo$o3bo7bo2bo2bo7bo&lt;br /&gt;
3bo$o11bo2bo2bo11bo$o7bo3bo2bo2bo3bo7bo$o6bobo5bo5bobo6bo$o7bo6bo6bo7b&lt;br /&gt;
o$o14bo14bo$o14bo14bo$31o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D8_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 31, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o7bo6b2o6bo7bo$o6bobo5b2o5bobo6bo$o7bo3bo2b&lt;br /&gt;
2o2bo3bo7bo$o11bo2b2o2bo11bo$o3bo7bo2b2o2bo7bo3bo$o2bobo6bo2b2o2bo6bob&lt;br /&gt;
o2bo$o3bo6bo3b2o3bo6bo3bo$o9bo4b2o4bo9bo$o8bo5b2o5bo8bo$o4b4o6b2o6b4o&lt;br /&gt;
4bo$o14b2o14bo$o14b2o14bo$32o$o14b2o14bo$o14b2o14bo$o4b4o6b2o6b4o4bo$o&lt;br /&gt;
8bo5b2o5bo8bo$o9bo4b2o4bo9bo$o3bo6bo3b2o3bo6bo3bo$o2bobo6bo2b2o2bo6bob&lt;br /&gt;
o2bo$o3bo7bo2b2o2bo7bo3bo$o11bo2b2o2bo11bo$o7bo3bo2b2o2bo3bo7bo$o6bobo&lt;br /&gt;
5b2o5bobo6bo$o7bo6b2o6bo7bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D8_2 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S012345678&lt;br /&gt;
32o$o14b2o14bo$o14b2o14bo$o7bo6b2o6bo7bo$o6bobo5b2o5bobo6bo$o7bo3bo2b&lt;br /&gt;
2o2bo3bo7bo$o11bo2b2o2bo11bo$o3bo7bo2b2o2bo7bo3bo$o2bobo6bo2b2o2bo6bob&lt;br /&gt;
o2bo$o3bo6bo3b2o3bo6bo3bo$o9bo4b2o4bo9bo$o8bo5b2o5bo8bo$o4b4o6b2o6b4o&lt;br /&gt;
4bo$o14b2o14bo$o14b2o14bo$32o$32o$o14b2o14bo$o14b2o14bo$o4b4o6b2o6b4o&lt;br /&gt;
4bo$o8bo5b2o5bo8bo$o9bo4b2o4bo9bo$o3bo6bo3b2o3bo6bo3bo$o2bobo6bo2b2o2b&lt;br /&gt;
o6bobo2bo$o3bo7bo2b2o2bo7bo3bo$o11bo2b2o2bo11bo$o7bo3bo2b2o2bo3bo7bo$o&lt;br /&gt;
6bobo5b2o5bobo6bo$o7bo6b2o6bo7bo$o14b2o14bo$o14b2o14bo$32o!&lt;br /&gt;
|width = 320&lt;br /&gt;
|height = 320&lt;br /&gt;
|caption = D8_4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
To preserve D8_2 symmetry, the following [[isotropic non-totalistic]] transitions must either all exist simultaneously with all other transitions in the same line or none should:&amp;lt;ref name=&amp;quot;post143859&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*B4i=B2a=B2i=B1e&lt;br /&gt;
*S6a=S7e=S4t=S6i&lt;br /&gt;
*S4c=S3y=S4q&lt;br /&gt;
*B1c=B2c=B4c&lt;br /&gt;
*S3a=S1e=S0&lt;br /&gt;
*S7c=S6c=S4e&lt;br /&gt;
*B5y=B4w=B4e&lt;br /&gt;
*B8=B7e=B5a&lt;br /&gt;
*B5e=B4n&lt;br /&gt;
*B4a=B5i&lt;br /&gt;
*B4t=B5r&lt;br /&gt;
*S5y=S5q&lt;br /&gt;
*S5e=S5j&lt;br /&gt;
*B6i=B3i&lt;br /&gt;
*B6c=B6k&lt;br /&gt;
*S4i=S3r&lt;br /&gt;
*B3j=B3e&lt;br /&gt;
*B3y=B3q&lt;br /&gt;
*S2k=S2c&lt;br /&gt;
*S4a=S3i&lt;br /&gt;
*S3e=S4r&lt;br /&gt;
*S5i=S2i&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== On a hexagonal or triangular grid ==&lt;br /&gt;
[[Hexagonal neighbourhood|Hexagonal]] and [[triangular neighbourhood|triangular]] grids have the same set of admissible symmetries as each other (by [http://mathworld.wolfram.com/DualTessellation.html planar] or [https://en.wikipedia.org/wiki/Dual_polyhedron#Dual_polytopes_and_tessellations polytopic duality] - see also [[Schläfli symbol]]), but these are not the same symmetries as square grids. Due to how hexagonal and triangular grids are handled by programs such as [[Golly]] and [[LifeViewer]], they will also appear markedly different in these respects. C2, D2, and D4 symmetries are still compatible, but C4 symmetries become meaningless because the cells no longer have a side count that is perfectly divisible by 4. Other symmetries are exclusive to these alternative grids, as indicated below:&lt;br /&gt;
&lt;br /&gt;
* C1&lt;br /&gt;
* C2_1&lt;br /&gt;
* C2_4&lt;br /&gt;
* C3_1&lt;br /&gt;
* C3_3 (unsupported by apgsearch)&lt;br /&gt;
* C6&lt;br /&gt;
* D2_xo&lt;br /&gt;
* D2_x&lt;br /&gt;
* D4_x1&lt;br /&gt;
* D4_x4&lt;br /&gt;
* D6_1&lt;br /&gt;
* D6_1o&lt;br /&gt;
* D6_3 (unsupported by apgsearch)&lt;br /&gt;
* D12&lt;br /&gt;
&lt;br /&gt;
[[apgsearch]] currently supports most higher symmetries for hexagonal rules; the rest (C3_3 and D6_3) will be added in a future version.&amp;lt;ref name=&amp;quot;post66638&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another type of rotational symmetry which may not have been accounted for in the above list, arising as an alternate form of C2_2, was described in November 2021. Whether this is an actually distinct type of symmetry, however, is unknown and needs investigation.&amp;lt;ref name=&amp;quot;post137220&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Rotational ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
Click on &amp;quot;Expand&amp;quot; to the right to view a list of hexagonal/triangular rotational symmetries. &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== C1 ====&lt;br /&gt;
&#039;&#039;&#039;C1&#039;&#039;&#039;: Symmetric under 360° rotation. This is essentially no symmetry at all.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 16, rule = B/S0123456H&lt;br /&gt;
16o$o14bo$o14bo$o5b2o7bo$o5bobo6bo$o6b2o6bo$o2b2o10bo$o2bobo9bo$o3b2o&lt;br /&gt;
4b2o3bo$o8b2o4bo$o7b2o5bo$o7b3o4bo$o8b2o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 200&lt;br /&gt;
|height = 200&lt;br /&gt;
|caption = C1 symmetry&lt;br /&gt;
}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== C2 ====&lt;br /&gt;
&#039;&#039;&#039;C2&#039;&#039;&#039;: Symmetric under 180° rotation. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;C2_1&#039;&#039;&#039;: Rotation around the center of a cell.&lt;br /&gt;
* &#039;&#039;&#039;C2_2&#039;&#039;&#039;: Rotation around the midpoint of a side of a cell.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S0123456H&lt;br /&gt;
15b16o$15bo14bo$15bo14bo$15bo4b2o8bo$15bo4b3o7bo$15bo5b2o7bo$15bo4b2o&lt;br /&gt;
8bo$15bo3b2o4b2o3bo$15bo9bobo2bo$15bo10b2o2bo$15bo6b2o6bo$15bo6bobo5bo&lt;br /&gt;
$15bo7b2o5bo$15bo14bo$15bo14bo$31o$o14bo$o14bo$o5b2o7bo$o5bobo6bo$o6b&lt;br /&gt;
2o6bo$o2b2o10bo$o2bobo9bo$o3b2o4b2o3bo$o8b2o4bo$o7b2o5bo$o7b3o4bo$o8b&lt;br /&gt;
2o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = C2_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S0123456H&lt;br /&gt;
16b16o$16bo14bo$16bo14bo$16bo4b2o8bo$16bo4b3o7bo$16bo5b2o7bo$16bo4b2o&lt;br /&gt;
8bo$16bo3b2o4b2o3bo$16bo9bobo2bo$16bo10b2o2bo$16bo6b2o6bo$16bo6bobo5bo&lt;br /&gt;
$16bo7b2o5bo$16bo14bo$16bo14bo$16b16o$16o$o14bo$o14bo$o5b2o7bo$o5bobo&lt;br /&gt;
6bo$o6b2o6bo$o2b2o10bo$o2bobo9bo$o3b2o4b2o3bo$o8b2o4bo$o7b2o5bo$o7b3o&lt;br /&gt;
4bo$o8b2o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = C2_4(?) symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== C3 ====&lt;br /&gt;
&#039;&#039;&#039;C3&#039;&#039;&#039;: Symmetric under 120° rotation. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;C3_1&#039;&#039;&#039;: Rotation around the center of a cell.&lt;br /&gt;
* &#039;&#039;&#039;C3_3&#039;&#039;&#039;: Rotation around a corner of a cell. (unsupported by apgsearch)&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 46, y = 46, rule = B/S0123456H&lt;br /&gt;
o$2o$obo$o2bo$o3bo$o4bo$o5bo$o6bo$o7bo$o8bo$o9bo$o6b2o2bo$o2b2o2bobo2b&lt;br /&gt;
o$o2b3o2b2o3bo$o3b2o8bo$o5bo8bo$bo4bo8bo$2bo4bo2b2o3bo$3bo3bo2bobo2bo$&lt;br /&gt;
4bo6b2o2bo$5bo9bo$6bo8bo$7bo7bo$8bo6bo$9bo5bo$10bo4bo$11bo3bo$12bo2bo$&lt;br /&gt;
13bobo$14b2o$31o$o14b2o14bo$o14bobo14bo$o5b2o7bo2bo14bo$o5bobo6bo3bo7b&lt;br /&gt;
o6bo$o6b2o6bo4bo7b2ob2o2bo$o2b2o10bo5bo8b4o2bo$o2bobo9bo6bo3b2o4b2o3bo&lt;br /&gt;
$o3b2o4b2o3bo7bo2bobo9bo$o8b2o4bo8bo2b2o10bo$o7b2o5bo9bo6b2o6bo$o7b3o&lt;br /&gt;
4bo10bo5bobo6bo$o8b2o4bo11bo5b2o7bo$o14bo12bo14bo$o14bo13bo14bo$16o14b&lt;br /&gt;
16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = C3_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 48, y = 48, rule = B/S0123456H&lt;br /&gt;
o$2o$obo$o2bo$o3bo$o4bo$o5bo$o6bo$o7bo$o8bo$o9bo$o6b2o2bo$o2b2o2bobo2b&lt;br /&gt;
o$o2b3o2b2o3bo$o3b2o8bo$o5bo8bo$bo4bo8bo$2bo4bo2b2o3bo$3bo3bo2bobo2bo$&lt;br /&gt;
4bo6b2o2bo$5bo9bo$6bo8bo$7bo7bo$8bo6bo$9bo5bo$10bo4bo$11bo3bo$12bo2bo$&lt;br /&gt;
13bobo$14b2o$15bo2$16ob16o$o14bo2bo14bo$o14bo3bo14bo$o5b2o7bo4bo14bo$o&lt;br /&gt;
5bobo6bo5bo7bo6bo$o6b2o6bo6bo7b2ob2o2bo$o2b2o10bo7bo8b4o2bo$o2bobo9bo&lt;br /&gt;
8bo3b2o4b2o3bo$o3b2o4b2o3bo9bo2bobo9bo$o8b2o4bo10bo2b2o10bo$o7b2o5bo&lt;br /&gt;
11bo6b2o6bo$o7b3o4bo12bo5bobo6bo$o8b2o4bo13bo5b2o7bo$o14bo14bo14bo$o&lt;br /&gt;
14bo15bo14bo$16o16b16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = C3_3 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== C6 ====&lt;br /&gt;
&#039;&#039;&#039;C6&#039;&#039;&#039;: Symmetric under 60° rotation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 61, y = 61, rule = B/S0123456H&lt;br /&gt;
15bo$15b2o$15bobo$15bo2bo$15bo3bo$15bo4bo$15bo5bo$15bo6bo$15bo7bo$15bo&lt;br /&gt;
8bo$15bo9bo$15bo6b2o2bo$15bo2b2o2bobo2bo$15bo2b3o2b2o3bo$15bo3b2o8bo$&lt;br /&gt;
16o5bo8b16o$bo14bo4bo8bo14bo$2bo14bo4bo2b2o3bo14bo$3bo7b2o5bo3bo2bobo&lt;br /&gt;
2bo4b2o8bo$4bo6bobo5bo6b2o2bo4b3o7bo$5bo6b2o6bo9bo5b2o7bo$6bo10b2o2bo&lt;br /&gt;
8bo4b2o8bo$7bo9bobo2bo7bo3b2o4b2o3bo$8bo3b2o4b2o3bo6bo9bobo2bo$9bo2b4o&lt;br /&gt;
8bo5bo10b2o2bo$10bo2b2ob2o7bo4bo6b2o6bo$11bo6bo7bo3bo6bobo5bo$12bo14bo&lt;br /&gt;
2bo7b2o5bo$13bo14bobo14bo$14bo14b2o14bo$15b31o$15bo14b2o14bo$15bo14bob&lt;br /&gt;
o14bo$15bo5b2o7bo2bo14bo$15bo5bobo6bo3bo7bo6bo$15bo6b2o6bo4bo7b2ob2o2b&lt;br /&gt;
o$15bo2b2o10bo5bo8b4o2bo$15bo2bobo9bo6bo3b2o4b2o3bo$15bo3b2o4b2o3bo7bo&lt;br /&gt;
2bobo9bo$15bo8b2o4bo8bo2b2o10bo$15bo7b2o5bo9bo6b2o6bo$15bo7b3o4bo2b2o&lt;br /&gt;
6bo5bobo6bo$15bo8b2o4bo2bobo2bo3bo5b2o7bo$15bo14bo3b2o2bo4bo14bo$15bo&lt;br /&gt;
14bo8bo4bo14bo$15b16o8bo5b16o$31bo8b2o3bo$32bo3b2o2b3o2bo$33bo2bobo2b&lt;br /&gt;
2o2bo$34bo2b2o6bo$35bo9bo$36bo8bo$37bo7bo$38bo6bo$39bo5bo$40bo4bo$41bo&lt;br /&gt;
3bo$42bo2bo$43bobo$44b2o$45bo!&lt;br /&gt;
|width = 500&lt;br /&gt;
|height = 500&lt;br /&gt;
|caption = C6 symmetry}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Reflectional ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
Click on &amp;quot;Expand&amp;quot; to the right to view a list of hexagonal/triangular reflectional symmetries. &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== D2 ====&lt;br /&gt;
&#039;&#039;&#039;D2&#039;&#039;&#039;: There is line symmetry. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D2_x&#039;&#039;&#039;: Through the vertices of a cell. &lt;br /&gt;
* &#039;&#039;&#039;D2_xo&#039;&#039;&#039;: Through the edges of a cell.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 16, y = 16, rule = B/S0123456H&lt;br /&gt;
16o$o14bo$o14bo$o5b2o7bo$o5bobo6bo$o2bo3b2o6bo$o2bo11bo$o2bo6b2o3bo$o&lt;br /&gt;
2bo6bobo2bo$o3bo6b2o2bo$o4bo9bo$o5bo8bo$o6b4o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 300&lt;br /&gt;
|height = 300&lt;br /&gt;
|caption = D2_x symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S0123456H&lt;br /&gt;
16o$bo14bo$2bo14bo$3bo8b2o4bo$4bo7b3o4bo$5bo7b2o5bo$6bo8b2o4bo$7bo3b2o&lt;br /&gt;
4b2o3bo$8bo2bobo9bo$9bo2b2o10bo$10bo6b2o6bo$11bo5bobo6bo$12bo5b2o7bo$&lt;br /&gt;
13bo14bo$14bo14bo$15b16o$15bo14bo$15bo14bo$15bo5b2o7bo$15bo5bobo6bo$15b&lt;br /&gt;
o6b2o6bo$15bo2b2o10bo$15bo2bobo9bo$15bo3b2o4b2o3bo$15bo8b2o4bo$15bo7b&lt;br /&gt;
2o5bo$15bo7b3o4bo$15bo8b2o4bo$15bo14bo$15bo14bo$15b16o!&lt;br /&gt;
|width = 300&lt;br /&gt;
|height = 300&lt;br /&gt;
|caption = D2_xo symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== D4 ====&lt;br /&gt;
&#039;&#039;&#039;D4&#039;&#039;&#039;: Symmetric under both reflection and 180° rotation. The reflection symmetry will be with respect to two lines. There are two possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D4_x1&#039;&#039;&#039;: Rotation around the center of a cell.&lt;br /&gt;
* &#039;&#039;&#039;D4_x4&#039;&#039;&#039;: Rotation around the edges of a cell.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B/S0123456H&lt;br /&gt;
15b16o$15bo14bo$15bo14bo$15bo4b4o6bo$15bo8bo5bo$15bo9bo4bo$15bo2b2o6bo&lt;br /&gt;
3bo$15bo2bobo6bo2bo$15bo3b2o6bo2bo$15bo11bo2bo$15bo6b2o3bo2bo$15bo6bob&lt;br /&gt;
o5bo$15bo7b2o5bo$15bo14bo$15bo14bo$31o$o14bo$o14bo$o5b2o7bo$o5bobo6bo$&lt;br /&gt;
o2bo3b2o6bo$o2bo11bo$o2bo6b2o3bo$o2bo6bobo2bo$o3bo6b2o2bo$o4bo9bo$o5bo&lt;br /&gt;
8bo$o6b4o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D4_x1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 32, y = 32, rule = B/S0123456H&lt;br /&gt;
16b16o$16bo14bo$16bo14bo$16bo4b4o6bo$16bo8bo5bo$16bo9bo4bo$16bo2b2o6bo&lt;br /&gt;
3bo$16bo2bobo6bo2bo$16bo3b2o6bo2bo$16bo11bo2bo$16bo6b2o3bo2bo$16bo6bob&lt;br /&gt;
o5bo$16bo7b2o5bo$16bo14bo$16bo14bo$16b16o$16o$o14bo$o14bo$o5b2o7bo$o5b&lt;br /&gt;
obo6bo$o2bo3b2o6bo$o2bo11bo$o2bo6b2o3bo$o2bo6bobo2bo$o3bo6b2o2bo$o4bo&lt;br /&gt;
9bo$o5bo8bo$o6b4o4bo$o14bo$o14bo$16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D4_x4 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== D6 ====&lt;br /&gt;
&#039;&#039;&#039;D6&#039;&#039;&#039;: Symmetric under both reflection and 120° rotation. The reflection symmetry will be with respect to three lines. There are three possibilities:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;D6_1&#039;&#039;&#039;: Rotation around the center of a cell with lines going through the edges of cells.&lt;br /&gt;
* &#039;&#039;&#039;D6_1o&#039;&#039;&#039;: Rotation around the center of a cell with lines going through the centers of cells.&lt;br /&gt;
* &#039;&#039;&#039;D6_3&#039;&#039;&#039;: Rotation around the corner of a cell. (unsupported by apgsearch)&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin-left: auto; margin-right: auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 46, y = 46, rule = B/S0123456H&lt;br /&gt;
o$2o$obo$o2bo$o3bo$o4bo$o5bo$o6bo$o7bo$o8bo$o2b5o2bo$o2bo4bo2bo$o2bo5b&lt;br /&gt;
o2bo$o2bo6bo2bo$o13bo$o14bo$bo13bo$2bo3b2o2b2o3bo$3bo2bobobobo2bo$4bo&lt;br /&gt;
2b2o2b2o2bo$5bo9bo$6bo8bo$7bo7bo$8bo6bo$9bo5bo$10bo4bo$11bo3bo$12bo2bo&lt;br /&gt;
$13bobo$14b2o$31o$o14b2o14bo$o14bobo14bo$o5b2o7bo2bo7b2o5bo$o5bobo6bo&lt;br /&gt;
3bo6bobo5bo$o2bo3b2o6bo4bo6b2o3bo2bo$o2bo11bo5bo11bo2bo$o2bo6b2o3bo6bo&lt;br /&gt;
3b2o6bo2bo$o2bo6bobo2bo7bo2bobo6bo2bo$o3bo6b2o2bo8bo2b2o6bo3bo$o4bo9bo&lt;br /&gt;
9bo9bo4bo$o5bo8bo10bo8bo5bo$o6b4o4bo11bo4b4o6bo$o14bo12bo14bo$o14bo13b&lt;br /&gt;
o14bo$16o14b16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D6_1 symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 31, y = 31, rule = B2/S34H&lt;br /&gt;
16o$2o14bo$obo14bo$o2bo4b5o5bo$o3bo8b2o4bo$o4bo9b2o3bo$o5bo3b2o5b2o2bo&lt;br /&gt;
$o6bo2bobo6bo2bo$o2bo4bo2b2o7bo2bo$o2bo5bo11bo2bo$o2bo2b2o2bo7b2o2bo2b&lt;br /&gt;
o$o2bo2bobo2bo6bobo5bo$o2bo3b2o3bo6b2o6bo$o3bo8bo14bo$o3bo9bo14bo$o4bo&lt;br /&gt;
9b16o$bo3bo9bo14bo$2bo3bo8bo14bo$3bo2bo3b2o3bo6b2o6bo$4bo2bo2bobo2bo6b&lt;br /&gt;
obo5bo$5bo2bo2b2o2bo7b2o2bo2bo$6bo2bo5bo11bo2bo$7bo2bo4bo2b2o7bo2bo$8b&lt;br /&gt;
o6bo2bobo6bo2bo$9bo5bo3b2o5b2o2bo$10bo4bo9b2o3bo$11bo3bo8b2o4bo$12bo2b&lt;br /&gt;
o4b5o5bo$13bobo14bo$14b2o14bo$15b16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D6_1o symmetry}}&lt;br /&gt;
| {{Sym-demo&lt;br /&gt;
|rle = x = 48, y = 48, rule = B/S0123456H&lt;br /&gt;
o$2o$obo$o2bo$o3bo$o4bo$o5bo$o6bo$o7bo$o8bo$o2b5o2bo$o2bo4bo2bo$o2bo5b&lt;br /&gt;
o2bo$o2bo6bo2bo$o13bo$o14bo$bo13bo$2bo3b2o2b2o3bo$3bo2bobobobo2bo$4bo&lt;br /&gt;
2b2o2b2o2bo$5bo9bo$6bo8bo$7bo7bo$8bo6bo$9bo5bo$10bo4bo$11bo3bo$12bo2bo&lt;br /&gt;
$13bobo$14b2o$15bo2$16ob16o$o14bo2bo14bo$o14bo3bo14bo$o5b2o7bo4bo7b2o&lt;br /&gt;
5bo$o5bobo6bo5bo6bobo5bo$o2bo3b2o6bo6bo6b2o3bo2bo$o2bo11bo7bo11bo2bo$o&lt;br /&gt;
2bo6b2o3bo8bo3b2o6bo2bo$o2bo6bobo2bo9bo2bobo6bo2bo$o3bo6b2o2bo10bo2b2o&lt;br /&gt;
6bo3bo$o4bo9bo11bo9bo4bo$o5bo8bo12bo8bo5bo$o6b4o4bo13bo4b4o6bo$o14bo&lt;br /&gt;
14bo14bo$o14bo15bo14bo$16o16b16o!&lt;br /&gt;
|width = 400&lt;br /&gt;
|height = 400&lt;br /&gt;
|caption = D6_3 symmetry}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== D12 ====&lt;br /&gt;
&#039;&#039;&#039;D12&#039;&#039;&#039;: Symmetric under both reflection and 60° rotation. The reflection symmetry will be with respect to six lines.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{Sym-demo&lt;br /&gt;
|rle = x = 61, y = 61, rule = B/S0123456H&lt;br /&gt;
15bo$15b2o$15bobo$15bo2bo$15bo3bo$15bo4bo$15bo5bo$15bo6bo$15bo7bo$15bo&lt;br /&gt;
8bo$15bo2b5o2bo$15bo2bo4bo2bo$15bo2bo5bo2bo$15bo2bo6bo2bo$15bo13bo$16o&lt;br /&gt;
14b16o$bo14bo13bo14bo$2bo14bo3b2o2b2o3bo14bo$3bo6b4o4bo2bobobobo2bo4b&lt;br /&gt;
4o6bo$4bo5bo8bo2b2o2b2o2bo8bo5bo$5bo4bo9bo9bo9bo4bo$6bo3bo6b2o2bo8bo2b&lt;br /&gt;
2o6bo3bo$7bo2bo6bobo2bo7bo2bobo6bo2bo$8bo2bo6b2o3bo6bo3b2o6bo2bo$9bo2b&lt;br /&gt;
o11bo5bo11bo2bo$10bo2bo3b2o6bo4bo6b2o3bo2bo$11bo5bobo6bo3bo6bobo5bo$&lt;br /&gt;
12bo5b2o7bo2bo7b2o5bo$13bo14bobo14bo$14bo14b2o14bo$15b31o$15bo14b2o14b&lt;br /&gt;
o$15bo14bobo14bo$15bo5b2o7bo2bo7b2o5bo$15bo5bobo6bo3bo6bobo5bo$15bo2bo&lt;br /&gt;
3b2o6bo4bo6b2o3bo2bo$15bo2bo11bo5bo11bo2bo$15bo2bo6b2o3bo6bo3b2o6bo2bo&lt;br /&gt;
$15bo2bo6bobo2bo7bo2bobo6bo2bo$15bo3bo6b2o2bo8bo2b2o6bo3bo$15bo4bo9bo&lt;br /&gt;
9bo9bo4bo$15bo5bo8bo2b2o2b2o2bo8bo5bo$15bo6b4o4bo2bobobobo2bo4b4o6bo$&lt;br /&gt;
15bo14bo3b2o2b2o3bo14bo$15bo14bo13bo14bo$15b16o14b16o$31bo13bo$32bo2bo&lt;br /&gt;
6bo2bo$33bo2bo5bo2bo$34bo2bo4bo2bo$35bo2b5o2bo$36bo8bo$37bo7bo$38bo6bo&lt;br /&gt;
$39bo5bo$40bo4bo$41bo3bo$42bo2bo$43bobo$44b2o$45bo!&lt;br /&gt;
|width = 500&lt;br /&gt;
|height = 500&lt;br /&gt;
|caption = D12 symmetry}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post138823&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Help with symmetries&lt;br /&gt;
|p      = 138823&lt;br /&gt;
|author = GUYTU6J&lt;br /&gt;
|date   = December 13, 2021&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post143859&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Truly Bilateral Life-Like rules&lt;br /&gt;
|p      = 143859&lt;br /&gt;
|author = LaundryPizza03&lt;br /&gt;
|date   = April 6, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post66638&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: apgsearch v4.0&lt;br /&gt;
|p      = 66638&lt;br /&gt;
|author = Adam P. Goucher&lt;br /&gt;
|date   = December 20, 2018&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post137220&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Help with symmetries&lt;br /&gt;
|p      = 137220&lt;br /&gt;
|author = GUYTU6J&lt;br /&gt;
|date   = November 2, 2021&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* {{LinkLexicon|lex_s.htm#symmetric|name=Symmetric}}&lt;br /&gt;
* {{LinkForumThread|f=7|t=1898|title=Help with symmetries}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Everything else]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Frutterfly&amp;diff=132655</id>
		<title>Frutterfly</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Frutterfly&amp;diff=132655"/>
		<updated>2023-06-20T15:59:39Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: fixed bounding box&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Oscillator&lt;br /&gt;
|name             = Frutterfly&lt;br /&gt;
|pname            = frutterfly&lt;br /&gt;
|c                = 22&lt;br /&gt;
|bx               = 12&lt;br /&gt;
|by               = 6&lt;br /&gt;
|p                = 4&lt;br /&gt;
|m                = 4&lt;br /&gt;
|h                = 18&lt;br /&gt;
|v                = 0.86&lt;br /&gt;
|sv               = 0.86&lt;br /&gt;
|rulemin          = B3/S23&lt;br /&gt;
|rulemax          = B3678/S02378&lt;br /&gt;
|rulespecial      = [[Conway&#039;s Game of Life|Conway Life]], [[HighLife]]&lt;br /&gt;
|isorulemin       = B3-ckqy/S2-n3ar&lt;br /&gt;
|isorulemax       = B2in34cejqrw5-ajr678/S0234-arz5-i6-a78&lt;br /&gt;
|synthesis        = 8&lt;br /&gt;
|plaintext        = true&lt;br /&gt;
|rle              = true&lt;br /&gt;
|apgcode          = xp4_199aaooaa991&lt;br /&gt;
|viewerconfig     = #C [[ GPS 4 THUMBSIZE 2 ]]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Frutterfly&#039;&#039;&#039;&amp;lt;ref&amp;gt;suggested name in the comments of object&#039;s Catagolue page&amp;lt;/ref&amp;gt; is a {{period|4}} [[oscillator]], and is among the smallest true-period-4 oscillators not based on [[mold]].&lt;br /&gt;
&lt;br /&gt;
It can nontrivially interact with one or two appropriate still lifes, such as a [[tub]], [[beehive]], [[loaf]] or [[mango]], and is {{LinkCatagolue|code=xp4_199aaooaaaa33aaiig|style=raw|patternname=arbitrarily extensible}}.&lt;br /&gt;
&lt;br /&gt;
== Occurrences in Catagolue ==&lt;br /&gt;
Frutterfly has occurred in asymmetric [[soup]]s in B37e/S23-q,&amp;lt;ref&amp;gt; [https://catagolue.hatsya.com/hashsoup/C1/k_UvbxAAtEYEn22021/b37es23-q The occurrence in question], with two noninteracting copies&amp;lt;/ref&amp;gt; but not in Life. However, it has occurred semi-naturally once in the [[Static_symmetry#C2|C2_2]] census, which is no more conducive to reflectionally-symmetrical occurrences than C1.&amp;lt;ref name=&amp;quot;post147838&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[20P4]]&lt;br /&gt;
* [[Pond-bound keys]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post147838&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|title  = Re: Synthesising Oscillators&lt;br /&gt;
|p      = 147838&lt;br /&gt;
|author = DroneBetter&lt;br /&gt;
|date   = July 3, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
{{LinkCatagolue|xp4_199aaooaa991}}&lt;br /&gt;
{{LinkCatagolue|xp4_6952giiaa33aaiig2596|patternname=Frutterfly with two loaves}}&lt;br /&gt;
&lt;br /&gt;
{{symmetry|orthogonal2}}&lt;br /&gt;
[[Category:Semi-natural periodic objects]]&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Alternating_rule&amp;diff=132640</id>
		<title>Alternating rule</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Alternating_rule&amp;diff=132640"/>
		<updated>2023-06-20T00:36:21Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: /* External links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Glossary}}&lt;br /&gt;
&#039;&#039;&#039;Alternating rules&#039;&#039;&#039; are a generalisation of [[Life-like cellular automata]] in which cells behaving as one rule change into cells behaving as another rule in the next generation, and then either back to the original rule or onto yet another rule, creating loops.&lt;br /&gt;
&lt;br /&gt;
By contrast, a rule containing different cell states net simulate different rules without alternating with each other is called a [[mashup rule]].&lt;br /&gt;
&lt;br /&gt;
== Terminology ==&lt;br /&gt;
In an alternating rule, each of the non-alternating components (e.g. B2/S2 and B3/S2 in the rule B2/S2|B3/S2) are called subrules. The number of subrules in an alternating rule is called the step count. When a rule is not true orthodox, the way to calculate the practical period of an object is to divide the discrete period by the step count. The discrete period is the period of an object when ignoring the fact that it is an alternating rule. For true orthodox rules, the practical period is the same as the discrete.&lt;br /&gt;
&lt;br /&gt;
The orthodoxy of an alternating rule is the measure of how much the rule behaves like non-alternating rules. An alternating rule is considered true orthodox if it contains at least one periodic object of period &amp;gt;1 which has the exact same evolution regardless of which subrule of the alternating rule it starts on, an example of such an object would be the [[blinker]] in {{nowrap|&amp;lt;nowiki&amp;gt;B3/S23|B36/S235&amp;lt;/nowiki&amp;gt;}}, in which it will maintain the same [[phase]] sequence regardless of which subrule is in effect when the blinker is placed.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
{|style=&amp;quot;margin:auto;width:300px;&amp;quot;&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|rle          = x = 16, y = 10, rule = &amp;lt;nowiki&amp;gt;B3678/S23678|B3/S23&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
b2o10b3o$o2b2o7bo$ob6o5bobo$bo3b2obo5bo$5bo$4bo3bo$b3o$o2bo$o2bobo2bo$bo4b3o!&lt;br /&gt;
|viewerconfig = #C [[ THUMBNAIL THUMBSIZE 3 ZOOM 12 HEIGHT 600 GPS 30 THEME Book AUTOSTART T 0 PAUSE 1 T 160 PAUSE 1 T 320 PAUSE 3 LOOP 321 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A p160 [[RRO]] in {{nowrap|&amp;lt;nowiki&amp;gt;B3678/S23678|B3/S23&amp;lt;/nowiki&amp;gt;}}&amp;lt;ref name=&amp;quot;post70112&amp;quot; /&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|rle          = x = 9, y = 9, rule = &amp;lt;nowiki&amp;gt;B2/S35|B3/S1&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
2b2ob2o$3bobo$o2b3o$4obo$2bo2bo$5obobo$o4bo2$5bo!&lt;br /&gt;
|viewerconfig = #C [[ THUMBNAIL THUMBSIZE 3 ZOOM 15 HEIGHT 600 X -6 Y -6 GPS 30 THEME Book AUTOSTART T 0 PAUSE 1 T 230 PAUSE 3 LOOP 231 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A 16c/230 diagonal spaceship in {{nowrap|&amp;lt;nowiki&amp;gt;B2/S35|B3/S1&amp;lt;/nowiki&amp;gt;}}&amp;lt;ref name=&amp;quot;post88650&amp;quot; /&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|rle          = x = 48, y = 48, rule = &amp;lt;nowiki&amp;gt;B3/S23|B35/S23&amp;lt;/nowiki&amp;gt;:T48&lt;br /&gt;
12$17b2o$17b2o2$13b3o$13bobo$13b2o3$29b2o$29b2o3$32b2o$31b2o5$24b2o$23b&lt;br /&gt;
2o3$26b2o$26b2o!&lt;br /&gt;
|viewerconfig = #C [[ THUMBNAIL THUMBSIZE 3 ZOOM 12 HEIGHT 600 GPS 30 THEME Book AUTOSTART T 0 PAUSE 1 T 648 PAUSE 3 LOOP 649 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A 8c/44 diagonal spaceship and a p216 oscillator in {{nowrap|&amp;lt;nowiki&amp;gt;B3/S23|B35/S23&amp;lt;/nowiki&amp;gt;}}&amp;lt;ref name=&amp;quot;post50997&amp;quot; /&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|rle          = x = 3, y = 3, rule = &amp;lt;nowiki&amp;gt;B2a4/S02|B3/S1c23-a&amp;lt;/nowiki&amp;gt;:T48&lt;br /&gt;
2o$obo$obo!&lt;br /&gt;
|viewerconfig = #C [[ THUMBNAIL THUMBSIZE 3 ZOOM 12 HEIGHT 600 GPS 20 THEME Book AUTOSTART T 0 PAUSE 1 T 384 PAUSE 3 LOOP 385 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A natural (16,4)c/32 [[giraffeship]] in {{nowrap|&amp;lt;nowiki&amp;gt;B2a4/S02|B3/S1c23-a&amp;lt;/nowiki&amp;gt;}}&amp;lt;ref name=&amp;quot;post154760&amp;quot; /&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
|{{EmbedViewer&lt;br /&gt;
|rle          = x = 3, y = 5, rule = &amp;lt;nowiki&amp;gt;B1/S012345678|B/S578&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
o2$2bo2$o!&lt;br /&gt;
|viewerconfig = #C [[ THUMBNAIL THUMBSIZE 3 ZOOM 21 HEIGHT 600 GPS 2 AUTOSTART TRACKLOOP 4 1/4 0/4 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = A natural spaceship in {{nowrap|&amp;lt;nowiki&amp;gt;B1/S012345678|B/S578&amp;lt;/nowiki&amp;gt;}}&amp;lt;ref name=&amp;quot;post5025&amp;quot; /&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Support ==&lt;br /&gt;
[[Golly]] supports a strict class subclass of alternating rules, which are used in simulating [[Birth on zero neighbours|B0 rules]] to avoid [[strobing]], using the process described in Golly&#039;s documentation.&amp;lt;ref&amp;gt;[http://golly.sourceforge.net/Help/Algorithms/QuickLife.html {{filename|Help/Algorithms/QuickLife}}]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[LifeViewer]] supports alternating rules from build 292 onwards, with a few restrictions.&lt;br /&gt;
&lt;br /&gt;
== Extensions ==&lt;br /&gt;
It is possible to extend such rules to [[von Neumann neighbourhood|von Neumann]] and [[hexagonal neighbourhood]]s, [[Larger than Life|extended neighbourhoods]], and [[isotropic non-totalistic|non-totalistic]] and [[non-isotropic]] rules, and can even alternate between combinations of these.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post5025&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|p      = 5025&lt;br /&gt;
|title  = Alternating rules&lt;br /&gt;
|author = Tropylium&lt;br /&gt;
|date   = August 21, 2011&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post50997&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|p      = 50997&lt;br /&gt;
|title  = Alternating rules&lt;br /&gt;
|author = Saka&lt;br /&gt;
|date   = September 16, 2017&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post70112&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|p      = 70112&lt;br /&gt;
|title  = Re: Alternating rules&lt;br /&gt;
|author = muzik&lt;br /&gt;
|date   = February 8, 2019&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post88650&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|p      = 88650&lt;br /&gt;
|title  = Re: Alternating rules&lt;br /&gt;
|author = nolovoto&lt;br /&gt;
|date   = February 1, 2020&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;post154760&amp;quot;&amp;gt;{{LinkForumThread&lt;br /&gt;
|format = ref&lt;br /&gt;
|p      = 154760&lt;br /&gt;
|title  = Re: Alternating rules&lt;br /&gt;
|author = May13&lt;br /&gt;
|date   = December 12, 2022&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* {{LinkForumThread|f=11|t=719|title=Alternating rules}} (Started 2011)&lt;br /&gt;
* {{LinkForumThread|f=11|t=3096|title=Alternating rules}} (Started 2017)&lt;br /&gt;
&lt;br /&gt;
[[Category:Algorithms]]&lt;br /&gt;
[[Category:Cellular automata]]&lt;br /&gt;
[[Category:Multistate rules]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Rule:Hybrid2&amp;diff=132639</id>
		<title>Rule:Hybrid2</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Rule:Hybrid2&amp;diff=132639"/>
		<updated>2023-06-20T00:32:16Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: adding color&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;@RULE hybrid2&lt;br /&gt;
&lt;br /&gt;
https://conwaylife.com/forums/viewtopic.php?p=13929#p13980&lt;br /&gt;
&lt;br /&gt;
@TREE&lt;br /&gt;
&lt;br /&gt;
num_states=4&lt;br /&gt;
num_neighbors=8&lt;br /&gt;
num_nodes=161&lt;br /&gt;
1 0 0 0 0&lt;br /&gt;
1 0 0 2 0&lt;br /&gt;
1 0 1 2 3&lt;br /&gt;
2 0 1 2 1&lt;br /&gt;
1 0 1 2 0&lt;br /&gt;
1 0 1 0 3&lt;br /&gt;
2 1 2 4 5&lt;br /&gt;
1 0 0 2 3&lt;br /&gt;
2 2 4 2 7&lt;br /&gt;
2 1 5 7 2&lt;br /&gt;
3 3 6 8 9&lt;br /&gt;
1 1 1 2 3&lt;br /&gt;
1 3 1 0 0&lt;br /&gt;
1 2 1 0 0&lt;br /&gt;
2 2 11 12 13&lt;br /&gt;
2 4 12 12 0&lt;br /&gt;
2 5 13 0 13&lt;br /&gt;
3 6 14 15 16&lt;br /&gt;
1 2 1 0 3&lt;br /&gt;
1 1 0 0 0&lt;br /&gt;
2 2 12 18 19&lt;br /&gt;
2 7 0 19 19&lt;br /&gt;
3 8 15 20 21&lt;br /&gt;
1 3 1 2 0&lt;br /&gt;
2 2 13 19 23&lt;br /&gt;
3 9 16 21 24&lt;br /&gt;
4 10 17 22 25&lt;br /&gt;
1 0 0 0 3&lt;br /&gt;
2 11 7 0 27&lt;br /&gt;
2 12 0 0 0&lt;br /&gt;
2 13 27 0 27&lt;br /&gt;
3 14 28 29 30&lt;br /&gt;
2 0 0 0 0&lt;br /&gt;
3 15 29 29 32&lt;br /&gt;
3 16 30 32 30&lt;br /&gt;
4 17 31 33 34&lt;br /&gt;
2 18 0 5 27&lt;br /&gt;
2 19 0 27 27&lt;br /&gt;
3 20 29 36 37&lt;br /&gt;
3 21 32 37 37&lt;br /&gt;
4 22 33 38 39&lt;br /&gt;
2 23 27 27 2&lt;br /&gt;
3 24 30 37 41&lt;br /&gt;
4 25 34 39 42&lt;br /&gt;
5 26 35 40 43&lt;br /&gt;
2 7 7 1 27&lt;br /&gt;
2 0 1 1 0&lt;br /&gt;
2 27 27 0 27&lt;br /&gt;
3 28 45 46 47&lt;br /&gt;
3 29 46 46 32&lt;br /&gt;
3 30 47 32 47&lt;br /&gt;
4 31 48 49 50&lt;br /&gt;
3 32 32 32 32&lt;br /&gt;
4 33 49 49 52&lt;br /&gt;
4 34 50 52 50&lt;br /&gt;
5 35 51 53 54&lt;br /&gt;
2 5 1 2 7&lt;br /&gt;
2 27 0 7 7&lt;br /&gt;
3 36 46 56 57&lt;br /&gt;
3 37 32 57 57&lt;br /&gt;
4 38 49 58 59&lt;br /&gt;
4 39 52 59 59&lt;br /&gt;
5 40 53 60 61&lt;br /&gt;
2 2 27 7 2&lt;br /&gt;
3 41 47 57 63&lt;br /&gt;
4 42 50 59 64&lt;br /&gt;
5 43 54 61 65&lt;br /&gt;
6 44 55 62 66&lt;br /&gt;
2 7 7 0 0&lt;br /&gt;
2 1 0 0 0&lt;br /&gt;
2 27 0 0 0&lt;br /&gt;
3 45 68 69 70&lt;br /&gt;
3 46 69 69 32&lt;br /&gt;
3 47 70 32 70&lt;br /&gt;
4 48 71 72 73&lt;br /&gt;
4 49 72 72 52&lt;br /&gt;
4 50 73 52 73&lt;br /&gt;
5 51 74 75 76&lt;br /&gt;
4 52 52 52 52&lt;br /&gt;
5 53 75 75 78&lt;br /&gt;
5 54 76 78 76&lt;br /&gt;
6 55 77 79 80&lt;br /&gt;
2 2 0 18 0&lt;br /&gt;
2 7 0 0 0&lt;br /&gt;
3 56 69 82 83&lt;br /&gt;
3 57 32 83 83&lt;br /&gt;
4 58 72 84 85&lt;br /&gt;
4 59 52 85 85&lt;br /&gt;
5 60 75 86 87&lt;br /&gt;
5 61 78 87 87&lt;br /&gt;
6 62 79 88 89&lt;br /&gt;
2 2 0 0 23&lt;br /&gt;
3 63 70 83 91&lt;br /&gt;
4 64 73 85 92&lt;br /&gt;
5 65 76 87 93&lt;br /&gt;
6 66 80 89 94&lt;br /&gt;
7 67 81 90 95&lt;br /&gt;
3 68 68 32 32&lt;br /&gt;
3 69 32 32 32&lt;br /&gt;
3 70 32 32 32&lt;br /&gt;
4 71 97 98 99&lt;br /&gt;
4 72 98 98 52&lt;br /&gt;
4 73 99 52 99&lt;br /&gt;
5 74 100 101 102&lt;br /&gt;
5 75 101 101 78&lt;br /&gt;
5 76 102 78 102&lt;br /&gt;
6 77 103 104 105&lt;br /&gt;
5 78 78 78 78&lt;br /&gt;
6 79 104 104 107&lt;br /&gt;
6 80 105 107 105&lt;br /&gt;
7 81 106 108 109&lt;br /&gt;
2 18 0 5 0&lt;br /&gt;
3 82 32 111 32&lt;br /&gt;
3 83 32 32 32&lt;br /&gt;
4 84 98 112 113&lt;br /&gt;
4 85 52 113 113&lt;br /&gt;
5 86 101 114 115&lt;br /&gt;
5 87 78 115 115&lt;br /&gt;
6 88 104 116 117&lt;br /&gt;
6 89 107 117 117&lt;br /&gt;
7 90 108 118 119&lt;br /&gt;
2 23 0 0 4&lt;br /&gt;
3 91 32 32 121&lt;br /&gt;
4 92 99 113 122&lt;br /&gt;
5 93 102 115 123&lt;br /&gt;
6 94 105 117 124&lt;br /&gt;
7 95 109 119 125&lt;br /&gt;
8 96 110 120 126&lt;br /&gt;
4 97 97 52 52&lt;br /&gt;
4 98 52 52 52&lt;br /&gt;
4 99 52 52 52&lt;br /&gt;
5 100 128 129 130&lt;br /&gt;
5 101 129 129 78&lt;br /&gt;
5 102 130 78 130&lt;br /&gt;
6 103 131 132 133&lt;br /&gt;
6 104 132 132 107&lt;br /&gt;
6 105 133 107 133&lt;br /&gt;
7 106 134 135 136&lt;br /&gt;
6 107 107 107 107&lt;br /&gt;
7 108 135 135 138&lt;br /&gt;
7 109 136 138 136&lt;br /&gt;
8 110 137 139 140&lt;br /&gt;
2 5 0 5 0&lt;br /&gt;
3 111 32 142 32&lt;br /&gt;
4 112 52 143 52&lt;br /&gt;
4 113 52 52 52&lt;br /&gt;
5 114 129 144 145&lt;br /&gt;
5 115 78 145 145&lt;br /&gt;
6 116 132 146 147&lt;br /&gt;
6 117 107 147 147&lt;br /&gt;
7 118 135 148 149&lt;br /&gt;
7 119 138 149 149&lt;br /&gt;
8 120 139 150 151&lt;br /&gt;
2 4 0 0 23&lt;br /&gt;
3 121 32 32 153&lt;br /&gt;
4 122 52 52 154&lt;br /&gt;
5 123 130 145 155&lt;br /&gt;
6 124 133 147 156&lt;br /&gt;
7 125 136 149 157&lt;br /&gt;
8 126 140 151 158&lt;br /&gt;
9 127 141 152 159&lt;br /&gt;
&lt;br /&gt;
@TABLE&lt;br /&gt;
n_states:4&lt;br /&gt;
neighborhood:Moore&lt;br /&gt;
symmetries:permute&lt;br /&gt;
var a={0,1,3}&lt;br /&gt;
var b={0,1,2,3}&lt;br /&gt;
var ba={b}&lt;br /&gt;
var bb={b}&lt;br /&gt;
var bc={b}&lt;br /&gt;
var bd={b}&lt;br /&gt;
var be={b}&lt;br /&gt;
var c={1,3}&lt;br /&gt;
var d={1,2,3}&lt;br /&gt;
var da={d}&lt;br /&gt;
var db={d}&lt;br /&gt;
var dc={d}&lt;br /&gt;
var dd={d}&lt;br /&gt;
0,1,1,1,0,0,0,0,0,1&lt;br /&gt;
0,2,2,2,0,0,0,0,0,2&lt;br /&gt;
0,2,2,2,2,2,2,0,0,2&lt;br /&gt;
0,3,3,3,0,0,0,0,0,3&lt;br /&gt;
0,3,3,3,3,3,3,0,0,3&lt;br /&gt;
0,3,3,3,3,3,3,3,3,3&lt;br /&gt;
c,a,0,0,0,0,0,0,0,0&lt;br /&gt;
1,1,d,da,db,b,ba,bb,bc,0&lt;br /&gt;
2,0,0,0,0,0,0,0,0,0&lt;br /&gt;
2,2,d,da,b,0,0,0,0,0&lt;br /&gt;
2,2,d,da,db,dc,dd,b,ba,0&lt;br /&gt;
3,3,d,da,0,0,0,0,0,0&lt;br /&gt;
3,3,d,da,db,dc,dd,b,ba,0&lt;br /&gt;
0,1,1,2,0,0,0,0,0,3&lt;br /&gt;
0,1,2,2,0,0,0,0,0,3&lt;br /&gt;
0,1,1,3,0,0,0,0,0,2&lt;br /&gt;
0,1,3,3,0,0,0,0,0,2&lt;br /&gt;
0,2,2,3,0,0,0,0,0,1&lt;br /&gt;
0,2,3,3,0,0,0,0,0,1&lt;br /&gt;
1,2,3,b,ba,bb,bc,bd,be,0&lt;br /&gt;
2,1,3,b,ba,bb,bc,bd,be,0&lt;br /&gt;
3,2,1,b,ba,bb,bc,bd,be,0&lt;br /&gt;
&lt;br /&gt;
@COLORS&lt;br /&gt;
1 255 0 0&lt;br /&gt;
2 0 255 0&lt;br /&gt;
3 0 0 255&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Rule:2.5life&amp;diff=132638</id>
		<title>Rule:2.5life</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Rule:2.5life&amp;diff=132638"/>
		<updated>2023-06-20T00:30:55Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: adding color&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;@RULE 2.5life&lt;br /&gt;
&lt;br /&gt;
https://conwaylife.com/forums/viewtopic.php?p=13929#p13929&lt;br /&gt;
&lt;br /&gt;
@TREE&lt;br /&gt;
&lt;br /&gt;
num_states=6&lt;br /&gt;
num_neighbors=8&lt;br /&gt;
num_nodes=133&lt;br /&gt;
1 0 0 0 4 5 0&lt;br /&gt;
2 0 0 0 0 0 0&lt;br /&gt;
1 0 1 2 4 5 0&lt;br /&gt;
1 3 1 2 4 5 0&lt;br /&gt;
2 0 2 3 2 0 0&lt;br /&gt;
2 0 3 2 2 0 0&lt;br /&gt;
2 0 2 2 3 0 0&lt;br /&gt;
3 1 4 5 6 1 1&lt;br /&gt;
1 1 1 2 4 5 0&lt;br /&gt;
2 2 8 2 8 2 2&lt;br /&gt;
2 3 2 2 2 3 3&lt;br /&gt;
2 2 8 2 2 2 2&lt;br /&gt;
3 4 9 10 11 4 4&lt;br /&gt;
1 2 1 2 4 5 0&lt;br /&gt;
2 2 2 13 13 2 2&lt;br /&gt;
2 2 2 13 2 2 2&lt;br /&gt;
3 5 10 14 15 5 5&lt;br /&gt;
3 6 11 15 10 6 6&lt;br /&gt;
4 7 12 16 17 7 7&lt;br /&gt;
1 0 0 2 4 5 0&lt;br /&gt;
2 8 19 0 2 8 8&lt;br /&gt;
2 2 0 0 2 2 2&lt;br /&gt;
2 8 2 2 2 8 8&lt;br /&gt;
3 9 20 21 22 9 9&lt;br /&gt;
2 2 2 2 2 2 2&lt;br /&gt;
3 10 21 21 24 10 10&lt;br /&gt;
3 11 22 24 24 11 11&lt;br /&gt;
4 12 23 25 26 12 12&lt;br /&gt;
1 0 1 0 4 5 0&lt;br /&gt;
2 13 0 28 2 13 13&lt;br /&gt;
2 13 2 2 2 13 13&lt;br /&gt;
3 14 21 29 30 14 14&lt;br /&gt;
3 15 24 30 24 15 15&lt;br /&gt;
4 16 25 31 32 16 16&lt;br /&gt;
3 10 24 24 24 10 10&lt;br /&gt;
4 17 26 32 34 17 17&lt;br /&gt;
5 18 27 33 35 18 18&lt;br /&gt;
2 19 19 0 2 2 2&lt;br /&gt;
2 0 0 0 2 2 2&lt;br /&gt;
3 20 37 38 24 22 22&lt;br /&gt;
3 21 38 38 24 24 24&lt;br /&gt;
3 22 24 24 24 22 22&lt;br /&gt;
3 9 22 24 22 9 9&lt;br /&gt;
4 23 39 40 41 42 42&lt;br /&gt;
3 24 24 24 24 24 24&lt;br /&gt;
4 25 40 40 44 34 34&lt;br /&gt;
4 26 41 44 44 26 26&lt;br /&gt;
4 12 42 34 26 12 12&lt;br /&gt;
5 27 43 45 46 47 47&lt;br /&gt;
2 28 0 28 2 2 2&lt;br /&gt;
3 29 38 49 24 30 30&lt;br /&gt;
3 30 24 24 24 30 30&lt;br /&gt;
3 14 24 30 30 14 14&lt;br /&gt;
4 31 40 50 51 52 52&lt;br /&gt;
4 32 44 51 44 32 32&lt;br /&gt;
4 16 34 52 32 16 16&lt;br /&gt;
5 33 45 53 54 55 55&lt;br /&gt;
4 34 44 44 44 34 34&lt;br /&gt;
5 35 46 54 57 35 35&lt;br /&gt;
5 18 47 55 35 18 18&lt;br /&gt;
6 36 48 56 58 59 59&lt;br /&gt;
3 37 37 38 24 24 24&lt;br /&gt;
3 38 38 38 24 24 24&lt;br /&gt;
4 39 61 62 44 41 41&lt;br /&gt;
4 40 62 62 44 44 44&lt;br /&gt;
4 41 44 44 44 41 41&lt;br /&gt;
4 42 41 44 41 42 42&lt;br /&gt;
5 43 63 64 65 66 66&lt;br /&gt;
4 44 44 44 44 44 44&lt;br /&gt;
5 45 64 64 68 57 57&lt;br /&gt;
5 46 65 68 68 46 46&lt;br /&gt;
5 47 66 57 46 47 47&lt;br /&gt;
6 48 67 69 70 71 71&lt;br /&gt;
3 49 38 49 24 24 24&lt;br /&gt;
4 50 62 73 44 51 51&lt;br /&gt;
4 51 44 44 44 51 51&lt;br /&gt;
4 52 44 51 51 52 52&lt;br /&gt;
5 53 64 74 75 76 76&lt;br /&gt;
5 54 68 75 68 54 54&lt;br /&gt;
5 55 57 76 54 55 55&lt;br /&gt;
6 56 69 77 78 79 79&lt;br /&gt;
5 57 68 68 68 57 57&lt;br /&gt;
6 58 70 78 81 58 58&lt;br /&gt;
6 59 71 79 58 59 59&lt;br /&gt;
7 60 72 80 82 83 83&lt;br /&gt;
4 61 61 62 44 44 44&lt;br /&gt;
4 62 62 62 44 44 44&lt;br /&gt;
5 63 85 86 68 65 65&lt;br /&gt;
5 64 86 86 68 68 68&lt;br /&gt;
5 65 68 68 68 65 65&lt;br /&gt;
5 66 65 68 65 66 66&lt;br /&gt;
6 67 87 88 89 90 90&lt;br /&gt;
5 68 68 68 68 68 68&lt;br /&gt;
6 69 88 88 92 81 81&lt;br /&gt;
6 70 89 92 92 70 70&lt;br /&gt;
6 71 90 81 70 71 71&lt;br /&gt;
7 72 91 93 94 95 95&lt;br /&gt;
4 73 62 73 44 44 44&lt;br /&gt;
5 74 86 97 68 75 75&lt;br /&gt;
5 75 68 68 68 75 75&lt;br /&gt;
5 76 68 75 75 76 76&lt;br /&gt;
6 77 88 98 99 100 100&lt;br /&gt;
6 78 92 99 92 78 78&lt;br /&gt;
6 79 81 100 78 79 79&lt;br /&gt;
7 80 93 101 102 103 103&lt;br /&gt;
6 81 92 92 92 81 81&lt;br /&gt;
7 82 94 102 105 82 82&lt;br /&gt;
7 83 95 103 82 83 83&lt;br /&gt;
8 84 96 104 106 107 107&lt;br /&gt;
5 85 85 86 68 68 68&lt;br /&gt;
5 86 86 86 68 68 68&lt;br /&gt;
6 87 109 110 92 89 89&lt;br /&gt;
6 88 110 110 92 92 92&lt;br /&gt;
6 89 92 92 92 89 89&lt;br /&gt;
6 90 89 92 89 90 90&lt;br /&gt;
7 91 111 112 113 114 114&lt;br /&gt;
6 92 92 92 92 92 92&lt;br /&gt;
7 93 112 112 116 105 105&lt;br /&gt;
7 94 113 116 116 94 94&lt;br /&gt;
7 95 114 105 94 95 95&lt;br /&gt;
8 96 115 117 118 119 119&lt;br /&gt;
5 97 86 97 68 68 68&lt;br /&gt;
6 98 110 121 92 99 99&lt;br /&gt;
6 99 92 92 92 99 99&lt;br /&gt;
6 100 92 99 99 100 100&lt;br /&gt;
7 101 112 122 123 124 124&lt;br /&gt;
7 102 116 123 116 102 102&lt;br /&gt;
7 103 105 124 102 103 103&lt;br /&gt;
8 104 117 125 126 127 127&lt;br /&gt;
7 105 116 116 116 105 105&lt;br /&gt;
8 106 118 126 129 106 106&lt;br /&gt;
8 107 119 127 106 107 107&lt;br /&gt;
9 108 120 128 130 131 131&lt;br /&gt;
&lt;br /&gt;
@TABLE&lt;br /&gt;
n_states:6&lt;br /&gt;
neighborhood:Moore&lt;br /&gt;
symmetries:permute&lt;br /&gt;
var a={0,1,2}&lt;br /&gt;
var aa={a}&lt;br /&gt;
var ab={a}&lt;br /&gt;
var ac={a}&lt;br /&gt;
var b={0,1,2,3,4,5}&lt;br /&gt;
var ba={b}&lt;br /&gt;
var bb={b}&lt;br /&gt;
var bc={b}&lt;br /&gt;
var bd={b}&lt;br /&gt;
var be={b}&lt;br /&gt;
var bf={b}&lt;br /&gt;
var bg={b}&lt;br /&gt;
var c={1,2}&lt;br /&gt;
var ca={c}&lt;br /&gt;
var cb={c}&lt;br /&gt;
var d={0,4,5}&lt;br /&gt;
var da={d}&lt;br /&gt;
var db={d}&lt;br /&gt;
var dc={d}&lt;br /&gt;
var dd={d}&lt;br /&gt;
var de={d}&lt;br /&gt;
var df={d}&lt;br /&gt;
var dg={d}&lt;br /&gt;
0,1,1,1,d,da,db,dc,dd,1&lt;br /&gt;
0,2,2,2,d,da,db,dc,dd,2&lt;br /&gt;
1,1,c,ca,cb,a,aa,ab,ac,0&lt;br /&gt;
1,b,d,da,db,dc,dd,de,df,0&lt;br /&gt;
2,2,c,ca,cb,a,aa,ab,ac,0&lt;br /&gt;
2,b,d,da,db,dc,dd,de,df,0&lt;br /&gt;
0,3,3,d,da,db,dc,dd,de,3&lt;br /&gt;
3,b,ba,bb,bc,bd,be,bf,bg,4&lt;br /&gt;
4,b,ba,bb,bc,bd,be,bf,bg,5&lt;br /&gt;
5,b,ba,bb,bc,bd,be,bf,bg,0&lt;br /&gt;
0,1,2,d,da,db,dc,dd,de,3&lt;br /&gt;
0,c,c,3,d,da,db,dc,dd,c&lt;br /&gt;
&lt;br /&gt;
@COLORS&lt;br /&gt;
&lt;br /&gt;
1 0 0 255&lt;br /&gt;
2 255 0 255&lt;br /&gt;
3 255 0 0&lt;br /&gt;
4 255 128 0&lt;br /&gt;
5 255 255 0&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Long_tail&amp;diff=131738</id>
		<title>Long tail</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Long_tail&amp;diff=131738"/>
		<updated>2023-05-29T18:59:56Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: adding to category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{StillLifeComponent&lt;br /&gt;
|name         = Long tail&lt;br /&gt;
|pname        = longtail&lt;br /&gt;
|c            = 5&lt;br /&gt;
|bx           = 2&lt;br /&gt;
|by           = 4&lt;br /&gt;
|plaintext    = true&lt;br /&gt;
|rle          = true&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Long tail&#039;&#039;&#039; (sometimes referred to as &#039;&#039;&#039;L&#039;&#039;&#039; or &#039;&#039;&#039;J&#039;&#039;&#039;) is a [[Polyplet#Pentaplets|pentaplet]] and great-grandparent of the [[V spark]]. It can often be attached to [[still life]]s to create a larger still life. The simplest such example is [[shillelagh]], in which a long tail and a [[pre-block]] mutually stabilize one another.&lt;br /&gt;
&lt;br /&gt;
The long tail is not very strongly related to the usual [[tail]], and does not attach to as wide an array of objects, and those which it does generally have fewer isomers.&lt;br /&gt;
&lt;br /&gt;
== As a still life component ==&lt;br /&gt;
A green background indicates that the object the tail is added to is stable without it; a red background indicates this is not the case.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | Object&lt;br /&gt;
! Population&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | Other part&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Shillelagh.png|64px]]&lt;br /&gt;
! [[Shillelagh]]&lt;br /&gt;
| 8&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[File:Preblock.png|64px]]&lt;br /&gt;
| style=&amp;quot;background-color:#ffc7ce;&amp;quot; | [[Pre-block]]&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Tubwithlongtail.png|64px]]&lt;br /&gt;
! [[Tub with long tail]]&lt;br /&gt;
| 9&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[File:Tub.png|64px]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Tub]]&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Boatwithlongtail.png|64px]]&lt;br /&gt;
! [[Boat with long tail]]&lt;br /&gt;
| 10&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[File:Boat.png|64px]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Boat]]&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Bargewithlongtail.png|64px]]&lt;br /&gt;
! [[Barge with long tail]]&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[File:Barge.png|64px]]&lt;br /&gt;
| style=&amp;quot;background-color:#c6efce;&amp;quot; | [[Barge]]&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Fusewithtailandlongtail.png|64px]]&lt;br /&gt;
! [[Fuse with tail and long tail]]&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#ffc7ce;text-align:center&amp;quot; | &#039;&#039;Unnamed&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Elevenloop.png|64px]]&lt;br /&gt;
! [[Eleven loop]]&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#ffc7ce;text-align:center&amp;quot; | &#039;&#039;Unnamed&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Sparks]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Racetrack&amp;diff=131737</id>
		<title>Racetrack</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Racetrack&amp;diff=131737"/>
		<updated>2023-05-29T18:58:46Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: adding to category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{StillLifeComponent&lt;br /&gt;
|name            = Racetrack&lt;br /&gt;
|pname           = racetrack&lt;br /&gt;
|type            = Induction coil&lt;br /&gt;
|c               = 12&lt;br /&gt;
|bx              = 6&lt;br /&gt;
|by              = 4&lt;br /&gt;
|plaintext       = true&lt;br /&gt;
|rle             = true&lt;br /&gt;
|viewerconfig    = #C [[ HEIGHT 500 THUMBSIZE 3 ZOOM 48 ]]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Racetrack&#039;&#039;&#039;&amp;lt;ref&amp;gt;[[Catagolue]], &#039;&#039;infra&#039;&#039;.&amp;lt;/ref&amp;gt; is an [[induction coil]]. &lt;br /&gt;
&lt;br /&gt;
It can be [[weld]]ed onto itself to form racetrack-weld-racetrack (shown below), four of which form [[cloverleaf interchange]].&lt;br /&gt;
&lt;br /&gt;
{{EmbedViewer&lt;br /&gt;
|pname        = racetrackweldracetrack&lt;br /&gt;
|viewerconfig = #C [[ THUMBSIZE 2 ZOOM 24 ]]&lt;br /&gt;
|position     = center&lt;br /&gt;
|caption      = racetrack-weld-racetrack&lt;br /&gt;
|style        = width:300px;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* {{LinkCatagolue|xp2_04aab96zc813|patternname=Racetrack and ortho-beacon}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
[[Category:Sparks]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Griddle&amp;diff=131736</id>
		<title>Griddle</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Griddle&amp;diff=131736"/>
		<updated>2023-05-29T18:57:51Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: adding to category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{OscillatorComponent&lt;br /&gt;
|name         = Griddle&lt;br /&gt;
|pname        = griddle&lt;br /&gt;
|type         = Induction coil&lt;br /&gt;
|c            = 11&lt;br /&gt;
|bx           = 6&lt;br /&gt;
|by           = 4&lt;br /&gt;
|p            = 2&lt;br /&gt;
|rle          = true&lt;br /&gt;
|plaintext    = true&lt;br /&gt;
|viewerconfig = #C [[ GPS 2 THUMBSIZE 2 ]]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Griddle&#039;&#039;&#039; is a period-2 [[induction coil]] which involves a [[flutter]] [[rotor]] and an 8-cell [[stator]] resembling a very long [[table]]. There are many possible stabilizations of the griddle, many small examples of which arise naturally.&lt;br /&gt;
&lt;br /&gt;
== Stabilisations ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Image&lt;br /&gt;
! Name&lt;br /&gt;
! Population&lt;br /&gt;
! Stabilization&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Blockongriddle.png|64px]]&lt;br /&gt;
! [[Block on griddle]]&lt;br /&gt;
| [[:Category:Oscillators with 15 cells|15]]&lt;br /&gt;
| - [[Block]], &amp;amp;times;1&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Boatongriddle.png|64px]]&lt;br /&gt;
! Boat on griddle&lt;br /&gt;
| [[:Category:Oscillators with 16 cells|16]]&lt;br /&gt;
| - [[Boat]], &amp;amp;times;1&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Beehiveongriddle.png|64px]]&lt;br /&gt;
! [[Beehive on griddle]]&lt;br /&gt;
| [[:Category:Oscillators with 17 cells|17]]&lt;br /&gt;
| - [[Beehive]], &amp;amp;times;1&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Shipongriddle.png|64px]]&lt;br /&gt;
! Ship on griddle&lt;br /&gt;
| [[:Category:Oscillators with 17 cells|17]]&lt;br /&gt;
| - [[Ship]], &amp;amp;times;1&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Griddleandtable.png|64px]]&lt;br /&gt;
! Griddle and table&lt;br /&gt;
| [[:Category:Oscillators with 17 cells|17]]&lt;br /&gt;
| - [[Table]], &amp;amp;times;1&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Loafongriddle.png|64px]]&lt;br /&gt;
! Loaf on griddle&lt;br /&gt;
| [[:Category:Oscillators with 18 cells|18]]&lt;br /&gt;
| - [[Loaf]], &amp;amp;times;1&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Pondongriddle.png|64px]]&lt;br /&gt;
! Pond on griddle&lt;br /&gt;
| [[:Category:Oscillators with 19 cells|19]]&lt;br /&gt;
| - [[Pond]], &amp;amp;times;1&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Blocksongriddle.png|64px]]&lt;br /&gt;
! Blocks on griddle&lt;br /&gt;
| [[:Category:Oscillators with 19 cells|19]]&lt;br /&gt;
| - [[Block]], &amp;amp;times;2&lt;br /&gt;
|-&lt;br /&gt;
! [[File:Griddleanddock.png|64px]]&lt;br /&gt;
! Griddle and dock&lt;br /&gt;
| [[:Category:Oscillators with 21 cells|21]]&lt;br /&gt;
| - [[Dock]], &amp;amp;times;1&lt;br /&gt;
|}&lt;br /&gt;
[[Category:sparks]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Dock&amp;diff=131735</id>
		<title>Dock</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Dock&amp;diff=131735"/>
		<updated>2023-05-29T18:57:04Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: adding to category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{StillLifeComponent&lt;br /&gt;
|name         = Dock&lt;br /&gt;
|pname        = dock&lt;br /&gt;
|type         = Induction coil&lt;br /&gt;
|c            = 10&lt;br /&gt;
|bx           = 6&lt;br /&gt;
|by           = 3&lt;br /&gt;
|plaintext    = true&lt;br /&gt;
|rle          = true&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Dock&#039;&#039;&#039; (or &#039;&#039;&#039;long house&#039;&#039;&#039;) is an [[induction coil]].&lt;br /&gt;
&lt;br /&gt;
Unlike [[house]], dock can function as an [[eater]] for individual [[glider]]s, using the [[pre-block]] tipped ends similarly to that of the original [[fishhook]] eater.&lt;br /&gt;
&lt;br /&gt;
The dock is the most common 4-cell induction coil to attach to a block as part of an oscillator, such as dock on [[unix]] and dock on [[blocker]]. With a bare block, the table is marginally more common than the dock.&lt;br /&gt;
&lt;br /&gt;
== Gallery ==&lt;br /&gt;
Dock is a component of many other patterns, some examples of which are the following:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Oscillators&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; &lt;br /&gt;
| &amp;lt;center&amp;gt;[[Image:cisbeaconondock.png|96px]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Image:transbeaconondock.png|96px]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Image:griddleanddock.png|96px]]&amp;lt;/center&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Cis-beacon on dock]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Trans-beacon on dock]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Griddle and dock]]&amp;lt;/center&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Still lifes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; &lt;br /&gt;
| &amp;lt;center&amp;gt;[[Image:beehiveondock.png|96px]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Image:capanddock.png|96px]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Image:mirroreddock.png|96px]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Image:pondondock.png|96px]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Image:tableanddock.png|96px]]&amp;lt;/center&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Beehive on dock]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Cap and dock]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Mirrored dock]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Pond on dock]]&amp;lt;/center&amp;gt;&lt;br /&gt;
| &amp;lt;center&amp;gt;[[Table and dock]]&amp;lt;/center&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
{{LinkLexicon|filename=lex_d.htm#dock}}&lt;br /&gt;
&lt;br /&gt;
{{Symmetry|orthogonal2}}&lt;br /&gt;
[[Category:Sparks]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
	<entry>
		<id>https://conwaylife.com/w/index.php?title=Table&amp;diff=131734</id>
		<title>Table</title>
		<link rel="alternate" type="text/html" href="https://conwaylife.com/w/index.php?title=Table&amp;diff=131734"/>
		<updated>2023-05-29T18:51:10Z</updated>

		<summary type="html">&lt;p&gt;Atavoidirc: adding to category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{StillLifeComponent&lt;br /&gt;
|name         = Table&lt;br /&gt;
|pname        = table&lt;br /&gt;
|type         = Induction coil&lt;br /&gt;
|c            = 6&lt;br /&gt;
|bx           = 4&lt;br /&gt;
|by           = 2&lt;br /&gt;
|discoveryear = 1970&lt;br /&gt;
|plaintext    = true&lt;br /&gt;
|rle          = true&lt;br /&gt;
|viewerconfig = [[ ZOOM 63 ]]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Table&#039;&#039;&#039; is a simple [[induction coil]] and [[hexomino]]. If left to evolve by itself, it becomes a [[line-of-six spark]] in three generations.&lt;br /&gt;
&lt;br /&gt;
It can be used as a catalyst, such as in [[dueling banjos]]; the table itself is unstable, but any stabilization (most commonly a block in one of two positions or a second table) works.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Block on table]]&lt;br /&gt;
* [[Mirrored table]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
{{LinkLexicon|lex_t.htm#table}}&lt;br /&gt;
&lt;br /&gt;
{{Symmetry|orthogonal2}}&lt;br /&gt;
[[Category:Polyominoes]]&lt;br /&gt;
[[Category:Sparks]]&lt;/div&gt;</summary>
		<author><name>Atavoidirc</name></author>
	</entry>
</feed>