Joakim Tufvegren
0ae20e7457
Make solo half of split keyboards (more) usable. ( #13523 )
...
* Make solo half of split keyboards (more) usable.
Using only one half of a split keyboard (that's using the split_common
framework to communicate) is not a great experience, since several read
timeouts per scan cycle cause an unusably slow scan rate.
This change blocks all split communication attempts for 500 ms
(configurable) after an error occurs, causing the scan rate to become at
least _more_ usable, but might need some tweaking to work fully on most
keyboards. One read timeout still needs to occur after the 500 ms has
passed, and if that timeout isn't low enough, some scan cycles may still
be too slow.
* Fix lint complaint.
* Require 25 consecutive comm errors to see comms as disconnected.
The number of max errors can be overridden by defining
`SPLIT_MAX_CONNECTION_ERRORS`.
* Add comments to new defines, and ability to disable disconnection check.
Also increase `SPLIT_MAX_CONNECTION_ERRORS` to 40, since it's divisible
by most relevant numbers for the description.
* Make lint happy ...again
* Only update `connection_check_timer` when needed.
* Add new defines to split keyboard documentation.
* Move connection timeout logic to transport.c, add `is_transport_connected`.
* Use split_common disconnection logic in matrix.c.
Instead of doing more or less the same thing twice.
* Move disconnection logic to `transport_master`.
Is a cleaner implementation, and causes the scan rate while disconnected
to increase instead of decrease.
* Lint fixes.
* Lower default `SERIAL_USART_TIMEOUT` to 20 ms.
The read timeout must be low enough to not cause exessively long scan
cycles when using a solo split half. 10 ms was determined from testing
to work fine even with the slowest defined baudrate of 19200 (5 ms was
too low for that case), so 20 ms should be fine for most cases.
* Remove `SERIAL_USART_TIMEOUT` from ergodox_infinity/config.h
Was somewhat mistakenly included in an earlier PR.
* Fix building with `USE_I2C`.
* Reduce built firmware size.
Not really sure why this works, the idea was taken from tzarc's work on
split disconnection.
* Tweak and improve opt-out for split disconnection logic.
There are now two ways to opt out from this feature:
* Set `SPLIT_MAX_CONNECTION_ERRORS` to 0. This will completely disable
the connection status checks (also affects the slave matrix reset logic in
matrix.c, though).
* Set `SPLIT_CONNECTION_CHECK_TIMEOUT` to 0. This will only disable the
communication throttling while disconnected. Will make the firmware
smaller.
* Make split disconnection logic work with custom transports.
Includes a fallback implementation for keyboards using a custom
split_util.c but not a custom matrix.c (currently no such keyboard seems
to be merged, though).
* Remove unnecessary include of timer.h
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Joel Challis <git@zvecr.com>
2021-08-22 10:51:17 +10:00
..
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-19 11:13:00 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:44:50 +00:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-19 11:32:23 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-15 15:27:25 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-09 08:28:51 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-13 18:21:40 +00:00
2021-08-22 09:46:35 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-09 12:14:22 -07:00
2021-08-16 06:51:13 +10:00
2021-08-09 12:14:22 -07:00
2021-08-16 06:51:13 +10:00
2021-08-09 12:14:22 -07:00
2021-08-06 23:59:56 -07:00
2021-08-09 12:14:22 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 23:33:30 +01:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-19 00:33:59 +00:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-13 19:27:20 +00:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-20 13:14:35 +00:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-14 00:01:38 +00:00
2021-08-13 19:30:22 +00:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-12 09:18:18 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-13 14:15:58 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-14 23:19:50 +10:00
2021-08-06 23:59:56 -07:00
2021-08-20 04:22:05 +00:00
2021-08-06 23:59:56 -07:00
2021-08-13 19:29:21 +00:00
2021-08-22 09:46:35 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-12 06:59:07 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-19 15:41:40 +00:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-09 19:46:18 +01:00
2021-08-22 10:51:17 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 23:33:30 +01:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-19 09:40:28 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-14 08:42:59 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-20 04:36:09 +00:00
2021-08-16 06:51:13 +10:00
2021-08-09 14:04:40 -07:00
2021-08-06 23:59:56 -07:00
2021-08-19 16:31:49 +00:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-15 11:02:46 +10:00
2021-08-06 23:59:56 -07:00
2021-08-14 09:10:32 +00:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 09:44:57 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-09 19:46:18 +01:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-22 09:46:35 +10:00
2021-08-16 06:51:13 +10:00
2021-08-15 19:41:02 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-21 13:34:44 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-19 15:45:47 +09:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-09 12:14:22 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-11 00:31:28 +00:00
2021-08-18 09:54:41 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-19 20:02:07 +01:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-13 21:54:38 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-07-19 09:50:55 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-19 11:32:23 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-19 11:32:23 -07:00
2021-08-16 06:51:13 +10:00
2021-08-22 09:46:35 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-21 13:34:44 -07:00
2021-08-06 23:59:56 -07:00
2021-08-18 09:54:41 +10:00
2021-08-19 11:32:23 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-13 19:28:35 +00:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-22 09:46:35 +10:00
2021-08-16 06:51:13 +10:00
2021-08-19 17:14:07 +00:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-13 11:47:57 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-12 13:03:40 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-18 06:44:18 +10:00
2021-08-06 23:59:56 -07:00
2021-08-18 10:34:43 -07:00
2021-08-14 06:36:00 +00:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-18 04:49:40 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-19 11:32:23 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-07 15:18:06 +01:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 23:33:30 +01:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-19 11:44:47 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 20:16:47 +00:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-19 16:53:20 +01:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-17 22:27:02 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-13 18:53:04 +00:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-18 09:54:41 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-21 14:13:02 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-18 09:54:41 +10:00
2021-08-18 09:54:41 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-17 10:31:34 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-18 09:54:41 +10:00
2021-08-18 09:54:41 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-14 14:59:20 +00:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-14 09:03:03 +00:00
2021-08-21 13:34:44 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 17:01:52 -07:00
2021-08-22 09:46:35 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-12 09:18:18 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 10:18:27 +00:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-19 15:42:23 +00:00
2021-08-19 15:42:23 +00:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-19 11:32:23 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-20 21:14:23 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-11 09:48:25 -07:00
2021-08-11 09:48:25 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-19 11:32:23 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-09 21:15:07 +00:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-11 09:48:25 -07:00
2021-08-06 23:59:56 -07:00
2021-08-11 00:24:34 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 13:50:30 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-18 08:51:22 +00:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-19 18:59:06 +00:00
2021-07-24 15:39:35 +00:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-20 04:27:09 +00:00
2021-08-12 13:03:40 -07:00
2021-08-16 06:51:13 +10:00
2021-08-12 08:50:12 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-21 13:34:44 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-12 07:43:01 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-18 21:52:41 +01:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-11 09:48:25 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-08 23:17:46 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-18 09:54:41 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-19 11:32:23 -07:00
2021-08-16 06:51:13 +10:00
2021-08-07 15:18:06 +01:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-14 01:15:07 +00:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-09 19:46:18 +01:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-19 16:29:30 +00:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00
2021-08-16 06:51:13 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-16 06:51:13 +10:00