diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-01-27 17:18:11 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-01-27 17:18:11 +0100 |
| commit | 1d0ab35c076208fa232cc155cbdd7d49430092a6 (patch) | |
| tree | c2bd2bd24137030814eacc23f500ba99268044a5 /src | |
| parent | 7dac2c3bc3ea70ed52b25a08566b760af41e6f1a (diff) | |
| download | sebastiano.tronto.net-1d0ab35c076208fa232cc155cbdd7d49430092a6.tar.gz sebastiano.tronto.net-1d0ab35c076208fa232cc155cbdd7d49430092a6.zip | |
started page on DR triggers
Diffstat (limited to 'src')
36 files changed, 366 insertions, 0 deletions
diff --git a/src/speedcubing/triggers/gen.sh b/src/speedcubing/triggers/gen.sh new file mode 100755 index 0000000..83b9f51 --- /dev/null +++ b/src/speedcubing/triggers/gen.sh | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | invert() { | ||
| 4 | # To invert an alg, replace R2 with RR, B' with B3 and then BBB | ||
| 5 | # and similar. Then reverse the string and triple every letter. | ||
| 6 | # It's a ugly hack, but it works. | ||
| 7 | alg="$(echo "$1" | tr -d ' ' | tr \' 3)" | ||
| 8 | echo "$alg" | sed -E 's/(.)(3)/\1\1\1/g' | \ | ||
| 9 | sed -E 's/(.)(2)/\1\1/g' | sed 's/./&&&/g' | rev | ||
| 10 | } | ||
| 11 | |||
| 12 | gen() { | ||
| 13 | [ -e "trigger_$1.png" ] || cubeviz trigger "$1" > /dev/null 2>&1 | ||
| 14 | } | ||
| 15 | |||
| 16 | printitem() { | ||
| 17 | alg="$1" | ||
| 18 | if [ -n "$alg" ]; then | ||
| 19 | inv="$(invert "$alg")" | ||
| 20 | echo "Working on alg $alg with inverse $inv" 1>&2 | ||
| 21 | gen "$inv" | ||
| 22 | printf '<td style="font-size:16pt; text-align:center" ' | ||
| 23 | printf 'width="20%%">%s</td>\n' "$alg" | ||
| 24 | printf '<td><a href="trigger_%s.png">\n' "$inv" | ||
| 25 | printf '<img src="trigger_%s.png" ' "$inv" | ||
| 26 | printf 'style="height:100px"></a></td>\n' | ||
| 27 | else | ||
| 28 | printf '<td width="20%%"><td width="30%%">\n' | ||
| 29 | fi | ||
| 30 | } | ||
| 31 | |||
| 32 | maketable() { | ||
| 33 | alg1="$(echo "$1" | sed 's/;.*$//' | tr -d '!')" | ||
| 34 | alg2="$(echo "$1" | sed 's/.*;//')" | ||
| 35 | printf '<table><tr>\n' | ||
| 36 | printitem "$alg1" | ||
| 37 | printitem "$alg2" | ||
| 38 | printf '</tr></table>\n' | ||
| 39 | } | ||
| 40 | |||
| 41 | while read -r line; do | ||
| 42 | algs="$(echo "$line" | grep '^!')" | ||
| 43 | if [ -z "$algs" ]; then | ||
| 44 | echo "$line" | ||
| 45 | else | ||
| 46 | maketable "$line" | ||
| 47 | fi | ||
| 48 | done | ||
diff --git a/src/speedcubing/triggers/index.html b/src/speedcubing/triggers/index.html new file mode 100644 index 0000000..9016b93 --- /dev/null +++ b/src/speedcubing/triggers/index.html | |||
| @@ -0,0 +1,225 @@ | |||
| 1 | <h1>DR Triggers</h1> | ||
| 2 | |||
| 3 | <p> | ||
| 4 | On this page you can find all DR triggers up to 4 move that start | ||
| 5 | with a DR-breaking move. Every trigger is paired with its "R2 variation", | ||
| 6 | for example R U R' is paired with R' U R'. | ||
| 7 | </p> | ||
| 8 | |||
| 9 | <p> | ||
| 10 | DRs are always on U/D with EO on F/B. The picture show the U face, the D face | ||
| 11 | and a 3D view of the cube. Click on pics to enlarge. | ||
| 12 | </p> | ||
| 13 | |||
| 14 | <p> | ||
| 15 | Work in progress. | ||
| 16 | </p> | ||
| 17 | |||
| 18 | <h2>1 move</h2> | ||
| 19 | |||
| 20 | <p>Not much to say here</p> | ||
| 21 | |||
| 22 | <table><tr> | ||
| 23 | <td style="font-size:16pt; text-align:center" width="20%"> R</td> | ||
| 24 | <td><a href="trigger_RRR.png"> | ||
| 25 | <img src="trigger_RRR.png" style="height:100px"></a></td> | ||
| 26 | <td width="20%"><td width="30%"> | ||
| 27 | </tr></table> | ||
| 28 | |||
| 29 | <h2>2 moves</h2> | ||
| 30 | |||
| 31 | <p>Setups to this are hard to see.</p> | ||
| 32 | |||
| 33 | <table><tr> | ||
| 34 | <td style="font-size:16pt; text-align:center" width="20%"> R L</td> | ||
| 35 | <td><a href="trigger_LLLRRR.png"> | ||
| 36 | <img src="trigger_LLLRRR.png" style="height:100px"></a></td> | ||
| 37 | <td width="20%"><td width="30%"> | ||
| 38 | </tr></table> | ||
| 39 | |||
| 40 | <h2>3 moves</h2> | ||
| 41 | |||
| 42 | <h3>Classic</h3> | ||
| 43 | |||
| 44 | <p>Classic triggers.<p> | ||
| 45 | |||
| 46 | <table><tr> | ||
| 47 | <td style="font-size:16pt; text-align:center" width="20%"> R U R</td> | ||
| 48 | <td><a href="trigger_RRRUUURRR.png"> | ||
| 49 | <img src="trigger_RRRUUURRR.png" style="height:100px"></a></td> | ||
| 50 | <td style="font-size:16pt; text-align:center" width="20%"> R' U R</td> | ||
| 51 | <td><a href="trigger_RRRUUURRRRRRRRR.png"> | ||
| 52 | <img src="trigger_RRRUUURRRRRRRRR.png" style="height:100px"></a></td> | ||
| 53 | </tr></table> | ||
| 54 | <table><tr> | ||
| 55 | <td style="font-size:16pt; text-align:center" width="20%"> R U2 R</td> | ||
| 56 | <td><a href="trigger_RRRUUUUUURRR.png"> | ||
| 57 | <img src="trigger_RRRUUUUUURRR.png" style="height:100px"></a></td> | ||
| 58 | <td width="20%"><td width="30%"> | ||
| 59 | </tr></table> | ||
| 60 | |||
| 61 | <h3>Advanced</h3> | ||
| 62 | |||
| 63 | <p>More advanced, but very short.</p> | ||
| 64 | |||
| 65 | <table><tr> | ||
| 66 | <td style="font-size:16pt; text-align:center" width="20%"> L U2 R</td> | ||
| 67 | <td><a href="trigger_RRRUUUUUULLL.png"> | ||
| 68 | <img src="trigger_RRRUUUUUULLL.png" style="height:100px"></a></td> | ||
| 69 | <td width="20%"><td width="30%"> | ||
| 70 | </tr></table> | ||
| 71 | <table><tr> | ||
| 72 | <td style="font-size:16pt; text-align:center" width="20%"> L U R</td> | ||
| 73 | <td><a href="trigger_RRRUUULLL.png"> | ||
| 74 | <img src="trigger_RRRUUULLL.png" style="height:100px"></a></td> | ||
| 75 | <td style="font-size:16pt; text-align:center" width="20%"> L' U R</td> | ||
| 76 | <td><a href="trigger_RRRUUULLLLLLLLL.png"> | ||
| 77 | <img src="trigger_RRRUUULLLLLLLLL.png" style="height:100px"></a></td> | ||
| 78 | </tr></table> | ||
| 79 | |||
| 80 | <h2>4 moves</h2> | ||
| 81 | |||
| 82 | <h3>HTR-like</h3> | ||
| 83 | |||
| 84 | <p>These have many variations, try all of them to influence edges | ||
| 85 | or reduce to double slice.</p> | ||
| 86 | |||
| 87 | <table><tr> | ||
| 88 | <td style="font-size:16pt; text-align:center" width="20%"> R U2 B2 R</td> | ||
| 89 | <td><a href="trigger_RRRBBBBBBUUUUUURRR.png"> | ||
| 90 | <img src="trigger_RRRBBBBBBUUUUUURRR.png" style="height:100px"></a></td> | ||
| 91 | <td style="font-size:16pt; text-align:center" width="20%"> R' U2 B2 R</td> | ||
| 92 | <td><a href="trigger_RRRBBBBBBUUUUUURRRRRRRRR.png"> | ||
| 93 | <img src="trigger_RRRBBBBBBUUUUUURRRRRRRRR.png" style="height:100px"></a></td> | ||
| 94 | </tr></table> | ||
| 95 | |||
| 96 | <h3>Edges only</h3> | ||
| 97 | |||
| 98 | <table><tr> | ||
| 99 | <td style="font-size:16pt; text-align:center" width="20%"> L U2 D2 R</td> | ||
| 100 | <td><a href="trigger_RRRDDDDDDUUUUUULLL.png"> | ||
| 101 | <img src="trigger_RRRDDDDDDUUUUUULLL.png" style="height:100px"></a></td> | ||
| 102 | <td width="20%"><td width="30%"> | ||
| 103 | </tr></table> | ||
| 104 | |||
| 105 | <h3>Inserted E2 variations of 3 movers</h3> | ||
| 106 | |||
| 107 | <table><tr> | ||
| 108 | <td style="font-size:16pt; text-align:center" width="20%"> R U D2 R</td> | ||
| 109 | <td><a href="trigger_RRRDDDDDDUUURRR.png"> | ||
| 110 | <img src="trigger_RRRDDDDDDUUURRR.png" style="height:100px"></a></td> | ||
| 111 | <td style="font-size:16pt; text-align:center" width="20%"> R' U D2 R</td> | ||
| 112 | <td><a href="trigger_RRRDDDDDDUUURRRRRRRRR.png"> | ||
| 113 | <img src="trigger_RRRDDDDDDUUURRRRRRRRR.png" style="height:100px"></a></td> | ||
| 114 | </tr></table> | ||
| 115 | <table><tr> | ||
| 116 | <td style="font-size:16pt; text-align:center" width="20%"> L U D2 R</td> | ||
| 117 | <td><a href="trigger_RRRDDDDDDUUULLL.png"> | ||
| 118 | <img src="trigger_RRRDDDDDDUUULLL.png" style="height:100px"></a></td> | ||
| 119 | <td style="font-size:16pt; text-align:center" width="20%"> L' U D2 R</td> | ||
| 120 | <td><a href="trigger_RRRDDDDDDUUULLLLLLLLL.png"> | ||
| 121 | <img src="trigger_RRRDDDDDDUUULLLLLLLLL.png" style="height:100px"></a></td> | ||
| 122 | </tr></table> | ||
| 123 | |||
| 124 | <p>For this last one, make sure corners are 4+4 and not 8+8.</p> | ||
| 125 | |||
| 126 | <table><tr> | ||
| 127 | <td style="font-size:16pt; text-align:center" width="20%"> R U2 D2 R</td> | ||
| 128 | <td><a href="trigger_RRRDDDDDDUUUUUURRR.png"> | ||
| 129 | <img src="trigger_RRRDDDDDDUUUUUURRR.png" style="height:100px"></a></td> | ||
| 130 | <td width="20%"><td width="30%"> | ||
| 131 | </tr></table> | ||
| 132 | |||
| 133 | <h3>5 corners, group 1</h3> | ||
| 134 | |||
| 135 | <table><tr> | ||
| 136 | <td style="font-size:16pt; text-align:center" width="20%"> R U F2 R</td> | ||
| 137 | <td><a href="trigger_RRRFFFFFFUUURRR.png"> | ||
| 138 | <img src="trigger_RRRFFFFFFUUURRR.png" style="height:100px"></a></td> | ||
| 139 | <td style="font-size:16pt; text-align:center" width="20%"> R' U F2 R</td> | ||
| 140 | <td><a href="trigger_RRRFFFFFFUUURRRRRRRRR.png"> | ||
| 141 | <img src="trigger_RRRFFFFFFUUURRRRRRRRR.png" style="height:100px"></a></td> | ||
| 142 | </tr></table> | ||
| 143 | <table><tr> | ||
| 144 | <td style="font-size:16pt; text-align:center" width="20%"> R U' F2 R</td> | ||
| 145 | <td><a href="trigger_RRRFFFFFFUUUUUUUUURRR.png"> | ||
| 146 | <img src="trigger_RRRFFFFFFUUUUUUUUURRR.png" style="height:100px"></a></td> | ||
| 147 | <td style="font-size:16pt; text-align:center" width="20%"> R' U' F2 R</td> | ||
| 148 | <td><a href="trigger_RRRFFFFFFUUUUUUUUURRRRRRRRR.png"> | ||
| 149 | <img src="trigger_RRRFFFFFFUUUUUUUUURRRRRRRRR.png" style="height:100px"></a></td> | ||
| 150 | </tr></table> | ||
| 151 | |||
| 152 | <h3>5 corners, group 2</h3> | ||
| 153 | |||
| 154 | <table><tr> | ||
| 155 | <td style="font-size:16pt; text-align:center" width="20%"> L U F2 R</td> | ||
| 156 | <td><a href="trigger_RRRFFFFFFUUULLL.png"> | ||
| 157 | <img src="trigger_RRRFFFFFFUUULLL.png" style="height:100px"></a></td> | ||
| 158 | <td style="font-size:16pt; text-align:center" width="20%"> L' U F2 R</td> | ||
| 159 | <td><a href="trigger_RRRFFFFFFUUULLLLLLLLL.png"> | ||
| 160 | <img src="trigger_RRRFFFFFFUUULLLLLLLLL.png" style="height:100px"></a></td> | ||
| 161 | </tr></table> | ||
| 162 | <table><tr> | ||
| 163 | <td style="font-size:16pt; text-align:center" width="20%"> L U' F2 R</td> | ||
| 164 | <td><a href="trigger_RRRFFFFFFUUUUUUUUULLL.png"> | ||
| 165 | <img src="trigger_RRRFFFFFFUUUUUUUUULLL.png" style="height:100px"></a></td> | ||
| 166 | <td style="font-size:16pt; text-align:center" width="20%"> L' U' F2 R</td> | ||
| 167 | <td><a href="trigger_RRRFFFFFFUUUUUUUUULLLLLLLLL.png"> | ||
| 168 | <img src="trigger_RRRFFFFFFUUUUUUUUULLLLLLLLL.png" style="height:100px"></a></td> | ||
| 169 | </tr></table> | ||
| 170 | |||
| 171 | <h3>6 corners, group 1</h3> | ||
| 172 | |||
| 173 | <table><tr> | ||
| 174 | <td style="font-size:16pt; text-align:center" width="20%"> R U D R</td> | ||
| 175 | <td><a href="trigger_RRRDDDUUURRR.png"> | ||
| 176 | <img src="trigger_RRRDDDUUURRR.png" style="height:100px"></a></td> | ||
| 177 | <td width="20%"><td width="30%"> | ||
| 178 | </tr></table> | ||
| 179 | <table><tr> | ||
| 180 | <td style="font-size:16pt; text-align:center" width="20%"> R U D' R</td> | ||
| 181 | <td><a href="trigger_RRRDDDDDDDDDUUURRR.png"> | ||
| 182 | <img src="trigger_RRRDDDDDDDDDUUURRR.png" style="height:100px"></a></td> | ||
| 183 | <td width="20%"><td width="30%"> | ||
| 184 | </tr></table> | ||
| 185 | <table><tr> | ||
| 186 | <td style="font-size:16pt; text-align:center" width="20%"> L U D R</td> | ||
| 187 | <td><a href="trigger_RRRDDDUUULLL.png"> | ||
| 188 | <img src="trigger_RRRDDDUUULLL.png" style="height:100px"></a></td> | ||
| 189 | <td width="20%"><td width="30%"> | ||
| 190 | </tr></table> | ||
| 191 | <table><tr> | ||
| 192 | <td style="font-size:16pt; text-align:center" width="20%"> L U D' R</td> | ||
| 193 | <td><a href="trigger_RRRDDDDDDDDDUUULLL.png"> | ||
| 194 | <img src="trigger_RRRDDDDDDDDDUUULLL.png" style="height:100px"></a></td> | ||
| 195 | <td width="20%"><td width="30%"> | ||
| 196 | </tr></table> | ||
| 197 | |||
| 198 | <h3>6 corners, group 2</h3> | ||
| 199 | |||
| 200 | <table><tr> | ||
| 201 | <td style="font-size:16pt; text-align:center" width="20%"> L R U R</td> | ||
| 202 | <td><a href="trigger_RRRUUURRRLLL.png"> | ||
| 203 | <img src="trigger_RRRUUURRRLLL.png" style="height:100px"></a></td> | ||
| 204 | <td style="font-size:16pt; text-align:center" width="20%"> L' R U R</td> | ||
| 205 | <td><a href="trigger_RRRUUURRRLLLLLLLLL.png"> | ||
| 206 | <img src="trigger_RRRUUURRRLLLLLLLLL.png" style="height:100px"></a></td> | ||
| 207 | </tr></table> | ||
| 208 | <table><tr> | ||
| 209 | <td style="font-size:16pt; text-align:center" width="20%"> L R' U R</td> | ||
| 210 | <td><a href="trigger_RRRUUURRRRRRRRRLLL.png"> | ||
| 211 | <img src="trigger_RRRUUURRRRRRRRRLLL.png" style="height:100px"></a></td> | ||
| 212 | <td style="font-size:16pt; text-align:center" width="20%"> L' R' U R</td> | ||
| 213 | <td><a href="trigger_RRRUUURRRRRRRRRLLLLLLLLL.png"> | ||
| 214 | <img src="trigger_RRRUUURRRRRRRRRLLLLLLLLL.png" style="height:100px"></a></td> | ||
| 215 | </tr></table> | ||
| 216 | |||
| 217 | <h3>6 corners, group 3</h3> | ||
| 218 | |||
| 219 | <table><tr> | ||
| 220 | <td style="font-size:16pt; text-align:center" width="20%"> R U R L</td> | ||
| 221 | <td><a href="trigger_LLLRRRUUURRR.png"> | ||
| 222 | <img src="trigger_LLLRRRUUURRR.png" style="height:100px"></a></td> | ||
| 223 | <td width="20%"><td width="30%"> | ||
| 224 | </tr></table> | ||
| 225 | |||
diff --git a/src/speedcubing/triggers/index.txt b/src/speedcubing/triggers/index.txt new file mode 100644 index 0000000..7229014 --- /dev/null +++ b/src/speedcubing/triggers/index.txt | |||
| @@ -0,0 +1,93 @@ | |||
| 1 | <h1>DR Triggers</h1> | ||
| 2 | |||
| 3 | <p> | ||
| 4 | On this page you can find all DR triggers up to 4 move that start | ||
| 5 | with a DR-breaking move. Every trigger is paired with its "R2 variation", | ||
| 6 | for example R U R' is paired with R' U R'. | ||
| 7 | </p> | ||
| 8 | |||
| 9 | <p> | ||
| 10 | DRs are always on U/D with EO on F/B. The picture show the U face, the D face | ||
| 11 | and a 3D view of the cube. Click on pics to enlarge. | ||
| 12 | </p> | ||
| 13 | |||
| 14 | <p> | ||
| 15 | Work in progress. | ||
| 16 | </p> | ||
| 17 | |||
| 18 | <h2>1 move</h2> | ||
| 19 | |||
| 20 | <p>Not much to say here</p> | ||
| 21 | |||
| 22 | ! R; | ||
| 23 | |||
| 24 | <h2>2 moves</h2> | ||
| 25 | |||
| 26 | <p>Setups to this are hard to see.</p> | ||
| 27 | |||
| 28 | ! R L; | ||
| 29 | |||
| 30 | <h2>3 moves</h2> | ||
| 31 | |||
| 32 | <h3>Classic</h3> | ||
| 33 | |||
| 34 | <p>Classic triggers.<p> | ||
| 35 | |||
| 36 | ! R U R; R' U R | ||
| 37 | ! R U2 R; | ||
| 38 | |||
| 39 | <h3>Advanced</h3> | ||
| 40 | |||
| 41 | <p>More advanced, but very short.</p> | ||
| 42 | |||
| 43 | ! L U2 R; | ||
| 44 | ! L U R; L' U R | ||
| 45 | |||
| 46 | <h2>4 moves</h2> | ||
| 47 | |||
| 48 | <h3>HTR-like</h3> | ||
| 49 | |||
| 50 | <p>These have many variations, try all of them to influence edges | ||
| 51 | or reduce to double slice.</p> | ||
| 52 | |||
| 53 | ! R U2 B2 R; R' U2 B2 R | ||
| 54 | |||
| 55 | <h3>Edges only</h3> | ||
| 56 | |||
| 57 | ! L U2 D2 R; | ||
| 58 | |||
| 59 | <h3>Inserted E2 variations of 3 movers</h3> | ||
| 60 | |||
| 61 | ! R U D2 R; R' U D2 R | ||
| 62 | ! L U D2 R; L' U D2 R | ||
| 63 | |||
| 64 | <p>For this last one, make sure corners are 4+4 and not 8+8.</p> | ||
| 65 | |||
| 66 | ! R U2 D2 R; | ||
| 67 | |||
| 68 | <h3>5 corners, group 1</h3> | ||
| 69 | |||
| 70 | ! R U F2 R; R' U F2 R | ||
| 71 | ! R U' F2 R; R' U' F2 R | ||
| 72 | |||
| 73 | <h3>5 corners, group 2</h3> | ||
| 74 | |||
| 75 | ! L U F2 R; L' U F2 R | ||
| 76 | ! L U' F2 R; L' U' F2 R | ||
| 77 | |||
| 78 | <h3>6 corners, group 1</h3> | ||
| 79 | |||
| 80 | ! R U D R; | ||
| 81 | ! R U D' R; | ||
| 82 | ! L U D R; | ||
| 83 | ! L U D' R; | ||
| 84 | |||
| 85 | <h3>6 corners, group 2</h3> | ||
| 86 | |||
| 87 | ! L R U R; L' R U R | ||
| 88 | ! L R' U R; L' R' U R | ||
| 89 | |||
| 90 | <h3>6 corners, group 3</h3> | ||
| 91 | |||
| 92 | ! R U R L; | ||
| 93 | |||
diff --git a/src/speedcubing/triggers/trigger_LLLRRR.png b/src/speedcubing/triggers/trigger_LLLRRR.png new file mode 100644 index 0000000..2707cfc --- /dev/null +++ b/src/speedcubing/triggers/trigger_LLLRRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_LLLRRRUUURRR.png b/src/speedcubing/triggers/trigger_LLLRRRUUURRR.png new file mode 100644 index 0000000..e3e1e7c --- /dev/null +++ b/src/speedcubing/triggers/trigger_LLLRRRUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRR.png b/src/speedcubing/triggers/trigger_RRR.png new file mode 100644 index 0000000..56554da --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRBBBBBBUUUUUURRR.png b/src/speedcubing/triggers/trigger_RRRBBBBBBUUUUUURRR.png new file mode 100644 index 0000000..7148242 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRBBBBBBUUUUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRBBBBBBUUUUUURRRRRRRRR.png b/src/speedcubing/triggers/trigger_RRRBBBBBBUUUUUURRRRRRRRR.png new file mode 100644 index 0000000..10006a8 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRBBBBBBUUUUUURRRRRRRRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDDDDDDDUUULLL.png b/src/speedcubing/triggers/trigger_RRRDDDDDDDDDUUULLL.png new file mode 100644 index 0000000..631760f --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDDDDDDDUUULLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDDDDDDDUUURRR.png b/src/speedcubing/triggers/trigger_RRRDDDDDDDDDUUURRR.png new file mode 100644 index 0000000..7788ed0 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDDDDDDDUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDDDDUUULLL.png b/src/speedcubing/triggers/trigger_RRRDDDDDDUUULLL.png new file mode 100644 index 0000000..77c9bf7 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDDDDUUULLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDDDDUUULLLLLLLLL.png b/src/speedcubing/triggers/trigger_RRRDDDDDDUUULLLLLLLLL.png new file mode 100644 index 0000000..5bf0005 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDDDDUUULLLLLLLLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDDDDUUURRR.png b/src/speedcubing/triggers/trigger_RRRDDDDDDUUURRR.png new file mode 100644 index 0000000..a43124b --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDDDDUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDDDDUUURRRRRRRRR.png b/src/speedcubing/triggers/trigger_RRRDDDDDDUUURRRRRRRRR.png new file mode 100644 index 0000000..05af079 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDDDDUUURRRRRRRRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDDDDUUUUUULLL.png b/src/speedcubing/triggers/trigger_RRRDDDDDDUUUUUULLL.png new file mode 100644 index 0000000..4d85be6 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDDDDUUUUUULLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDDDDUUUUUURRR.png b/src/speedcubing/triggers/trigger_RRRDDDDDDUUUUUURRR.png new file mode 100644 index 0000000..1149a8d --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDDDDUUUUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDUUULLL.png b/src/speedcubing/triggers/trigger_RRRDDDUUULLL.png new file mode 100644 index 0000000..1081b84 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDUUULLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRDDDUUURRR.png b/src/speedcubing/triggers/trigger_RRRDDDUUURRR.png new file mode 100644 index 0000000..99def8d --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRDDDUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRFFFFFFUUULLL.png b/src/speedcubing/triggers/trigger_RRRFFFFFFUUULLL.png new file mode 100644 index 0000000..3c675c2 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRFFFFFFUUULLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRFFFFFFUUULLLLLLLLL.png b/src/speedcubing/triggers/trigger_RRRFFFFFFUUULLLLLLLLL.png new file mode 100644 index 0000000..a4b20d1 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRFFFFFFUUULLLLLLLLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRFFFFFFUUURRR.png b/src/speedcubing/triggers/trigger_RRRFFFFFFUUURRR.png new file mode 100644 index 0000000..2f9da01 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRFFFFFFUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRFFFFFFUUURRRRRRRRR.png b/src/speedcubing/triggers/trigger_RRRFFFFFFUUURRRRRRRRR.png new file mode 100644 index 0000000..28452fa --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRFFFFFFUUURRRRRRRRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUULLL.png b/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUULLL.png new file mode 100644 index 0000000..b6382ea --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUULLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUULLLLLLLLL.png b/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUULLLLLLLLL.png new file mode 100644 index 0000000..e6879d7 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUULLLLLLLLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUURRR.png b/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUURRR.png new file mode 100644 index 0000000..eff15e9 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUURRRRRRRRR.png b/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUURRRRRRRRR.png new file mode 100644 index 0000000..fe0cc92 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRFFFFFFUUUUUUUUURRRRRRRRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUULLL.png b/src/speedcubing/triggers/trigger_RRRUUULLL.png new file mode 100644 index 0000000..04bc367 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUULLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUULLLLLLLLL.png b/src/speedcubing/triggers/trigger_RRRUUULLLLLLLLL.png new file mode 100644 index 0000000..6c2523c --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUULLLLLLLLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUURRR.png b/src/speedcubing/triggers/trigger_RRRUUURRR.png new file mode 100644 index 0000000..8063c8e --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUURRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUURRRLLL.png b/src/speedcubing/triggers/trigger_RRRUUURRRLLL.png new file mode 100644 index 0000000..bab618e --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUURRRLLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUURRRLLLLLLLLL.png b/src/speedcubing/triggers/trigger_RRRUUURRRLLLLLLLLL.png new file mode 100644 index 0000000..591e0d1 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUURRRLLLLLLLLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRR.png b/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRR.png new file mode 100644 index 0000000..b7cf3c7 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRR.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRRLLL.png b/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRRLLL.png new file mode 100644 index 0000000..c0ecc8b --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRRLLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRRLLLLLLLLL.png b/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRRLLLLLLLLL.png new file mode 100644 index 0000000..7826064 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUURRRRRRRRRLLLLLLLLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUUUUULLL.png b/src/speedcubing/triggers/trigger_RRRUUUUUULLL.png new file mode 100644 index 0000000..8225eab --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUUUUULLL.png | |||
| Binary files differ | |||
diff --git a/src/speedcubing/triggers/trigger_RRRUUUUUURRR.png b/src/speedcubing/triggers/trigger_RRRUUUUUURRR.png new file mode 100644 index 0000000..9e76c21 --- /dev/null +++ b/src/speedcubing/triggers/trigger_RRRUUUUUURRR.png | |||
| Binary files differ | |||
