diff --git a/.github/workflows/build_and_functional_tests.yml b/.github/workflows/build_and_functional_tests.yml index 9161ac60..89d14856 100644 --- a/.github/workflows/build_and_functional_tests.yml +++ b/.github/workflows/build_and_functional_tests.yml @@ -10,6 +10,15 @@ name: Build and run functional tests using ragger through reusable workflow on: workflow_dispatch: + inputs: + golden_run: + type: choice + required: true + default: 'Raise an error (default)' + description: CI behavior if the test snaphots are different than expected. + options: + - 'Raise an error (default)' + - 'Open a PR' push: branches: - master @@ -29,3 +38,4 @@ jobs: uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_ragger_tests.yml@v1 with: download_app_binaries_artifact: compiled_app_binaries + regenerate_snapshots: ${{ inputs.golden_run == 'Open a PR' }} diff --git a/src/apdu/messages/get_public_key.c b/src/apdu/messages/get_public_key.c index 966de26d..18f031fc 100644 --- a/src/apdu/messages/get_public_key.c +++ b/src/apdu/messages/get_public_key.c @@ -52,8 +52,10 @@ void on_address_confirmed() { G_io_apdu_buffer[tx++] = 0x00; // Send back the response, do not restart the event loop io_exchange(CHANNEL_APDU | IO_RETURN_AFTER_TX, tx); +#ifndef HAVE_NBGL // Display back the original UX display_idle_menu(); +#endif } void on_address_rejected() { @@ -61,8 +63,10 @@ void on_address_rejected() { G_io_apdu_buffer[1] = 0x85; // Send back the response, do not restart the event loop io_exchange(CHANNEL_APDU | IO_RETURN_AFTER_TX, 2); +#ifndef HAVE_NBGL // Display back the original UX display_idle_menu(); +#endif } void handle_get_public_key(uint8_t p1, diff --git a/src/apdu/messages/sign_transaction.c b/src/apdu/messages/sign_transaction.c index 7da69319..45256b6e 100644 --- a/src/apdu/messages/sign_transaction.c +++ b/src/apdu/messages/sign_transaction.c @@ -141,8 +141,10 @@ void sign_transaction() { return; } +#ifndef HAVE_NBGL // Display back the original UX display_idle_menu(); +#endif } void reject_transaction() { @@ -164,7 +166,9 @@ void reject_transaction() { // Reset transaction context and display back the original UX reset_transaction_context(); +#ifndef HAVE_NBGL display_idle_menu(); +#endif } bool is_first(uint8_t p1) { diff --git a/src/ui/transaction/review_menu_nbgl.c b/src/ui/transaction/review_menu_nbgl.c index fe3b48b7..9da8e84b 100644 --- a/src/ui/transaction/review_menu_nbgl.c +++ b/src/ui/transaction/review_menu_nbgl.c @@ -77,7 +77,7 @@ void display_review_menu(parseResult_t *transaction_param, resultAction_t callba &C_icon_XRP_64px, "Review transaction", NULL, - "Sign transaction", + "Sign transaction?", reviewChoice); } #endif // HAVE_NBGL diff --git a/tests/functional_test.py b/tests/functional_test.py index 5ff899de..4d1232fe 100755 --- a/tests/functional_test.py +++ b/tests/functional_test.py @@ -15,13 +15,16 @@ from ragger.error import ExceptionRAPDU from .xrp import XRPClient, Errors from .utils import DEFAULT_PATH, DEFAULT_BIP32_PATH -from .utils import ROOT_SCREENSHOT_PATH, verify_ecdsa_secp256k1, verify_version +from .utils import verify_ecdsa_secp256k1, verify_version -def test_app_configuration(backend: BackendInterface, firmware: Firmware, navigator: Navigator): +def test_app_configuration(backend: BackendInterface, + firmware: Firmware, + navigator: Navigator, + default_screenshot_path: Path): xrp = XRPClient(backend, firmware, navigator) version = xrp.get_configuration() - verify_version(version) + verify_version(default_screenshot_path, version) def test_sign_too_large(backend: BackendInterface, firmware: Firmware, navigator: Navigator): @@ -70,11 +73,10 @@ def test_get_public_key_no_confirm(backend: BackendInterface, def test_get_public_key_confirm(backend: BackendInterface, firmware: Firmware, navigator: Navigator, - scenario_navigator: NavigateWithScenario, - test_name: str): + scenario_navigator: NavigateWithScenario): xrp = XRPClient(backend, firmware, navigator) with xrp.get_pubkey_confirm(): - scenario_navigator.address_review_approve(ROOT_SCREENSHOT_PATH, test_name) + scenario_navigator.address_review_approve() # Check the status (Asynchronous) reply = xrp.get_async_response() @@ -84,13 +86,12 @@ def test_get_public_key_confirm(backend: BackendInterface, def test_get_public_key_reject(backend: BackendInterface, firmware: Firmware, navigator: Navigator, - scenario_navigator: NavigateWithScenario, - test_name: str): + scenario_navigator: NavigateWithScenario): xrp = XRPClient(backend, firmware, navigator) with pytest.raises(ExceptionRAPDU) as err: with xrp.get_pubkey_confirm(): - scenario_navigator.address_review_reject(ROOT_SCREENSHOT_PATH, test_name) + scenario_navigator.address_review_reject() # Assert we have received a refusal assert err.value.status == Errors.SW_WRONG_ADDRESS @@ -100,8 +101,7 @@ def test_get_public_key_reject(backend: BackendInterface, def test_sign_reject(backend: BackendInterface, firmware: Firmware, navigator: Navigator, - scenario_navigator: NavigateWithScenario, - test_name: str): + scenario_navigator: NavigateWithScenario): xrp = XRPClient(backend, firmware, navigator) # pragma pylint: disable=line-too-long @@ -115,7 +115,7 @@ def test_sign_reject(backend: BackendInterface, # Send the APDU (Asynchronous) with pytest.raises(ExceptionRAPDU) as err: with xrp.sign(DEFAULT_BIP32_PATH + message): - scenario_navigator.review_reject(ROOT_SCREENSHOT_PATH, test_name) + scenario_navigator.review_reject() # Assert we have received a refusal assert err.value.status == Errors.SW_WRONG_ADDRESS @@ -128,7 +128,7 @@ def test_sign_valid_tx(backend: BackendInterface, scenario_navigator: NavigateWithScenario, raw_tx_path: str): if raw_tx_path.endswith("19-really-stupid-tx.raw"): - pytest.skip(f"skip invalid tx {raw_tx_path}") + pytest.skip(f"skip invalid tx from '{Path(raw_tx_path).stem}'") xrp = XRPClient(backend, firmware, navigator) @@ -144,7 +144,7 @@ def test_sign_valid_tx(backend: BackendInterface, else: text = "^Hold to sign$" with xrp.sign(DEFAULT_BIP32_PATH + tx): - scenario_navigator.review_approve(ROOT_SCREENSHOT_PATH, snapdir, text) + scenario_navigator.review_approve(test_name=snapdir, custom_screen_text=text) reply = xrp.get_async_response() assert reply and reply.status == Errors.SW_SUCCESS diff --git a/tests/snapshots/flex/01-payment/01-basic/00000.png b/tests/snapshots/flex/01-payment/01-basic/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/01-basic/00000.png and b/tests/snapshots/flex/01-payment/01-basic/00000.png differ diff --git a/tests/snapshots/flex/01-payment/01-basic/00001.png b/tests/snapshots/flex/01-payment/01-basic/00001.png index 109b6826..ad485a86 100644 Binary files a/tests/snapshots/flex/01-payment/01-basic/00001.png and b/tests/snapshots/flex/01-payment/01-basic/00001.png differ diff --git a/tests/snapshots/flex/01-payment/01-basic/00002.png b/tests/snapshots/flex/01-payment/01-basic/00002.png index b2459a71..68d5443e 100644 Binary files a/tests/snapshots/flex/01-payment/01-basic/00002.png and b/tests/snapshots/flex/01-payment/01-basic/00002.png differ diff --git a/tests/snapshots/flex/01-payment/01-basic/00003.png b/tests/snapshots/flex/01-payment/01-basic/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/01-basic/00003.png and b/tests/snapshots/flex/01-payment/01-basic/00003.png differ diff --git a/tests/snapshots/flex/01-payment/02-destination-tag/00000.png b/tests/snapshots/flex/01-payment/02-destination-tag/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/02-destination-tag/00000.png and b/tests/snapshots/flex/01-payment/02-destination-tag/00000.png differ diff --git a/tests/snapshots/flex/01-payment/02-destination-tag/00001.png b/tests/snapshots/flex/01-payment/02-destination-tag/00001.png index eeba8d8d..5688e6be 100644 Binary files a/tests/snapshots/flex/01-payment/02-destination-tag/00001.png and b/tests/snapshots/flex/01-payment/02-destination-tag/00001.png differ diff --git a/tests/snapshots/flex/01-payment/02-destination-tag/00002.png b/tests/snapshots/flex/01-payment/02-destination-tag/00002.png index a2513f9b..2b3af692 100644 Binary files a/tests/snapshots/flex/01-payment/02-destination-tag/00002.png and b/tests/snapshots/flex/01-payment/02-destination-tag/00002.png differ diff --git a/tests/snapshots/flex/01-payment/02-destination-tag/00003.png b/tests/snapshots/flex/01-payment/02-destination-tag/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/02-destination-tag/00003.png and b/tests/snapshots/flex/01-payment/02-destination-tag/00003.png differ diff --git a/tests/snapshots/flex/01-payment/03-source-tag/00000.png b/tests/snapshots/flex/01-payment/03-source-tag/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/03-source-tag/00000.png and b/tests/snapshots/flex/01-payment/03-source-tag/00000.png differ diff --git a/tests/snapshots/flex/01-payment/03-source-tag/00001.png b/tests/snapshots/flex/01-payment/03-source-tag/00001.png index c09af355..bc31734a 100644 Binary files a/tests/snapshots/flex/01-payment/03-source-tag/00001.png and b/tests/snapshots/flex/01-payment/03-source-tag/00001.png differ diff --git a/tests/snapshots/flex/01-payment/03-source-tag/00002.png b/tests/snapshots/flex/01-payment/03-source-tag/00002.png index a2513f9b..2b3af692 100644 Binary files a/tests/snapshots/flex/01-payment/03-source-tag/00002.png and b/tests/snapshots/flex/01-payment/03-source-tag/00002.png differ diff --git a/tests/snapshots/flex/01-payment/03-source-tag/00003.png b/tests/snapshots/flex/01-payment/03-source-tag/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/03-source-tag/00003.png and b/tests/snapshots/flex/01-payment/03-source-tag/00003.png differ diff --git a/tests/snapshots/flex/01-payment/04-both-tags/00000.png b/tests/snapshots/flex/01-payment/04-both-tags/00000.png index 818274c0..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/04-both-tags/00000.png and b/tests/snapshots/flex/01-payment/04-both-tags/00000.png differ diff --git a/tests/snapshots/flex/01-payment/04-both-tags/00001.png b/tests/snapshots/flex/01-payment/04-both-tags/00001.png index 13e1f277..5da0840b 100644 Binary files a/tests/snapshots/flex/01-payment/04-both-tags/00001.png and b/tests/snapshots/flex/01-payment/04-both-tags/00001.png differ diff --git a/tests/snapshots/flex/01-payment/04-both-tags/00002.png b/tests/snapshots/flex/01-payment/04-both-tags/00002.png index 6a711560..18c3c144 100644 Binary files a/tests/snapshots/flex/01-payment/04-both-tags/00002.png and b/tests/snapshots/flex/01-payment/04-both-tags/00002.png differ diff --git a/tests/snapshots/flex/01-payment/04-both-tags/00003.png b/tests/snapshots/flex/01-payment/04-both-tags/00003.png index 8fc5c7b7..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/04-both-tags/00003.png and b/tests/snapshots/flex/01-payment/04-both-tags/00003.png differ diff --git a/tests/snapshots/flex/01-payment/04-both-tags/00004.png b/tests/snapshots/flex/01-payment/04-both-tags/00004.png index c7f0f6e7..be51a9d5 100644 Binary files a/tests/snapshots/flex/01-payment/04-both-tags/00004.png and b/tests/snapshots/flex/01-payment/04-both-tags/00004.png differ diff --git a/tests/snapshots/flex/01-payment/04-both-tags/00005.png b/tests/snapshots/flex/01-payment/04-both-tags/00005.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/01-payment/04-both-tags/00005.png and b/tests/snapshots/flex/01-payment/04-both-tags/00005.png differ diff --git a/tests/snapshots/flex/01-payment/04-both-tags/00006.png b/tests/snapshots/flex/01-payment/04-both-tags/00006.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/01-payment/04-both-tags/00006.png and /dev/null differ diff --git a/tests/snapshots/flex/01-payment/05-invoice-id/00000.png b/tests/snapshots/flex/01-payment/05-invoice-id/00000.png index 818274c0..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/05-invoice-id/00000.png and b/tests/snapshots/flex/01-payment/05-invoice-id/00000.png differ diff --git a/tests/snapshots/flex/01-payment/05-invoice-id/00001.png b/tests/snapshots/flex/01-payment/05-invoice-id/00001.png index 35fa076b..20bb4ad3 100644 Binary files a/tests/snapshots/flex/01-payment/05-invoice-id/00001.png and b/tests/snapshots/flex/01-payment/05-invoice-id/00001.png differ diff --git a/tests/snapshots/flex/01-payment/05-invoice-id/00002.png b/tests/snapshots/flex/01-payment/05-invoice-id/00002.png index 215f993b..18c3c144 100644 Binary files a/tests/snapshots/flex/01-payment/05-invoice-id/00002.png and b/tests/snapshots/flex/01-payment/05-invoice-id/00002.png differ diff --git a/tests/snapshots/flex/01-payment/05-invoice-id/00003.png b/tests/snapshots/flex/01-payment/05-invoice-id/00003.png index 8fc5c7b7..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/05-invoice-id/00003.png and b/tests/snapshots/flex/01-payment/05-invoice-id/00003.png differ diff --git a/tests/snapshots/flex/01-payment/05-invoice-id/00004.png b/tests/snapshots/flex/01-payment/05-invoice-id/00004.png index c7f0f6e7..be51a9d5 100644 Binary files a/tests/snapshots/flex/01-payment/05-invoice-id/00004.png and b/tests/snapshots/flex/01-payment/05-invoice-id/00004.png differ diff --git a/tests/snapshots/flex/01-payment/05-invoice-id/00005.png b/tests/snapshots/flex/01-payment/05-invoice-id/00005.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/01-payment/05-invoice-id/00005.png and b/tests/snapshots/flex/01-payment/05-invoice-id/00005.png differ diff --git a/tests/snapshots/flex/01-payment/05-invoice-id/00006.png b/tests/snapshots/flex/01-payment/05-invoice-id/00006.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/01-payment/05-invoice-id/00006.png and /dev/null differ diff --git a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00000.png b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00000.png index 1a63e9a1..d9177c78 100644 Binary files a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00000.png and b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00000.png differ diff --git a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00001.png b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00001.png index 4b4c94ed..cd0582ec 100644 Binary files a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00001.png and b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00001.png differ diff --git a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00002.png b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00002.png index 8da026ea..2f6413fc 100644 Binary files a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00002.png and b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00002.png differ diff --git a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00003.png b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00003.png index d9c5c58a..1b11a822 100644 Binary files a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00003.png and b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00003.png differ diff --git a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00004.png b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00004.png index c6480850..9bf977ec 100644 Binary files a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00004.png and b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00004.png differ diff --git a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00005.png b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00005.png index ff21daf7..be51a9d5 100644 Binary files a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00005.png and b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00005.png differ diff --git a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00006.png b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00006.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00006.png and b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00006.png differ diff --git a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00007.png b/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00007.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/01-payment/06-invoice-txn-ids-tags/00007.png and /dev/null differ diff --git a/tests/snapshots/flex/01-payment/07-issued-currency/00000.png b/tests/snapshots/flex/01-payment/07-issued-currency/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/07-issued-currency/00000.png and b/tests/snapshots/flex/01-payment/07-issued-currency/00000.png differ diff --git a/tests/snapshots/flex/01-payment/07-issued-currency/00001.png b/tests/snapshots/flex/01-payment/07-issued-currency/00001.png index 8d79807e..2b44fac1 100644 Binary files a/tests/snapshots/flex/01-payment/07-issued-currency/00001.png and b/tests/snapshots/flex/01-payment/07-issued-currency/00001.png differ diff --git a/tests/snapshots/flex/01-payment/07-issued-currency/00002.png b/tests/snapshots/flex/01-payment/07-issued-currency/00002.png index ba6af995..1b683743 100644 Binary files a/tests/snapshots/flex/01-payment/07-issued-currency/00002.png and b/tests/snapshots/flex/01-payment/07-issued-currency/00002.png differ diff --git a/tests/snapshots/flex/01-payment/07-issued-currency/00003.png b/tests/snapshots/flex/01-payment/07-issued-currency/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/07-issued-currency/00003.png and b/tests/snapshots/flex/01-payment/07-issued-currency/00003.png differ diff --git a/tests/snapshots/flex/01-payment/08-issued-currency-max/00000.png b/tests/snapshots/flex/01-payment/08-issued-currency-max/00000.png index 818274c0..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/08-issued-currency-max/00000.png and b/tests/snapshots/flex/01-payment/08-issued-currency-max/00000.png differ diff --git a/tests/snapshots/flex/01-payment/08-issued-currency-max/00001.png b/tests/snapshots/flex/01-payment/08-issued-currency-max/00001.png index d085517b..c4f6e044 100644 Binary files a/tests/snapshots/flex/01-payment/08-issued-currency-max/00001.png and b/tests/snapshots/flex/01-payment/08-issued-currency-max/00001.png differ diff --git a/tests/snapshots/flex/01-payment/08-issued-currency-max/00002.png b/tests/snapshots/flex/01-payment/08-issued-currency-max/00002.png index 0b88788d..5ef2f38d 100644 Binary files a/tests/snapshots/flex/01-payment/08-issued-currency-max/00002.png and b/tests/snapshots/flex/01-payment/08-issued-currency-max/00002.png differ diff --git a/tests/snapshots/flex/01-payment/08-issued-currency-max/00003.png b/tests/snapshots/flex/01-payment/08-issued-currency-max/00003.png index 8fc5c7b7..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/08-issued-currency-max/00003.png and b/tests/snapshots/flex/01-payment/08-issued-currency-max/00003.png differ diff --git a/tests/snapshots/flex/01-payment/08-issued-currency-max/00004.png b/tests/snapshots/flex/01-payment/08-issued-currency-max/00004.png index c7f0f6e7..be51a9d5 100644 Binary files a/tests/snapshots/flex/01-payment/08-issued-currency-max/00004.png and b/tests/snapshots/flex/01-payment/08-issued-currency-max/00004.png differ diff --git a/tests/snapshots/flex/01-payment/08-issued-currency-max/00005.png b/tests/snapshots/flex/01-payment/08-issued-currency-max/00005.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/01-payment/08-issued-currency-max/00005.png and b/tests/snapshots/flex/01-payment/08-issued-currency-max/00005.png differ diff --git a/tests/snapshots/flex/01-payment/08-issued-currency-max/00006.png b/tests/snapshots/flex/01-payment/08-issued-currency-max/00006.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/01-payment/08-issued-currency-max/00006.png and /dev/null differ diff --git a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00000.png b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00000.png and b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00000.png differ diff --git a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00001.png b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00001.png index 8c3ab4d8..0617f708 100644 Binary files a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00001.png and b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00001.png differ diff --git a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00002.png b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00002.png index 379f021a..2686fae9 100644 Binary files a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00002.png and b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00002.png differ diff --git a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00003.png b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00003.png index 6bf5a4a7..c8ca49c2 100644 Binary files a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00003.png and b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00003.png differ diff --git a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00004.png b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00004.png and b/tests/snapshots/flex/01-payment/09-issued-currency-min-partial/00004.png differ diff --git a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00000.png b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00000.png index 1a63e9a1..d9177c78 100644 Binary files a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00000.png and b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00000.png differ diff --git a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00001.png b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00001.png index fd5aa1af..61fbcab9 100644 Binary files a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00001.png and b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00001.png differ diff --git a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00002.png b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00002.png index afed0440..a4cd9879 100644 Binary files a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00002.png and b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00002.png differ diff --git a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00003.png b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00003.png index 008e8444..5512ce89 100644 Binary files a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00003.png and b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00003.png differ diff --git a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00004.png b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00004.png index c6480850..9bf977ec 100644 Binary files a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00004.png and b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00004.png differ diff --git a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00005.png b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00005.png index ff21daf7..be51a9d5 100644 Binary files a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00005.png and b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00005.png differ diff --git a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00006.png b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00006.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00006.png and b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00006.png differ diff --git a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00007.png b/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00007.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/01-payment/10-issued-currency-quality-partial/00007.png and /dev/null differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00000.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00000.png index 19aa9788..3d4e76fa 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00000.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00000.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00001.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00001.png index 5b60fe3a..575e6832 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00001.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00001.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00002.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00002.png index 6a63c76b..9690643e 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00002.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00002.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00003.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00003.png index 3cbc43a8..65077a2c 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00003.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00003.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00004.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00004.png index 1738ad6e..120092f1 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00004.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00004.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00005.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00005.png index e115a0f5..6cb4748d 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00005.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00005.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00006.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00006.png index 18c0ed6f..50ed8828 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00006.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00006.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00007.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00007.png index 0952fd7d..4833c470 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00007.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00007.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00008.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00008.png index 36cccf0d..cabaf185 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00008.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00008.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00009.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00009.png index 56fb2ad5..be51a9d5 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00009.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00009.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00010.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00010.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00010.png and b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00010.png differ diff --git a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00011.png b/tests/snapshots/flex/01-payment/11-issued-currency-paths/00011.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/01-payment/11-issued-currency-paths/00011.png and /dev/null differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00000.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00000.png index 5ede72d8..f9e2943b 100644 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00000.png and b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00000.png differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00001.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00001.png index 3837ac89..55594335 100644 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00001.png and b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00001.png differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00002.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00002.png index d6e0b727..100acdb9 100644 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00002.png and b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00002.png differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00003.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00003.png index 7d126e47..8ff3e3b5 100644 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00003.png and b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00003.png differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00004.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00004.png index e045fc77..3dc6046e 100644 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00004.png and b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00004.png differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00005.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00005.png index 9ac290e0..f2a31b74 100644 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00005.png and b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00005.png differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00006.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00006.png index 337ad89c..be51a9d5 100644 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00006.png and b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00006.png differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00007.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00007.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00007.png and b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00007.png differ diff --git a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00008.png b/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00008.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/01-payment/12-issued-currency-conversion/00008.png and /dev/null differ diff --git a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00000.png b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00000.png and b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00000.png differ diff --git a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00001.png b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00001.png index 827b769a..6149def6 100644 Binary files a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00001.png and b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00001.png differ diff --git a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00002.png b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00002.png index c844028a..22113d36 100644 Binary files a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00002.png and b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00002.png differ diff --git a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00003.png b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00003.png index 8fc5c7b7..c8ca49c2 100644 Binary files a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00003.png and b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00003.png differ diff --git a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00004.png b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00004.png and b/tests/snapshots/flex/01-payment/13-issued-currency-e-notation/00004.png differ diff --git a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00000.png b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00000.png and b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00000.png differ diff --git a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00001.png b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00001.png index a4bf62e4..55b501cf 100644 Binary files a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00001.png and b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00001.png differ diff --git a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00002.png b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00002.png index b3566ee8..aaf9e297 100644 Binary files a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00002.png and b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00002.png differ diff --git a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00003.png b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00003.png index 708bfe4e..9f2836aa 100644 Binary files a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00003.png and b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00003.png differ diff --git a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00004.png b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00004.png and b/tests/snapshots/flex/01-payment/14-issued-currency-non-standard/00004.png differ diff --git a/tests/snapshots/flex/01-payment/15-issue-abc-currency/00000.png b/tests/snapshots/flex/01-payment/15-issue-abc-currency/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/15-issue-abc-currency/00000.png and b/tests/snapshots/flex/01-payment/15-issue-abc-currency/00000.png differ diff --git a/tests/snapshots/flex/01-payment/15-issue-abc-currency/00001.png b/tests/snapshots/flex/01-payment/15-issue-abc-currency/00001.png index 75aecc79..a54c5a6e 100644 Binary files a/tests/snapshots/flex/01-payment/15-issue-abc-currency/00001.png and b/tests/snapshots/flex/01-payment/15-issue-abc-currency/00001.png differ diff --git a/tests/snapshots/flex/01-payment/15-issue-abc-currency/00002.png b/tests/snapshots/flex/01-payment/15-issue-abc-currency/00002.png index f8cd3d0d..78aa0b42 100644 Binary files a/tests/snapshots/flex/01-payment/15-issue-abc-currency/00002.png and b/tests/snapshots/flex/01-payment/15-issue-abc-currency/00002.png differ diff --git a/tests/snapshots/flex/01-payment/15-issue-abc-currency/00003.png b/tests/snapshots/flex/01-payment/15-issue-abc-currency/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/15-issue-abc-currency/00003.png and b/tests/snapshots/flex/01-payment/15-issue-abc-currency/00003.png differ diff --git a/tests/snapshots/flex/01-payment/16-memos/00000.png b/tests/snapshots/flex/01-payment/16-memos/00000.png index ed3fe0f9..e3f9cf5e 100644 Binary files a/tests/snapshots/flex/01-payment/16-memos/00000.png and b/tests/snapshots/flex/01-payment/16-memos/00000.png differ diff --git a/tests/snapshots/flex/01-payment/16-memos/00001.png b/tests/snapshots/flex/01-payment/16-memos/00001.png index c980a7f5..e388e7bf 100644 Binary files a/tests/snapshots/flex/01-payment/16-memos/00001.png and b/tests/snapshots/flex/01-payment/16-memos/00001.png differ diff --git a/tests/snapshots/flex/01-payment/16-memos/00002.png b/tests/snapshots/flex/01-payment/16-memos/00002.png index d61d3d4a..74628be2 100644 Binary files a/tests/snapshots/flex/01-payment/16-memos/00002.png and b/tests/snapshots/flex/01-payment/16-memos/00002.png differ diff --git a/tests/snapshots/flex/01-payment/16-memos/00003.png b/tests/snapshots/flex/01-payment/16-memos/00003.png index 8da92973..609b7088 100644 Binary files a/tests/snapshots/flex/01-payment/16-memos/00003.png and b/tests/snapshots/flex/01-payment/16-memos/00003.png differ diff --git a/tests/snapshots/flex/01-payment/16-memos/00004.png b/tests/snapshots/flex/01-payment/16-memos/00004.png index a90fb99f..2235992c 100644 Binary files a/tests/snapshots/flex/01-payment/16-memos/00004.png and b/tests/snapshots/flex/01-payment/16-memos/00004.png differ diff --git a/tests/snapshots/flex/01-payment/16-memos/00005.png b/tests/snapshots/flex/01-payment/16-memos/00005.png index 87b9c859..05b329fe 100644 Binary files a/tests/snapshots/flex/01-payment/16-memos/00005.png and b/tests/snapshots/flex/01-payment/16-memos/00005.png differ diff --git a/tests/snapshots/flex/01-payment/16-memos/00006.png b/tests/snapshots/flex/01-payment/16-memos/00006.png index 9ac60e2f..1afaccc5 100644 Binary files a/tests/snapshots/flex/01-payment/16-memos/00006.png and b/tests/snapshots/flex/01-payment/16-memos/00006.png differ diff --git a/tests/snapshots/flex/01-payment/16-memos/00007.png b/tests/snapshots/flex/01-payment/16-memos/00007.png index a66c38dc..6b88343b 100644 Binary files a/tests/snapshots/flex/01-payment/16-memos/00007.png and b/tests/snapshots/flex/01-payment/16-memos/00007.png differ diff --git a/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00000.png b/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00000.png and b/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00000.png differ diff --git a/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00001.png b/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00001.png index 109b6826..99e55037 100644 Binary files a/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00001.png and b/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00001.png differ diff --git a/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00002.png b/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00002.png index c9b19240..68d5443e 100644 Binary files a/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00002.png and b/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00002.png differ diff --git a/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00003.png b/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00003.png and b/tests/snapshots/flex/01-payment/17-multi-sign-parallel/00003.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00000.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00000.png index f3c5d905..e3f9cf5e 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00000.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00000.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00001.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00001.png index 56771631..e9f93403 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00001.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00001.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00002.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00002.png index a4b69b75..35d5f1c2 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00002.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00002.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00003.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00003.png index 743e1f7a..db43ec02 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00003.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00003.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00004.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00004.png index 4de6d418..31d98e5d 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00004.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00004.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00005.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00005.png index f3554962..9da12981 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00005.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00005.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00006.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00006.png index 67db59f1..b8daa57c 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00006.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00006.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00007.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00007.png index 97d5f5f4..6b88343b 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00007.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00007.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00008.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00008.png index 25d6754e..be51a9d5 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00008.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00008.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00009.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00009.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00009.png and b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00009.png differ diff --git a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00010.png b/tests/snapshots/flex/01-payment/18-multi-sign-serial/00010.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/01-payment/18-multi-sign-serial/00010.png and /dev/null differ diff --git a/tests/snapshots/flex/02-set-regular-key/01-basic/00000.png b/tests/snapshots/flex/02-set-regular-key/01-basic/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/01-basic/00000.png and b/tests/snapshots/flex/02-set-regular-key/01-basic/00000.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/01-basic/00001.png b/tests/snapshots/flex/02-set-regular-key/01-basic/00001.png index aa4389cd..3f3e14db 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/01-basic/00001.png and b/tests/snapshots/flex/02-set-regular-key/01-basic/00001.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/01-basic/00002.png b/tests/snapshots/flex/02-set-regular-key/01-basic/00002.png index 7f472df5..331c83aa 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/01-basic/00002.png and b/tests/snapshots/flex/02-set-regular-key/01-basic/00002.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/01-basic/00003.png b/tests/snapshots/flex/02-set-regular-key/01-basic/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/01-basic/00003.png and b/tests/snapshots/flex/02-set-regular-key/01-basic/00003.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/02-delete/00000.png b/tests/snapshots/flex/02-set-regular-key/02-delete/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/02-delete/00000.png and b/tests/snapshots/flex/02-set-regular-key/02-delete/00000.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/02-delete/00001.png b/tests/snapshots/flex/02-set-regular-key/02-delete/00001.png index aa4389cd..a649933c 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/02-delete/00001.png and b/tests/snapshots/flex/02-set-regular-key/02-delete/00001.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/02-delete/00002.png b/tests/snapshots/flex/02-set-regular-key/02-delete/00002.png index 187e2d04..0a3ab30a 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/02-delete/00002.png and b/tests/snapshots/flex/02-set-regular-key/02-delete/00002.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/02-delete/00003.png b/tests/snapshots/flex/02-set-regular-key/02-delete/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/02-delete/00003.png and b/tests/snapshots/flex/02-set-regular-key/02-delete/00003.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/02-delete/00004.png b/tests/snapshots/flex/02-set-regular-key/02-delete/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/02-delete/00004.png and b/tests/snapshots/flex/02-set-regular-key/02-delete/00004.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/02-delete/00005.png b/tests/snapshots/flex/02-set-regular-key/02-delete/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/02-set-regular-key/02-delete/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00000.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00000.png index 5ede72d8..f9e2943b 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00000.png and b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00000.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00001.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00001.png index da667fa3..28315c22 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00001.png and b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00001.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00002.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00002.png index 2f57f3ab..34a17222 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00002.png and b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00002.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00003.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00003.png index b35a05bb..dbbdd75e 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00003.png and b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00003.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00004.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00004.png index 3fed1a2b..46086fca 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00004.png and b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00004.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00005.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00005.png index ede1c18d..f2a31b74 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00005.png and b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00005.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00006.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00006.png index 337ad89c..be51a9d5 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00006.png and b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00006.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00007.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00007.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00007.png and b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00007.png differ diff --git a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00008.png b/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00008.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/02-set-regular-key/03-all-common-fields/00008.png and /dev/null differ diff --git a/tests/snapshots/flex/03-escrow-create/01-finish-after/00000.png b/tests/snapshots/flex/03-escrow-create/01-finish-after/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/03-escrow-create/01-finish-after/00000.png and b/tests/snapshots/flex/03-escrow-create/01-finish-after/00000.png differ diff --git a/tests/snapshots/flex/03-escrow-create/01-finish-after/00001.png b/tests/snapshots/flex/03-escrow-create/01-finish-after/00001.png index 0f743a4d..88de258b 100644 Binary files a/tests/snapshots/flex/03-escrow-create/01-finish-after/00001.png and b/tests/snapshots/flex/03-escrow-create/01-finish-after/00001.png differ diff --git a/tests/snapshots/flex/03-escrow-create/01-finish-after/00002.png b/tests/snapshots/flex/03-escrow-create/01-finish-after/00002.png index 5f8c9ed6..864d5e76 100644 Binary files a/tests/snapshots/flex/03-escrow-create/01-finish-after/00002.png and b/tests/snapshots/flex/03-escrow-create/01-finish-after/00002.png differ diff --git a/tests/snapshots/flex/03-escrow-create/01-finish-after/00003.png b/tests/snapshots/flex/03-escrow-create/01-finish-after/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/03-escrow-create/01-finish-after/00003.png and b/tests/snapshots/flex/03-escrow-create/01-finish-after/00003.png differ diff --git a/tests/snapshots/flex/03-escrow-create/02-cancel-after/00000.png b/tests/snapshots/flex/03-escrow-create/02-cancel-after/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/03-escrow-create/02-cancel-after/00000.png and b/tests/snapshots/flex/03-escrow-create/02-cancel-after/00000.png differ diff --git a/tests/snapshots/flex/03-escrow-create/02-cancel-after/00001.png b/tests/snapshots/flex/03-escrow-create/02-cancel-after/00001.png index 05d98f3a..e1f5c7da 100644 Binary files a/tests/snapshots/flex/03-escrow-create/02-cancel-after/00001.png and b/tests/snapshots/flex/03-escrow-create/02-cancel-after/00001.png differ diff --git a/tests/snapshots/flex/03-escrow-create/02-cancel-after/00002.png b/tests/snapshots/flex/03-escrow-create/02-cancel-after/00002.png index 5f8c9ed6..864d5e76 100644 Binary files a/tests/snapshots/flex/03-escrow-create/02-cancel-after/00002.png and b/tests/snapshots/flex/03-escrow-create/02-cancel-after/00002.png differ diff --git a/tests/snapshots/flex/03-escrow-create/02-cancel-after/00003.png b/tests/snapshots/flex/03-escrow-create/02-cancel-after/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/03-escrow-create/02-cancel-after/00003.png and b/tests/snapshots/flex/03-escrow-create/02-cancel-after/00003.png differ diff --git a/tests/snapshots/flex/03-escrow-create/03-both/00000.png b/tests/snapshots/flex/03-escrow-create/03-both/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/03-escrow-create/03-both/00000.png and b/tests/snapshots/flex/03-escrow-create/03-both/00000.png differ diff --git a/tests/snapshots/flex/03-escrow-create/03-both/00001.png b/tests/snapshots/flex/03-escrow-create/03-both/00001.png index 84bc0f52..019c9919 100644 Binary files a/tests/snapshots/flex/03-escrow-create/03-both/00001.png and b/tests/snapshots/flex/03-escrow-create/03-both/00001.png differ diff --git a/tests/snapshots/flex/03-escrow-create/03-both/00002.png b/tests/snapshots/flex/03-escrow-create/03-both/00002.png index 4be16738..89a3ff49 100644 Binary files a/tests/snapshots/flex/03-escrow-create/03-both/00002.png and b/tests/snapshots/flex/03-escrow-create/03-both/00002.png differ diff --git a/tests/snapshots/flex/03-escrow-create/03-both/00003.png b/tests/snapshots/flex/03-escrow-create/03-both/00003.png index 8fc5c7b7..c8ca49c2 100644 Binary files a/tests/snapshots/flex/03-escrow-create/03-both/00003.png and b/tests/snapshots/flex/03-escrow-create/03-both/00003.png differ diff --git a/tests/snapshots/flex/03-escrow-create/03-both/00004.png b/tests/snapshots/flex/03-escrow-create/03-both/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/03-escrow-create/03-both/00004.png and b/tests/snapshots/flex/03-escrow-create/03-both/00004.png differ diff --git a/tests/snapshots/flex/03-escrow-create/04-both-condition/00000.png b/tests/snapshots/flex/03-escrow-create/04-both-condition/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/03-escrow-create/04-both-condition/00000.png and b/tests/snapshots/flex/03-escrow-create/04-both-condition/00000.png differ diff --git a/tests/snapshots/flex/03-escrow-create/04-both-condition/00001.png b/tests/snapshots/flex/03-escrow-create/04-both-condition/00001.png index 84bc0f52..019c9919 100644 Binary files a/tests/snapshots/flex/03-escrow-create/04-both-condition/00001.png and b/tests/snapshots/flex/03-escrow-create/04-both-condition/00001.png differ diff --git a/tests/snapshots/flex/03-escrow-create/04-both-condition/00002.png b/tests/snapshots/flex/03-escrow-create/04-both-condition/00002.png index 4be16738..89a3ff49 100644 Binary files a/tests/snapshots/flex/03-escrow-create/04-both-condition/00002.png and b/tests/snapshots/flex/03-escrow-create/04-both-condition/00002.png differ diff --git a/tests/snapshots/flex/03-escrow-create/04-both-condition/00003.png b/tests/snapshots/flex/03-escrow-create/04-both-condition/00003.png index 24a4a702..ce6bee86 100644 Binary files a/tests/snapshots/flex/03-escrow-create/04-both-condition/00003.png and b/tests/snapshots/flex/03-escrow-create/04-both-condition/00003.png differ diff --git a/tests/snapshots/flex/03-escrow-create/04-both-condition/00004.png b/tests/snapshots/flex/03-escrow-create/04-both-condition/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/03-escrow-create/04-both-condition/00004.png and b/tests/snapshots/flex/03-escrow-create/04-both-condition/00004.png differ diff --git a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00000.png b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00000.png index 1a63e9a1..f9e2943b 100644 Binary files a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00000.png and b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00000.png differ diff --git a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00001.png b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00001.png index 55528875..a470e320 100644 Binary files a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00001.png and b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00001.png differ diff --git a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00002.png b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00002.png index a2ec92c0..f95087e0 100644 Binary files a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00002.png and b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00002.png differ diff --git a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00003.png b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00003.png index 71e1715b..1cc45822 100644 Binary files a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00003.png and b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00003.png differ diff --git a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00004.png b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00004.png index c6480850..8d3d00a4 100644 Binary files a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00004.png and b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00004.png differ diff --git a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00005.png b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00005.png index ff21daf7..f2a31b74 100644 Binary files a/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00005.png and b/tests/snapshots/flex/03-escrow-create/05-both-condition-destination/00005.png differ diff --git a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00000.png b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00000.png index ed3fe0f9..e3f9cf5e 100644 Binary files a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00000.png and b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00000.png differ diff --git a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00001.png b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00001.png index 4a8a406c..28a9afb2 100644 Binary files a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00001.png and b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00001.png differ diff --git a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00002.png b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00002.png index 3ce47259..d2b9b7e0 100644 Binary files a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00002.png and b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00002.png differ diff --git a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00003.png b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00003.png index 82d9f86f..51570b60 100644 Binary files a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00003.png and b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00003.png differ diff --git a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00004.png b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00004.png index 68a47fd0..e39e75e1 100644 Binary files a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00004.png and b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00004.png differ diff --git a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00005.png b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00005.png index 52f05837..0a0e0b29 100644 Binary files a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00005.png and b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00005.png differ diff --git a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00006.png b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00006.png index 72afd46c..ca7e6bf5 100644 Binary files a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00006.png and b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00006.png differ diff --git a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00007.png b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00007.png index a66c38dc..6b88343b 100644 Binary files a/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00007.png and b/tests/snapshots/flex/03-escrow-create/06-all-common-fields/00007.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/01-time-based/00000.png b/tests/snapshots/flex/04-escrow-finish/01-time-based/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/01-time-based/00000.png and b/tests/snapshots/flex/04-escrow-finish/01-time-based/00000.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/01-time-based/00001.png b/tests/snapshots/flex/04-escrow-finish/01-time-based/00001.png index c8ce3074..11404f74 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/01-time-based/00001.png and b/tests/snapshots/flex/04-escrow-finish/01-time-based/00001.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/01-time-based/00002.png b/tests/snapshots/flex/04-escrow-finish/01-time-based/00002.png index 247ee041..94d9197f 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/01-time-based/00002.png and b/tests/snapshots/flex/04-escrow-finish/01-time-based/00002.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/01-time-based/00003.png b/tests/snapshots/flex/04-escrow-finish/01-time-based/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/01-time-based/00003.png and b/tests/snapshots/flex/04-escrow-finish/01-time-based/00003.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00000.png b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00000.png and b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00000.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00001.png b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00001.png index 13201ced..c63e6882 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00001.png and b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00001.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00002.png b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00002.png index e1fae293..34eefc40 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00002.png and b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00002.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00003.png b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00003.png index 4c42dc05..df299bef 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00003.png and b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00003.png differ diff --git a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00004.png b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/04-escrow-finish/02-condition-based/00004.png and b/tests/snapshots/flex/04-escrow-finish/02-condition-based/00004.png differ diff --git a/tests/snapshots/flex/05-escrow-cancel/01-basic/00000.png b/tests/snapshots/flex/05-escrow-cancel/01-basic/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/05-escrow-cancel/01-basic/00000.png and b/tests/snapshots/flex/05-escrow-cancel/01-basic/00000.png differ diff --git a/tests/snapshots/flex/05-escrow-cancel/01-basic/00001.png b/tests/snapshots/flex/05-escrow-cancel/01-basic/00001.png index e074e845..e969deda 100644 Binary files a/tests/snapshots/flex/05-escrow-cancel/01-basic/00001.png and b/tests/snapshots/flex/05-escrow-cancel/01-basic/00001.png differ diff --git a/tests/snapshots/flex/05-escrow-cancel/01-basic/00002.png b/tests/snapshots/flex/05-escrow-cancel/01-basic/00002.png index 247ee041..94d9197f 100644 Binary files a/tests/snapshots/flex/05-escrow-cancel/01-basic/00002.png and b/tests/snapshots/flex/05-escrow-cancel/01-basic/00002.png differ diff --git a/tests/snapshots/flex/05-escrow-cancel/01-basic/00003.png b/tests/snapshots/flex/05-escrow-cancel/01-basic/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/05-escrow-cancel/01-basic/00003.png and b/tests/snapshots/flex/05-escrow-cancel/01-basic/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/01-basic/00000.png b/tests/snapshots/flex/06-account-set/01-basic/00000.png index 1a63e9a1..d9177c78 100644 Binary files a/tests/snapshots/flex/06-account-set/01-basic/00000.png and b/tests/snapshots/flex/06-account-set/01-basic/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/01-basic/00001.png b/tests/snapshots/flex/06-account-set/01-basic/00001.png index 54567821..925bcaa3 100644 Binary files a/tests/snapshots/flex/06-account-set/01-basic/00001.png and b/tests/snapshots/flex/06-account-set/01-basic/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/01-basic/00002.png b/tests/snapshots/flex/06-account-set/01-basic/00002.png index 54c9529b..b523e7ba 100644 Binary files a/tests/snapshots/flex/06-account-set/01-basic/00002.png and b/tests/snapshots/flex/06-account-set/01-basic/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/01-basic/00003.png b/tests/snapshots/flex/06-account-set/01-basic/00003.png index 21d91a75..efa3ef27 100644 Binary files a/tests/snapshots/flex/06-account-set/01-basic/00003.png and b/tests/snapshots/flex/06-account-set/01-basic/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/01-basic/00004.png b/tests/snapshots/flex/06-account-set/01-basic/00004.png index 321134cb..9bf977ec 100644 Binary files a/tests/snapshots/flex/06-account-set/01-basic/00004.png and b/tests/snapshots/flex/06-account-set/01-basic/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/01-basic/00005.png b/tests/snapshots/flex/06-account-set/01-basic/00005.png index ff21daf7..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/01-basic/00005.png and b/tests/snapshots/flex/06-account-set/01-basic/00005.png differ diff --git a/tests/snapshots/flex/06-account-set/01-basic/00006.png b/tests/snapshots/flex/06-account-set/01-basic/00006.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/01-basic/00006.png and b/tests/snapshots/flex/06-account-set/01-basic/00006.png differ diff --git a/tests/snapshots/flex/06-account-set/01-basic/00007.png b/tests/snapshots/flex/06-account-set/01-basic/00007.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/01-basic/00007.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/02-default-ripple/00000.png b/tests/snapshots/flex/06-account-set/02-default-ripple/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/02-default-ripple/00000.png and b/tests/snapshots/flex/06-account-set/02-default-ripple/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/02-default-ripple/00002.png b/tests/snapshots/flex/06-account-set/02-default-ripple/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/02-default-ripple/00002.png and b/tests/snapshots/flex/06-account-set/02-default-ripple/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/02-default-ripple/00003.png b/tests/snapshots/flex/06-account-set/02-default-ripple/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/02-default-ripple/00003.png and b/tests/snapshots/flex/06-account-set/02-default-ripple/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/02-default-ripple/00004.png b/tests/snapshots/flex/06-account-set/02-default-ripple/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/02-default-ripple/00004.png and b/tests/snapshots/flex/06-account-set/02-default-ripple/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/02-default-ripple/00005.png b/tests/snapshots/flex/06-account-set/02-default-ripple/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/02-default-ripple/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/03-deposit-auth/00000.png b/tests/snapshots/flex/06-account-set/03-deposit-auth/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/03-deposit-auth/00000.png and b/tests/snapshots/flex/06-account-set/03-deposit-auth/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/03-deposit-auth/00001.png b/tests/snapshots/flex/06-account-set/03-deposit-auth/00001.png index 2cd5568f..c3347d92 100644 Binary files a/tests/snapshots/flex/06-account-set/03-deposit-auth/00001.png and b/tests/snapshots/flex/06-account-set/03-deposit-auth/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/03-deposit-auth/00002.png b/tests/snapshots/flex/06-account-set/03-deposit-auth/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/03-deposit-auth/00002.png and b/tests/snapshots/flex/06-account-set/03-deposit-auth/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/03-deposit-auth/00003.png b/tests/snapshots/flex/06-account-set/03-deposit-auth/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/03-deposit-auth/00003.png and b/tests/snapshots/flex/06-account-set/03-deposit-auth/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/03-deposit-auth/00004.png b/tests/snapshots/flex/06-account-set/03-deposit-auth/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/03-deposit-auth/00004.png and b/tests/snapshots/flex/06-account-set/03-deposit-auth/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/03-deposit-auth/00005.png b/tests/snapshots/flex/06-account-set/03-deposit-auth/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/03-deposit-auth/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/04-disable-master/00000.png b/tests/snapshots/flex/06-account-set/04-disable-master/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/04-disable-master/00000.png and b/tests/snapshots/flex/06-account-set/04-disable-master/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/04-disable-master/00001.png b/tests/snapshots/flex/06-account-set/04-disable-master/00001.png index a27aad00..04f05c32 100644 Binary files a/tests/snapshots/flex/06-account-set/04-disable-master/00001.png and b/tests/snapshots/flex/06-account-set/04-disable-master/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/04-disable-master/00002.png b/tests/snapshots/flex/06-account-set/04-disable-master/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/04-disable-master/00002.png and b/tests/snapshots/flex/06-account-set/04-disable-master/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/04-disable-master/00003.png b/tests/snapshots/flex/06-account-set/04-disable-master/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/04-disable-master/00003.png and b/tests/snapshots/flex/06-account-set/04-disable-master/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/04-disable-master/00004.png b/tests/snapshots/flex/06-account-set/04-disable-master/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/04-disable-master/00004.png and b/tests/snapshots/flex/06-account-set/04-disable-master/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/04-disable-master/00005.png b/tests/snapshots/flex/06-account-set/04-disable-master/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/04-disable-master/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00000.png b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00000.png and b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00001.png b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00001.png index 626f2bae..8c69e582 100644 Binary files a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00001.png and b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00002.png b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00002.png and b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00003.png b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00003.png and b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00004.png b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00004.png and b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00005.png b/tests/snapshots/flex/06-account-set/05-disallow-xrp/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/05-disallow-xrp/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/06-global-freeze/00000.png b/tests/snapshots/flex/06-account-set/06-global-freeze/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/06-global-freeze/00000.png and b/tests/snapshots/flex/06-account-set/06-global-freeze/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/06-global-freeze/00001.png b/tests/snapshots/flex/06-account-set/06-global-freeze/00001.png index e079d72c..c8fd3968 100644 Binary files a/tests/snapshots/flex/06-account-set/06-global-freeze/00001.png and b/tests/snapshots/flex/06-account-set/06-global-freeze/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/06-global-freeze/00002.png b/tests/snapshots/flex/06-account-set/06-global-freeze/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/06-global-freeze/00002.png and b/tests/snapshots/flex/06-account-set/06-global-freeze/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/06-global-freeze/00003.png b/tests/snapshots/flex/06-account-set/06-global-freeze/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/06-global-freeze/00003.png and b/tests/snapshots/flex/06-account-set/06-global-freeze/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/06-global-freeze/00004.png b/tests/snapshots/flex/06-account-set/06-global-freeze/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/06-global-freeze/00004.png and b/tests/snapshots/flex/06-account-set/06-global-freeze/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/06-global-freeze/00005.png b/tests/snapshots/flex/06-account-set/06-global-freeze/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/06-global-freeze/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/07-no-freeze/00000.png b/tests/snapshots/flex/06-account-set/07-no-freeze/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/07-no-freeze/00000.png and b/tests/snapshots/flex/06-account-set/07-no-freeze/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/07-no-freeze/00001.png b/tests/snapshots/flex/06-account-set/07-no-freeze/00001.png index 00b67b8e..1d92aae8 100644 Binary files a/tests/snapshots/flex/06-account-set/07-no-freeze/00001.png and b/tests/snapshots/flex/06-account-set/07-no-freeze/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/07-no-freeze/00002.png b/tests/snapshots/flex/06-account-set/07-no-freeze/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/07-no-freeze/00002.png and b/tests/snapshots/flex/06-account-set/07-no-freeze/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/07-no-freeze/00003.png b/tests/snapshots/flex/06-account-set/07-no-freeze/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/07-no-freeze/00003.png and b/tests/snapshots/flex/06-account-set/07-no-freeze/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/07-no-freeze/00004.png b/tests/snapshots/flex/06-account-set/07-no-freeze/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/07-no-freeze/00004.png and b/tests/snapshots/flex/06-account-set/07-no-freeze/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/07-no-freeze/00005.png b/tests/snapshots/flex/06-account-set/07-no-freeze/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/07-no-freeze/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/08-require-auth/00000.png b/tests/snapshots/flex/06-account-set/08-require-auth/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/08-require-auth/00000.png and b/tests/snapshots/flex/06-account-set/08-require-auth/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/08-require-auth/00001.png b/tests/snapshots/flex/06-account-set/08-require-auth/00001.png index 13efe49a..e3b8aa1f 100644 Binary files a/tests/snapshots/flex/06-account-set/08-require-auth/00001.png and b/tests/snapshots/flex/06-account-set/08-require-auth/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/08-require-auth/00002.png b/tests/snapshots/flex/06-account-set/08-require-auth/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/08-require-auth/00002.png and b/tests/snapshots/flex/06-account-set/08-require-auth/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/08-require-auth/00003.png b/tests/snapshots/flex/06-account-set/08-require-auth/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/08-require-auth/00003.png and b/tests/snapshots/flex/06-account-set/08-require-auth/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/08-require-auth/00004.png b/tests/snapshots/flex/06-account-set/08-require-auth/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/08-require-auth/00004.png and b/tests/snapshots/flex/06-account-set/08-require-auth/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/08-require-auth/00005.png b/tests/snapshots/flex/06-account-set/08-require-auth/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/08-require-auth/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/09-require-tag/00000.png b/tests/snapshots/flex/06-account-set/09-require-tag/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/09-require-tag/00000.png and b/tests/snapshots/flex/06-account-set/09-require-tag/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/09-require-tag/00001.png b/tests/snapshots/flex/06-account-set/09-require-tag/00001.png index 937fe438..89c2b7f2 100644 Binary files a/tests/snapshots/flex/06-account-set/09-require-tag/00001.png and b/tests/snapshots/flex/06-account-set/09-require-tag/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/09-require-tag/00002.png b/tests/snapshots/flex/06-account-set/09-require-tag/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/09-require-tag/00002.png and b/tests/snapshots/flex/06-account-set/09-require-tag/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/09-require-tag/00003.png b/tests/snapshots/flex/06-account-set/09-require-tag/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/09-require-tag/00003.png and b/tests/snapshots/flex/06-account-set/09-require-tag/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/09-require-tag/00004.png b/tests/snapshots/flex/06-account-set/09-require-tag/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/09-require-tag/00004.png and b/tests/snapshots/flex/06-account-set/09-require-tag/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/09-require-tag/00005.png b/tests/snapshots/flex/06-account-set/09-require-tag/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/09-require-tag/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00000.png b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00000.png and b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00000.png differ diff --git a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00001.png b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00001.png index 8ff99f49..e24f6961 100644 Binary files a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00001.png and b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00001.png differ diff --git a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00002.png b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00002.png and b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00002.png differ diff --git a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00003.png b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00003.png and b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00003.png differ diff --git a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00004.png b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00004.png and b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00004.png differ diff --git a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00005.png b/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/06-account-set/10-clear-account-txn-id/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/07-check-cancel/01-basic/00000.png b/tests/snapshots/flex/07-check-cancel/01-basic/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/07-check-cancel/01-basic/00000.png and b/tests/snapshots/flex/07-check-cancel/01-basic/00000.png differ diff --git a/tests/snapshots/flex/07-check-cancel/01-basic/00001.png b/tests/snapshots/flex/07-check-cancel/01-basic/00001.png index 95d20a2a..fde4db7d 100644 Binary files a/tests/snapshots/flex/07-check-cancel/01-basic/00001.png and b/tests/snapshots/flex/07-check-cancel/01-basic/00001.png differ diff --git a/tests/snapshots/flex/07-check-cancel/01-basic/00002.png b/tests/snapshots/flex/07-check-cancel/01-basic/00002.png index 77d5a245..13caad05 100644 Binary files a/tests/snapshots/flex/07-check-cancel/01-basic/00002.png and b/tests/snapshots/flex/07-check-cancel/01-basic/00002.png differ diff --git a/tests/snapshots/flex/07-check-cancel/01-basic/00003.png b/tests/snapshots/flex/07-check-cancel/01-basic/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/07-check-cancel/01-basic/00003.png and b/tests/snapshots/flex/07-check-cancel/01-basic/00003.png differ diff --git a/tests/snapshots/flex/08-check-cash/01-basic/00000.png b/tests/snapshots/flex/08-check-cash/01-basic/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/08-check-cash/01-basic/00000.png and b/tests/snapshots/flex/08-check-cash/01-basic/00000.png differ diff --git a/tests/snapshots/flex/08-check-cash/01-basic/00001.png b/tests/snapshots/flex/08-check-cash/01-basic/00001.png index fd8fb51d..8021b6a1 100644 Binary files a/tests/snapshots/flex/08-check-cash/01-basic/00001.png and b/tests/snapshots/flex/08-check-cash/01-basic/00001.png differ diff --git a/tests/snapshots/flex/08-check-cash/01-basic/00002.png b/tests/snapshots/flex/08-check-cash/01-basic/00002.png index 2ac652c1..ae0ed19c 100644 Binary files a/tests/snapshots/flex/08-check-cash/01-basic/00002.png and b/tests/snapshots/flex/08-check-cash/01-basic/00002.png differ diff --git a/tests/snapshots/flex/08-check-cash/01-basic/00003.png b/tests/snapshots/flex/08-check-cash/01-basic/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/08-check-cash/01-basic/00003.png and b/tests/snapshots/flex/08-check-cash/01-basic/00003.png differ diff --git a/tests/snapshots/flex/08-check-cash/02-amount/00000.png b/tests/snapshots/flex/08-check-cash/02-amount/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/08-check-cash/02-amount/00000.png and b/tests/snapshots/flex/08-check-cash/02-amount/00000.png differ diff --git a/tests/snapshots/flex/08-check-cash/02-amount/00001.png b/tests/snapshots/flex/08-check-cash/02-amount/00001.png index fd8fb51d..8021b6a1 100644 Binary files a/tests/snapshots/flex/08-check-cash/02-amount/00001.png and b/tests/snapshots/flex/08-check-cash/02-amount/00001.png differ diff --git a/tests/snapshots/flex/08-check-cash/02-amount/00002.png b/tests/snapshots/flex/08-check-cash/02-amount/00002.png index 511e3af4..2d1f6a8b 100644 Binary files a/tests/snapshots/flex/08-check-cash/02-amount/00002.png and b/tests/snapshots/flex/08-check-cash/02-amount/00002.png differ diff --git a/tests/snapshots/flex/08-check-cash/02-amount/00003.png b/tests/snapshots/flex/08-check-cash/02-amount/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/08-check-cash/02-amount/00003.png and b/tests/snapshots/flex/08-check-cash/02-amount/00003.png differ diff --git a/tests/snapshots/flex/08-check-cash/03-issued/00000.png b/tests/snapshots/flex/08-check-cash/03-issued/00000.png index 818274c0..58b7b701 100644 Binary files a/tests/snapshots/flex/08-check-cash/03-issued/00000.png and b/tests/snapshots/flex/08-check-cash/03-issued/00000.png differ diff --git a/tests/snapshots/flex/08-check-cash/03-issued/00001.png b/tests/snapshots/flex/08-check-cash/03-issued/00001.png index 5edeeb3d..8021b6a1 100644 Binary files a/tests/snapshots/flex/08-check-cash/03-issued/00001.png and b/tests/snapshots/flex/08-check-cash/03-issued/00001.png differ diff --git a/tests/snapshots/flex/08-check-cash/03-issued/00002.png b/tests/snapshots/flex/08-check-cash/03-issued/00002.png index f860af28..1c4913c5 100644 Binary files a/tests/snapshots/flex/08-check-cash/03-issued/00002.png and b/tests/snapshots/flex/08-check-cash/03-issued/00002.png differ diff --git a/tests/snapshots/flex/08-check-cash/03-issued/00003.png b/tests/snapshots/flex/08-check-cash/03-issued/00003.png index 8c5e3d10..5b680808 100644 Binary files a/tests/snapshots/flex/08-check-cash/03-issued/00003.png and b/tests/snapshots/flex/08-check-cash/03-issued/00003.png differ diff --git a/tests/snapshots/flex/08-check-cash/03-issued/00004.png b/tests/snapshots/flex/08-check-cash/03-issued/00004.png index c7f0f6e7..be51a9d5 100644 Binary files a/tests/snapshots/flex/08-check-cash/03-issued/00004.png and b/tests/snapshots/flex/08-check-cash/03-issued/00004.png differ diff --git a/tests/snapshots/flex/08-check-cash/03-issued/00005.png b/tests/snapshots/flex/08-check-cash/03-issued/00005.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/08-check-cash/03-issued/00005.png and b/tests/snapshots/flex/08-check-cash/03-issued/00005.png differ diff --git a/tests/snapshots/flex/08-check-cash/03-issued/00006.png b/tests/snapshots/flex/08-check-cash/03-issued/00006.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/08-check-cash/03-issued/00006.png and /dev/null differ diff --git a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00000.png b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00000.png index 818274c0..58b7b701 100644 Binary files a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00000.png and b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00000.png differ diff --git a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00001.png b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00001.png index 5edeeb3d..8021b6a1 100644 Binary files a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00001.png and b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00001.png differ diff --git a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00002.png b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00002.png index 2065b3e9..ebd28520 100644 Binary files a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00002.png and b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00002.png differ diff --git a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00003.png b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00003.png index c6735b4b..5b680808 100644 Binary files a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00003.png and b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00003.png differ diff --git a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00004.png b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00004.png index c7f0f6e7..be51a9d5 100644 Binary files a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00004.png and b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00004.png differ diff --git a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00005.png b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00005.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00005.png and b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00005.png differ diff --git a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00006.png b/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00006.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/08-check-cash/04-issued-delivery-min/00006.png and /dev/null differ diff --git a/tests/snapshots/flex/09-check-create/01-basic/00000.png b/tests/snapshots/flex/09-check-create/01-basic/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/09-check-create/01-basic/00000.png and b/tests/snapshots/flex/09-check-create/01-basic/00000.png differ diff --git a/tests/snapshots/flex/09-check-create/01-basic/00001.png b/tests/snapshots/flex/09-check-create/01-basic/00001.png index 7ec839ac..282f3269 100644 Binary files a/tests/snapshots/flex/09-check-create/01-basic/00001.png and b/tests/snapshots/flex/09-check-create/01-basic/00001.png differ diff --git a/tests/snapshots/flex/09-check-create/01-basic/00002.png b/tests/snapshots/flex/09-check-create/01-basic/00002.png index 71781ef2..b61ac479 100644 Binary files a/tests/snapshots/flex/09-check-create/01-basic/00002.png and b/tests/snapshots/flex/09-check-create/01-basic/00002.png differ diff --git a/tests/snapshots/flex/09-check-create/01-basic/00003.png b/tests/snapshots/flex/09-check-create/01-basic/00003.png index 1d34f892..ab0fb1a4 100644 Binary files a/tests/snapshots/flex/09-check-create/01-basic/00003.png and b/tests/snapshots/flex/09-check-create/01-basic/00003.png differ diff --git a/tests/snapshots/flex/09-check-create/01-basic/00004.png b/tests/snapshots/flex/09-check-create/01-basic/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/09-check-create/01-basic/00004.png and b/tests/snapshots/flex/09-check-create/01-basic/00004.png differ diff --git a/tests/snapshots/flex/09-check-create/02-issued/00000.png b/tests/snapshots/flex/09-check-create/02-issued/00000.png index 1a63e9a1..d9177c78 100644 Binary files a/tests/snapshots/flex/09-check-create/02-issued/00000.png and b/tests/snapshots/flex/09-check-create/02-issued/00000.png differ diff --git a/tests/snapshots/flex/09-check-create/02-issued/00001.png b/tests/snapshots/flex/09-check-create/02-issued/00001.png index 791473f1..282f3269 100644 Binary files a/tests/snapshots/flex/09-check-create/02-issued/00001.png and b/tests/snapshots/flex/09-check-create/02-issued/00001.png differ diff --git a/tests/snapshots/flex/09-check-create/02-issued/00002.png b/tests/snapshots/flex/09-check-create/02-issued/00002.png index 6b95a220..61d1f5d9 100644 Binary files a/tests/snapshots/flex/09-check-create/02-issued/00002.png and b/tests/snapshots/flex/09-check-create/02-issued/00002.png differ diff --git a/tests/snapshots/flex/09-check-create/02-issued/00003.png b/tests/snapshots/flex/09-check-create/02-issued/00003.png index 83aed9f9..2882e98f 100644 Binary files a/tests/snapshots/flex/09-check-create/02-issued/00003.png and b/tests/snapshots/flex/09-check-create/02-issued/00003.png differ diff --git a/tests/snapshots/flex/09-check-create/02-issued/00004.png b/tests/snapshots/flex/09-check-create/02-issued/00004.png index d3e03810..9bf977ec 100644 Binary files a/tests/snapshots/flex/09-check-create/02-issued/00004.png and b/tests/snapshots/flex/09-check-create/02-issued/00004.png differ diff --git a/tests/snapshots/flex/09-check-create/02-issued/00005.png b/tests/snapshots/flex/09-check-create/02-issued/00005.png index ff21daf7..be51a9d5 100644 Binary files a/tests/snapshots/flex/09-check-create/02-issued/00005.png and b/tests/snapshots/flex/09-check-create/02-issued/00005.png differ diff --git a/tests/snapshots/flex/09-check-create/02-issued/00006.png b/tests/snapshots/flex/09-check-create/02-issued/00006.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/09-check-create/02-issued/00006.png and b/tests/snapshots/flex/09-check-create/02-issued/00006.png differ diff --git a/tests/snapshots/flex/09-check-create/02-issued/00007.png b/tests/snapshots/flex/09-check-create/02-issued/00007.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/09-check-create/02-issued/00007.png and /dev/null differ diff --git a/tests/snapshots/flex/10-deposit-preauth/01-basic/00000.png b/tests/snapshots/flex/10-deposit-preauth/01-basic/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/10-deposit-preauth/01-basic/00000.png and b/tests/snapshots/flex/10-deposit-preauth/01-basic/00000.png differ diff --git a/tests/snapshots/flex/10-deposit-preauth/01-basic/00001.png b/tests/snapshots/flex/10-deposit-preauth/01-basic/00001.png index 0617b8e3..c6d24ea6 100644 Binary files a/tests/snapshots/flex/10-deposit-preauth/01-basic/00001.png and b/tests/snapshots/flex/10-deposit-preauth/01-basic/00001.png differ diff --git a/tests/snapshots/flex/10-deposit-preauth/01-basic/00002.png b/tests/snapshots/flex/10-deposit-preauth/01-basic/00002.png index 465aac43..45f183e9 100644 Binary files a/tests/snapshots/flex/10-deposit-preauth/01-basic/00002.png and b/tests/snapshots/flex/10-deposit-preauth/01-basic/00002.png differ diff --git a/tests/snapshots/flex/10-deposit-preauth/01-basic/00003.png b/tests/snapshots/flex/10-deposit-preauth/01-basic/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/10-deposit-preauth/01-basic/00003.png and b/tests/snapshots/flex/10-deposit-preauth/01-basic/00003.png differ diff --git a/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00000.png b/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00000.png and b/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00000.png differ diff --git a/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00001.png b/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00001.png index 0617b8e3..c6d24ea6 100644 Binary files a/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00001.png and b/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00001.png differ diff --git a/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00002.png b/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00002.png index a8140bb9..bc93e6d9 100644 Binary files a/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00002.png and b/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00002.png differ diff --git a/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00003.png b/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00003.png and b/tests/snapshots/flex/10-deposit-preauth/02-unauthorize/00003.png differ diff --git a/tests/snapshots/flex/11-offer-cancel/01-basic/00000.png b/tests/snapshots/flex/11-offer-cancel/01-basic/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/11-offer-cancel/01-basic/00000.png and b/tests/snapshots/flex/11-offer-cancel/01-basic/00000.png differ diff --git a/tests/snapshots/flex/11-offer-cancel/01-basic/00001.png b/tests/snapshots/flex/11-offer-cancel/01-basic/00001.png index a3420ae9..602d77d4 100644 Binary files a/tests/snapshots/flex/11-offer-cancel/01-basic/00001.png and b/tests/snapshots/flex/11-offer-cancel/01-basic/00001.png differ diff --git a/tests/snapshots/flex/11-offer-cancel/01-basic/00002.png b/tests/snapshots/flex/11-offer-cancel/01-basic/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/11-offer-cancel/01-basic/00002.png and b/tests/snapshots/flex/11-offer-cancel/01-basic/00002.png differ diff --git a/tests/snapshots/flex/11-offer-cancel/01-basic/00003.png b/tests/snapshots/flex/11-offer-cancel/01-basic/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/11-offer-cancel/01-basic/00003.png and b/tests/snapshots/flex/11-offer-cancel/01-basic/00003.png differ diff --git a/tests/snapshots/flex/11-offer-cancel/01-basic/00004.png b/tests/snapshots/flex/11-offer-cancel/01-basic/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/11-offer-cancel/01-basic/00004.png and b/tests/snapshots/flex/11-offer-cancel/01-basic/00004.png differ diff --git a/tests/snapshots/flex/11-offer-cancel/01-basic/00005.png b/tests/snapshots/flex/11-offer-cancel/01-basic/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/11-offer-cancel/01-basic/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/12-offer-create/01-basic/00000.png b/tests/snapshots/flex/12-offer-create/01-basic/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/12-offer-create/01-basic/00000.png and b/tests/snapshots/flex/12-offer-create/01-basic/00000.png differ diff --git a/tests/snapshots/flex/12-offer-create/01-basic/00001.png b/tests/snapshots/flex/12-offer-create/01-basic/00001.png index 5b21205f..04de028a 100644 Binary files a/tests/snapshots/flex/12-offer-create/01-basic/00001.png and b/tests/snapshots/flex/12-offer-create/01-basic/00001.png differ diff --git a/tests/snapshots/flex/12-offer-create/01-basic/00002.png b/tests/snapshots/flex/12-offer-create/01-basic/00002.png index d73f7277..dac9f669 100644 Binary files a/tests/snapshots/flex/12-offer-create/01-basic/00002.png and b/tests/snapshots/flex/12-offer-create/01-basic/00002.png differ diff --git a/tests/snapshots/flex/12-offer-create/01-basic/00003.png b/tests/snapshots/flex/12-offer-create/01-basic/00003.png index 664715b4..cb149267 100644 Binary files a/tests/snapshots/flex/12-offer-create/01-basic/00003.png and b/tests/snapshots/flex/12-offer-create/01-basic/00003.png differ diff --git a/tests/snapshots/flex/12-offer-create/01-basic/00004.png b/tests/snapshots/flex/12-offer-create/01-basic/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/12-offer-create/01-basic/00004.png and b/tests/snapshots/flex/12-offer-create/01-basic/00004.png differ diff --git a/tests/snapshots/flex/12-offer-create/02-passive/00000.png b/tests/snapshots/flex/12-offer-create/02-passive/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/12-offer-create/02-passive/00000.png and b/tests/snapshots/flex/12-offer-create/02-passive/00000.png differ diff --git a/tests/snapshots/flex/12-offer-create/02-passive/00001.png b/tests/snapshots/flex/12-offer-create/02-passive/00001.png index 9a2f6306..d82c69cb 100644 Binary files a/tests/snapshots/flex/12-offer-create/02-passive/00001.png and b/tests/snapshots/flex/12-offer-create/02-passive/00001.png differ diff --git a/tests/snapshots/flex/12-offer-create/02-passive/00002.png b/tests/snapshots/flex/12-offer-create/02-passive/00002.png index 536b59a9..d2844a35 100644 Binary files a/tests/snapshots/flex/12-offer-create/02-passive/00002.png and b/tests/snapshots/flex/12-offer-create/02-passive/00002.png differ diff --git a/tests/snapshots/flex/12-offer-create/02-passive/00003.png b/tests/snapshots/flex/12-offer-create/02-passive/00003.png index 8d6a44f2..ea265c1b 100644 Binary files a/tests/snapshots/flex/12-offer-create/02-passive/00003.png and b/tests/snapshots/flex/12-offer-create/02-passive/00003.png differ diff --git a/tests/snapshots/flex/12-offer-create/02-passive/00004.png b/tests/snapshots/flex/12-offer-create/02-passive/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/12-offer-create/02-passive/00004.png and b/tests/snapshots/flex/12-offer-create/02-passive/00004.png differ diff --git a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00000.png b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00000.png and b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00000.png differ diff --git a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00001.png b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00001.png index c1f62b45..2a3ba1f5 100644 Binary files a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00001.png and b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00001.png differ diff --git a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00002.png b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00002.png index 536b59a9..d2844a35 100644 Binary files a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00002.png and b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00002.png differ diff --git a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00003.png b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00003.png index 8d6a44f2..ea265c1b 100644 Binary files a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00003.png and b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00003.png differ diff --git a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00004.png b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00004.png and b/tests/snapshots/flex/12-offer-create/03-immediate-or-cancel/00004.png differ diff --git a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00000.png b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00000.png and b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00000.png differ diff --git a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00001.png b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00001.png index f5005b0b..5d7c2d03 100644 Binary files a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00001.png and b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00001.png differ diff --git a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00002.png b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00002.png index 536b59a9..d2844a35 100644 Binary files a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00002.png and b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00002.png differ diff --git a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00003.png b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00003.png index 8d6a44f2..ea265c1b 100644 Binary files a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00003.png and b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00003.png differ diff --git a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00004.png b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00004.png and b/tests/snapshots/flex/12-offer-create/04-fill-or-kill/00004.png differ diff --git a/tests/snapshots/flex/12-offer-create/05-sell/00000.png b/tests/snapshots/flex/12-offer-create/05-sell/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/12-offer-create/05-sell/00000.png and b/tests/snapshots/flex/12-offer-create/05-sell/00000.png differ diff --git a/tests/snapshots/flex/12-offer-create/05-sell/00001.png b/tests/snapshots/flex/12-offer-create/05-sell/00001.png index 29157f5f..7dbc025f 100644 Binary files a/tests/snapshots/flex/12-offer-create/05-sell/00001.png and b/tests/snapshots/flex/12-offer-create/05-sell/00001.png differ diff --git a/tests/snapshots/flex/12-offer-create/05-sell/00002.png b/tests/snapshots/flex/12-offer-create/05-sell/00002.png index 536b59a9..d2844a35 100644 Binary files a/tests/snapshots/flex/12-offer-create/05-sell/00002.png and b/tests/snapshots/flex/12-offer-create/05-sell/00002.png differ diff --git a/tests/snapshots/flex/12-offer-create/05-sell/00003.png b/tests/snapshots/flex/12-offer-create/05-sell/00003.png index 8d6a44f2..ea265c1b 100644 Binary files a/tests/snapshots/flex/12-offer-create/05-sell/00003.png and b/tests/snapshots/flex/12-offer-create/05-sell/00003.png differ diff --git a/tests/snapshots/flex/12-offer-create/05-sell/00004.png b/tests/snapshots/flex/12-offer-create/05-sell/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/12-offer-create/05-sell/00004.png and b/tests/snapshots/flex/12-offer-create/05-sell/00004.png differ diff --git a/tests/snapshots/flex/12-offer-create/06-combo/00000.png b/tests/snapshots/flex/12-offer-create/06-combo/00000.png index 1a63e9a1..f9e2943b 100644 Binary files a/tests/snapshots/flex/12-offer-create/06-combo/00000.png and b/tests/snapshots/flex/12-offer-create/06-combo/00000.png differ diff --git a/tests/snapshots/flex/12-offer-create/06-combo/00001.png b/tests/snapshots/flex/12-offer-create/06-combo/00001.png index e1159344..4939a4ca 100644 Binary files a/tests/snapshots/flex/12-offer-create/06-combo/00001.png and b/tests/snapshots/flex/12-offer-create/06-combo/00001.png differ diff --git a/tests/snapshots/flex/12-offer-create/06-combo/00002.png b/tests/snapshots/flex/12-offer-create/06-combo/00002.png index bc9dd918..cbaad5ab 100644 Binary files a/tests/snapshots/flex/12-offer-create/06-combo/00002.png and b/tests/snapshots/flex/12-offer-create/06-combo/00002.png differ diff --git a/tests/snapshots/flex/12-offer-create/06-combo/00003.png b/tests/snapshots/flex/12-offer-create/06-combo/00003.png index 79a31f74..e28e04ec 100644 Binary files a/tests/snapshots/flex/12-offer-create/06-combo/00003.png and b/tests/snapshots/flex/12-offer-create/06-combo/00003.png differ diff --git a/tests/snapshots/flex/12-offer-create/06-combo/00004.png b/tests/snapshots/flex/12-offer-create/06-combo/00004.png index 2d563b69..37f4874b 100644 Binary files a/tests/snapshots/flex/12-offer-create/06-combo/00004.png and b/tests/snapshots/flex/12-offer-create/06-combo/00004.png differ diff --git a/tests/snapshots/flex/12-offer-create/06-combo/00005.png b/tests/snapshots/flex/12-offer-create/06-combo/00005.png index ff21daf7..f2a31b74 100644 Binary files a/tests/snapshots/flex/12-offer-create/06-combo/00005.png and b/tests/snapshots/flex/12-offer-create/06-combo/00005.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00000.png b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00000.png index 1a63e9a1..f9e2943b 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00000.png and b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00000.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00001.png b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00001.png index 33d2b9f8..40724f5c 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00001.png and b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00001.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00002.png b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00002.png index 957df1ae..8b35a19b 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00002.png and b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00002.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00003.png b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00003.png index 59187c8f..9da00766 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00003.png and b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00003.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00004.png b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00004.png index ab819984..49fe0365 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00004.png and b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00004.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00005.png b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00005.png index ff21daf7..f2a31b74 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/01-basic/00005.png and b/tests/snapshots/flex/13-payment-channel-claim/01-basic/00005.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00000.png b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00000.png and b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00000.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00001.png b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00001.png index 768d0d35..5fa03740 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00001.png and b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00001.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00002.png b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00002.png index f6b36ffd..f98f2d68 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00002.png and b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00002.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00003.png b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00003.png index ac4c8b52..cb149267 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00003.png and b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00003.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00004.png b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/02-renew/00004.png and b/tests/snapshots/flex/13-payment-channel-claim/02-renew/00004.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/03-close/00000.png b/tests/snapshots/flex/13-payment-channel-claim/03-close/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/03-close/00000.png and b/tests/snapshots/flex/13-payment-channel-claim/03-close/00000.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/03-close/00001.png b/tests/snapshots/flex/13-payment-channel-claim/03-close/00001.png index f2beca49..9f8718b2 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/03-close/00001.png and b/tests/snapshots/flex/13-payment-channel-claim/03-close/00001.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/03-close/00002.png b/tests/snapshots/flex/13-payment-channel-claim/03-close/00002.png index 10ca03fe..ee3ed9b2 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/03-close/00002.png and b/tests/snapshots/flex/13-payment-channel-claim/03-close/00002.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/03-close/00003.png b/tests/snapshots/flex/13-payment-channel-claim/03-close/00003.png index ac4c8b52..cb149267 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/03-close/00003.png and b/tests/snapshots/flex/13-payment-channel-claim/03-close/00003.png differ diff --git a/tests/snapshots/flex/13-payment-channel-claim/03-close/00004.png b/tests/snapshots/flex/13-payment-channel-claim/03-close/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/13-payment-channel-claim/03-close/00004.png and b/tests/snapshots/flex/13-payment-channel-claim/03-close/00004.png differ diff --git a/tests/snapshots/flex/14-payment-channel-create/01-basic/00000.png b/tests/snapshots/flex/14-payment-channel-create/01-basic/00000.png index 1a63e9a1..d9177c78 100644 Binary files a/tests/snapshots/flex/14-payment-channel-create/01-basic/00000.png and b/tests/snapshots/flex/14-payment-channel-create/01-basic/00000.png differ diff --git a/tests/snapshots/flex/14-payment-channel-create/01-basic/00001.png b/tests/snapshots/flex/14-payment-channel-create/01-basic/00001.png index 320c673c..c3c7d548 100644 Binary files a/tests/snapshots/flex/14-payment-channel-create/01-basic/00001.png and b/tests/snapshots/flex/14-payment-channel-create/01-basic/00001.png differ diff --git a/tests/snapshots/flex/14-payment-channel-create/01-basic/00002.png b/tests/snapshots/flex/14-payment-channel-create/01-basic/00002.png index 6a039265..36d12019 100644 Binary files a/tests/snapshots/flex/14-payment-channel-create/01-basic/00002.png and b/tests/snapshots/flex/14-payment-channel-create/01-basic/00002.png differ diff --git a/tests/snapshots/flex/14-payment-channel-create/01-basic/00003.png b/tests/snapshots/flex/14-payment-channel-create/01-basic/00003.png index 59187c8f..edbcf10f 100644 Binary files a/tests/snapshots/flex/14-payment-channel-create/01-basic/00003.png and b/tests/snapshots/flex/14-payment-channel-create/01-basic/00003.png differ diff --git a/tests/snapshots/flex/14-payment-channel-create/01-basic/00004.png b/tests/snapshots/flex/14-payment-channel-create/01-basic/00004.png index d8ac87d7..9bf977ec 100644 Binary files a/tests/snapshots/flex/14-payment-channel-create/01-basic/00004.png and b/tests/snapshots/flex/14-payment-channel-create/01-basic/00004.png differ diff --git a/tests/snapshots/flex/14-payment-channel-create/01-basic/00005.png b/tests/snapshots/flex/14-payment-channel-create/01-basic/00005.png index ff21daf7..be51a9d5 100644 Binary files a/tests/snapshots/flex/14-payment-channel-create/01-basic/00005.png and b/tests/snapshots/flex/14-payment-channel-create/01-basic/00005.png differ diff --git a/tests/snapshots/flex/14-payment-channel-create/01-basic/00006.png b/tests/snapshots/flex/14-payment-channel-create/01-basic/00006.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/14-payment-channel-create/01-basic/00006.png and b/tests/snapshots/flex/14-payment-channel-create/01-basic/00006.png differ diff --git a/tests/snapshots/flex/14-payment-channel-create/01-basic/00007.png b/tests/snapshots/flex/14-payment-channel-create/01-basic/00007.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/14-payment-channel-create/01-basic/00007.png and /dev/null differ diff --git a/tests/snapshots/flex/15-payment-channel-fund/01-basic/00000.png b/tests/snapshots/flex/15-payment-channel-fund/01-basic/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/15-payment-channel-fund/01-basic/00000.png and b/tests/snapshots/flex/15-payment-channel-fund/01-basic/00000.png differ diff --git a/tests/snapshots/flex/15-payment-channel-fund/01-basic/00001.png b/tests/snapshots/flex/15-payment-channel-fund/01-basic/00001.png index 48a6e28a..16db03dd 100644 Binary files a/tests/snapshots/flex/15-payment-channel-fund/01-basic/00001.png and b/tests/snapshots/flex/15-payment-channel-fund/01-basic/00001.png differ diff --git a/tests/snapshots/flex/15-payment-channel-fund/01-basic/00002.png b/tests/snapshots/flex/15-payment-channel-fund/01-basic/00002.png index edf197ba..6c33d9aa 100644 Binary files a/tests/snapshots/flex/15-payment-channel-fund/01-basic/00002.png and b/tests/snapshots/flex/15-payment-channel-fund/01-basic/00002.png differ diff --git a/tests/snapshots/flex/15-payment-channel-fund/01-basic/00003.png b/tests/snapshots/flex/15-payment-channel-fund/01-basic/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/15-payment-channel-fund/01-basic/00003.png and b/tests/snapshots/flex/15-payment-channel-fund/01-basic/00003.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00000.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00000.png index f3c5d905..3d4e76fa 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00000.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00000.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00001.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00001.png index 0e3ae980..322c273a 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00001.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00001.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00002.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00002.png index 488a4deb..47b3aed3 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00002.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00002.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00003.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00003.png index 311524e8..c786bb2d 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00003.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00003.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00004.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00004.png index d9074e31..f73f855b 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00004.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00004.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00005.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00005.png index 99b3d627..3a52e91a 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00005.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00005.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00006.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00006.png index 7b39288b..406881cd 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00006.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00006.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00007.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00007.png index c738f404..c5f3fae5 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00007.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00007.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/01-basic/00008.png b/tests/snapshots/flex/16-signer-list-set/01-basic/00008.png index 25d6754e..cabaf185 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/01-basic/00008.png and b/tests/snapshots/flex/16-signer-list-set/01-basic/00008.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/02-delete/00000.png b/tests/snapshots/flex/16-signer-list-set/02-delete/00000.png index 137ad663..a2e66d50 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/02-delete/00000.png and b/tests/snapshots/flex/16-signer-list-set/02-delete/00000.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/02-delete/00001.png b/tests/snapshots/flex/16-signer-list-set/02-delete/00001.png index 3844fd6e..4aced590 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/02-delete/00001.png and b/tests/snapshots/flex/16-signer-list-set/02-delete/00001.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/02-delete/00002.png b/tests/snapshots/flex/16-signer-list-set/02-delete/00002.png index 659caea4..0a3ab30a 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/02-delete/00002.png and b/tests/snapshots/flex/16-signer-list-set/02-delete/00002.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/02-delete/00003.png b/tests/snapshots/flex/16-signer-list-set/02-delete/00003.png index bd4ae34c..be51a9d5 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/02-delete/00003.png and b/tests/snapshots/flex/16-signer-list-set/02-delete/00003.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/02-delete/00004.png b/tests/snapshots/flex/16-signer-list-set/02-delete/00004.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/16-signer-list-set/02-delete/00004.png and b/tests/snapshots/flex/16-signer-list-set/02-delete/00004.png differ diff --git a/tests/snapshots/flex/16-signer-list-set/02-delete/00005.png b/tests/snapshots/flex/16-signer-list-set/02-delete/00005.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/16-signer-list-set/02-delete/00005.png and /dev/null differ diff --git a/tests/snapshots/flex/17-trust-set/01-basic/00000.png b/tests/snapshots/flex/17-trust-set/01-basic/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/17-trust-set/01-basic/00000.png and b/tests/snapshots/flex/17-trust-set/01-basic/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/01-basic/00001.png b/tests/snapshots/flex/17-trust-set/01-basic/00001.png index 737f0444..9d1eb9bc 100644 Binary files a/tests/snapshots/flex/17-trust-set/01-basic/00001.png and b/tests/snapshots/flex/17-trust-set/01-basic/00001.png differ diff --git a/tests/snapshots/flex/17-trust-set/01-basic/00002.png b/tests/snapshots/flex/17-trust-set/01-basic/00002.png index 754e837c..a6b69a84 100644 Binary files a/tests/snapshots/flex/17-trust-set/01-basic/00002.png and b/tests/snapshots/flex/17-trust-set/01-basic/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/01-basic/00003.png b/tests/snapshots/flex/17-trust-set/01-basic/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/17-trust-set/01-basic/00003.png and b/tests/snapshots/flex/17-trust-set/01-basic/00003.png differ diff --git a/tests/snapshots/flex/17-trust-set/02-quality/00000.png b/tests/snapshots/flex/17-trust-set/02-quality/00000.png index 818274c0..58b7b701 100644 Binary files a/tests/snapshots/flex/17-trust-set/02-quality/00000.png and b/tests/snapshots/flex/17-trust-set/02-quality/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/02-quality/00001.png b/tests/snapshots/flex/17-trust-set/02-quality/00001.png index 8fdd2452..d3c53c75 100644 Binary files a/tests/snapshots/flex/17-trust-set/02-quality/00001.png and b/tests/snapshots/flex/17-trust-set/02-quality/00001.png differ diff --git a/tests/snapshots/flex/17-trust-set/02-quality/00002.png b/tests/snapshots/flex/17-trust-set/02-quality/00002.png index bd29ea7a..46b7dab5 100644 Binary files a/tests/snapshots/flex/17-trust-set/02-quality/00002.png and b/tests/snapshots/flex/17-trust-set/02-quality/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/02-quality/00003.png b/tests/snapshots/flex/17-trust-set/02-quality/00003.png index ac4c8b52..5b680808 100644 Binary files a/tests/snapshots/flex/17-trust-set/02-quality/00003.png and b/tests/snapshots/flex/17-trust-set/02-quality/00003.png differ diff --git a/tests/snapshots/flex/17-trust-set/02-quality/00004.png b/tests/snapshots/flex/17-trust-set/02-quality/00004.png index c7f0f6e7..be51a9d5 100644 Binary files a/tests/snapshots/flex/17-trust-set/02-quality/00004.png and b/tests/snapshots/flex/17-trust-set/02-quality/00004.png differ diff --git a/tests/snapshots/flex/17-trust-set/02-quality/00005.png b/tests/snapshots/flex/17-trust-set/02-quality/00005.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/17-trust-set/02-quality/00005.png and b/tests/snapshots/flex/17-trust-set/02-quality/00005.png differ diff --git a/tests/snapshots/flex/17-trust-set/02-quality/00006.png b/tests/snapshots/flex/17-trust-set/02-quality/00006.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/17-trust-set/02-quality/00006.png and /dev/null differ diff --git a/tests/snapshots/flex/17-trust-set/03-authorize/00000.png b/tests/snapshots/flex/17-trust-set/03-authorize/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/17-trust-set/03-authorize/00000.png and b/tests/snapshots/flex/17-trust-set/03-authorize/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/03-authorize/00002.png b/tests/snapshots/flex/17-trust-set/03-authorize/00002.png index 4cdb7ff0..a6b69a84 100644 Binary files a/tests/snapshots/flex/17-trust-set/03-authorize/00002.png and b/tests/snapshots/flex/17-trust-set/03-authorize/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/03-authorize/00003.png b/tests/snapshots/flex/17-trust-set/03-authorize/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/17-trust-set/03-authorize/00003.png and b/tests/snapshots/flex/17-trust-set/03-authorize/00003.png differ diff --git a/tests/snapshots/flex/17-trust-set/04-no-rippling/00000.png b/tests/snapshots/flex/17-trust-set/04-no-rippling/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/17-trust-set/04-no-rippling/00000.png and b/tests/snapshots/flex/17-trust-set/04-no-rippling/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/04-no-rippling/00001.png b/tests/snapshots/flex/17-trust-set/04-no-rippling/00001.png index a65b7ef1..cd5f25a8 100644 Binary files a/tests/snapshots/flex/17-trust-set/04-no-rippling/00001.png and b/tests/snapshots/flex/17-trust-set/04-no-rippling/00001.png differ diff --git a/tests/snapshots/flex/17-trust-set/04-no-rippling/00002.png b/tests/snapshots/flex/17-trust-set/04-no-rippling/00002.png index 87ecb5af..a6b69a84 100644 Binary files a/tests/snapshots/flex/17-trust-set/04-no-rippling/00002.png and b/tests/snapshots/flex/17-trust-set/04-no-rippling/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/04-no-rippling/00003.png b/tests/snapshots/flex/17-trust-set/04-no-rippling/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/17-trust-set/04-no-rippling/00003.png and b/tests/snapshots/flex/17-trust-set/04-no-rippling/00003.png differ diff --git a/tests/snapshots/flex/17-trust-set/05-rippling/00000.png b/tests/snapshots/flex/17-trust-set/05-rippling/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/17-trust-set/05-rippling/00000.png and b/tests/snapshots/flex/17-trust-set/05-rippling/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/05-rippling/00001.png b/tests/snapshots/flex/17-trust-set/05-rippling/00001.png index 5f145f9c..f0d96dc5 100644 Binary files a/tests/snapshots/flex/17-trust-set/05-rippling/00001.png and b/tests/snapshots/flex/17-trust-set/05-rippling/00001.png differ diff --git a/tests/snapshots/flex/17-trust-set/05-rippling/00002.png b/tests/snapshots/flex/17-trust-set/05-rippling/00002.png index 4708a0e6..a6b69a84 100644 Binary files a/tests/snapshots/flex/17-trust-set/05-rippling/00002.png and b/tests/snapshots/flex/17-trust-set/05-rippling/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/05-rippling/00003.png b/tests/snapshots/flex/17-trust-set/05-rippling/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/17-trust-set/05-rippling/00003.png and b/tests/snapshots/flex/17-trust-set/05-rippling/00003.png differ diff --git a/tests/snapshots/flex/17-trust-set/06-freeze/00000.png b/tests/snapshots/flex/17-trust-set/06-freeze/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/17-trust-set/06-freeze/00000.png and b/tests/snapshots/flex/17-trust-set/06-freeze/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/06-freeze/00001.png b/tests/snapshots/flex/17-trust-set/06-freeze/00001.png index 89d2f9ff..aa204396 100644 Binary files a/tests/snapshots/flex/17-trust-set/06-freeze/00001.png and b/tests/snapshots/flex/17-trust-set/06-freeze/00001.png differ diff --git a/tests/snapshots/flex/17-trust-set/06-freeze/00002.png b/tests/snapshots/flex/17-trust-set/06-freeze/00002.png index 0370fa52..735cfc85 100644 Binary files a/tests/snapshots/flex/17-trust-set/06-freeze/00002.png and b/tests/snapshots/flex/17-trust-set/06-freeze/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/06-freeze/00003.png b/tests/snapshots/flex/17-trust-set/06-freeze/00003.png index ac4c8b52..cb149267 100644 Binary files a/tests/snapshots/flex/17-trust-set/06-freeze/00003.png and b/tests/snapshots/flex/17-trust-set/06-freeze/00003.png differ diff --git a/tests/snapshots/flex/17-trust-set/06-freeze/00004.png b/tests/snapshots/flex/17-trust-set/06-freeze/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/17-trust-set/06-freeze/00004.png and b/tests/snapshots/flex/17-trust-set/06-freeze/00004.png differ diff --git a/tests/snapshots/flex/17-trust-set/07-unfreeze/00000.png b/tests/snapshots/flex/17-trust-set/07-unfreeze/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/17-trust-set/07-unfreeze/00000.png and b/tests/snapshots/flex/17-trust-set/07-unfreeze/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/07-unfreeze/00001.png b/tests/snapshots/flex/17-trust-set/07-unfreeze/00001.png index 54553f60..4f592f94 100644 Binary files a/tests/snapshots/flex/17-trust-set/07-unfreeze/00001.png and b/tests/snapshots/flex/17-trust-set/07-unfreeze/00001.png differ diff --git a/tests/snapshots/flex/17-trust-set/07-unfreeze/00002.png b/tests/snapshots/flex/17-trust-set/07-unfreeze/00002.png index 79028423..2c15b33f 100644 Binary files a/tests/snapshots/flex/17-trust-set/07-unfreeze/00002.png and b/tests/snapshots/flex/17-trust-set/07-unfreeze/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/07-unfreeze/00003.png b/tests/snapshots/flex/17-trust-set/07-unfreeze/00003.png index 92fa18b7..cb149267 100644 Binary files a/tests/snapshots/flex/17-trust-set/07-unfreeze/00003.png and b/tests/snapshots/flex/17-trust-set/07-unfreeze/00003.png differ diff --git a/tests/snapshots/flex/17-trust-set/07-unfreeze/00004.png b/tests/snapshots/flex/17-trust-set/07-unfreeze/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/17-trust-set/07-unfreeze/00004.png and b/tests/snapshots/flex/17-trust-set/07-unfreeze/00004.png differ diff --git a/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00000.png b/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00000.png and b/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00001.png b/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00001.png index 02da26f9..7b29a252 100644 Binary files a/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00001.png and b/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00001.png differ diff --git a/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00002.png b/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00002.png index 00a0b841..4b67e196 100644 Binary files a/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00002.png and b/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00003.png b/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00003.png and b/tests/snapshots/flex/17-trust-set/08-non-standard-currency/00003.png differ diff --git a/tests/snapshots/flex/17-trust-set/09-remove/00000.png b/tests/snapshots/flex/17-trust-set/09-remove/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/17-trust-set/09-remove/00000.png and b/tests/snapshots/flex/17-trust-set/09-remove/00000.png differ diff --git a/tests/snapshots/flex/17-trust-set/09-remove/00001.png b/tests/snapshots/flex/17-trust-set/09-remove/00001.png index f3be4428..e31bf065 100644 Binary files a/tests/snapshots/flex/17-trust-set/09-remove/00001.png and b/tests/snapshots/flex/17-trust-set/09-remove/00001.png differ diff --git a/tests/snapshots/flex/17-trust-set/09-remove/00002.png b/tests/snapshots/flex/17-trust-set/09-remove/00002.png index 00a0b841..4b67e196 100644 Binary files a/tests/snapshots/flex/17-trust-set/09-remove/00002.png and b/tests/snapshots/flex/17-trust-set/09-remove/00002.png differ diff --git a/tests/snapshots/flex/17-trust-set/09-remove/00003.png b/tests/snapshots/flex/17-trust-set/09-remove/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/17-trust-set/09-remove/00003.png and b/tests/snapshots/flex/17-trust-set/09-remove/00003.png differ diff --git a/tests/snapshots/flex/18-arrays/01-basic/00000.png b/tests/snapshots/flex/18-arrays/01-basic/00000.png index 818274c0..58b7b701 100644 Binary files a/tests/snapshots/flex/18-arrays/01-basic/00000.png and b/tests/snapshots/flex/18-arrays/01-basic/00000.png differ diff --git a/tests/snapshots/flex/18-arrays/01-basic/00001.png b/tests/snapshots/flex/18-arrays/01-basic/00001.png index 04d9c2e1..77467fe2 100644 Binary files a/tests/snapshots/flex/18-arrays/01-basic/00001.png and b/tests/snapshots/flex/18-arrays/01-basic/00001.png differ diff --git a/tests/snapshots/flex/18-arrays/01-basic/00002.png b/tests/snapshots/flex/18-arrays/01-basic/00002.png index 640ac810..8d2724c7 100644 Binary files a/tests/snapshots/flex/18-arrays/01-basic/00002.png and b/tests/snapshots/flex/18-arrays/01-basic/00002.png differ diff --git a/tests/snapshots/flex/18-arrays/01-basic/00003.png b/tests/snapshots/flex/18-arrays/01-basic/00003.png index 774a9593..5b680808 100644 Binary files a/tests/snapshots/flex/18-arrays/01-basic/00003.png and b/tests/snapshots/flex/18-arrays/01-basic/00003.png differ diff --git a/tests/snapshots/flex/18-arrays/01-basic/00004.png b/tests/snapshots/flex/18-arrays/01-basic/00004.png index c7f0f6e7..be51a9d5 100644 Binary files a/tests/snapshots/flex/18-arrays/01-basic/00004.png and b/tests/snapshots/flex/18-arrays/01-basic/00004.png differ diff --git a/tests/snapshots/flex/18-arrays/01-basic/00005.png b/tests/snapshots/flex/18-arrays/01-basic/00005.png index be51a9d5..df7bc4a1 100644 Binary files a/tests/snapshots/flex/18-arrays/01-basic/00005.png and b/tests/snapshots/flex/18-arrays/01-basic/00005.png differ diff --git a/tests/snapshots/flex/18-arrays/01-basic/00006.png b/tests/snapshots/flex/18-arrays/01-basic/00006.png deleted file mode 100644 index df7bc4a1..00000000 Binary files a/tests/snapshots/flex/18-arrays/01-basic/00006.png and /dev/null differ diff --git a/tests/snapshots/flex/18-arrays/02-multiple/00000.png b/tests/snapshots/flex/18-arrays/02-multiple/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/18-arrays/02-multiple/00000.png and b/tests/snapshots/flex/18-arrays/02-multiple/00000.png differ diff --git a/tests/snapshots/flex/18-arrays/02-multiple/00001.png b/tests/snapshots/flex/18-arrays/02-multiple/00001.png index 04d9c2e1..d4bf6a3c 100644 Binary files a/tests/snapshots/flex/18-arrays/02-multiple/00001.png and b/tests/snapshots/flex/18-arrays/02-multiple/00001.png differ diff --git a/tests/snapshots/flex/18-arrays/02-multiple/00002.png b/tests/snapshots/flex/18-arrays/02-multiple/00002.png index 640ac810..28cb3110 100644 Binary files a/tests/snapshots/flex/18-arrays/02-multiple/00002.png and b/tests/snapshots/flex/18-arrays/02-multiple/00002.png differ diff --git a/tests/snapshots/flex/18-arrays/02-multiple/00003.png b/tests/snapshots/flex/18-arrays/02-multiple/00003.png index c5d0537e..ebb51a01 100644 Binary files a/tests/snapshots/flex/18-arrays/02-multiple/00003.png and b/tests/snapshots/flex/18-arrays/02-multiple/00003.png differ diff --git a/tests/snapshots/flex/18-arrays/02-multiple/00004.png b/tests/snapshots/flex/18-arrays/02-multiple/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/18-arrays/02-multiple/00004.png and b/tests/snapshots/flex/18-arrays/02-multiple/00004.png differ diff --git a/tests/snapshots/flex/18-arrays/03-not-last/00000.png b/tests/snapshots/flex/18-arrays/03-not-last/00000.png index 818274c0..d9177c78 100644 Binary files a/tests/snapshots/flex/18-arrays/03-not-last/00000.png and b/tests/snapshots/flex/18-arrays/03-not-last/00000.png differ diff --git a/tests/snapshots/flex/18-arrays/03-not-last/00001.png b/tests/snapshots/flex/18-arrays/03-not-last/00001.png index 04d9c2e1..d4bf6a3c 100644 Binary files a/tests/snapshots/flex/18-arrays/03-not-last/00001.png and b/tests/snapshots/flex/18-arrays/03-not-last/00001.png differ diff --git a/tests/snapshots/flex/18-arrays/03-not-last/00002.png b/tests/snapshots/flex/18-arrays/03-not-last/00002.png index 640ac810..4dabd322 100644 Binary files a/tests/snapshots/flex/18-arrays/03-not-last/00002.png and b/tests/snapshots/flex/18-arrays/03-not-last/00002.png differ diff --git a/tests/snapshots/flex/18-arrays/03-not-last/00003.png b/tests/snapshots/flex/18-arrays/03-not-last/00003.png index 8bd439e8..b7bdeabf 100644 Binary files a/tests/snapshots/flex/18-arrays/03-not-last/00003.png and b/tests/snapshots/flex/18-arrays/03-not-last/00003.png differ diff --git a/tests/snapshots/flex/18-arrays/03-not-last/00004.png b/tests/snapshots/flex/18-arrays/03-not-last/00004.png index c7f0f6e7..9bf977ec 100644 Binary files a/tests/snapshots/flex/18-arrays/03-not-last/00004.png and b/tests/snapshots/flex/18-arrays/03-not-last/00004.png differ diff --git a/tests/snapshots/flex/test_get_public_key_confirm/00000.png b/tests/snapshots/flex/test_get_public_key_confirm/00000.png index 823a381b..a44cdd1d 100644 Binary files a/tests/snapshots/flex/test_get_public_key_confirm/00000.png and b/tests/snapshots/flex/test_get_public_key_confirm/00000.png differ diff --git a/tests/snapshots/flex/test_get_public_key_confirm/00001.png b/tests/snapshots/flex/test_get_public_key_confirm/00001.png index 1fb01450..6a0f204e 100644 Binary files a/tests/snapshots/flex/test_get_public_key_confirm/00001.png and b/tests/snapshots/flex/test_get_public_key_confirm/00001.png differ diff --git a/tests/snapshots/flex/test_get_public_key_reject/00000.png b/tests/snapshots/flex/test_get_public_key_reject/00000.png index 823a381b..a44cdd1d 100644 Binary files a/tests/snapshots/flex/test_get_public_key_reject/00000.png and b/tests/snapshots/flex/test_get_public_key_reject/00000.png differ diff --git a/tests/snapshots/flex/test_get_public_key_reject/00001.png b/tests/snapshots/flex/test_get_public_key_reject/00001.png index 1fb01450..6a0f204e 100644 Binary files a/tests/snapshots/flex/test_get_public_key_reject/00001.png and b/tests/snapshots/flex/test_get_public_key_reject/00001.png differ diff --git a/tests/snapshots/flex/test_sign_reject/00000.png b/tests/snapshots/flex/test_sign_reject/00000.png index 137ad663..58b7b701 100644 Binary files a/tests/snapshots/flex/test_sign_reject/00000.png and b/tests/snapshots/flex/test_sign_reject/00000.png differ diff --git a/tests/snapshots/flex/test_sign_reject/00001.png b/tests/snapshots/flex/test_sign_reject/00001.png index 109b6826..ad485a86 100644 Binary files a/tests/snapshots/flex/test_sign_reject/00001.png and b/tests/snapshots/flex/test_sign_reject/00001.png differ diff --git a/tests/snapshots/flex/test_sign_reject/00002.png b/tests/snapshots/flex/test_sign_reject/00002.png index b2459a71..68d5443e 100644 Binary files a/tests/snapshots/flex/test_sign_reject/00002.png and b/tests/snapshots/flex/test_sign_reject/00002.png differ diff --git a/tests/snapshots/flex/test_sign_reject/00003.png b/tests/snapshots/flex/test_sign_reject/00003.png index bd4ae34c..5b680808 100644 Binary files a/tests/snapshots/flex/test_sign_reject/00003.png and b/tests/snapshots/flex/test_sign_reject/00003.png differ diff --git a/tests/snapshots/flex/test_sign_reject/00004.png b/tests/snapshots/flex/test_sign_reject/00004.png index 08bca223..6a11e118 100644 Binary files a/tests/snapshots/flex/test_sign_reject/00004.png and b/tests/snapshots/flex/test_sign_reject/00004.png differ diff --git a/tests/snapshots/stax/01-payment/01-basic/00000.png b/tests/snapshots/stax/01-payment/01-basic/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/01-payment/01-basic/00000.png and b/tests/snapshots/stax/01-payment/01-basic/00000.png differ diff --git a/tests/snapshots/stax/01-payment/01-basic/00001.png b/tests/snapshots/stax/01-payment/01-basic/00001.png index d300f6af..e434dc0a 100644 Binary files a/tests/snapshots/stax/01-payment/01-basic/00001.png and b/tests/snapshots/stax/01-payment/01-basic/00001.png differ diff --git a/tests/snapshots/stax/01-payment/01-basic/00002.png b/tests/snapshots/stax/01-payment/01-basic/00002.png index 9a80ac12..8c477204 100644 Binary files a/tests/snapshots/stax/01-payment/01-basic/00002.png and b/tests/snapshots/stax/01-payment/01-basic/00002.png differ diff --git a/tests/snapshots/stax/01-payment/01-basic/00003.png b/tests/snapshots/stax/01-payment/01-basic/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/01-basic/00003.png and b/tests/snapshots/stax/01-payment/01-basic/00003.png differ diff --git a/tests/snapshots/stax/01-payment/01-basic/00004.png b/tests/snapshots/stax/01-payment/01-basic/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/01-basic/00004.png and b/tests/snapshots/stax/01-payment/01-basic/00004.png differ diff --git a/tests/snapshots/stax/01-payment/01-basic/00005.png b/tests/snapshots/stax/01-payment/01-basic/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/01-basic/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/02-destination-tag/00000.png b/tests/snapshots/stax/01-payment/02-destination-tag/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/02-destination-tag/00000.png and b/tests/snapshots/stax/01-payment/02-destination-tag/00000.png differ diff --git a/tests/snapshots/stax/01-payment/02-destination-tag/00001.png b/tests/snapshots/stax/01-payment/02-destination-tag/00001.png index 7ac615ea..2d2310b7 100644 Binary files a/tests/snapshots/stax/01-payment/02-destination-tag/00001.png and b/tests/snapshots/stax/01-payment/02-destination-tag/00001.png differ diff --git a/tests/snapshots/stax/01-payment/02-destination-tag/00002.png b/tests/snapshots/stax/01-payment/02-destination-tag/00002.png index be3692c4..2188c23a 100644 Binary files a/tests/snapshots/stax/01-payment/02-destination-tag/00002.png and b/tests/snapshots/stax/01-payment/02-destination-tag/00002.png differ diff --git a/tests/snapshots/stax/01-payment/02-destination-tag/00003.png b/tests/snapshots/stax/01-payment/02-destination-tag/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/02-destination-tag/00003.png and b/tests/snapshots/stax/01-payment/02-destination-tag/00003.png differ diff --git a/tests/snapshots/stax/01-payment/02-destination-tag/00004.png b/tests/snapshots/stax/01-payment/02-destination-tag/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/02-destination-tag/00004.png and b/tests/snapshots/stax/01-payment/02-destination-tag/00004.png differ diff --git a/tests/snapshots/stax/01-payment/02-destination-tag/00005.png b/tests/snapshots/stax/01-payment/02-destination-tag/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/02-destination-tag/00005.png and b/tests/snapshots/stax/01-payment/02-destination-tag/00005.png differ diff --git a/tests/snapshots/stax/01-payment/03-source-tag/00000.png b/tests/snapshots/stax/01-payment/03-source-tag/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/03-source-tag/00000.png and b/tests/snapshots/stax/01-payment/03-source-tag/00000.png differ diff --git a/tests/snapshots/stax/01-payment/03-source-tag/00001.png b/tests/snapshots/stax/01-payment/03-source-tag/00001.png index 4feb093b..d015411f 100644 Binary files a/tests/snapshots/stax/01-payment/03-source-tag/00001.png and b/tests/snapshots/stax/01-payment/03-source-tag/00001.png differ diff --git a/tests/snapshots/stax/01-payment/03-source-tag/00002.png b/tests/snapshots/stax/01-payment/03-source-tag/00002.png index be3692c4..2188c23a 100644 Binary files a/tests/snapshots/stax/01-payment/03-source-tag/00002.png and b/tests/snapshots/stax/01-payment/03-source-tag/00002.png differ diff --git a/tests/snapshots/stax/01-payment/03-source-tag/00003.png b/tests/snapshots/stax/01-payment/03-source-tag/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/03-source-tag/00003.png and b/tests/snapshots/stax/01-payment/03-source-tag/00003.png differ diff --git a/tests/snapshots/stax/01-payment/03-source-tag/00004.png b/tests/snapshots/stax/01-payment/03-source-tag/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/03-source-tag/00004.png and b/tests/snapshots/stax/01-payment/03-source-tag/00004.png differ diff --git a/tests/snapshots/stax/01-payment/03-source-tag/00005.png b/tests/snapshots/stax/01-payment/03-source-tag/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/03-source-tag/00005.png and b/tests/snapshots/stax/01-payment/03-source-tag/00005.png differ diff --git a/tests/snapshots/stax/01-payment/04-both-tags/00000.png b/tests/snapshots/stax/01-payment/04-both-tags/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/04-both-tags/00000.png and b/tests/snapshots/stax/01-payment/04-both-tags/00000.png differ diff --git a/tests/snapshots/stax/01-payment/04-both-tags/00001.png b/tests/snapshots/stax/01-payment/04-both-tags/00001.png index 8cee7abb..f87d79ee 100644 Binary files a/tests/snapshots/stax/01-payment/04-both-tags/00001.png and b/tests/snapshots/stax/01-payment/04-both-tags/00001.png differ diff --git a/tests/snapshots/stax/01-payment/04-both-tags/00002.png b/tests/snapshots/stax/01-payment/04-both-tags/00002.png index 1e204112..244cd2f9 100644 Binary files a/tests/snapshots/stax/01-payment/04-both-tags/00002.png and b/tests/snapshots/stax/01-payment/04-both-tags/00002.png differ diff --git a/tests/snapshots/stax/01-payment/04-both-tags/00003.png b/tests/snapshots/stax/01-payment/04-both-tags/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/04-both-tags/00003.png and b/tests/snapshots/stax/01-payment/04-both-tags/00003.png differ diff --git a/tests/snapshots/stax/01-payment/04-both-tags/00004.png b/tests/snapshots/stax/01-payment/04-both-tags/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/04-both-tags/00004.png and b/tests/snapshots/stax/01-payment/04-both-tags/00004.png differ diff --git a/tests/snapshots/stax/01-payment/04-both-tags/00005.png b/tests/snapshots/stax/01-payment/04-both-tags/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/04-both-tags/00005.png and b/tests/snapshots/stax/01-payment/04-both-tags/00005.png differ diff --git a/tests/snapshots/stax/01-payment/05-invoice-id/00000.png b/tests/snapshots/stax/01-payment/05-invoice-id/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/05-invoice-id/00000.png and b/tests/snapshots/stax/01-payment/05-invoice-id/00000.png differ diff --git a/tests/snapshots/stax/01-payment/05-invoice-id/00001.png b/tests/snapshots/stax/01-payment/05-invoice-id/00001.png index 89cde85a..e99984c1 100644 Binary files a/tests/snapshots/stax/01-payment/05-invoice-id/00001.png and b/tests/snapshots/stax/01-payment/05-invoice-id/00001.png differ diff --git a/tests/snapshots/stax/01-payment/05-invoice-id/00002.png b/tests/snapshots/stax/01-payment/05-invoice-id/00002.png index 192971c5..244cd2f9 100644 Binary files a/tests/snapshots/stax/01-payment/05-invoice-id/00002.png and b/tests/snapshots/stax/01-payment/05-invoice-id/00002.png differ diff --git a/tests/snapshots/stax/01-payment/05-invoice-id/00003.png b/tests/snapshots/stax/01-payment/05-invoice-id/00003.png index a4029ea2..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/05-invoice-id/00003.png and b/tests/snapshots/stax/01-payment/05-invoice-id/00003.png differ diff --git a/tests/snapshots/stax/01-payment/05-invoice-id/00004.png b/tests/snapshots/stax/01-payment/05-invoice-id/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/05-invoice-id/00004.png and b/tests/snapshots/stax/01-payment/05-invoice-id/00004.png differ diff --git a/tests/snapshots/stax/01-payment/05-invoice-id/00005.png b/tests/snapshots/stax/01-payment/05-invoice-id/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/05-invoice-id/00005.png and b/tests/snapshots/stax/01-payment/05-invoice-id/00005.png differ diff --git a/tests/snapshots/stax/01-payment/05-invoice-id/00006.png b/tests/snapshots/stax/01-payment/05-invoice-id/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/05-invoice-id/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00000.png b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00000.png index 42f09455..c3af8750 100644 Binary files a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00000.png and b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00000.png differ diff --git a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00001.png b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00001.png index 6a298a23..3317d246 100644 Binary files a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00001.png and b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00001.png differ diff --git a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00002.png b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00002.png index 3206cb73..9dde3607 100644 Binary files a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00002.png and b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00002.png differ diff --git a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00003.png b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00003.png index aac9497f..a5213417 100644 Binary files a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00003.png and b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00003.png differ diff --git a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00004.png b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00004.png index c13e3d8a..5a83c79c 100644 Binary files a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00004.png and b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00004.png differ diff --git a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00005.png b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00005.png index 2e538fa0..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00005.png and b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00005.png differ diff --git a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00006.png b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00006.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00006.png and b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00006.png differ diff --git a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00007.png b/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00007.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/06-invoice-txn-ids-tags/00007.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/07-issued-currency/00000.png b/tests/snapshots/stax/01-payment/07-issued-currency/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/07-issued-currency/00000.png and b/tests/snapshots/stax/01-payment/07-issued-currency/00000.png differ diff --git a/tests/snapshots/stax/01-payment/07-issued-currency/00001.png b/tests/snapshots/stax/01-payment/07-issued-currency/00001.png index 1e95f775..ba18c719 100644 Binary files a/tests/snapshots/stax/01-payment/07-issued-currency/00001.png and b/tests/snapshots/stax/01-payment/07-issued-currency/00001.png differ diff --git a/tests/snapshots/stax/01-payment/07-issued-currency/00002.png b/tests/snapshots/stax/01-payment/07-issued-currency/00002.png index 78c854fb..2188c23a 100644 Binary files a/tests/snapshots/stax/01-payment/07-issued-currency/00002.png and b/tests/snapshots/stax/01-payment/07-issued-currency/00002.png differ diff --git a/tests/snapshots/stax/01-payment/07-issued-currency/00003.png b/tests/snapshots/stax/01-payment/07-issued-currency/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/07-issued-currency/00003.png and b/tests/snapshots/stax/01-payment/07-issued-currency/00003.png differ diff --git a/tests/snapshots/stax/01-payment/07-issued-currency/00004.png b/tests/snapshots/stax/01-payment/07-issued-currency/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/07-issued-currency/00004.png and b/tests/snapshots/stax/01-payment/07-issued-currency/00004.png differ diff --git a/tests/snapshots/stax/01-payment/07-issued-currency/00005.png b/tests/snapshots/stax/01-payment/07-issued-currency/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/07-issued-currency/00005.png and b/tests/snapshots/stax/01-payment/07-issued-currency/00005.png differ diff --git a/tests/snapshots/stax/01-payment/08-issued-currency-max/00000.png b/tests/snapshots/stax/01-payment/08-issued-currency-max/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/08-issued-currency-max/00000.png and b/tests/snapshots/stax/01-payment/08-issued-currency-max/00000.png differ diff --git a/tests/snapshots/stax/01-payment/08-issued-currency-max/00001.png b/tests/snapshots/stax/01-payment/08-issued-currency-max/00001.png index 5aee5dac..cd7f3155 100644 Binary files a/tests/snapshots/stax/01-payment/08-issued-currency-max/00001.png and b/tests/snapshots/stax/01-payment/08-issued-currency-max/00001.png differ diff --git a/tests/snapshots/stax/01-payment/08-issued-currency-max/00002.png b/tests/snapshots/stax/01-payment/08-issued-currency-max/00002.png index acd3d413..3502fa34 100644 Binary files a/tests/snapshots/stax/01-payment/08-issued-currency-max/00002.png and b/tests/snapshots/stax/01-payment/08-issued-currency-max/00002.png differ diff --git a/tests/snapshots/stax/01-payment/08-issued-currency-max/00003.png b/tests/snapshots/stax/01-payment/08-issued-currency-max/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/08-issued-currency-max/00003.png and b/tests/snapshots/stax/01-payment/08-issued-currency-max/00003.png differ diff --git a/tests/snapshots/stax/01-payment/08-issued-currency-max/00004.png b/tests/snapshots/stax/01-payment/08-issued-currency-max/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/08-issued-currency-max/00004.png and b/tests/snapshots/stax/01-payment/08-issued-currency-max/00004.png differ diff --git a/tests/snapshots/stax/01-payment/08-issued-currency-max/00005.png b/tests/snapshots/stax/01-payment/08-issued-currency-max/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/08-issued-currency-max/00005.png and b/tests/snapshots/stax/01-payment/08-issued-currency-max/00005.png differ diff --git a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00000.png b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00000.png and b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00000.png differ diff --git a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00001.png b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00001.png index bdd3eca3..c8ed49ff 100644 Binary files a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00001.png and b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00001.png differ diff --git a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00002.png b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00002.png index 7821d450..2313699d 100644 Binary files a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00002.png and b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00002.png differ diff --git a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00003.png b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00003.png index a4029ea2..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00003.png and b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00003.png differ diff --git a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00004.png b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00004.png and b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00004.png differ diff --git a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00005.png b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00005.png and b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00005.png differ diff --git a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00006.png b/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/09-issued-currency-min-partial/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00000.png b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00000.png index 3119b975..c3af8750 100644 Binary files a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00000.png and b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00000.png differ diff --git a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00001.png b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00001.png index 6df5fd34..4af52b67 100644 Binary files a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00001.png and b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00001.png differ diff --git a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00002.png b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00002.png index f3879dc8..68fd5e1e 100644 Binary files a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00002.png and b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00002.png differ diff --git a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00003.png b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00003.png index ba1c5b8d..07c12e98 100644 Binary files a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00003.png and b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00003.png differ diff --git a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00004.png b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00004.png index 7cff0b71..5a83c79c 100644 Binary files a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00004.png and b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00004.png differ diff --git a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00005.png b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00005.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00005.png and b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00005.png differ diff --git a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00006.png b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00006.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00006.png and b/tests/snapshots/stax/01-payment/10-issued-currency-quality-partial/00006.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00000.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00000.png index 383aa314..dd5df365 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00000.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00000.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00001.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00001.png index dd0c6869..366a95b7 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00001.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00001.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00002.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00002.png index 9d639985..bea9f2ec 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00002.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00002.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00003.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00003.png index 357cce87..de7d93cb 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00003.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00003.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00004.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00004.png index f032615f..4b5e40ed 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00004.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00004.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00005.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00005.png index af730dcd..dea010a8 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00005.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00005.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00006.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00006.png index 275a224b..08c9332a 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00006.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00006.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00007.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00007.png index 4d398559..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00007.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00007.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00008.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00008.png index 7dae1b6b..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00008.png and b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00008.png differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00009.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00009.png deleted file mode 100644 index bd0eda18..00000000 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00009.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00010.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00010.png deleted file mode 100644 index 2ba6d27d..00000000 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00010.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00011.png b/tests/snapshots/stax/01-payment/11-issued-currency-paths/00011.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/11-issued-currency-paths/00011.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00000.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00000.png index 2c69bd2f..c3af8750 100644 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00000.png and b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00000.png differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00001.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00001.png index b1e1394c..c1735718 100644 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00001.png and b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00001.png differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00002.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00002.png index 20b97467..c0318bbf 100644 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00002.png and b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00002.png differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00003.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00003.png index 395bce60..565c736e 100644 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00003.png and b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00003.png differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00004.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00004.png index 5504faed..5a83c79c 100644 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00004.png and b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00004.png differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00005.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00005.png index d35967d7..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00005.png and b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00005.png differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00006.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00006.png index f62ea79d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00006.png and b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00006.png differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00007.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00007.png deleted file mode 100644 index 2ba6d27d..00000000 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00007.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00008.png b/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00008.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/12-issued-currency-conversion/00008.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00000.png b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00000.png and b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00000.png differ diff --git a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00001.png b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00001.png index 771933a6..b871eb31 100644 Binary files a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00001.png and b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00001.png differ diff --git a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00002.png b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00002.png index d3832d15..853fa5ef 100644 Binary files a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00002.png and b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00002.png differ diff --git a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00003.png b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00003.png index a4029ea2..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00003.png and b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00003.png differ diff --git a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00004.png b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00004.png and b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00004.png differ diff --git a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00005.png b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00005.png and b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00005.png differ diff --git a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00006.png b/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/13-issued-currency-e-notation/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00000.png b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00000.png and b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00000.png differ diff --git a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00001.png b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00001.png index 5fa17067..f9cecc9b 100644 Binary files a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00001.png and b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00001.png differ diff --git a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00002.png b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00002.png index cb0ca852..e34f2f6c 100644 Binary files a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00002.png and b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00002.png differ diff --git a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00003.png b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00003.png index c8ed5afc..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00003.png and b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00003.png differ diff --git a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00004.png b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00004.png and b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00004.png differ diff --git a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00005.png b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00005.png and b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00005.png differ diff --git a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00006.png b/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/14-issued-currency-non-standard/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00000.png b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00000.png and b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00000.png differ diff --git a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00001.png b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00001.png index cdb38e8e..a0e1e8b2 100644 Binary files a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00001.png and b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00001.png differ diff --git a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00002.png b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00002.png index 0571e032..2188c23a 100644 Binary files a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00002.png and b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00002.png differ diff --git a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00003.png b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00003.png and b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00003.png differ diff --git a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00004.png b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00004.png and b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00004.png differ diff --git a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00005.png b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/15-issue-abc-currency/00005.png and b/tests/snapshots/stax/01-payment/15-issue-abc-currency/00005.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00000.png b/tests/snapshots/stax/01-payment/16-memos/00000.png index 288aefbc..dd5df365 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00000.png and b/tests/snapshots/stax/01-payment/16-memos/00000.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00001.png b/tests/snapshots/stax/01-payment/16-memos/00001.png index 3d24fda1..7f1996d3 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00001.png and b/tests/snapshots/stax/01-payment/16-memos/00001.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00002.png b/tests/snapshots/stax/01-payment/16-memos/00002.png index 21e3345d..27d1aaac 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00002.png and b/tests/snapshots/stax/01-payment/16-memos/00002.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00003.png b/tests/snapshots/stax/01-payment/16-memos/00003.png index f7822f1f..e54689e8 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00003.png and b/tests/snapshots/stax/01-payment/16-memos/00003.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00004.png b/tests/snapshots/stax/01-payment/16-memos/00004.png index a470d2f9..415a1f45 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00004.png and b/tests/snapshots/stax/01-payment/16-memos/00004.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00005.png b/tests/snapshots/stax/01-payment/16-memos/00005.png index 28b3e97a..7d18fae8 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00005.png and b/tests/snapshots/stax/01-payment/16-memos/00005.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00006.png b/tests/snapshots/stax/01-payment/16-memos/00006.png index eadf8320..08c9332a 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00006.png and b/tests/snapshots/stax/01-payment/16-memos/00006.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00007.png b/tests/snapshots/stax/01-payment/16-memos/00007.png index 196fc8b4..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00007.png and b/tests/snapshots/stax/01-payment/16-memos/00007.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00008.png b/tests/snapshots/stax/01-payment/16-memos/00008.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/16-memos/00008.png and b/tests/snapshots/stax/01-payment/16-memos/00008.png differ diff --git a/tests/snapshots/stax/01-payment/16-memos/00009.png b/tests/snapshots/stax/01-payment/16-memos/00009.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/16-memos/00009.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00000.png b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00000.png and b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00000.png differ diff --git a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00001.png b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00001.png index 70f056af..395ad8a0 100644 Binary files a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00001.png and b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00001.png differ diff --git a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00002.png b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00002.png index 9a80ac12..8c477204 100644 Binary files a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00002.png and b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00002.png differ diff --git a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00003.png b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00003.png and b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00003.png differ diff --git a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00004.png b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00004.png and b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00004.png differ diff --git a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00005.png b/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/17-multi-sign-parallel/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00000.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00000.png index 288aefbc..dd5df365 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00000.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00000.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00001.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00001.png index 22db5ea6..564c483f 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00001.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00001.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00002.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00002.png index d27bf7b6..eee9bddf 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00002.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00002.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00003.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00003.png index 62afe86a..f9b473a5 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00003.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00003.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00004.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00004.png index e6a1d17d..f9870ccf 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00004.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00004.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00005.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00005.png index 4542fda8..ac7752f5 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00005.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00005.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00006.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00006.png index f4b55e9d..08c9332a 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00006.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00006.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00007.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00007.png index 196fc8b4..392165d4 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00007.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00007.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00008.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00008.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00008.png and b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00008.png differ diff --git a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00009.png b/tests/snapshots/stax/01-payment/18-multi-sign-serial/00009.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/01-payment/18-multi-sign-serial/00009.png and /dev/null differ diff --git a/tests/snapshots/stax/02-set-regular-key/01-basic/00000.png b/tests/snapshots/stax/02-set-regular-key/01-basic/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/01-basic/00000.png and b/tests/snapshots/stax/02-set-regular-key/01-basic/00000.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/01-basic/00001.png b/tests/snapshots/stax/02-set-regular-key/01-basic/00001.png index cfb57553..2c42687f 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/01-basic/00001.png and b/tests/snapshots/stax/02-set-regular-key/01-basic/00001.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/01-basic/00002.png b/tests/snapshots/stax/02-set-regular-key/01-basic/00002.png index e1439c3f..8c477204 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/01-basic/00002.png and b/tests/snapshots/stax/02-set-regular-key/01-basic/00002.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/01-basic/00003.png b/tests/snapshots/stax/02-set-regular-key/01-basic/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/01-basic/00003.png and b/tests/snapshots/stax/02-set-regular-key/01-basic/00003.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/01-basic/00004.png b/tests/snapshots/stax/02-set-regular-key/01-basic/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/01-basic/00004.png and b/tests/snapshots/stax/02-set-regular-key/01-basic/00004.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/01-basic/00005.png b/tests/snapshots/stax/02-set-regular-key/01-basic/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/02-set-regular-key/01-basic/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/02-set-regular-key/02-delete/00000.png b/tests/snapshots/stax/02-set-regular-key/02-delete/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/02-delete/00000.png and b/tests/snapshots/stax/02-set-regular-key/02-delete/00000.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/02-delete/00001.png b/tests/snapshots/stax/02-set-regular-key/02-delete/00001.png index e683acf1..706a4344 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/02-delete/00001.png and b/tests/snapshots/stax/02-set-regular-key/02-delete/00001.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/02-delete/00002.png b/tests/snapshots/stax/02-set-regular-key/02-delete/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/02-delete/00002.png and b/tests/snapshots/stax/02-set-regular-key/02-delete/00002.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/02-delete/00003.png b/tests/snapshots/stax/02-set-regular-key/02-delete/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/02-delete/00003.png and b/tests/snapshots/stax/02-set-regular-key/02-delete/00003.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/02-delete/00004.png b/tests/snapshots/stax/02-set-regular-key/02-delete/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/02-delete/00004.png and b/tests/snapshots/stax/02-set-regular-key/02-delete/00004.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00000.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00000.png index 2c69bd2f..c3af8750 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00000.png and b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00000.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00001.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00001.png index 7d66d181..a3f9c217 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00001.png and b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00001.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00002.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00002.png index 0bf7f180..798676b9 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00002.png and b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00002.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00003.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00003.png index a8201139..e6cd2316 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00003.png and b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00003.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00004.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00004.png index b62bfc7e..5a83c79c 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00004.png and b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00004.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00005.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00005.png index e1cee778..392165d4 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00005.png and b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00005.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00006.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00006.png index f62ea79d..9ac941ee 100644 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00006.png and b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00006.png differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00007.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00007.png deleted file mode 100644 index 2ba6d27d..00000000 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00007.png and /dev/null differ diff --git a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00008.png b/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00008.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/02-set-regular-key/03-all-common-fields/00008.png and /dev/null differ diff --git a/tests/snapshots/stax/03-escrow-create/01-finish-after/00000.png b/tests/snapshots/stax/03-escrow-create/01-finish-after/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/03-escrow-create/01-finish-after/00000.png and b/tests/snapshots/stax/03-escrow-create/01-finish-after/00000.png differ diff --git a/tests/snapshots/stax/03-escrow-create/01-finish-after/00001.png b/tests/snapshots/stax/03-escrow-create/01-finish-after/00001.png index dd89bd07..031a7a3a 100644 Binary files a/tests/snapshots/stax/03-escrow-create/01-finish-after/00001.png and b/tests/snapshots/stax/03-escrow-create/01-finish-after/00001.png differ diff --git a/tests/snapshots/stax/03-escrow-create/01-finish-after/00002.png b/tests/snapshots/stax/03-escrow-create/01-finish-after/00002.png index 999b5875..2188c23a 100644 Binary files a/tests/snapshots/stax/03-escrow-create/01-finish-after/00002.png and b/tests/snapshots/stax/03-escrow-create/01-finish-after/00002.png differ diff --git a/tests/snapshots/stax/03-escrow-create/01-finish-after/00003.png b/tests/snapshots/stax/03-escrow-create/01-finish-after/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/03-escrow-create/01-finish-after/00003.png and b/tests/snapshots/stax/03-escrow-create/01-finish-after/00003.png differ diff --git a/tests/snapshots/stax/03-escrow-create/01-finish-after/00004.png b/tests/snapshots/stax/03-escrow-create/01-finish-after/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/03-escrow-create/01-finish-after/00004.png and b/tests/snapshots/stax/03-escrow-create/01-finish-after/00004.png differ diff --git a/tests/snapshots/stax/03-escrow-create/01-finish-after/00005.png b/tests/snapshots/stax/03-escrow-create/01-finish-after/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/03-escrow-create/01-finish-after/00005.png and b/tests/snapshots/stax/03-escrow-create/01-finish-after/00005.png differ diff --git a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00000.png b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00000.png and b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00000.png differ diff --git a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00001.png b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00001.png index 185579cb..c67c0304 100644 Binary files a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00001.png and b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00001.png differ diff --git a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00002.png b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00002.png index 999b5875..2188c23a 100644 Binary files a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00002.png and b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00002.png differ diff --git a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00003.png b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00003.png and b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00003.png differ diff --git a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00004.png b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00004.png and b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00004.png differ diff --git a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00005.png b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/03-escrow-create/02-cancel-after/00005.png and b/tests/snapshots/stax/03-escrow-create/02-cancel-after/00005.png differ diff --git a/tests/snapshots/stax/03-escrow-create/03-both/00000.png b/tests/snapshots/stax/03-escrow-create/03-both/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/03-escrow-create/03-both/00000.png and b/tests/snapshots/stax/03-escrow-create/03-both/00000.png differ diff --git a/tests/snapshots/stax/03-escrow-create/03-both/00001.png b/tests/snapshots/stax/03-escrow-create/03-both/00001.png index 9f2482eb..738ee180 100644 Binary files a/tests/snapshots/stax/03-escrow-create/03-both/00001.png and b/tests/snapshots/stax/03-escrow-create/03-both/00001.png differ diff --git a/tests/snapshots/stax/03-escrow-create/03-both/00002.png b/tests/snapshots/stax/03-escrow-create/03-both/00002.png index 9c1cb075..e4b57015 100644 Binary files a/tests/snapshots/stax/03-escrow-create/03-both/00002.png and b/tests/snapshots/stax/03-escrow-create/03-both/00002.png differ diff --git a/tests/snapshots/stax/03-escrow-create/03-both/00003.png b/tests/snapshots/stax/03-escrow-create/03-both/00003.png index a4029ea2..8da78e35 100644 Binary files a/tests/snapshots/stax/03-escrow-create/03-both/00003.png and b/tests/snapshots/stax/03-escrow-create/03-both/00003.png differ diff --git a/tests/snapshots/stax/03-escrow-create/03-both/00004.png b/tests/snapshots/stax/03-escrow-create/03-both/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/03-escrow-create/03-both/00004.png and b/tests/snapshots/stax/03-escrow-create/03-both/00004.png differ diff --git a/tests/snapshots/stax/03-escrow-create/03-both/00005.png b/tests/snapshots/stax/03-escrow-create/03-both/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/03-escrow-create/03-both/00005.png and b/tests/snapshots/stax/03-escrow-create/03-both/00005.png differ diff --git a/tests/snapshots/stax/03-escrow-create/03-both/00006.png b/tests/snapshots/stax/03-escrow-create/03-both/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/03-escrow-create/03-both/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/03-escrow-create/04-both-condition/00000.png b/tests/snapshots/stax/03-escrow-create/04-both-condition/00000.png index 3119b975..c3af8750 100644 Binary files a/tests/snapshots/stax/03-escrow-create/04-both-condition/00000.png and b/tests/snapshots/stax/03-escrow-create/04-both-condition/00000.png differ diff --git a/tests/snapshots/stax/03-escrow-create/04-both-condition/00001.png b/tests/snapshots/stax/03-escrow-create/04-both-condition/00001.png index 9f2482eb..b694a7c7 100644 Binary files a/tests/snapshots/stax/03-escrow-create/04-both-condition/00001.png and b/tests/snapshots/stax/03-escrow-create/04-both-condition/00001.png differ diff --git a/tests/snapshots/stax/03-escrow-create/04-both-condition/00002.png b/tests/snapshots/stax/03-escrow-create/04-both-condition/00002.png index 9c1cb075..9e745afb 100644 Binary files a/tests/snapshots/stax/03-escrow-create/04-both-condition/00002.png and b/tests/snapshots/stax/03-escrow-create/04-both-condition/00002.png differ diff --git a/tests/snapshots/stax/03-escrow-create/04-both-condition/00003.png b/tests/snapshots/stax/03-escrow-create/04-both-condition/00003.png index 86f64a5b..07c12e98 100644 Binary files a/tests/snapshots/stax/03-escrow-create/04-both-condition/00003.png and b/tests/snapshots/stax/03-escrow-create/04-both-condition/00003.png differ diff --git a/tests/snapshots/stax/03-escrow-create/04-both-condition/00004.png b/tests/snapshots/stax/03-escrow-create/04-both-condition/00004.png index 7cff0b71..5a83c79c 100644 Binary files a/tests/snapshots/stax/03-escrow-create/04-both-condition/00004.png and b/tests/snapshots/stax/03-escrow-create/04-both-condition/00004.png differ diff --git a/tests/snapshots/stax/03-escrow-create/04-both-condition/00005.png b/tests/snapshots/stax/03-escrow-create/04-both-condition/00005.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/03-escrow-create/04-both-condition/00005.png and b/tests/snapshots/stax/03-escrow-create/04-both-condition/00005.png differ diff --git a/tests/snapshots/stax/03-escrow-create/04-both-condition/00006.png b/tests/snapshots/stax/03-escrow-create/04-both-condition/00006.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/03-escrow-create/04-both-condition/00006.png and b/tests/snapshots/stax/03-escrow-create/04-both-condition/00006.png differ diff --git a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00000.png b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00000.png index 42f09455..c3af8750 100644 Binary files a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00000.png and b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00000.png differ diff --git a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00001.png b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00001.png index bc71726f..04a2f9b1 100644 Binary files a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00001.png and b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00001.png differ diff --git a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00002.png b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00002.png index 26b98c74..07b57ce1 100644 Binary files a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00002.png and b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00002.png differ diff --git a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00003.png b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00003.png index 746b8311..f70fa43b 100644 Binary files a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00003.png and b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00003.png differ diff --git a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00004.png b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00004.png index c13e3d8a..5a83c79c 100644 Binary files a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00004.png and b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00004.png differ diff --git a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00005.png b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00005.png index 2e538fa0..392165d4 100644 Binary files a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00005.png and b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00005.png differ diff --git a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00006.png b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00006.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00006.png and b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00006.png differ diff --git a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00007.png b/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00007.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/03-escrow-create/05-both-condition-destination/00007.png and /dev/null differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00000.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00000.png index 288aefbc..dd5df365 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00000.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00000.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00001.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00001.png index 08df911b..0d5a2f46 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00001.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00001.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00002.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00002.png index f17df2ed..91289b3d 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00002.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00002.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00003.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00003.png index 2580559d..6c30b70a 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00003.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00003.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00004.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00004.png index 265174c3..66884ea6 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00004.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00004.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00005.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00005.png index 81bcf901..61e20ac8 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00005.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00005.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00006.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00006.png index 8efd4ea8..08c9332a 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00006.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00006.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00007.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00007.png index 196fc8b4..392165d4 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00007.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00007.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00008.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00008.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00008.png and b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00008.png differ diff --git a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00009.png b/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00009.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/03-escrow-create/06-all-common-fields/00009.png and /dev/null differ diff --git a/tests/snapshots/stax/04-escrow-finish/01-time-based/00000.png b/tests/snapshots/stax/04-escrow-finish/01-time-based/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/01-time-based/00000.png and b/tests/snapshots/stax/04-escrow-finish/01-time-based/00000.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/01-time-based/00001.png b/tests/snapshots/stax/04-escrow-finish/01-time-based/00001.png index 2155667e..8676dbdd 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/01-time-based/00001.png and b/tests/snapshots/stax/04-escrow-finish/01-time-based/00001.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/01-time-based/00002.png b/tests/snapshots/stax/04-escrow-finish/01-time-based/00002.png index eda9e74b..8c477204 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/01-time-based/00002.png and b/tests/snapshots/stax/04-escrow-finish/01-time-based/00002.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/01-time-based/00003.png b/tests/snapshots/stax/04-escrow-finish/01-time-based/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/01-time-based/00003.png and b/tests/snapshots/stax/04-escrow-finish/01-time-based/00003.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/01-time-based/00004.png b/tests/snapshots/stax/04-escrow-finish/01-time-based/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/01-time-based/00004.png and b/tests/snapshots/stax/04-escrow-finish/01-time-based/00004.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/01-time-based/00005.png b/tests/snapshots/stax/04-escrow-finish/01-time-based/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/04-escrow-finish/01-time-based/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00000.png b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00000.png and b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00000.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00001.png b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00001.png index b072bc29..7746f584 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00001.png and b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00001.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00002.png b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00002.png index e77b3909..13434708 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00002.png and b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00002.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00003.png b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00003.png index 365c3c23..8da78e35 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00003.png and b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00003.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00004.png b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00004.png and b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00004.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00005.png b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00005.png and b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00005.png differ diff --git a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00006.png b/tests/snapshots/stax/04-escrow-finish/02-condition-based/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/04-escrow-finish/02-condition-based/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/05-escrow-cancel/01-basic/00000.png b/tests/snapshots/stax/05-escrow-cancel/01-basic/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/05-escrow-cancel/01-basic/00000.png and b/tests/snapshots/stax/05-escrow-cancel/01-basic/00000.png differ diff --git a/tests/snapshots/stax/05-escrow-cancel/01-basic/00001.png b/tests/snapshots/stax/05-escrow-cancel/01-basic/00001.png index f1a706e1..c4dfd9ef 100644 Binary files a/tests/snapshots/stax/05-escrow-cancel/01-basic/00001.png and b/tests/snapshots/stax/05-escrow-cancel/01-basic/00001.png differ diff --git a/tests/snapshots/stax/05-escrow-cancel/01-basic/00002.png b/tests/snapshots/stax/05-escrow-cancel/01-basic/00002.png index eda9e74b..8c477204 100644 Binary files a/tests/snapshots/stax/05-escrow-cancel/01-basic/00002.png and b/tests/snapshots/stax/05-escrow-cancel/01-basic/00002.png differ diff --git a/tests/snapshots/stax/05-escrow-cancel/01-basic/00003.png b/tests/snapshots/stax/05-escrow-cancel/01-basic/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/05-escrow-cancel/01-basic/00003.png and b/tests/snapshots/stax/05-escrow-cancel/01-basic/00003.png differ diff --git a/tests/snapshots/stax/05-escrow-cancel/01-basic/00004.png b/tests/snapshots/stax/05-escrow-cancel/01-basic/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/05-escrow-cancel/01-basic/00004.png and b/tests/snapshots/stax/05-escrow-cancel/01-basic/00004.png differ diff --git a/tests/snapshots/stax/05-escrow-cancel/01-basic/00005.png b/tests/snapshots/stax/05-escrow-cancel/01-basic/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/05-escrow-cancel/01-basic/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/06-account-set/01-basic/00000.png b/tests/snapshots/stax/06-account-set/01-basic/00000.png index 42f09455..c3af8750 100644 Binary files a/tests/snapshots/stax/06-account-set/01-basic/00000.png and b/tests/snapshots/stax/06-account-set/01-basic/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/01-basic/00001.png b/tests/snapshots/stax/06-account-set/01-basic/00001.png index eae1297c..59c93aba 100644 Binary files a/tests/snapshots/stax/06-account-set/01-basic/00001.png and b/tests/snapshots/stax/06-account-set/01-basic/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/01-basic/00002.png b/tests/snapshots/stax/06-account-set/01-basic/00002.png index 4b881fa5..c9974186 100644 Binary files a/tests/snapshots/stax/06-account-set/01-basic/00002.png and b/tests/snapshots/stax/06-account-set/01-basic/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/01-basic/00003.png b/tests/snapshots/stax/06-account-set/01-basic/00003.png index 8a104f82..6769a55e 100644 Binary files a/tests/snapshots/stax/06-account-set/01-basic/00003.png and b/tests/snapshots/stax/06-account-set/01-basic/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/01-basic/00004.png b/tests/snapshots/stax/06-account-set/01-basic/00004.png index 46e7549c..5a83c79c 100644 Binary files a/tests/snapshots/stax/06-account-set/01-basic/00004.png and b/tests/snapshots/stax/06-account-set/01-basic/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/01-basic/00005.png b/tests/snapshots/stax/06-account-set/01-basic/00005.png index 2e538fa0..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/01-basic/00005.png and b/tests/snapshots/stax/06-account-set/01-basic/00005.png differ diff --git a/tests/snapshots/stax/06-account-set/01-basic/00006.png b/tests/snapshots/stax/06-account-set/01-basic/00006.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/01-basic/00006.png and b/tests/snapshots/stax/06-account-set/01-basic/00006.png differ diff --git a/tests/snapshots/stax/06-account-set/01-basic/00007.png b/tests/snapshots/stax/06-account-set/01-basic/00007.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/06-account-set/01-basic/00007.png and /dev/null differ diff --git a/tests/snapshots/stax/06-account-set/02-default-ripple/00000.png b/tests/snapshots/stax/06-account-set/02-default-ripple/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/02-default-ripple/00000.png and b/tests/snapshots/stax/06-account-set/02-default-ripple/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/02-default-ripple/00002.png b/tests/snapshots/stax/06-account-set/02-default-ripple/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/02-default-ripple/00002.png and b/tests/snapshots/stax/06-account-set/02-default-ripple/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/02-default-ripple/00003.png b/tests/snapshots/stax/06-account-set/02-default-ripple/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/02-default-ripple/00003.png and b/tests/snapshots/stax/06-account-set/02-default-ripple/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/02-default-ripple/00004.png b/tests/snapshots/stax/06-account-set/02-default-ripple/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/02-default-ripple/00004.png and b/tests/snapshots/stax/06-account-set/02-default-ripple/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/03-deposit-auth/00000.png b/tests/snapshots/stax/06-account-set/03-deposit-auth/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/03-deposit-auth/00000.png and b/tests/snapshots/stax/06-account-set/03-deposit-auth/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/03-deposit-auth/00001.png b/tests/snapshots/stax/06-account-set/03-deposit-auth/00001.png index d2ae5065..68d4084d 100644 Binary files a/tests/snapshots/stax/06-account-set/03-deposit-auth/00001.png and b/tests/snapshots/stax/06-account-set/03-deposit-auth/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/03-deposit-auth/00002.png b/tests/snapshots/stax/06-account-set/03-deposit-auth/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/03-deposit-auth/00002.png and b/tests/snapshots/stax/06-account-set/03-deposit-auth/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/03-deposit-auth/00003.png b/tests/snapshots/stax/06-account-set/03-deposit-auth/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/03-deposit-auth/00003.png and b/tests/snapshots/stax/06-account-set/03-deposit-auth/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/03-deposit-auth/00004.png b/tests/snapshots/stax/06-account-set/03-deposit-auth/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/03-deposit-auth/00004.png and b/tests/snapshots/stax/06-account-set/03-deposit-auth/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/04-disable-master/00000.png b/tests/snapshots/stax/06-account-set/04-disable-master/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/04-disable-master/00000.png and b/tests/snapshots/stax/06-account-set/04-disable-master/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/04-disable-master/00001.png b/tests/snapshots/stax/06-account-set/04-disable-master/00001.png index 64b107b2..f12ebd9f 100644 Binary files a/tests/snapshots/stax/06-account-set/04-disable-master/00001.png and b/tests/snapshots/stax/06-account-set/04-disable-master/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/04-disable-master/00002.png b/tests/snapshots/stax/06-account-set/04-disable-master/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/04-disable-master/00002.png and b/tests/snapshots/stax/06-account-set/04-disable-master/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/04-disable-master/00003.png b/tests/snapshots/stax/06-account-set/04-disable-master/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/04-disable-master/00003.png and b/tests/snapshots/stax/06-account-set/04-disable-master/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/04-disable-master/00004.png b/tests/snapshots/stax/06-account-set/04-disable-master/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/04-disable-master/00004.png and b/tests/snapshots/stax/06-account-set/04-disable-master/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00000.png b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00000.png and b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00001.png b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00001.png index 68e32fa3..d12f2b8a 100644 Binary files a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00001.png and b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00002.png b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00002.png and b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00003.png b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00003.png and b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00004.png b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/05-disallow-xrp/00004.png and b/tests/snapshots/stax/06-account-set/05-disallow-xrp/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/06-global-freeze/00000.png b/tests/snapshots/stax/06-account-set/06-global-freeze/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/06-global-freeze/00000.png and b/tests/snapshots/stax/06-account-set/06-global-freeze/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/06-global-freeze/00001.png b/tests/snapshots/stax/06-account-set/06-global-freeze/00001.png index 7c78cc72..c3b7bdee 100644 Binary files a/tests/snapshots/stax/06-account-set/06-global-freeze/00001.png and b/tests/snapshots/stax/06-account-set/06-global-freeze/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/06-global-freeze/00002.png b/tests/snapshots/stax/06-account-set/06-global-freeze/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/06-global-freeze/00002.png and b/tests/snapshots/stax/06-account-set/06-global-freeze/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/06-global-freeze/00003.png b/tests/snapshots/stax/06-account-set/06-global-freeze/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/06-global-freeze/00003.png and b/tests/snapshots/stax/06-account-set/06-global-freeze/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/06-global-freeze/00004.png b/tests/snapshots/stax/06-account-set/06-global-freeze/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/06-global-freeze/00004.png and b/tests/snapshots/stax/06-account-set/06-global-freeze/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/07-no-freeze/00000.png b/tests/snapshots/stax/06-account-set/07-no-freeze/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/07-no-freeze/00000.png and b/tests/snapshots/stax/06-account-set/07-no-freeze/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/07-no-freeze/00001.png b/tests/snapshots/stax/06-account-set/07-no-freeze/00001.png index 3578366b..64540718 100644 Binary files a/tests/snapshots/stax/06-account-set/07-no-freeze/00001.png and b/tests/snapshots/stax/06-account-set/07-no-freeze/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/07-no-freeze/00002.png b/tests/snapshots/stax/06-account-set/07-no-freeze/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/07-no-freeze/00002.png and b/tests/snapshots/stax/06-account-set/07-no-freeze/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/07-no-freeze/00003.png b/tests/snapshots/stax/06-account-set/07-no-freeze/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/07-no-freeze/00003.png and b/tests/snapshots/stax/06-account-set/07-no-freeze/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/07-no-freeze/00004.png b/tests/snapshots/stax/06-account-set/07-no-freeze/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/07-no-freeze/00004.png and b/tests/snapshots/stax/06-account-set/07-no-freeze/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/08-require-auth/00000.png b/tests/snapshots/stax/06-account-set/08-require-auth/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/08-require-auth/00000.png and b/tests/snapshots/stax/06-account-set/08-require-auth/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/08-require-auth/00001.png b/tests/snapshots/stax/06-account-set/08-require-auth/00001.png index a6a03b98..e3bc2d0f 100644 Binary files a/tests/snapshots/stax/06-account-set/08-require-auth/00001.png and b/tests/snapshots/stax/06-account-set/08-require-auth/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/08-require-auth/00002.png b/tests/snapshots/stax/06-account-set/08-require-auth/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/08-require-auth/00002.png and b/tests/snapshots/stax/06-account-set/08-require-auth/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/08-require-auth/00003.png b/tests/snapshots/stax/06-account-set/08-require-auth/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/08-require-auth/00003.png and b/tests/snapshots/stax/06-account-set/08-require-auth/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/08-require-auth/00004.png b/tests/snapshots/stax/06-account-set/08-require-auth/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/08-require-auth/00004.png and b/tests/snapshots/stax/06-account-set/08-require-auth/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/09-require-tag/00000.png b/tests/snapshots/stax/06-account-set/09-require-tag/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/09-require-tag/00000.png and b/tests/snapshots/stax/06-account-set/09-require-tag/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/09-require-tag/00001.png b/tests/snapshots/stax/06-account-set/09-require-tag/00001.png index 73cc4029..859e2219 100644 Binary files a/tests/snapshots/stax/06-account-set/09-require-tag/00001.png and b/tests/snapshots/stax/06-account-set/09-require-tag/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/09-require-tag/00002.png b/tests/snapshots/stax/06-account-set/09-require-tag/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/09-require-tag/00002.png and b/tests/snapshots/stax/06-account-set/09-require-tag/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/09-require-tag/00003.png b/tests/snapshots/stax/06-account-set/09-require-tag/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/09-require-tag/00003.png and b/tests/snapshots/stax/06-account-set/09-require-tag/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/09-require-tag/00004.png b/tests/snapshots/stax/06-account-set/09-require-tag/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/09-require-tag/00004.png and b/tests/snapshots/stax/06-account-set/09-require-tag/00004.png differ diff --git a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00000.png b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00000.png and b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00000.png differ diff --git a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00001.png b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00001.png index ec53fc85..16440247 100644 Binary files a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00001.png and b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00001.png differ diff --git a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00002.png b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00002.png and b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00002.png differ diff --git a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00003.png b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00003.png and b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00003.png differ diff --git a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00004.png b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00004.png and b/tests/snapshots/stax/06-account-set/10-clear-account-txn-id/00004.png differ diff --git a/tests/snapshots/stax/07-check-cancel/01-basic/00000.png b/tests/snapshots/stax/07-check-cancel/01-basic/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/07-check-cancel/01-basic/00000.png and b/tests/snapshots/stax/07-check-cancel/01-basic/00000.png differ diff --git a/tests/snapshots/stax/07-check-cancel/01-basic/00001.png b/tests/snapshots/stax/07-check-cancel/01-basic/00001.png index 033b03a3..6415c523 100644 Binary files a/tests/snapshots/stax/07-check-cancel/01-basic/00001.png and b/tests/snapshots/stax/07-check-cancel/01-basic/00001.png differ diff --git a/tests/snapshots/stax/07-check-cancel/01-basic/00002.png b/tests/snapshots/stax/07-check-cancel/01-basic/00002.png index ddabd211..8c477204 100644 Binary files a/tests/snapshots/stax/07-check-cancel/01-basic/00002.png and b/tests/snapshots/stax/07-check-cancel/01-basic/00002.png differ diff --git a/tests/snapshots/stax/07-check-cancel/01-basic/00003.png b/tests/snapshots/stax/07-check-cancel/01-basic/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/07-check-cancel/01-basic/00003.png and b/tests/snapshots/stax/07-check-cancel/01-basic/00003.png differ diff --git a/tests/snapshots/stax/07-check-cancel/01-basic/00004.png b/tests/snapshots/stax/07-check-cancel/01-basic/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/07-check-cancel/01-basic/00004.png and b/tests/snapshots/stax/07-check-cancel/01-basic/00004.png differ diff --git a/tests/snapshots/stax/07-check-cancel/01-basic/00005.png b/tests/snapshots/stax/07-check-cancel/01-basic/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/07-check-cancel/01-basic/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/08-check-cash/01-basic/00000.png b/tests/snapshots/stax/08-check-cash/01-basic/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/08-check-cash/01-basic/00000.png and b/tests/snapshots/stax/08-check-cash/01-basic/00000.png differ diff --git a/tests/snapshots/stax/08-check-cash/01-basic/00001.png b/tests/snapshots/stax/08-check-cash/01-basic/00001.png index 9c4cdc1b..fb45a162 100644 Binary files a/tests/snapshots/stax/08-check-cash/01-basic/00001.png and b/tests/snapshots/stax/08-check-cash/01-basic/00001.png differ diff --git a/tests/snapshots/stax/08-check-cash/01-basic/00002.png b/tests/snapshots/stax/08-check-cash/01-basic/00002.png index ed8e59e1..8dce2f44 100644 Binary files a/tests/snapshots/stax/08-check-cash/01-basic/00002.png and b/tests/snapshots/stax/08-check-cash/01-basic/00002.png differ diff --git a/tests/snapshots/stax/08-check-cash/01-basic/00003.png b/tests/snapshots/stax/08-check-cash/01-basic/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/08-check-cash/01-basic/00003.png and b/tests/snapshots/stax/08-check-cash/01-basic/00003.png differ diff --git a/tests/snapshots/stax/08-check-cash/01-basic/00004.png b/tests/snapshots/stax/08-check-cash/01-basic/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/08-check-cash/01-basic/00004.png and b/tests/snapshots/stax/08-check-cash/01-basic/00004.png differ diff --git a/tests/snapshots/stax/08-check-cash/01-basic/00005.png b/tests/snapshots/stax/08-check-cash/01-basic/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/08-check-cash/01-basic/00005.png and b/tests/snapshots/stax/08-check-cash/01-basic/00005.png differ diff --git a/tests/snapshots/stax/08-check-cash/02-amount/00000.png b/tests/snapshots/stax/08-check-cash/02-amount/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/08-check-cash/02-amount/00000.png and b/tests/snapshots/stax/08-check-cash/02-amount/00000.png differ diff --git a/tests/snapshots/stax/08-check-cash/02-amount/00001.png b/tests/snapshots/stax/08-check-cash/02-amount/00001.png index 9c4cdc1b..09d4aef4 100644 Binary files a/tests/snapshots/stax/08-check-cash/02-amount/00001.png and b/tests/snapshots/stax/08-check-cash/02-amount/00001.png differ diff --git a/tests/snapshots/stax/08-check-cash/02-amount/00002.png b/tests/snapshots/stax/08-check-cash/02-amount/00002.png index ec3d7e43..fad79371 100644 Binary files a/tests/snapshots/stax/08-check-cash/02-amount/00002.png and b/tests/snapshots/stax/08-check-cash/02-amount/00002.png differ diff --git a/tests/snapshots/stax/08-check-cash/02-amount/00003.png b/tests/snapshots/stax/08-check-cash/02-amount/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/08-check-cash/02-amount/00003.png and b/tests/snapshots/stax/08-check-cash/02-amount/00003.png differ diff --git a/tests/snapshots/stax/08-check-cash/02-amount/00004.png b/tests/snapshots/stax/08-check-cash/02-amount/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/08-check-cash/02-amount/00004.png and b/tests/snapshots/stax/08-check-cash/02-amount/00004.png differ diff --git a/tests/snapshots/stax/08-check-cash/02-amount/00005.png b/tests/snapshots/stax/08-check-cash/02-amount/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/08-check-cash/02-amount/00005.png and b/tests/snapshots/stax/08-check-cash/02-amount/00005.png differ diff --git a/tests/snapshots/stax/08-check-cash/03-issued/00000.png b/tests/snapshots/stax/08-check-cash/03-issued/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/08-check-cash/03-issued/00000.png and b/tests/snapshots/stax/08-check-cash/03-issued/00000.png differ diff --git a/tests/snapshots/stax/08-check-cash/03-issued/00001.png b/tests/snapshots/stax/08-check-cash/03-issued/00001.png index 9413cbf2..34e69c53 100644 Binary files a/tests/snapshots/stax/08-check-cash/03-issued/00001.png and b/tests/snapshots/stax/08-check-cash/03-issued/00001.png differ diff --git a/tests/snapshots/stax/08-check-cash/03-issued/00002.png b/tests/snapshots/stax/08-check-cash/03-issued/00002.png index a971cc3d..2e1a83e1 100644 Binary files a/tests/snapshots/stax/08-check-cash/03-issued/00002.png and b/tests/snapshots/stax/08-check-cash/03-issued/00002.png differ diff --git a/tests/snapshots/stax/08-check-cash/03-issued/00003.png b/tests/snapshots/stax/08-check-cash/03-issued/00003.png index cb33b4b4..8da78e35 100644 Binary files a/tests/snapshots/stax/08-check-cash/03-issued/00003.png and b/tests/snapshots/stax/08-check-cash/03-issued/00003.png differ diff --git a/tests/snapshots/stax/08-check-cash/03-issued/00004.png b/tests/snapshots/stax/08-check-cash/03-issued/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/08-check-cash/03-issued/00004.png and b/tests/snapshots/stax/08-check-cash/03-issued/00004.png differ diff --git a/tests/snapshots/stax/08-check-cash/03-issued/00005.png b/tests/snapshots/stax/08-check-cash/03-issued/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/08-check-cash/03-issued/00005.png and b/tests/snapshots/stax/08-check-cash/03-issued/00005.png differ diff --git a/tests/snapshots/stax/08-check-cash/03-issued/00006.png b/tests/snapshots/stax/08-check-cash/03-issued/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/08-check-cash/03-issued/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00000.png b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00000.png and b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00000.png differ diff --git a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00001.png b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00001.png index 9413cbf2..fb45a162 100644 Binary files a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00001.png and b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00001.png differ diff --git a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00002.png b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00002.png index 106931d1..0d455436 100644 Binary files a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00002.png and b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00002.png differ diff --git a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00003.png b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00003.png index acc00f4d..8da78e35 100644 Binary files a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00003.png and b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00003.png differ diff --git a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00004.png b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00004.png and b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00004.png differ diff --git a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00005.png b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00005.png and b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00005.png differ diff --git a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00006.png b/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/08-check-cash/04-issued-delivery-min/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/09-check-create/01-basic/00000.png b/tests/snapshots/stax/09-check-create/01-basic/00000.png index 3119b975..c3af8750 100644 Binary files a/tests/snapshots/stax/09-check-create/01-basic/00000.png and b/tests/snapshots/stax/09-check-create/01-basic/00000.png differ diff --git a/tests/snapshots/stax/09-check-create/01-basic/00001.png b/tests/snapshots/stax/09-check-create/01-basic/00001.png index 9bb4d586..516ca4c3 100644 Binary files a/tests/snapshots/stax/09-check-create/01-basic/00001.png and b/tests/snapshots/stax/09-check-create/01-basic/00001.png differ diff --git a/tests/snapshots/stax/09-check-create/01-basic/00002.png b/tests/snapshots/stax/09-check-create/01-basic/00002.png index 18202d30..ff0bda62 100644 Binary files a/tests/snapshots/stax/09-check-create/01-basic/00002.png and b/tests/snapshots/stax/09-check-create/01-basic/00002.png differ diff --git a/tests/snapshots/stax/09-check-create/01-basic/00003.png b/tests/snapshots/stax/09-check-create/01-basic/00003.png index 3dc2e4a2..89fab697 100644 Binary files a/tests/snapshots/stax/09-check-create/01-basic/00003.png and b/tests/snapshots/stax/09-check-create/01-basic/00003.png differ diff --git a/tests/snapshots/stax/09-check-create/01-basic/00004.png b/tests/snapshots/stax/09-check-create/01-basic/00004.png index 7cff0b71..5a83c79c 100644 Binary files a/tests/snapshots/stax/09-check-create/01-basic/00004.png and b/tests/snapshots/stax/09-check-create/01-basic/00004.png differ diff --git a/tests/snapshots/stax/09-check-create/01-basic/00005.png b/tests/snapshots/stax/09-check-create/01-basic/00005.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/09-check-create/01-basic/00005.png and b/tests/snapshots/stax/09-check-create/01-basic/00005.png differ diff --git a/tests/snapshots/stax/09-check-create/01-basic/00006.png b/tests/snapshots/stax/09-check-create/01-basic/00006.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/09-check-create/01-basic/00006.png and b/tests/snapshots/stax/09-check-create/01-basic/00006.png differ diff --git a/tests/snapshots/stax/09-check-create/02-issued/00000.png b/tests/snapshots/stax/09-check-create/02-issued/00000.png index 42f09455..c3af8750 100644 Binary files a/tests/snapshots/stax/09-check-create/02-issued/00000.png and b/tests/snapshots/stax/09-check-create/02-issued/00000.png differ diff --git a/tests/snapshots/stax/09-check-create/02-issued/00001.png b/tests/snapshots/stax/09-check-create/02-issued/00001.png index 9498ea3c..519efb2e 100644 Binary files a/tests/snapshots/stax/09-check-create/02-issued/00001.png and b/tests/snapshots/stax/09-check-create/02-issued/00001.png differ diff --git a/tests/snapshots/stax/09-check-create/02-issued/00002.png b/tests/snapshots/stax/09-check-create/02-issued/00002.png index fa3b1407..9a158ade 100644 Binary files a/tests/snapshots/stax/09-check-create/02-issued/00002.png and b/tests/snapshots/stax/09-check-create/02-issued/00002.png differ diff --git a/tests/snapshots/stax/09-check-create/02-issued/00003.png b/tests/snapshots/stax/09-check-create/02-issued/00003.png index 69fe1512..ba3c5b12 100644 Binary files a/tests/snapshots/stax/09-check-create/02-issued/00003.png and b/tests/snapshots/stax/09-check-create/02-issued/00003.png differ diff --git a/tests/snapshots/stax/09-check-create/02-issued/00004.png b/tests/snapshots/stax/09-check-create/02-issued/00004.png index 2f79689d..5a83c79c 100644 Binary files a/tests/snapshots/stax/09-check-create/02-issued/00004.png and b/tests/snapshots/stax/09-check-create/02-issued/00004.png differ diff --git a/tests/snapshots/stax/09-check-create/02-issued/00005.png b/tests/snapshots/stax/09-check-create/02-issued/00005.png index 2e538fa0..392165d4 100644 Binary files a/tests/snapshots/stax/09-check-create/02-issued/00005.png and b/tests/snapshots/stax/09-check-create/02-issued/00005.png differ diff --git a/tests/snapshots/stax/09-check-create/02-issued/00006.png b/tests/snapshots/stax/09-check-create/02-issued/00006.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/09-check-create/02-issued/00006.png and b/tests/snapshots/stax/09-check-create/02-issued/00006.png differ diff --git a/tests/snapshots/stax/09-check-create/02-issued/00007.png b/tests/snapshots/stax/09-check-create/02-issued/00007.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/09-check-create/02-issued/00007.png and /dev/null differ diff --git a/tests/snapshots/stax/10-deposit-preauth/01-basic/00000.png b/tests/snapshots/stax/10-deposit-preauth/01-basic/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/01-basic/00000.png and b/tests/snapshots/stax/10-deposit-preauth/01-basic/00000.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/01-basic/00001.png b/tests/snapshots/stax/10-deposit-preauth/01-basic/00001.png index 616be37e..06d08132 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/01-basic/00001.png and b/tests/snapshots/stax/10-deposit-preauth/01-basic/00001.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/01-basic/00002.png b/tests/snapshots/stax/10-deposit-preauth/01-basic/00002.png index 9a8911c0..8c477204 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/01-basic/00002.png and b/tests/snapshots/stax/10-deposit-preauth/01-basic/00002.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/01-basic/00003.png b/tests/snapshots/stax/10-deposit-preauth/01-basic/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/01-basic/00003.png and b/tests/snapshots/stax/10-deposit-preauth/01-basic/00003.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/01-basic/00004.png b/tests/snapshots/stax/10-deposit-preauth/01-basic/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/01-basic/00004.png and b/tests/snapshots/stax/10-deposit-preauth/01-basic/00004.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/01-basic/00005.png b/tests/snapshots/stax/10-deposit-preauth/01-basic/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/10-deposit-preauth/01-basic/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00000.png b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00000.png and b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00000.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00001.png b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00001.png index 616be37e..3f6ec44d 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00001.png and b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00001.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00002.png b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00002.png index 0a52eb88..8c477204 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00002.png and b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00002.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00003.png b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00003.png and b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00003.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00004.png b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00004.png and b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00004.png differ diff --git a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00005.png b/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/10-deposit-preauth/02-unauthorize/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/11-offer-cancel/01-basic/00000.png b/tests/snapshots/stax/11-offer-cancel/01-basic/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/11-offer-cancel/01-basic/00000.png and b/tests/snapshots/stax/11-offer-cancel/01-basic/00000.png differ diff --git a/tests/snapshots/stax/11-offer-cancel/01-basic/00001.png b/tests/snapshots/stax/11-offer-cancel/01-basic/00001.png index 01fa015b..1140539e 100644 Binary files a/tests/snapshots/stax/11-offer-cancel/01-basic/00001.png and b/tests/snapshots/stax/11-offer-cancel/01-basic/00001.png differ diff --git a/tests/snapshots/stax/11-offer-cancel/01-basic/00002.png b/tests/snapshots/stax/11-offer-cancel/01-basic/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/11-offer-cancel/01-basic/00002.png and b/tests/snapshots/stax/11-offer-cancel/01-basic/00002.png differ diff --git a/tests/snapshots/stax/11-offer-cancel/01-basic/00003.png b/tests/snapshots/stax/11-offer-cancel/01-basic/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/11-offer-cancel/01-basic/00003.png and b/tests/snapshots/stax/11-offer-cancel/01-basic/00003.png differ diff --git a/tests/snapshots/stax/11-offer-cancel/01-basic/00004.png b/tests/snapshots/stax/11-offer-cancel/01-basic/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/11-offer-cancel/01-basic/00004.png and b/tests/snapshots/stax/11-offer-cancel/01-basic/00004.png differ diff --git a/tests/snapshots/stax/12-offer-create/01-basic/00000.png b/tests/snapshots/stax/12-offer-create/01-basic/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/12-offer-create/01-basic/00000.png and b/tests/snapshots/stax/12-offer-create/01-basic/00000.png differ diff --git a/tests/snapshots/stax/12-offer-create/01-basic/00001.png b/tests/snapshots/stax/12-offer-create/01-basic/00001.png index 2e5a83dd..730ddc4c 100644 Binary files a/tests/snapshots/stax/12-offer-create/01-basic/00001.png and b/tests/snapshots/stax/12-offer-create/01-basic/00001.png differ diff --git a/tests/snapshots/stax/12-offer-create/01-basic/00002.png b/tests/snapshots/stax/12-offer-create/01-basic/00002.png index 99887cea..2d027e28 100644 Binary files a/tests/snapshots/stax/12-offer-create/01-basic/00002.png and b/tests/snapshots/stax/12-offer-create/01-basic/00002.png differ diff --git a/tests/snapshots/stax/12-offer-create/01-basic/00003.png b/tests/snapshots/stax/12-offer-create/01-basic/00003.png index dbac71a2..8da78e35 100644 Binary files a/tests/snapshots/stax/12-offer-create/01-basic/00003.png and b/tests/snapshots/stax/12-offer-create/01-basic/00003.png differ diff --git a/tests/snapshots/stax/12-offer-create/01-basic/00004.png b/tests/snapshots/stax/12-offer-create/01-basic/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/12-offer-create/01-basic/00004.png and b/tests/snapshots/stax/12-offer-create/01-basic/00004.png differ diff --git a/tests/snapshots/stax/12-offer-create/01-basic/00005.png b/tests/snapshots/stax/12-offer-create/01-basic/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/12-offer-create/01-basic/00005.png and b/tests/snapshots/stax/12-offer-create/01-basic/00005.png differ diff --git a/tests/snapshots/stax/12-offer-create/01-basic/00006.png b/tests/snapshots/stax/12-offer-create/01-basic/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/12-offer-create/01-basic/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/12-offer-create/02-passive/00000.png b/tests/snapshots/stax/12-offer-create/02-passive/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/12-offer-create/02-passive/00000.png and b/tests/snapshots/stax/12-offer-create/02-passive/00000.png differ diff --git a/tests/snapshots/stax/12-offer-create/02-passive/00001.png b/tests/snapshots/stax/12-offer-create/02-passive/00001.png index e85454a8..34fcbe2d 100644 Binary files a/tests/snapshots/stax/12-offer-create/02-passive/00001.png and b/tests/snapshots/stax/12-offer-create/02-passive/00001.png differ diff --git a/tests/snapshots/stax/12-offer-create/02-passive/00002.png b/tests/snapshots/stax/12-offer-create/02-passive/00002.png index 532b2df2..e8974b3e 100644 Binary files a/tests/snapshots/stax/12-offer-create/02-passive/00002.png and b/tests/snapshots/stax/12-offer-create/02-passive/00002.png differ diff --git a/tests/snapshots/stax/12-offer-create/02-passive/00003.png b/tests/snapshots/stax/12-offer-create/02-passive/00003.png index 8e6d94a0..8da78e35 100644 Binary files a/tests/snapshots/stax/12-offer-create/02-passive/00003.png and b/tests/snapshots/stax/12-offer-create/02-passive/00003.png differ diff --git a/tests/snapshots/stax/12-offer-create/02-passive/00004.png b/tests/snapshots/stax/12-offer-create/02-passive/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/12-offer-create/02-passive/00004.png and b/tests/snapshots/stax/12-offer-create/02-passive/00004.png differ diff --git a/tests/snapshots/stax/12-offer-create/02-passive/00005.png b/tests/snapshots/stax/12-offer-create/02-passive/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/12-offer-create/02-passive/00005.png and b/tests/snapshots/stax/12-offer-create/02-passive/00005.png differ diff --git a/tests/snapshots/stax/12-offer-create/02-passive/00006.png b/tests/snapshots/stax/12-offer-create/02-passive/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/12-offer-create/02-passive/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00000.png b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00000.png and b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00000.png differ diff --git a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00001.png b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00001.png index 8e3d0630..67df197f 100644 Binary files a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00001.png and b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00001.png differ diff --git a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00002.png b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00002.png index 532b2df2..e8974b3e 100644 Binary files a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00002.png and b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00002.png differ diff --git a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00003.png b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00003.png index 8e6d94a0..8da78e35 100644 Binary files a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00003.png and b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00003.png differ diff --git a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00004.png b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00004.png and b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00004.png differ diff --git a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00005.png b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00005.png and b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00005.png differ diff --git a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00006.png b/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/12-offer-create/03-immediate-or-cancel/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00000.png b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00000.png and b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00000.png differ diff --git a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00001.png b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00001.png index 970763ed..48bc1d38 100644 Binary files a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00001.png and b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00001.png differ diff --git a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00002.png b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00002.png index 532b2df2..e8974b3e 100644 Binary files a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00002.png and b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00002.png differ diff --git a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00003.png b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00003.png index 8e6d94a0..8da78e35 100644 Binary files a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00003.png and b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00003.png differ diff --git a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00004.png b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00004.png and b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00004.png differ diff --git a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00005.png b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00005.png and b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00005.png differ diff --git a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00006.png b/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/12-offer-create/04-fill-or-kill/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/12-offer-create/05-sell/00000.png b/tests/snapshots/stax/12-offer-create/05-sell/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/12-offer-create/05-sell/00000.png and b/tests/snapshots/stax/12-offer-create/05-sell/00000.png differ diff --git a/tests/snapshots/stax/12-offer-create/05-sell/00001.png b/tests/snapshots/stax/12-offer-create/05-sell/00001.png index af386c34..fea752af 100644 Binary files a/tests/snapshots/stax/12-offer-create/05-sell/00001.png and b/tests/snapshots/stax/12-offer-create/05-sell/00001.png differ diff --git a/tests/snapshots/stax/12-offer-create/05-sell/00002.png b/tests/snapshots/stax/12-offer-create/05-sell/00002.png index 532b2df2..e8974b3e 100644 Binary files a/tests/snapshots/stax/12-offer-create/05-sell/00002.png and b/tests/snapshots/stax/12-offer-create/05-sell/00002.png differ diff --git a/tests/snapshots/stax/12-offer-create/05-sell/00003.png b/tests/snapshots/stax/12-offer-create/05-sell/00003.png index 8e6d94a0..8da78e35 100644 Binary files a/tests/snapshots/stax/12-offer-create/05-sell/00003.png and b/tests/snapshots/stax/12-offer-create/05-sell/00003.png differ diff --git a/tests/snapshots/stax/12-offer-create/05-sell/00004.png b/tests/snapshots/stax/12-offer-create/05-sell/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/12-offer-create/05-sell/00004.png and b/tests/snapshots/stax/12-offer-create/05-sell/00004.png differ diff --git a/tests/snapshots/stax/12-offer-create/05-sell/00005.png b/tests/snapshots/stax/12-offer-create/05-sell/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/12-offer-create/05-sell/00005.png and b/tests/snapshots/stax/12-offer-create/05-sell/00005.png differ diff --git a/tests/snapshots/stax/12-offer-create/05-sell/00006.png b/tests/snapshots/stax/12-offer-create/05-sell/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/12-offer-create/05-sell/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/12-offer-create/06-combo/00000.png b/tests/snapshots/stax/12-offer-create/06-combo/00000.png index 42f09455..f783f953 100644 Binary files a/tests/snapshots/stax/12-offer-create/06-combo/00000.png and b/tests/snapshots/stax/12-offer-create/06-combo/00000.png differ diff --git a/tests/snapshots/stax/12-offer-create/06-combo/00001.png b/tests/snapshots/stax/12-offer-create/06-combo/00001.png index 115f4f60..c91723c7 100644 Binary files a/tests/snapshots/stax/12-offer-create/06-combo/00001.png and b/tests/snapshots/stax/12-offer-create/06-combo/00001.png differ diff --git a/tests/snapshots/stax/12-offer-create/06-combo/00002.png b/tests/snapshots/stax/12-offer-create/06-combo/00002.png index fec60c95..f1628daf 100644 Binary files a/tests/snapshots/stax/12-offer-create/06-combo/00002.png and b/tests/snapshots/stax/12-offer-create/06-combo/00002.png differ diff --git a/tests/snapshots/stax/12-offer-create/06-combo/00003.png b/tests/snapshots/stax/12-offer-create/06-combo/00003.png index c32bf301..8da78e35 100644 Binary files a/tests/snapshots/stax/12-offer-create/06-combo/00003.png and b/tests/snapshots/stax/12-offer-create/06-combo/00003.png differ diff --git a/tests/snapshots/stax/12-offer-create/06-combo/00004.png b/tests/snapshots/stax/12-offer-create/06-combo/00004.png index 77fe163f..392165d4 100644 Binary files a/tests/snapshots/stax/12-offer-create/06-combo/00004.png and b/tests/snapshots/stax/12-offer-create/06-combo/00004.png differ diff --git a/tests/snapshots/stax/12-offer-create/06-combo/00005.png b/tests/snapshots/stax/12-offer-create/06-combo/00005.png index 2e538fa0..9ac941ee 100644 Binary files a/tests/snapshots/stax/12-offer-create/06-combo/00005.png and b/tests/snapshots/stax/12-offer-create/06-combo/00005.png differ diff --git a/tests/snapshots/stax/12-offer-create/06-combo/00006.png b/tests/snapshots/stax/12-offer-create/06-combo/00006.png deleted file mode 100644 index 2ba6d27d..00000000 Binary files a/tests/snapshots/stax/12-offer-create/06-combo/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/12-offer-create/06-combo/00007.png b/tests/snapshots/stax/12-offer-create/06-combo/00007.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/12-offer-create/06-combo/00007.png and /dev/null differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00000.png b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00000.png index 42f09455..c3af8750 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00000.png and b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00000.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00001.png b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00001.png index dc5af7bf..edef7c88 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00001.png and b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00001.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00002.png b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00002.png index 77fc7a56..67165342 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00002.png and b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00002.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00003.png b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00003.png index 97e717c3..b16a00a9 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00003.png and b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00003.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00004.png b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00004.png index 1ace565f..5a83c79c 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00004.png and b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00004.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00005.png b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00005.png index 2e538fa0..392165d4 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00005.png and b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00005.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00006.png b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00006.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00006.png and b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00006.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00007.png b/tests/snapshots/stax/13-payment-channel-claim/01-basic/00007.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/13-payment-channel-claim/01-basic/00007.png and /dev/null differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00000.png b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00000.png and b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00000.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00001.png b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00001.png index a103086e..85847704 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00001.png and b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00001.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00002.png b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00002.png index abed4703..a0c48818 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00002.png and b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00002.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00003.png b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00003.png index dbac71a2..8da78e35 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00003.png and b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00003.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00004.png b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00004.png and b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00004.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00005.png b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00005.png and b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00005.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00006.png b/tests/snapshots/stax/13-payment-channel-claim/02-renew/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/13-payment-channel-claim/02-renew/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/03-close/00000.png b/tests/snapshots/stax/13-payment-channel-claim/03-close/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/03-close/00000.png and b/tests/snapshots/stax/13-payment-channel-claim/03-close/00000.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/03-close/00001.png b/tests/snapshots/stax/13-payment-channel-claim/03-close/00001.png index 3ec3e07c..9e90e74f 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/03-close/00001.png and b/tests/snapshots/stax/13-payment-channel-claim/03-close/00001.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/03-close/00002.png b/tests/snapshots/stax/13-payment-channel-claim/03-close/00002.png index 9d892480..ab22a517 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/03-close/00002.png and b/tests/snapshots/stax/13-payment-channel-claim/03-close/00002.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/03-close/00003.png b/tests/snapshots/stax/13-payment-channel-claim/03-close/00003.png index dbac71a2..8da78e35 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/03-close/00003.png and b/tests/snapshots/stax/13-payment-channel-claim/03-close/00003.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/03-close/00004.png b/tests/snapshots/stax/13-payment-channel-claim/03-close/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/03-close/00004.png and b/tests/snapshots/stax/13-payment-channel-claim/03-close/00004.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/03-close/00005.png b/tests/snapshots/stax/13-payment-channel-claim/03-close/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/13-payment-channel-claim/03-close/00005.png and b/tests/snapshots/stax/13-payment-channel-claim/03-close/00005.png differ diff --git a/tests/snapshots/stax/13-payment-channel-claim/03-close/00006.png b/tests/snapshots/stax/13-payment-channel-claim/03-close/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/13-payment-channel-claim/03-close/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/14-payment-channel-create/01-basic/00000.png b/tests/snapshots/stax/14-payment-channel-create/01-basic/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/14-payment-channel-create/01-basic/00000.png and b/tests/snapshots/stax/14-payment-channel-create/01-basic/00000.png differ diff --git a/tests/snapshots/stax/14-payment-channel-create/01-basic/00001.png b/tests/snapshots/stax/14-payment-channel-create/01-basic/00001.png index 93e5690d..70c64b30 100644 Binary files a/tests/snapshots/stax/14-payment-channel-create/01-basic/00001.png and b/tests/snapshots/stax/14-payment-channel-create/01-basic/00001.png differ diff --git a/tests/snapshots/stax/14-payment-channel-create/01-basic/00002.png b/tests/snapshots/stax/14-payment-channel-create/01-basic/00002.png index e78bdf4f..b8f57ca3 100644 Binary files a/tests/snapshots/stax/14-payment-channel-create/01-basic/00002.png and b/tests/snapshots/stax/14-payment-channel-create/01-basic/00002.png differ diff --git a/tests/snapshots/stax/14-payment-channel-create/01-basic/00003.png b/tests/snapshots/stax/14-payment-channel-create/01-basic/00003.png index c4a85887..8da78e35 100644 Binary files a/tests/snapshots/stax/14-payment-channel-create/01-basic/00003.png and b/tests/snapshots/stax/14-payment-channel-create/01-basic/00003.png differ diff --git a/tests/snapshots/stax/14-payment-channel-create/01-basic/00004.png b/tests/snapshots/stax/14-payment-channel-create/01-basic/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/14-payment-channel-create/01-basic/00004.png and b/tests/snapshots/stax/14-payment-channel-create/01-basic/00004.png differ diff --git a/tests/snapshots/stax/14-payment-channel-create/01-basic/00005.png b/tests/snapshots/stax/14-payment-channel-create/01-basic/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/14-payment-channel-create/01-basic/00005.png and b/tests/snapshots/stax/14-payment-channel-create/01-basic/00005.png differ diff --git a/tests/snapshots/stax/14-payment-channel-create/01-basic/00006.png b/tests/snapshots/stax/14-payment-channel-create/01-basic/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/14-payment-channel-create/01-basic/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00000.png b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00000.png and b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00000.png differ diff --git a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00001.png b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00001.png index c95a3509..6733e52b 100644 Binary files a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00001.png and b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00001.png differ diff --git a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00002.png b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00002.png index a99e69b9..f51a672e 100644 Binary files a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00002.png and b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00002.png differ diff --git a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00003.png b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00003.png and b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00003.png differ diff --git a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00004.png b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00004.png and b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00004.png differ diff --git a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00005.png b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/15-payment-channel-fund/01-basic/00005.png and b/tests/snapshots/stax/15-payment-channel-fund/01-basic/00005.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00000.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00000.png index 7f47caaf..dd5df365 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00000.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00000.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00001.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00001.png index fb7e1776..fb302ca3 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00001.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00001.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00002.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00002.png index f53cf3c5..ab3070cb 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00002.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00002.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00003.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00003.png index 85ed3aef..73343c99 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00003.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00003.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00004.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00004.png index 4842e669..13919eeb 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00004.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00004.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00005.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00005.png index 88cacdb9..c3ce43ea 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00005.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00005.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00006.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00006.png index 07ef94af..08c9332a 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00006.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00006.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00007.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00007.png index 1de18d30..392165d4 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00007.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00007.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00008.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00008.png index ecfa1680..9ac941ee 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00008.png and b/tests/snapshots/stax/16-signer-list-set/01-basic/00008.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00009.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00009.png deleted file mode 100644 index 2ba6d27d..00000000 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00009.png and /dev/null differ diff --git a/tests/snapshots/stax/16-signer-list-set/01-basic/00010.png b/tests/snapshots/stax/16-signer-list-set/01-basic/00010.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/16-signer-list-set/01-basic/00010.png and /dev/null differ diff --git a/tests/snapshots/stax/16-signer-list-set/02-delete/00000.png b/tests/snapshots/stax/16-signer-list-set/02-delete/00000.png index eb84ff00..763c84f5 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/02-delete/00000.png and b/tests/snapshots/stax/16-signer-list-set/02-delete/00000.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/02-delete/00001.png b/tests/snapshots/stax/16-signer-list-set/02-delete/00001.png index 7f1868f1..93c48a85 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/02-delete/00001.png and b/tests/snapshots/stax/16-signer-list-set/02-delete/00001.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/02-delete/00002.png b/tests/snapshots/stax/16-signer-list-set/02-delete/00002.png index fd68b727..8c477204 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/02-delete/00002.png and b/tests/snapshots/stax/16-signer-list-set/02-delete/00002.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/02-delete/00003.png b/tests/snapshots/stax/16-signer-list-set/02-delete/00003.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/02-delete/00003.png and b/tests/snapshots/stax/16-signer-list-set/02-delete/00003.png differ diff --git a/tests/snapshots/stax/16-signer-list-set/02-delete/00004.png b/tests/snapshots/stax/16-signer-list-set/02-delete/00004.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/16-signer-list-set/02-delete/00004.png and b/tests/snapshots/stax/16-signer-list-set/02-delete/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/01-basic/00000.png b/tests/snapshots/stax/17-trust-set/01-basic/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/17-trust-set/01-basic/00000.png and b/tests/snapshots/stax/17-trust-set/01-basic/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/01-basic/00001.png b/tests/snapshots/stax/17-trust-set/01-basic/00001.png index 4dd3267b..09dc21a0 100644 Binary files a/tests/snapshots/stax/17-trust-set/01-basic/00001.png and b/tests/snapshots/stax/17-trust-set/01-basic/00001.png differ diff --git a/tests/snapshots/stax/17-trust-set/01-basic/00002.png b/tests/snapshots/stax/17-trust-set/01-basic/00002.png index 0afefcc6..8c477204 100644 Binary files a/tests/snapshots/stax/17-trust-set/01-basic/00002.png and b/tests/snapshots/stax/17-trust-set/01-basic/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/01-basic/00003.png b/tests/snapshots/stax/17-trust-set/01-basic/00003.png index 91c2360e..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/01-basic/00003.png and b/tests/snapshots/stax/17-trust-set/01-basic/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/01-basic/00004.png b/tests/snapshots/stax/17-trust-set/01-basic/00004.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/01-basic/00004.png and b/tests/snapshots/stax/17-trust-set/01-basic/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/01-basic/00005.png b/tests/snapshots/stax/17-trust-set/01-basic/00005.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/17-trust-set/01-basic/00005.png and /dev/null differ diff --git a/tests/snapshots/stax/17-trust-set/02-quality/00000.png b/tests/snapshots/stax/17-trust-set/02-quality/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/17-trust-set/02-quality/00000.png and b/tests/snapshots/stax/17-trust-set/02-quality/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/02-quality/00001.png b/tests/snapshots/stax/17-trust-set/02-quality/00001.png index 375502f6..ed6d4421 100644 Binary files a/tests/snapshots/stax/17-trust-set/02-quality/00001.png and b/tests/snapshots/stax/17-trust-set/02-quality/00001.png differ diff --git a/tests/snapshots/stax/17-trust-set/02-quality/00002.png b/tests/snapshots/stax/17-trust-set/02-quality/00002.png index 26dc514e..5e408817 100644 Binary files a/tests/snapshots/stax/17-trust-set/02-quality/00002.png and b/tests/snapshots/stax/17-trust-set/02-quality/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/02-quality/00003.png b/tests/snapshots/stax/17-trust-set/02-quality/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/17-trust-set/02-quality/00003.png and b/tests/snapshots/stax/17-trust-set/02-quality/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/02-quality/00004.png b/tests/snapshots/stax/17-trust-set/02-quality/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/02-quality/00004.png and b/tests/snapshots/stax/17-trust-set/02-quality/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/02-quality/00005.png b/tests/snapshots/stax/17-trust-set/02-quality/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/02-quality/00005.png and b/tests/snapshots/stax/17-trust-set/02-quality/00005.png differ diff --git a/tests/snapshots/stax/17-trust-set/03-authorize/00000.png b/tests/snapshots/stax/17-trust-set/03-authorize/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/17-trust-set/03-authorize/00000.png and b/tests/snapshots/stax/17-trust-set/03-authorize/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/03-authorize/00002.png b/tests/snapshots/stax/17-trust-set/03-authorize/00002.png index 0afefcc6..fad79371 100644 Binary files a/tests/snapshots/stax/17-trust-set/03-authorize/00002.png and b/tests/snapshots/stax/17-trust-set/03-authorize/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/03-authorize/00003.png b/tests/snapshots/stax/17-trust-set/03-authorize/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/17-trust-set/03-authorize/00003.png and b/tests/snapshots/stax/17-trust-set/03-authorize/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/03-authorize/00004.png b/tests/snapshots/stax/17-trust-set/03-authorize/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/03-authorize/00004.png and b/tests/snapshots/stax/17-trust-set/03-authorize/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/03-authorize/00005.png b/tests/snapshots/stax/17-trust-set/03-authorize/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/03-authorize/00005.png and b/tests/snapshots/stax/17-trust-set/03-authorize/00005.png differ diff --git a/tests/snapshots/stax/17-trust-set/04-no-rippling/00000.png b/tests/snapshots/stax/17-trust-set/04-no-rippling/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/17-trust-set/04-no-rippling/00000.png and b/tests/snapshots/stax/17-trust-set/04-no-rippling/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/04-no-rippling/00001.png b/tests/snapshots/stax/17-trust-set/04-no-rippling/00001.png index 9efb4de8..ccac0ec2 100644 Binary files a/tests/snapshots/stax/17-trust-set/04-no-rippling/00001.png and b/tests/snapshots/stax/17-trust-set/04-no-rippling/00001.png differ diff --git a/tests/snapshots/stax/17-trust-set/04-no-rippling/00002.png b/tests/snapshots/stax/17-trust-set/04-no-rippling/00002.png index 0afefcc6..fad79371 100644 Binary files a/tests/snapshots/stax/17-trust-set/04-no-rippling/00002.png and b/tests/snapshots/stax/17-trust-set/04-no-rippling/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/04-no-rippling/00003.png b/tests/snapshots/stax/17-trust-set/04-no-rippling/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/17-trust-set/04-no-rippling/00003.png and b/tests/snapshots/stax/17-trust-set/04-no-rippling/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/04-no-rippling/00004.png b/tests/snapshots/stax/17-trust-set/04-no-rippling/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/04-no-rippling/00004.png and b/tests/snapshots/stax/17-trust-set/04-no-rippling/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/04-no-rippling/00005.png b/tests/snapshots/stax/17-trust-set/04-no-rippling/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/04-no-rippling/00005.png and b/tests/snapshots/stax/17-trust-set/04-no-rippling/00005.png differ diff --git a/tests/snapshots/stax/17-trust-set/05-rippling/00000.png b/tests/snapshots/stax/17-trust-set/05-rippling/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/17-trust-set/05-rippling/00000.png and b/tests/snapshots/stax/17-trust-set/05-rippling/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/05-rippling/00001.png b/tests/snapshots/stax/17-trust-set/05-rippling/00001.png index f05babdc..ffd7ced3 100644 Binary files a/tests/snapshots/stax/17-trust-set/05-rippling/00001.png and b/tests/snapshots/stax/17-trust-set/05-rippling/00001.png differ diff --git a/tests/snapshots/stax/17-trust-set/05-rippling/00002.png b/tests/snapshots/stax/17-trust-set/05-rippling/00002.png index 0afefcc6..fad79371 100644 Binary files a/tests/snapshots/stax/17-trust-set/05-rippling/00002.png and b/tests/snapshots/stax/17-trust-set/05-rippling/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/05-rippling/00003.png b/tests/snapshots/stax/17-trust-set/05-rippling/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/17-trust-set/05-rippling/00003.png and b/tests/snapshots/stax/17-trust-set/05-rippling/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/05-rippling/00004.png b/tests/snapshots/stax/17-trust-set/05-rippling/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/05-rippling/00004.png and b/tests/snapshots/stax/17-trust-set/05-rippling/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/05-rippling/00005.png b/tests/snapshots/stax/17-trust-set/05-rippling/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/05-rippling/00005.png and b/tests/snapshots/stax/17-trust-set/05-rippling/00005.png differ diff --git a/tests/snapshots/stax/17-trust-set/06-freeze/00000.png b/tests/snapshots/stax/17-trust-set/06-freeze/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/17-trust-set/06-freeze/00000.png and b/tests/snapshots/stax/17-trust-set/06-freeze/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/06-freeze/00001.png b/tests/snapshots/stax/17-trust-set/06-freeze/00001.png index 4e06ef9f..4a97da6f 100644 Binary files a/tests/snapshots/stax/17-trust-set/06-freeze/00001.png and b/tests/snapshots/stax/17-trust-set/06-freeze/00001.png differ diff --git a/tests/snapshots/stax/17-trust-set/06-freeze/00002.png b/tests/snapshots/stax/17-trust-set/06-freeze/00002.png index 0aa5c15f..25ce8096 100644 Binary files a/tests/snapshots/stax/17-trust-set/06-freeze/00002.png and b/tests/snapshots/stax/17-trust-set/06-freeze/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/06-freeze/00003.png b/tests/snapshots/stax/17-trust-set/06-freeze/00003.png index a12a1784..8da78e35 100644 Binary files a/tests/snapshots/stax/17-trust-set/06-freeze/00003.png and b/tests/snapshots/stax/17-trust-set/06-freeze/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/06-freeze/00004.png b/tests/snapshots/stax/17-trust-set/06-freeze/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/06-freeze/00004.png and b/tests/snapshots/stax/17-trust-set/06-freeze/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/06-freeze/00005.png b/tests/snapshots/stax/17-trust-set/06-freeze/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/06-freeze/00005.png and b/tests/snapshots/stax/17-trust-set/06-freeze/00005.png differ diff --git a/tests/snapshots/stax/17-trust-set/06-freeze/00006.png b/tests/snapshots/stax/17-trust-set/06-freeze/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/17-trust-set/06-freeze/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/17-trust-set/07-unfreeze/00000.png b/tests/snapshots/stax/17-trust-set/07-unfreeze/00000.png index 3119b975..c3af8750 100644 Binary files a/tests/snapshots/stax/17-trust-set/07-unfreeze/00000.png and b/tests/snapshots/stax/17-trust-set/07-unfreeze/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/07-unfreeze/00001.png b/tests/snapshots/stax/17-trust-set/07-unfreeze/00001.png index 2ba21c13..7f7a1b7d 100644 Binary files a/tests/snapshots/stax/17-trust-set/07-unfreeze/00001.png and b/tests/snapshots/stax/17-trust-set/07-unfreeze/00001.png differ diff --git a/tests/snapshots/stax/17-trust-set/07-unfreeze/00002.png b/tests/snapshots/stax/17-trust-set/07-unfreeze/00002.png index 0ca53359..24cf3ac1 100644 Binary files a/tests/snapshots/stax/17-trust-set/07-unfreeze/00002.png and b/tests/snapshots/stax/17-trust-set/07-unfreeze/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/07-unfreeze/00003.png b/tests/snapshots/stax/17-trust-set/07-unfreeze/00003.png index a12a1784..70b8f409 100644 Binary files a/tests/snapshots/stax/17-trust-set/07-unfreeze/00003.png and b/tests/snapshots/stax/17-trust-set/07-unfreeze/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/07-unfreeze/00004.png b/tests/snapshots/stax/17-trust-set/07-unfreeze/00004.png index 7cff0b71..5a83c79c 100644 Binary files a/tests/snapshots/stax/17-trust-set/07-unfreeze/00004.png and b/tests/snapshots/stax/17-trust-set/07-unfreeze/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/07-unfreeze/00005.png b/tests/snapshots/stax/17-trust-set/07-unfreeze/00005.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/07-unfreeze/00005.png and b/tests/snapshots/stax/17-trust-set/07-unfreeze/00005.png differ diff --git a/tests/snapshots/stax/17-trust-set/07-unfreeze/00006.png b/tests/snapshots/stax/17-trust-set/07-unfreeze/00006.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/07-unfreeze/00006.png and b/tests/snapshots/stax/17-trust-set/07-unfreeze/00006.png differ diff --git a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00000.png b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00000.png and b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00001.png b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00001.png index e0171222..f51353ba 100644 Binary files a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00001.png and b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00001.png differ diff --git a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00002.png b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00002.png index 6653ecd0..5e408817 100644 Binary files a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00002.png and b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00003.png b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00003.png and b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00004.png b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00004.png and b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00005.png b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00005.png and b/tests/snapshots/stax/17-trust-set/08-non-standard-currency/00005.png differ diff --git a/tests/snapshots/stax/17-trust-set/09-remove/00000.png b/tests/snapshots/stax/17-trust-set/09-remove/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/17-trust-set/09-remove/00000.png and b/tests/snapshots/stax/17-trust-set/09-remove/00000.png differ diff --git a/tests/snapshots/stax/17-trust-set/09-remove/00001.png b/tests/snapshots/stax/17-trust-set/09-remove/00001.png index 7309c253..6c02bbab 100644 Binary files a/tests/snapshots/stax/17-trust-set/09-remove/00001.png and b/tests/snapshots/stax/17-trust-set/09-remove/00001.png differ diff --git a/tests/snapshots/stax/17-trust-set/09-remove/00002.png b/tests/snapshots/stax/17-trust-set/09-remove/00002.png index 6653ecd0..5e408817 100644 Binary files a/tests/snapshots/stax/17-trust-set/09-remove/00002.png and b/tests/snapshots/stax/17-trust-set/09-remove/00002.png differ diff --git a/tests/snapshots/stax/17-trust-set/09-remove/00003.png b/tests/snapshots/stax/17-trust-set/09-remove/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/17-trust-set/09-remove/00003.png and b/tests/snapshots/stax/17-trust-set/09-remove/00003.png differ diff --git a/tests/snapshots/stax/17-trust-set/09-remove/00004.png b/tests/snapshots/stax/17-trust-set/09-remove/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/17-trust-set/09-remove/00004.png and b/tests/snapshots/stax/17-trust-set/09-remove/00004.png differ diff --git a/tests/snapshots/stax/17-trust-set/09-remove/00005.png b/tests/snapshots/stax/17-trust-set/09-remove/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/17-trust-set/09-remove/00005.png and b/tests/snapshots/stax/17-trust-set/09-remove/00005.png differ diff --git a/tests/snapshots/stax/18-arrays/01-basic/00000.png b/tests/snapshots/stax/18-arrays/01-basic/00000.png index 0fc396e5..f783f953 100644 Binary files a/tests/snapshots/stax/18-arrays/01-basic/00000.png and b/tests/snapshots/stax/18-arrays/01-basic/00000.png differ diff --git a/tests/snapshots/stax/18-arrays/01-basic/00001.png b/tests/snapshots/stax/18-arrays/01-basic/00001.png index c3a01a4f..418dce60 100644 Binary files a/tests/snapshots/stax/18-arrays/01-basic/00001.png and b/tests/snapshots/stax/18-arrays/01-basic/00001.png differ diff --git a/tests/snapshots/stax/18-arrays/01-basic/00002.png b/tests/snapshots/stax/18-arrays/01-basic/00002.png index 604ebde8..7bc60bec 100644 Binary files a/tests/snapshots/stax/18-arrays/01-basic/00002.png and b/tests/snapshots/stax/18-arrays/01-basic/00002.png differ diff --git a/tests/snapshots/stax/18-arrays/01-basic/00003.png b/tests/snapshots/stax/18-arrays/01-basic/00003.png index 91c2360e..8da78e35 100644 Binary files a/tests/snapshots/stax/18-arrays/01-basic/00003.png and b/tests/snapshots/stax/18-arrays/01-basic/00003.png differ diff --git a/tests/snapshots/stax/18-arrays/01-basic/00004.png b/tests/snapshots/stax/18-arrays/01-basic/00004.png index 2ba6d27d..392165d4 100644 Binary files a/tests/snapshots/stax/18-arrays/01-basic/00004.png and b/tests/snapshots/stax/18-arrays/01-basic/00004.png differ diff --git a/tests/snapshots/stax/18-arrays/01-basic/00005.png b/tests/snapshots/stax/18-arrays/01-basic/00005.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/18-arrays/01-basic/00005.png and b/tests/snapshots/stax/18-arrays/01-basic/00005.png differ diff --git a/tests/snapshots/stax/18-arrays/02-multiple/00000.png b/tests/snapshots/stax/18-arrays/02-multiple/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/18-arrays/02-multiple/00000.png and b/tests/snapshots/stax/18-arrays/02-multiple/00000.png differ diff --git a/tests/snapshots/stax/18-arrays/02-multiple/00001.png b/tests/snapshots/stax/18-arrays/02-multiple/00001.png index 89f68d2b..418dce60 100644 Binary files a/tests/snapshots/stax/18-arrays/02-multiple/00001.png and b/tests/snapshots/stax/18-arrays/02-multiple/00001.png differ diff --git a/tests/snapshots/stax/18-arrays/02-multiple/00002.png b/tests/snapshots/stax/18-arrays/02-multiple/00002.png index 6d06ccb2..b3af18c4 100644 Binary files a/tests/snapshots/stax/18-arrays/02-multiple/00002.png and b/tests/snapshots/stax/18-arrays/02-multiple/00002.png differ diff --git a/tests/snapshots/stax/18-arrays/02-multiple/00003.png b/tests/snapshots/stax/18-arrays/02-multiple/00003.png index 8fc06888..8da78e35 100644 Binary files a/tests/snapshots/stax/18-arrays/02-multiple/00003.png and b/tests/snapshots/stax/18-arrays/02-multiple/00003.png differ diff --git a/tests/snapshots/stax/18-arrays/02-multiple/00004.png b/tests/snapshots/stax/18-arrays/02-multiple/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/18-arrays/02-multiple/00004.png and b/tests/snapshots/stax/18-arrays/02-multiple/00004.png differ diff --git a/tests/snapshots/stax/18-arrays/02-multiple/00005.png b/tests/snapshots/stax/18-arrays/02-multiple/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/18-arrays/02-multiple/00005.png and b/tests/snapshots/stax/18-arrays/02-multiple/00005.png differ diff --git a/tests/snapshots/stax/18-arrays/02-multiple/00006.png b/tests/snapshots/stax/18-arrays/02-multiple/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/18-arrays/02-multiple/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/18-arrays/03-not-last/00000.png b/tests/snapshots/stax/18-arrays/03-not-last/00000.png index 3119b975..f783f953 100644 Binary files a/tests/snapshots/stax/18-arrays/03-not-last/00000.png and b/tests/snapshots/stax/18-arrays/03-not-last/00000.png differ diff --git a/tests/snapshots/stax/18-arrays/03-not-last/00001.png b/tests/snapshots/stax/18-arrays/03-not-last/00001.png index 89f68d2b..418dce60 100644 Binary files a/tests/snapshots/stax/18-arrays/03-not-last/00001.png and b/tests/snapshots/stax/18-arrays/03-not-last/00001.png differ diff --git a/tests/snapshots/stax/18-arrays/03-not-last/00002.png b/tests/snapshots/stax/18-arrays/03-not-last/00002.png index c54465b3..0bc51d1f 100644 Binary files a/tests/snapshots/stax/18-arrays/03-not-last/00002.png and b/tests/snapshots/stax/18-arrays/03-not-last/00002.png differ diff --git a/tests/snapshots/stax/18-arrays/03-not-last/00003.png b/tests/snapshots/stax/18-arrays/03-not-last/00003.png index fa7dc2b8..8da78e35 100644 Binary files a/tests/snapshots/stax/18-arrays/03-not-last/00003.png and b/tests/snapshots/stax/18-arrays/03-not-last/00003.png differ diff --git a/tests/snapshots/stax/18-arrays/03-not-last/00004.png b/tests/snapshots/stax/18-arrays/03-not-last/00004.png index 7cff0b71..392165d4 100644 Binary files a/tests/snapshots/stax/18-arrays/03-not-last/00004.png and b/tests/snapshots/stax/18-arrays/03-not-last/00004.png differ diff --git a/tests/snapshots/stax/18-arrays/03-not-last/00005.png b/tests/snapshots/stax/18-arrays/03-not-last/00005.png index 2ba6d27d..9ac941ee 100644 Binary files a/tests/snapshots/stax/18-arrays/03-not-last/00005.png and b/tests/snapshots/stax/18-arrays/03-not-last/00005.png differ diff --git a/tests/snapshots/stax/18-arrays/03-not-last/00006.png b/tests/snapshots/stax/18-arrays/03-not-last/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/18-arrays/03-not-last/00006.png and /dev/null differ diff --git a/tests/snapshots/stax/test_get_public_key_confirm/00000.png b/tests/snapshots/stax/test_get_public_key_confirm/00000.png index 37a61e44..4e7f052e 100644 Binary files a/tests/snapshots/stax/test_get_public_key_confirm/00000.png and b/tests/snapshots/stax/test_get_public_key_confirm/00000.png differ diff --git a/tests/snapshots/stax/test_get_public_key_confirm/00001.png b/tests/snapshots/stax/test_get_public_key_confirm/00001.png index 276adbdb..6dea8fd3 100644 Binary files a/tests/snapshots/stax/test_get_public_key_confirm/00001.png and b/tests/snapshots/stax/test_get_public_key_confirm/00001.png differ diff --git a/tests/snapshots/stax/test_get_public_key_confirm/00002.png b/tests/snapshots/stax/test_get_public_key_confirm/00002.png index 3f906b2b..7a494786 100644 Binary files a/tests/snapshots/stax/test_get_public_key_confirm/00002.png and b/tests/snapshots/stax/test_get_public_key_confirm/00002.png differ diff --git a/tests/snapshots/stax/test_get_public_key_confirm/00003.png b/tests/snapshots/stax/test_get_public_key_confirm/00003.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/test_get_public_key_confirm/00003.png and b/tests/snapshots/stax/test_get_public_key_confirm/00003.png differ diff --git a/tests/snapshots/stax/test_get_public_key_reject/00000.png b/tests/snapshots/stax/test_get_public_key_reject/00000.png index 37a61e44..4e7f052e 100644 Binary files a/tests/snapshots/stax/test_get_public_key_reject/00000.png and b/tests/snapshots/stax/test_get_public_key_reject/00000.png differ diff --git a/tests/snapshots/stax/test_get_public_key_reject/00001.png b/tests/snapshots/stax/test_get_public_key_reject/00001.png index 276adbdb..6dea8fd3 100644 Binary files a/tests/snapshots/stax/test_get_public_key_reject/00001.png and b/tests/snapshots/stax/test_get_public_key_reject/00001.png differ diff --git a/tests/snapshots/stax/test_get_public_key_reject/00002.png b/tests/snapshots/stax/test_get_public_key_reject/00002.png index b0eba3f0..94c91bb6 100644 Binary files a/tests/snapshots/stax/test_get_public_key_reject/00002.png and b/tests/snapshots/stax/test_get_public_key_reject/00002.png differ diff --git a/tests/snapshots/stax/test_get_public_key_reject/00003.png b/tests/snapshots/stax/test_get_public_key_reject/00003.png index 4e5f8c6a..9ac941ee 100644 Binary files a/tests/snapshots/stax/test_get_public_key_reject/00003.png and b/tests/snapshots/stax/test_get_public_key_reject/00003.png differ diff --git a/tests/snapshots/stax/test_sign_reject/00000.png b/tests/snapshots/stax/test_sign_reject/00000.png index 0fc396e5..763c84f5 100644 Binary files a/tests/snapshots/stax/test_sign_reject/00000.png and b/tests/snapshots/stax/test_sign_reject/00000.png differ diff --git a/tests/snapshots/stax/test_sign_reject/00001.png b/tests/snapshots/stax/test_sign_reject/00001.png index d300f6af..e434dc0a 100644 Binary files a/tests/snapshots/stax/test_sign_reject/00001.png and b/tests/snapshots/stax/test_sign_reject/00001.png differ diff --git a/tests/snapshots/stax/test_sign_reject/00002.png b/tests/snapshots/stax/test_sign_reject/00002.png index 9a80ac12..8c477204 100644 Binary files a/tests/snapshots/stax/test_sign_reject/00002.png and b/tests/snapshots/stax/test_sign_reject/00002.png differ diff --git a/tests/snapshots/stax/test_sign_reject/00003.png b/tests/snapshots/stax/test_sign_reject/00003.png index 91c2360e..abc9677f 100644 Binary files a/tests/snapshots/stax/test_sign_reject/00003.png and b/tests/snapshots/stax/test_sign_reject/00003.png differ diff --git a/tests/snapshots/stax/test_sign_reject/00004.png b/tests/snapshots/stax/test_sign_reject/00004.png index babad989..2b669700 100644 Binary files a/tests/snapshots/stax/test_sign_reject/00004.png and b/tests/snapshots/stax/test_sign_reject/00004.png differ diff --git a/tests/snapshots/stax/test_sign_reject/00005.png b/tests/snapshots/stax/test_sign_reject/00005.png index cebc8bed..9ac941ee 100644 Binary files a/tests/snapshots/stax/test_sign_reject/00005.png and b/tests/snapshots/stax/test_sign_reject/00005.png differ diff --git a/tests/snapshots/stax/test_sign_reject/00006.png b/tests/snapshots/stax/test_sign_reject/00006.png deleted file mode 100644 index 4e5f8c6a..00000000 Binary files a/tests/snapshots/stax/test_sign_reject/00006.png and /dev/null differ diff --git a/tests/utils.py b/tests/utils.py index 109cc4b3..eb281f5d 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -15,7 +15,6 @@ from ragger.bip import calculate_public_key_and_chaincode, CurveChoice -ROOT_SCREENSHOT_PATH = Path(__file__).parent.resolve() DEFAULT_PATH = "44'/144'/0'/0'/0" DEFAULT_BIP32_PATH = Bip32Path.build(DEFAULT_PATH) TX_PREFIX_SINGLE = [0x53, 0x54, 0x58, 0x00] @@ -55,12 +54,11 @@ def unpack_get_public_key_response(reply: bytes) -> Tuple[int, str, int, str]: return key_len, key_data.hex(), len(chain_data), chain_data.hex() -def verify_version(version: str) -> None: +def verify_version(root_path: Path, version: str) -> None: """Verify the app version, based on defines in Makefile""" print(f"version: {version}") - parent = Path(ROOT_SCREENSHOT_PATH).parent.resolve() - makefile = f"{parent}/Makefile" + makefile = f"{root_path.parent.resolve()}/Makefile" print(f"{makefile}") with open(makefile, "r", encoding="utf-8") as f_p: lines = f_p.readlines()