diff --git a/src/parser_tx.c b/src/parser_tx.c index 34bbad8d..15ace777 100644 --- a/src/parser_tx.c +++ b/src/parser_tx.c @@ -653,7 +653,8 @@ parser_error_t parser_getItem_internal(int8_t *displayIdx, SCREEN(true) { snprintf(outKey, outKeyLen, "Type"); snprintf(outVal, outValLen, "%s", parser_tx_obj.metadata.txName); - zemu_log(outVal);zemu_log("\n"); + zemu_log(outVal); + zemu_log("\n"); return PARSER_OK; } } else { diff --git a/src/tx_metadata.c b/src/tx_metadata.c index 35c79926..b481cd9e 100644 --- a/src/tx_metadata.c +++ b/src/tx_metadata.c @@ -18,9 +18,8 @@ struct { } txMetadataState; static const uint8_t merkleTreeRoot[METADATA_HASH_SIZE] = { - 0xe5, 0xde, 0x7e, 0x03, 0x15, 0x1b, 0x79, 0xa5, 0x30, 0xf2, 0x98, 0x06, 0x44, 0x4d, 0x17, 0x64, - 0xa0, 0xdb, 0xd4, 0x82, 0x3e, 0xa3, 0x8e, 0xb5, 0x81, 0x44, 0xf2, 0xe5, 0x51, 0xef, 0x90, 0xd9 -}; + 0xe5, 0xde, 0x7e, 0x03, 0x15, 0x1b, 0x79, 0xa5, 0x30, 0xf2, 0x98, 0x06, 0x44, 0x4d, 0x17, 0x64, + 0xa0, 0xdb, 0xd4, 0x82, 0x3e, 0xa3, 0x8e, 0xb5, 0x81, 0x44, 0xf2, 0xe5, 0x51, 0xef, 0x90, 0xd9}; static const char *STRING_TYPE_STRING = "String"; static const char *UINT8_TYPE_STRING = "UInt8"; @@ -176,10 +175,8 @@ static parser_error_t parseTxMetadataInternal(const uint8_t scriptHash[METADATA_ for (int i = 0; i < parsedTxMetadata->argCount; i++) { uint8_t argumentType = 0; READ_CHAR(&argumentType); - if (argumentType != ARGUMENT_TYPE_NORMAL && - argumentType != ARGUMENT_TYPE_OPTIONAL && - argumentType != ARGUMENT_TYPE_ARRAY && - argumentType != ARGUMENT_TYPE_STRING && + if (argumentType != ARGUMENT_TYPE_NORMAL && argumentType != ARGUMENT_TYPE_OPTIONAL && + argumentType != ARGUMENT_TYPE_ARRAY && argumentType != ARGUMENT_TYPE_STRING && argumentType != ARGUMENT_TYPE_HASH_ALGO && argumentType != ARGUMENT_TYPE_SIGNATURE_ALGO && argumentType != ARGUMENT_TYPE_NODE_ROLE) { @@ -211,14 +208,16 @@ static parser_error_t parseTxMetadataInternal(const uint8_t scriptHash[METADATA_ break; case ARGUMENT_TYPE_STRING: parsedTxMetadata->arguments[i].jsonExpectedType = STRING_TYPE_STRING; - parsedTxMetadata->arguments[i].jsonExpectedTypeLength = strlen(STRING_TYPE_STRING); + parsedTxMetadata->arguments[i].jsonExpectedTypeLength = + strlen(STRING_TYPE_STRING); parsedTxMetadata->arguments[i].jsonExpectedKind = JSMN_STRING; break; case ARGUMENT_TYPE_HASH_ALGO: case ARGUMENT_TYPE_SIGNATURE_ALGO: case ARGUMENT_TYPE_NODE_ROLE: parsedTxMetadata->arguments[i].jsonExpectedType = UINT8_TYPE_STRING; - parsedTxMetadata->arguments[i].jsonExpectedTypeLength = strlen(UINT8_TYPE_STRING); + parsedTxMetadata->arguments[i].jsonExpectedTypeLength = + strlen(UINT8_TYPE_STRING); parsedTxMetadata->arguments[i].jsonExpectedKind = JSMN_STRING; break; default: diff --git a/src/tx_metadata.h b/src/tx_metadata.h index e091f9b4..9acdb776 100644 --- a/src/tx_metadata.h +++ b/src/tx_metadata.h @@ -41,10 +41,8 @@ typedef enum { typedef struct { argument_type_e argumentType; - uint8_t - arrayMinElements; // defined only for ARGUMENT_TYPE_ARRAY - uint8_t - arrayMaxElements; // defined only for ARGUMENT_TYPE_ARRAY + uint8_t arrayMinElements; // defined only for ARGUMENT_TYPE_ARRAY + uint8_t arrayMaxElements; // defined only for ARGUMENT_TYPE_ARRAY const char *displayKey; uint8_t displayKeyLength; uint8_t argumentIndex; // argument index within transaction diff --git a/tests/snapshots/nanosp/test_app_mainmenu/00001.png b/tests/snapshots/nanosp/test_app_mainmenu/00001.png index e10e0049..8472e5d9 100644 Binary files a/tests/snapshots/nanosp/test_app_mainmenu/00001.png and b/tests/snapshots/nanosp/test_app_mainmenu/00001.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part0/00001.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part0/00001.png index e10e0049..8472e5d9 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part0/00001.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part0/00001.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part0/00002.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part0/00002.png index 7e236da6..f7921677 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part0/00002.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part0/00002.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00001.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00001.png index aba9a074..eb38195b 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00001.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00001.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00002.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00002.png index d11f6473..edfb974f 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00002.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00002.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00003.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00003.png index 2cdd2656..f962a9f6 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00003.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00003.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00005.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00005.png index b45fc098..75f661ea 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00005.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00005.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00006.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00006.png index 89627d68..ee49524c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00006.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00006.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00007.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00007.png index 08d004e6..0334dd90 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00007.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00007.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00008.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00008.png index 22931730..658d96bb 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00008.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00008.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00009.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00009.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00009.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00010.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00010.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00010.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00011.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00011.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00011.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00012.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00012.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00012.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00013.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00013.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00013.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00014.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00014.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00014.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00018.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00018.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00018.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part1/00018.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00001.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00001.png index 3986e7fa..ab73ea7b 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00001.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00001.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00002.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00002.png index ddb2db50..ff86b93e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00002.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00002.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00003.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00003.png index 2cdd2656..f962a9f6 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00003.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00003.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00005.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00005.png index b45fc098..75f661ea 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00005.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00005.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00006.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00006.png index 89627d68..ee49524c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00006.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00006.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00007.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00007.png index 08d004e6..0334dd90 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00007.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00007.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00008.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00008.png index b845e90b..75fafce4 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00008.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00008.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00009.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00009.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00009.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00010.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00010.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00010.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00011.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00011.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00011.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00012.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00012.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00012.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00012.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00013.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00013.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00013.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00014.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00014.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00014.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00018.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00018.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00018.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part2/00018.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00001.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00001.png index 5b5918fd..037f08ae 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00001.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00001.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00002.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00002.png index 8dcf495c..cedaf45b 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00002.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00002.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00003.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00003.png index 2cdd2656..f962a9f6 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00003.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00003.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00005.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00005.png index b033cd29..57f45aba 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00005.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00005.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00006.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00006.png index 89627d68..ee49524c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00006.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00006.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00007.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00007.png index 08d004e6..0334dd90 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00007.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00007.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00008.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00008.png index 929d956e..e6f1ce0f 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00008.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00008.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00009.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00009.png index 2e3b0cb0..407e93cf 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00009.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00009.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00010.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00010.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00010.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00010.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00011.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00011.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00011.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00011.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00012.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00012.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00012.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00012.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00013.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00013.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00013.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00013.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00014.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00014.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00014.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00014.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00015.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00015.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00015.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00015.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00019.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00019.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00019.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part3/00019.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00001.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00001.png index 18710a0d..d781cb30 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00001.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00001.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00002.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00002.png index 8eeda510..4d02204f 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00002.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00002.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00003.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00003.png index 2cdd2656..f962a9f6 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00003.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00003.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00005.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00005.png index b033cd29..57f45aba 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00005.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00005.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00006.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00006.png index 89627d68..ee49524c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00006.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00006.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00007.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00007.png index 08d004e6..0334dd90 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00007.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00007.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00008.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00008.png index a9878627..2e7a9c02 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00008.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00008.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00009.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00009.png index 2e3b0cb0..407e93cf 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00009.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00009.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00010.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00010.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00010.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00010.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00011.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00011.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00011.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00011.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00012.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00012.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00012.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00012.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00013.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00013.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00013.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00013.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00014.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00014.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00014.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00014.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00015.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00015.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00015.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00015.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00019.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00019.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00019.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part4/00019.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00001.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00001.png index 24d7dcc2..1d53f522 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00001.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00001.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00002.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00002.png index 3fcf4925..18153639 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00002.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00002.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00003.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00003.png index 2cdd2656..f962a9f6 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00003.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00003.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00005.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00005.png index 0aebc11a..d1a71de0 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00005.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00005.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00006.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00006.png index 89627d68..ee49524c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00006.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00006.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00007.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00007.png index 08d004e6..0334dd90 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00007.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00007.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00008.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00008.png index 3d9388a7..7e0fbecb 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00008.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00008.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00009.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00009.png index f00ca33c..2d840c0e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00009.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00009.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00010.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00010.png index b02b33d6..830a7e08 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00010.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00010.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00011.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00011.png index 7321212a..66d10818 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00011.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00011.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00012.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00012.png index 783f7233..bdae02ba 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00012.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00012.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00013.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00013.png index d1067a77..e3a0cc5f 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00013.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00013.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00014.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00014.png index 800c97cb..99a35962 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00014.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00014.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00015.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00015.png index 519fc0eb..0a823482 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00015.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00015.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00016.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00016.png index 93ac21c3..1e6fd923 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00016.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00016.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00017.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00017.png index 01173c87..2a35fda1 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00017.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00017.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00018.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00018.png index a29c7e24..b1745edf 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00018.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00018.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00019.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00019.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00019.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00019.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00020.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00020.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00020.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00020.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00021.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00021.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00021.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00021.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00022.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00022.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00022.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00022.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00023.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00023.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00023.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00023.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00024.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00024.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00024.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00024.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00028.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00028.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00028.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part5/00028.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00001.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00001.png index 85dc0b4f..4743ee1e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00001.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00001.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00002.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00002.png index 8b9bac32..90fa664d 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00002.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00002.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00003.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00003.png index 2cdd2656..f962a9f6 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00003.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00003.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00005.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00005.png index 0aebc11a..d1a71de0 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00005.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00005.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00006.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00006.png index 89627d68..ee49524c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00006.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00006.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00007.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00007.png index 08d004e6..0334dd90 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00007.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00007.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00008.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00008.png index 3d9388a7..7e0fbecb 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00008.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00008.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00009.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00009.png index f00ca33c..2d840c0e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00009.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00009.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00010.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00010.png index b02b33d6..830a7e08 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00010.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00010.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00011.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00011.png index 7321212a..66d10818 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00011.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00011.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00012.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00012.png index 783f7233..bdae02ba 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00012.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00012.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00013.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00013.png index d1067a77..e3a0cc5f 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00013.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00013.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00014.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00014.png index 800c97cb..99a35962 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00014.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00014.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00015.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00015.png index 519fc0eb..0a823482 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00015.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00015.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00016.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00016.png index 93ac21c3..1e6fd923 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00016.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00016.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00017.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00017.png index 01173c87..2a35fda1 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00017.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00017.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00018.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00018.png index 9f5f975c..b0c66682 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00018.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00018.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00019.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00019.png index 09e98c53..98ba14cf 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00019.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00019.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00020.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00020.png index 4093de54..32be4a8a 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00020.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00020.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00021.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00021.png index 2306f067..d3fef119 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00021.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00021.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00022.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00022.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00022.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00022.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00023.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00023.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00023.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00023.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00024.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00024.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00024.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00024.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00025.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00025.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00025.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00025.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00026.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00026.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00026.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00026.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00027.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00027.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00027.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00027.png differ diff --git a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00031.png b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00031.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00031.png and b/tests/snapshots/nanosp/test_arbitrary_transaction_signing_expert/part6/00031.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png b/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png index f4678f9e..e13897cc 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png b/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png index 0d4c7e89..bc69da31 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png b/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png index 5b1bbacf..a5f0a458 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00004.png b/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00004.png index 64267258..8f31a63d 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00004.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00004.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png index d36c460a..fe929f2f 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png index 4c40091e..dc345fad 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png index aced2099..591eed05 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png index 64267258..8f31a63d 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00006.png b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00006.png index d9b5efc5..de8a2912 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00006.png and b/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00006.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_expert/00001.png b/tests/snapshots/nanosp/test_get_public_key_expert/00001.png index e10e0049..8472e5d9 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_expert/00001.png and b/tests/snapshots/nanosp/test_get_public_key_expert/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_expert/00002.png b/tests/snapshots/nanosp/test_get_public_key_expert/00002.png index 7e236da6..f7921677 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_expert/00002.png and b/tests/snapshots/nanosp/test_get_public_key_expert/00002.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_slot/part0/00001.png b/tests/snapshots/nanosp/test_get_public_key_slot/part0/00001.png index c99f676e..9ffae7e2 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_slot/part0/00001.png and b/tests/snapshots/nanosp/test_get_public_key_slot/part0/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_public_key_slot/part1/00001.png b/tests/snapshots/nanosp/test_get_public_key_slot/part1/00001.png index 673039ba..d0a5ee96 100644 Binary files a/tests/snapshots/nanosp/test_get_public_key_slot/part1/00001.png and b/tests/snapshots/nanosp/test_get_public_key_slot/part1/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_slot_accepted/part0/00001.png b/tests/snapshots/nanosp/test_get_slot_accepted/part0/00001.png index 27089844..e31e3d49 100644 Binary files a/tests/snapshots/nanosp/test_get_slot_accepted/part0/00001.png and b/tests/snapshots/nanosp/test_get_slot_accepted/part0/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_slot_accepted/part1/00001.png b/tests/snapshots/nanosp/test_get_slot_accepted/part1/00001.png index 994eb48b..f41d9132 100644 Binary files a/tests/snapshots/nanosp/test_get_slot_accepted/part1/00001.png and b/tests/snapshots/nanosp/test_get_slot_accepted/part1/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_slot_accepted/part2/00001.png b/tests/snapshots/nanosp/test_get_slot_accepted/part2/00001.png index 8f57f746..fefb4c83 100644 Binary files a/tests/snapshots/nanosp/test_get_slot_accepted/part2/00001.png and b/tests/snapshots/nanosp/test_get_slot_accepted/part2/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_slot_refused/00001.png b/tests/snapshots/nanosp/test_get_slot_refused/00001.png index 27089844..e31e3d49 100644 Binary files a/tests/snapshots/nanosp/test_get_slot_refused/00001.png and b/tests/snapshots/nanosp/test_get_slot_refused/00001.png differ diff --git a/tests/snapshots/nanosp/test_get_slot_refused/00005.png b/tests/snapshots/nanosp/test_get_slot_refused/00005.png index d9b5efc5..de8a2912 100644 Binary files a/tests/snapshots/nanosp/test_get_slot_refused/00005.png and b/tests/snapshots/nanosp/test_get_slot_refused/00005.png differ diff --git a/tests/snapshots/nanosp/test_message_normal/part0/00002.png b/tests/snapshots/nanosp/test_message_normal/part0/00002.png index 9a276d55..0f36734e 100644 Binary files a/tests/snapshots/nanosp/test_message_normal/part0/00002.png and b/tests/snapshots/nanosp/test_message_normal/part0/00002.png differ diff --git a/tests/snapshots/nanosp/test_message_normal/part0/00003.png b/tests/snapshots/nanosp/test_message_normal/part0/00003.png index 7e49f56f..24b411d6 100644 Binary files a/tests/snapshots/nanosp/test_message_normal/part0/00003.png and b/tests/snapshots/nanosp/test_message_normal/part0/00003.png differ diff --git a/tests/snapshots/nanosp/test_message_normal/part1/00002.png b/tests/snapshots/nanosp/test_message_normal/part1/00002.png index cf795648..fc4e7e0d 100644 Binary files a/tests/snapshots/nanosp/test_message_normal/part1/00002.png and b/tests/snapshots/nanosp/test_message_normal/part1/00002.png differ diff --git a/tests/snapshots/nanosp/test_message_normal/part2/00001.png b/tests/snapshots/nanosp/test_message_normal/part2/00001.png index e10e0049..8472e5d9 100644 Binary files a/tests/snapshots/nanosp/test_message_normal/part2/00001.png and b/tests/snapshots/nanosp/test_message_normal/part2/00001.png differ diff --git a/tests/snapshots/nanosp/test_message_normal/part2/00002.png b/tests/snapshots/nanosp/test_message_normal/part2/00002.png index 7e236da6..f7921677 100644 Binary files a/tests/snapshots/nanosp/test_message_normal/part2/00002.png and b/tests/snapshots/nanosp/test_message_normal/part2/00002.png differ diff --git a/tests/snapshots/nanosp/test_message_normal/part3/00002.png b/tests/snapshots/nanosp/test_message_normal/part3/00002.png index 9a276d55..0f36734e 100644 Binary files a/tests/snapshots/nanosp/test_message_normal/part3/00002.png and b/tests/snapshots/nanosp/test_message_normal/part3/00002.png differ diff --git a/tests/snapshots/nanosp/test_message_normal/part3/00003.png b/tests/snapshots/nanosp/test_message_normal/part3/00003.png index 7e49f56f..24b411d6 100644 Binary files a/tests/snapshots/nanosp/test_message_normal/part3/00003.png and b/tests/snapshots/nanosp/test_message_normal/part3/00003.png differ diff --git a/tests/snapshots/nanosp/test_message_normal/part4/00002.png b/tests/snapshots/nanosp/test_message_normal/part4/00002.png index cf795648..fc4e7e0d 100644 Binary files a/tests/snapshots/nanosp/test_message_normal/part4/00002.png and b/tests/snapshots/nanosp/test_message_normal/part4/00002.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part0/00001.png b/tests/snapshots/nanosp/test_transaction_expert/part0/00001.png index e10e0049..8472e5d9 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part0/00001.png and b/tests/snapshots/nanosp/test_transaction_expert/part0/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part0/00002.png b/tests/snapshots/nanosp/test_transaction_expert/part0/00002.png index 7e236da6..f7921677 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part0/00002.png and b/tests/snapshots/nanosp/test_transaction_expert/part0/00002.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part1/00004.png b/tests/snapshots/nanosp/test_transaction_expert/part1/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part1/00004.png and b/tests/snapshots/nanosp/test_transaction_expert/part1/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part1/00005.png b/tests/snapshots/nanosp/test_transaction_expert/part1/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part1/00005.png and b/tests/snapshots/nanosp/test_transaction_expert/part1/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part1/00006.png b/tests/snapshots/nanosp/test_transaction_expert/part1/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part1/00006.png and b/tests/snapshots/nanosp/test_transaction_expert/part1/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part1/00007.png b/tests/snapshots/nanosp/test_transaction_expert/part1/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part1/00007.png and b/tests/snapshots/nanosp/test_transaction_expert/part1/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part1/00008.png b/tests/snapshots/nanosp/test_transaction_expert/part1/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part1/00008.png and b/tests/snapshots/nanosp/test_transaction_expert/part1/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part1/00009.png b/tests/snapshots/nanosp/test_transaction_expert/part1/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part1/00009.png and b/tests/snapshots/nanosp/test_transaction_expert/part1/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part1/00013.png b/tests/snapshots/nanosp/test_transaction_expert/part1/00013.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part1/00013.png and b/tests/snapshots/nanosp/test_transaction_expert/part1/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part2/00004.png b/tests/snapshots/nanosp/test_transaction_expert/part2/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part2/00004.png and b/tests/snapshots/nanosp/test_transaction_expert/part2/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part2/00005.png b/tests/snapshots/nanosp/test_transaction_expert/part2/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part2/00005.png and b/tests/snapshots/nanosp/test_transaction_expert/part2/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part2/00006.png b/tests/snapshots/nanosp/test_transaction_expert/part2/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part2/00006.png and b/tests/snapshots/nanosp/test_transaction_expert/part2/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part2/00007.png b/tests/snapshots/nanosp/test_transaction_expert/part2/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part2/00007.png and b/tests/snapshots/nanosp/test_transaction_expert/part2/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part2/00008.png b/tests/snapshots/nanosp/test_transaction_expert/part2/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part2/00008.png and b/tests/snapshots/nanosp/test_transaction_expert/part2/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part2/00009.png b/tests/snapshots/nanosp/test_transaction_expert/part2/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part2/00009.png and b/tests/snapshots/nanosp/test_transaction_expert/part2/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_expert/part2/00013.png b/tests/snapshots/nanosp/test_transaction_expert/part2/00013.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_expert/part2/00013.png and b/tests/snapshots/nanosp/test_transaction_expert/part2/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00017.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00017.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Mainnet/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00012.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00017.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00017.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.01-Testnet/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00017.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00017.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Mainnet/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00012.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00017.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00017.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.02-Testnet/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00007.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FA.03-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00003.png index b3e2de98..d4b63b86 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00004.png index a7110247..b44c2e05 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00005.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00006.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00007.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00008.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00009.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00010.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00013.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Mainnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00003.png index 7dd85d55..9cb0bd12 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00004.png index a7110247..b44c2e05 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00005.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00006.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00007.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00008.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00009.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00010.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00013.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.01-Testnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00005.png index 009635ac..3393f5e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00006.png index 1ba77d2c..ffa092dd 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00005.png index 009635ac..3393f5e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00006.png index 1ba77d2c..ffa092dd 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.02-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00005.png index b3e2de98..d4b63b86 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00006.png index a7110247..b44c2e05 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00005.png index 7dd85d55..9cb0bd12 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00006.png index a7110247..b44c2e05 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/FT.03-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00003.png index 8e7b272a..cc3deb37 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00004.png index a76a057b..01ff34a1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00005.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00006.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00007.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00008.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00009.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00010.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00013.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Mainnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00003.png index f4f9a01e..8873d316 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00004.png index a76a057b..01ff34a1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00005.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00006.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00007.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00008.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00009.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00010.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00013.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.01-Testnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00004.png index 9abe28a8..d90ca7c6 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00005.png index 009635ac..3393f5e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00006.png index 1ba77d2c..ffa092dd 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00004.png index 9abe28a8..d90ca7c6 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00005.png index 009635ac..3393f5e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00006.png index 1ba77d2c..ffa092dd 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.02-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00004.png index 9abe28a8..d90ca7c6 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00005.png index 8e7b272a..cc3deb37 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00006.png index a76a057b..01ff34a1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00004.png index 9abe28a8..d90ca7c6 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00005.png index f4f9a01e..8873d316 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00006.png index a76a057b..01ff34a1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/NFT.03-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00003.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00004.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00005.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00006.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00007.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00008.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00011.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00003.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00003.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00003.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00004.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00005.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00006.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00007.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00008.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00011.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.01-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00009.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00009.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.02-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00006.png index fc817672..08542c2a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00007.png index d919f55a..13d4f841 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00008.png index b0c1952a..95053039 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00009.png index 6c835552..14536a99 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00010.png index 8d9a9df2..f82bf8aa 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00011.png index a35defdc..8c20afff 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00012.png index 0e078d2b..4ff09bcb 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00013.png index 87e1818f..112ba252 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00015.png index acd9654d..96499b86 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00016.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00016.png index 36717f4b..43978d3d 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00016.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00016.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00017.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00017.png index d75d5157..30e61d27 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00017.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00018.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00018.png index 26690213..3a20eccd 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00018.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00018.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00019.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00019.png index c0715669..90434b76 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00019.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00019.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00020.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00020.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00020.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00020.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00021.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00021.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00021.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00021.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00022.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00022.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00022.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00022.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00023.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00023.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00023.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00023.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00024.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00024.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00024.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00024.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00025.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00025.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00025.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00025.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00028.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00028.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00028.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Mainnet/00028.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00006.png index fc817672..08542c2a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00007.png index d919f55a..13d4f841 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00008.png index b0c1952a..95053039 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00009.png index 6c835552..14536a99 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00010.png index 8d9a9df2..f82bf8aa 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00011.png index a35defdc..8c20afff 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00012.png index 0e078d2b..4ff09bcb 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00013.png index 87e1818f..112ba252 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00015.png index acd9654d..96499b86 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00016.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00016.png index 36717f4b..43978d3d 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00016.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00016.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00017.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00017.png index d75d5157..30e61d27 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00017.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00018.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00018.png index 26690213..3a20eccd 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00018.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00018.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00019.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00019.png index c0715669..90434b76 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00019.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00019.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00020.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00020.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00020.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00020.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00021.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00021.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00021.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00021.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00022.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00022.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00022.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00022.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00023.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00023.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00023.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00023.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00024.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00024.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00024.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00024.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00025.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00025.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00025.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00025.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00028.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00028.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00028.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.03-Testnet/00028.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00005.png index acd9654d..96499b86 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00006.png index 36717f4b..43978d3d 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00007.png index d75d5157..30e61d27 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00008.png index 26690213..3a20eccd 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00009.png index c0715669..90434b76 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00010.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00011.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00012.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00013.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00014.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00015.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00018.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00018.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00018.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Mainnet/00018.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00005.png index acd9654d..96499b86 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00006.png index 36717f4b..43978d3d 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00007.png index d75d5157..30e61d27 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00008.png index 26690213..3a20eccd 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00009.png index c0715669..90434b76 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00010.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00011.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00012.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00013.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00014.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00015.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00018.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00018.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00018.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.04-Testnet/00018.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00001.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00001.png index 7e693c38..9c58d43d 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00001.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00001.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00001.png index 7e693c38..9c58d43d 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00001.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-1-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00001.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00001.png index 7e693c38..9c58d43d 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00001.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00001.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00001.png index 7e693c38..9c58d43d 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00001.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.05-2-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-1-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.06-2-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-1-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.07-2-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-1-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.08-2-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00005.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00006.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00007.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00008.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00009.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00010.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00013.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Mainnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00005.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00006.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00007.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00008.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00009.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00010.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00013.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00013.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00013.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.09-Testnet/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-1-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.10-2-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-1-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.11-2-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00009.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00009.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-1-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00009.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00009.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.12-2-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00009.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00009.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.13-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00010.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Mainnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00007.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00008.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00009.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00010.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00011.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00012.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00015.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00015.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00015.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.14-Testnet/00015.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00009.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00009.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.15-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00009.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Mainnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00006.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00007.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00008.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00009.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00010.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00010.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00010.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00011.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00011.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00011.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00014.png b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00014.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00014.png and b/tests/snapshots/nanosp/test_transaction_manifest/SCO.16-Testnet/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00007.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.01-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00001.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00001.png index 13c70eef..7e23f8fe 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00001.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Mainnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00001.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00001.png index 13c70eef..7e23f8fe 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00001.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00004.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00004.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00005.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00005.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00006.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00006.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00007.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00007.png index 70d85793..21b1ee21 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00007.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00008.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00008.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00009.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00009.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00012.png b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00012.png and b/tests/snapshots/nanosp/test_transaction_manifest/TH.02-Testnet/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00003.png b/tests/snapshots/nanosp/test_transaction_params/part1/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00003.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00004.png b/tests/snapshots/nanosp/test_transaction_params/part1/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00005.png b/tests/snapshots/nanosp/test_transaction_params/part1/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00006.png b/tests/snapshots/nanosp/test_transaction_params/part1/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00009.png b/tests/snapshots/nanosp/test_transaction_params/part1/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00010.png b/tests/snapshots/nanosp/test_transaction_params/part1/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00010.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00011.png b/tests/snapshots/nanosp/test_transaction_params/part1/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00011.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00012.png b/tests/snapshots/nanosp/test_transaction_params/part1/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00013.png b/tests/snapshots/nanosp/test_transaction_params/part1/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00013.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00014.png b/tests/snapshots/nanosp/test_transaction_params/part1/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00014.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part1/00017.png b/tests/snapshots/nanosp/test_transaction_params/part1/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part1/00017.png and b/tests/snapshots/nanosp/test_transaction_params/part1/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part10/00004.png b/tests/snapshots/nanosp/test_transaction_params/part10/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part10/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part10/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part10/00005.png b/tests/snapshots/nanosp/test_transaction_params/part10/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part10/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part10/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part10/00006.png b/tests/snapshots/nanosp/test_transaction_params/part10/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part10/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part10/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part10/00007.png b/tests/snapshots/nanosp/test_transaction_params/part10/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part10/00007.png and b/tests/snapshots/nanosp/test_transaction_params/part10/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part10/00008.png b/tests/snapshots/nanosp/test_transaction_params/part10/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part10/00008.png and b/tests/snapshots/nanosp/test_transaction_params/part10/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part10/00009.png b/tests/snapshots/nanosp/test_transaction_params/part10/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part10/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part10/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part10/00012.png b/tests/snapshots/nanosp/test_transaction_params/part10/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part10/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part10/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part11/00004.png b/tests/snapshots/nanosp/test_transaction_params/part11/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part11/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part11/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part11/00005.png b/tests/snapshots/nanosp/test_transaction_params/part11/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part11/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part11/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part11/00006.png b/tests/snapshots/nanosp/test_transaction_params/part11/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part11/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part11/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part11/00007.png b/tests/snapshots/nanosp/test_transaction_params/part11/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part11/00007.png and b/tests/snapshots/nanosp/test_transaction_params/part11/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part11/00008.png b/tests/snapshots/nanosp/test_transaction_params/part11/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part11/00008.png and b/tests/snapshots/nanosp/test_transaction_params/part11/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part11/00009.png b/tests/snapshots/nanosp/test_transaction_params/part11/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part11/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part11/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part11/00012.png b/tests/snapshots/nanosp/test_transaction_params/part11/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part11/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part11/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part12/00004.png b/tests/snapshots/nanosp/test_transaction_params/part12/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part12/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part12/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part12/00005.png b/tests/snapshots/nanosp/test_transaction_params/part12/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part12/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part12/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part12/00006.png b/tests/snapshots/nanosp/test_transaction_params/part12/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part12/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part12/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part12/00007.png b/tests/snapshots/nanosp/test_transaction_params/part12/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part12/00007.png and b/tests/snapshots/nanosp/test_transaction_params/part12/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part12/00008.png b/tests/snapshots/nanosp/test_transaction_params/part12/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part12/00008.png and b/tests/snapshots/nanosp/test_transaction_params/part12/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part12/00009.png b/tests/snapshots/nanosp/test_transaction_params/part12/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part12/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part12/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part12/00012.png b/tests/snapshots/nanosp/test_transaction_params/part12/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part12/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part12/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00003.png b/tests/snapshots/nanosp/test_transaction_params/part2/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00003.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00004.png b/tests/snapshots/nanosp/test_transaction_params/part2/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00005.png b/tests/snapshots/nanosp/test_transaction_params/part2/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00006.png b/tests/snapshots/nanosp/test_transaction_params/part2/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00009.png b/tests/snapshots/nanosp/test_transaction_params/part2/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00010.png b/tests/snapshots/nanosp/test_transaction_params/part2/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00010.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00011.png b/tests/snapshots/nanosp/test_transaction_params/part2/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00011.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00012.png b/tests/snapshots/nanosp/test_transaction_params/part2/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00013.png b/tests/snapshots/nanosp/test_transaction_params/part2/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00013.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00014.png b/tests/snapshots/nanosp/test_transaction_params/part2/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00014.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part2/00017.png b/tests/snapshots/nanosp/test_transaction_params/part2/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part2/00017.png and b/tests/snapshots/nanosp/test_transaction_params/part2/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00003.png b/tests/snapshots/nanosp/test_transaction_params/part3/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00003.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00004.png b/tests/snapshots/nanosp/test_transaction_params/part3/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00005.png b/tests/snapshots/nanosp/test_transaction_params/part3/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00006.png b/tests/snapshots/nanosp/test_transaction_params/part3/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00009.png b/tests/snapshots/nanosp/test_transaction_params/part3/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00010.png b/tests/snapshots/nanosp/test_transaction_params/part3/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00010.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00011.png b/tests/snapshots/nanosp/test_transaction_params/part3/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00011.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00012.png b/tests/snapshots/nanosp/test_transaction_params/part3/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00013.png b/tests/snapshots/nanosp/test_transaction_params/part3/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00013.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00014.png b/tests/snapshots/nanosp/test_transaction_params/part3/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00014.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part3/00017.png b/tests/snapshots/nanosp/test_transaction_params/part3/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part3/00017.png and b/tests/snapshots/nanosp/test_transaction_params/part3/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00003.png b/tests/snapshots/nanosp/test_transaction_params/part4/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00003.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00004.png b/tests/snapshots/nanosp/test_transaction_params/part4/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00005.png b/tests/snapshots/nanosp/test_transaction_params/part4/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00006.png b/tests/snapshots/nanosp/test_transaction_params/part4/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00009.png b/tests/snapshots/nanosp/test_transaction_params/part4/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00010.png b/tests/snapshots/nanosp/test_transaction_params/part4/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00010.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00011.png b/tests/snapshots/nanosp/test_transaction_params/part4/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00011.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00012.png b/tests/snapshots/nanosp/test_transaction_params/part4/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00013.png b/tests/snapshots/nanosp/test_transaction_params/part4/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00013.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00014.png b/tests/snapshots/nanosp/test_transaction_params/part4/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00014.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part4/00017.png b/tests/snapshots/nanosp/test_transaction_params/part4/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part4/00017.png and b/tests/snapshots/nanosp/test_transaction_params/part4/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00003.png b/tests/snapshots/nanosp/test_transaction_params/part5/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00003.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00004.png b/tests/snapshots/nanosp/test_transaction_params/part5/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00005.png b/tests/snapshots/nanosp/test_transaction_params/part5/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00006.png b/tests/snapshots/nanosp/test_transaction_params/part5/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00009.png b/tests/snapshots/nanosp/test_transaction_params/part5/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00010.png b/tests/snapshots/nanosp/test_transaction_params/part5/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00010.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00011.png b/tests/snapshots/nanosp/test_transaction_params/part5/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00011.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00012.png b/tests/snapshots/nanosp/test_transaction_params/part5/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00013.png b/tests/snapshots/nanosp/test_transaction_params/part5/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00013.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00014.png b/tests/snapshots/nanosp/test_transaction_params/part5/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00014.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part5/00017.png b/tests/snapshots/nanosp/test_transaction_params/part5/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part5/00017.png and b/tests/snapshots/nanosp/test_transaction_params/part5/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00003.png b/tests/snapshots/nanosp/test_transaction_params/part6/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00003.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00004.png b/tests/snapshots/nanosp/test_transaction_params/part6/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00005.png b/tests/snapshots/nanosp/test_transaction_params/part6/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00006.png b/tests/snapshots/nanosp/test_transaction_params/part6/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00009.png b/tests/snapshots/nanosp/test_transaction_params/part6/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00010.png b/tests/snapshots/nanosp/test_transaction_params/part6/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00010.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00011.png b/tests/snapshots/nanosp/test_transaction_params/part6/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00011.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00012.png b/tests/snapshots/nanosp/test_transaction_params/part6/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00013.png b/tests/snapshots/nanosp/test_transaction_params/part6/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00013.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00014.png b/tests/snapshots/nanosp/test_transaction_params/part6/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00014.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part6/00017.png b/tests/snapshots/nanosp/test_transaction_params/part6/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part6/00017.png and b/tests/snapshots/nanosp/test_transaction_params/part6/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00003.png b/tests/snapshots/nanosp/test_transaction_params/part7/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00003.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00004.png b/tests/snapshots/nanosp/test_transaction_params/part7/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00005.png b/tests/snapshots/nanosp/test_transaction_params/part7/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00006.png b/tests/snapshots/nanosp/test_transaction_params/part7/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00009.png b/tests/snapshots/nanosp/test_transaction_params/part7/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00010.png b/tests/snapshots/nanosp/test_transaction_params/part7/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00010.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00011.png b/tests/snapshots/nanosp/test_transaction_params/part7/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00011.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00012.png b/tests/snapshots/nanosp/test_transaction_params/part7/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00013.png b/tests/snapshots/nanosp/test_transaction_params/part7/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00013.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00014.png b/tests/snapshots/nanosp/test_transaction_params/part7/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00014.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part7/00017.png b/tests/snapshots/nanosp/test_transaction_params/part7/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part7/00017.png and b/tests/snapshots/nanosp/test_transaction_params/part7/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00003.png b/tests/snapshots/nanosp/test_transaction_params/part8/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00003.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00004.png b/tests/snapshots/nanosp/test_transaction_params/part8/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00005.png b/tests/snapshots/nanosp/test_transaction_params/part8/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00006.png b/tests/snapshots/nanosp/test_transaction_params/part8/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00009.png b/tests/snapshots/nanosp/test_transaction_params/part8/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00010.png b/tests/snapshots/nanosp/test_transaction_params/part8/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00010.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00011.png b/tests/snapshots/nanosp/test_transaction_params/part8/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00011.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00012.png b/tests/snapshots/nanosp/test_transaction_params/part8/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00013.png b/tests/snapshots/nanosp/test_transaction_params/part8/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00013.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00014.png b/tests/snapshots/nanosp/test_transaction_params/part8/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00014.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part8/00017.png b/tests/snapshots/nanosp/test_transaction_params/part8/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part8/00017.png and b/tests/snapshots/nanosp/test_transaction_params/part8/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part9/00004.png b/tests/snapshots/nanosp/test_transaction_params/part9/00004.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part9/00004.png and b/tests/snapshots/nanosp/test_transaction_params/part9/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part9/00005.png b/tests/snapshots/nanosp/test_transaction_params/part9/00005.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part9/00005.png and b/tests/snapshots/nanosp/test_transaction_params/part9/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part9/00006.png b/tests/snapshots/nanosp/test_transaction_params/part9/00006.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part9/00006.png and b/tests/snapshots/nanosp/test_transaction_params/part9/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part9/00007.png b/tests/snapshots/nanosp/test_transaction_params/part9/00007.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part9/00007.png and b/tests/snapshots/nanosp/test_transaction_params/part9/00007.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part9/00008.png b/tests/snapshots/nanosp/test_transaction_params/part9/00008.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part9/00008.png and b/tests/snapshots/nanosp/test_transaction_params/part9/00008.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part9/00009.png b/tests/snapshots/nanosp/test_transaction_params/part9/00009.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part9/00009.png and b/tests/snapshots/nanosp/test_transaction_params/part9/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_params/part9/00012.png b/tests/snapshots/nanosp/test_transaction_params/part9/00012.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_params/part9/00012.png and b/tests/snapshots/nanosp/test_transaction_params/part9/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00003.png b/tests/snapshots/nanosp/test_transaction_refused/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00003.png and b/tests/snapshots/nanosp/test_transaction_refused/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00004.png b/tests/snapshots/nanosp/test_transaction_refused/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00004.png and b/tests/snapshots/nanosp/test_transaction_refused/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00005.png b/tests/snapshots/nanosp/test_transaction_refused/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00005.png and b/tests/snapshots/nanosp/test_transaction_refused/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00006.png b/tests/snapshots/nanosp/test_transaction_refused/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00006.png and b/tests/snapshots/nanosp/test_transaction_refused/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00009.png b/tests/snapshots/nanosp/test_transaction_refused/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00009.png and b/tests/snapshots/nanosp/test_transaction_refused/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00010.png b/tests/snapshots/nanosp/test_transaction_refused/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00010.png and b/tests/snapshots/nanosp/test_transaction_refused/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00011.png b/tests/snapshots/nanosp/test_transaction_refused/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00011.png and b/tests/snapshots/nanosp/test_transaction_refused/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00012.png b/tests/snapshots/nanosp/test_transaction_refused/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00012.png and b/tests/snapshots/nanosp/test_transaction_refused/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00013.png b/tests/snapshots/nanosp/test_transaction_refused/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00013.png and b/tests/snapshots/nanosp/test_transaction_refused/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00014.png b/tests/snapshots/nanosp/test_transaction_refused/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00014.png and b/tests/snapshots/nanosp/test_transaction_refused/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00017.png b/tests/snapshots/nanosp/test_transaction_refused/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00017.png and b/tests/snapshots/nanosp/test_transaction_refused/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_refused/00019.png b/tests/snapshots/nanosp/test_transaction_refused/00019.png index d9b5efc5..de8a2912 100644 Binary files a/tests/snapshots/nanosp/test_transaction_refused/00019.png and b/tests/snapshots/nanosp/test_transaction_refused/00019.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/00001.png b/tests/snapshots/nanosp/test_transaction_slot/00001.png index 673039ba..d0a5ee96 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/00001.png and b/tests/snapshots/nanosp/test_transaction_slot/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part0/00017.png b/tests/snapshots/nanosp/test_transaction_slot/part0/00017.png index cc0bd7b2..14c87a49 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part0/00017.png and b/tests/snapshots/nanosp/test_transaction_slot/part0/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part1/00001.png b/tests/snapshots/nanosp/test_transaction_slot/part1/00001.png index c99f676e..9ffae7e2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part1/00001.png and b/tests/snapshots/nanosp/test_transaction_slot/part1/00001.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part10/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part10/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part10/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part10/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part12/00019.png b/tests/snapshots/nanosp/test_transaction_slot/part12/00019.png index afc070e4..0b2d916f 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part12/00019.png and b/tests/snapshots/nanosp/test_transaction_slot/part12/00019.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part14/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part14/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part14/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part14/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00017.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00017.png index afc070e4..0b2d916f 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00017.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part15/00018.png b/tests/snapshots/nanosp/test_transaction_slot/part15/00018.png index e2d9cb6f..38b11c55 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part15/00018.png and b/tests/snapshots/nanosp/test_transaction_slot/part15/00018.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part2/00017.png b/tests/snapshots/nanosp/test_transaction_slot/part2/00017.png index 84905b9f..be855edc 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part2/00017.png and b/tests/snapshots/nanosp/test_transaction_slot/part2/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part3/00017.png b/tests/snapshots/nanosp/test_transaction_slot/part3/00017.png index afc070e4..0b2d916f 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part3/00017.png and b/tests/snapshots/nanosp/test_transaction_slot/part3/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part4/00017.png b/tests/snapshots/nanosp/test_transaction_slot/part4/00017.png index afc070e4..0b2d916f 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part4/00017.png and b/tests/snapshots/nanosp/test_transaction_slot/part4/00017.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00012.png index 3ad758de..1030e3e1 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part6/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part6/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part6/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part6/00014.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00003.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00003.png index a8b43fa8..d1930d7a 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00003.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00003.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00004.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00004.png index 05bc276e..a4d302e5 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00004.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00004.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00005.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00005.png index 1cdfef90..c22f01b2 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00005.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00005.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00006.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00006.png index 4986c394..5474e7a3 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00006.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00006.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00009.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00009.png index d1eb962c..d8a2740e 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00009.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00009.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00010.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00010.png index 11ac632e..4d1a7f73 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00010.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00010.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00011.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00011.png index 62827380..38f03f75 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00011.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00011.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00012.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00012.png index 68020b16..37312a69 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00012.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00012.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00013.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00013.png index bff4ff72..163e4981 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00013.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00013.png differ diff --git a/tests/snapshots/nanosp/test_transaction_slot/part8/00014.png b/tests/snapshots/nanosp/test_transaction_slot/part8/00014.png index c02f5ccb..b5f70a2c 100644 Binary files a/tests/snapshots/nanosp/test_transaction_slot/part8/00014.png and b/tests/snapshots/nanosp/test_transaction_slot/part8/00014.png differ diff --git a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part1/00007.png b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part1/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part1/00007.png and b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part1/00007.png differ diff --git a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part2/00007.png b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part2/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part2/00007.png and b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part2/00007.png differ diff --git a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part3/00008.png b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part3/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part3/00008.png and b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part3/00008.png differ diff --git a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part4/00008.png b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part4/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part4/00008.png and b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part4/00008.png differ diff --git a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part5/00011.png b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part5/00011.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part5/00011.png and b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part5/00011.png differ diff --git a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part6/00012.png b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part6/00012.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part6/00012.png and b/tests/snapshots/stax/test_arbitrary_transaction_signing_expert/part6/00012.png differ diff --git a/tests/snapshots/stax/test_get_public_key_confirm_accepted/00003.png b/tests/snapshots/stax/test_get_public_key_confirm_accepted/00003.png index f59899e9..13499fcc 100644 Binary files a/tests/snapshots/stax/test_get_public_key_confirm_accepted/00003.png and b/tests/snapshots/stax/test_get_public_key_confirm_accepted/00003.png differ diff --git a/tests/snapshots/stax/test_get_public_key_slot/part0/00003.png b/tests/snapshots/stax/test_get_public_key_slot/part0/00003.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_get_public_key_slot/part0/00003.png and b/tests/snapshots/stax/test_get_public_key_slot/part0/00003.png differ diff --git a/tests/snapshots/stax/test_get_public_key_slot/part1/00003.png b/tests/snapshots/stax/test_get_public_key_slot/part1/00003.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_get_public_key_slot/part1/00003.png and b/tests/snapshots/stax/test_get_public_key_slot/part1/00003.png differ diff --git a/tests/snapshots/stax/test_get_slot_accepted/part0/00003.png b/tests/snapshots/stax/test_get_slot_accepted/part0/00003.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_get_slot_accepted/part0/00003.png and b/tests/snapshots/stax/test_get_slot_accepted/part0/00003.png differ diff --git a/tests/snapshots/stax/test_get_slot_accepted/part1/00004.png b/tests/snapshots/stax/test_get_slot_accepted/part1/00004.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_get_slot_accepted/part1/00004.png and b/tests/snapshots/stax/test_get_slot_accepted/part1/00004.png differ diff --git a/tests/snapshots/stax/test_get_slot_accepted/part2/00003.png b/tests/snapshots/stax/test_get_slot_accepted/part2/00003.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_get_slot_accepted/part2/00003.png and b/tests/snapshots/stax/test_get_slot_accepted/part2/00003.png differ diff --git a/tests/snapshots/stax/test_message_normal/part0/00003.png b/tests/snapshots/stax/test_message_normal/part0/00003.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_message_normal/part0/00003.png and b/tests/snapshots/stax/test_message_normal/part0/00003.png differ diff --git a/tests/snapshots/stax/test_message_normal/part1/00004.png b/tests/snapshots/stax/test_message_normal/part1/00004.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_message_normal/part1/00004.png and b/tests/snapshots/stax/test_message_normal/part1/00004.png differ diff --git a/tests/snapshots/stax/test_message_normal/part3/00004.png b/tests/snapshots/stax/test_message_normal/part3/00004.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_message_normal/part3/00004.png and b/tests/snapshots/stax/test_message_normal/part3/00004.png differ diff --git a/tests/snapshots/stax/test_message_normal/part4/00004.png b/tests/snapshots/stax/test_message_normal/part4/00004.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_message_normal/part4/00004.png and b/tests/snapshots/stax/test_message_normal/part4/00004.png differ diff --git a/tests/snapshots/stax/test_transaction_expert/part1/00006.png b/tests/snapshots/stax/test_transaction_expert/part1/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_expert/part1/00006.png and b/tests/snapshots/stax/test_transaction_expert/part1/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_expert/part2/00006.png b/tests/snapshots/stax/test_transaction_expert/part2/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_expert/part2/00006.png and b/tests/snapshots/stax/test_transaction_expert/part2/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FA.01-Mainnet/00008.png b/tests/snapshots/stax/test_transaction_manifest/FA.01-Mainnet/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FA.01-Mainnet/00008.png and b/tests/snapshots/stax/test_transaction_manifest/FA.01-Mainnet/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FA.01-Testnet/00008.png b/tests/snapshots/stax/test_transaction_manifest/FA.01-Testnet/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FA.01-Testnet/00008.png and b/tests/snapshots/stax/test_transaction_manifest/FA.01-Testnet/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FA.02-Mainnet/00008.png b/tests/snapshots/stax/test_transaction_manifest/FA.02-Mainnet/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FA.02-Mainnet/00008.png and b/tests/snapshots/stax/test_transaction_manifest/FA.02-Mainnet/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FA.02-Testnet/00008.png b/tests/snapshots/stax/test_transaction_manifest/FA.02-Testnet/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FA.02-Testnet/00008.png and b/tests/snapshots/stax/test_transaction_manifest/FA.02-Testnet/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FA.03-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/FA.03-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FA.03-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/FA.03-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FA.03-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/FA.03-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FA.03-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/FA.03-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FT.01-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/FT.01-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FT.01-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/FT.01-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FT.01-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/FT.01-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FT.01-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/FT.01-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FT.02-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/FT.02-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FT.02-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/FT.02-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FT.02-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/FT.02-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FT.02-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/FT.02-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FT.03-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/FT.03-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FT.03-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/FT.03-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/FT.03-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/FT.03-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/FT.03-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/FT.03-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/NFT.01-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/NFT.01-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/NFT.01-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/NFT.01-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/NFT.01-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/NFT.01-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/NFT.01-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/NFT.01-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/NFT.02-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/NFT.02-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/NFT.02-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/NFT.02-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/NFT.02-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/NFT.02-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/NFT.02-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/NFT.02-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/NFT.03-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/NFT.03-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/NFT.03-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/NFT.03-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/NFT.03-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/NFT.03-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/NFT.03-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/NFT.03-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.01-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.01-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.01-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.01-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.01-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.01-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.01-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.01-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.02-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.02-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.02-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.02-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.02-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.02-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.02-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.02-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.03-Mainnet/00011.png b/tests/snapshots/stax/test_transaction_manifest/SCO.03-Mainnet/00011.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.03-Mainnet/00011.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.03-Mainnet/00011.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.03-Testnet/00011.png b/tests/snapshots/stax/test_transaction_manifest/SCO.03-Testnet/00011.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.03-Testnet/00011.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.03-Testnet/00011.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.04-Mainnet/00008.png b/tests/snapshots/stax/test_transaction_manifest/SCO.04-Mainnet/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.04-Mainnet/00008.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.04-Mainnet/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.04-Testnet/00008.png b/tests/snapshots/stax/test_transaction_manifest/SCO.04-Testnet/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.04-Testnet/00008.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.04-Testnet/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.05-1-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.05-1-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.05-1-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.05-1-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.05-1-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.05-1-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.05-1-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.05-1-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.05-2-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.05-2-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.05-2-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.05-2-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.05-2-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.05-2-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.05-2-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.05-2-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.06-1-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.06-1-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.06-1-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.06-1-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.06-1-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.06-1-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.06-1-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.06-1-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.06-2-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.06-2-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.06-2-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.06-2-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.06-2-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.06-2-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.06-2-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.06-2-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.07-1-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.07-1-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.07-1-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.07-1-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.07-1-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.07-1-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.07-1-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.07-1-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.07-2-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.07-2-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.07-2-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.07-2-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.07-2-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.07-2-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.07-2-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.07-2-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.08-1-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.08-1-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.08-1-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.08-1-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.08-1-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.08-1-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.08-1-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.08-1-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.08-2-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.08-2-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.08-2-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.08-2-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.08-2-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.08-2-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.08-2-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.08-2-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.09-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.09-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.09-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.09-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.09-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.09-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.09-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.09-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.10-1-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.10-1-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.10-1-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.10-1-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.10-1-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.10-1-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.10-1-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.10-1-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.10-2-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.10-2-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.10-2-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.10-2-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.10-2-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.10-2-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.10-2-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.10-2-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.11-1-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.11-1-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.11-1-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.11-1-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.11-1-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.11-1-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.11-1-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.11-1-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.11-2-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.11-2-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.11-2-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.11-2-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.11-2-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.11-2-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.11-2-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.11-2-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.12-1-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.12-1-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.12-1-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.12-1-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.12-1-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.12-1-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.12-1-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.12-1-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.12-2-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.12-2-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.12-2-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.12-2-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.12-2-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.12-2-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.12-2-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.12-2-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.13-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.13-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.13-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.13-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.13-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.13-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.13-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.13-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.14-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/SCO.14-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.14-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.14-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.14-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.14-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.14-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.14-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.15-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.15-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.15-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.15-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.15-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.15-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.15-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.15-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.16-Mainnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.16-Mainnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.16-Mainnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.16-Mainnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/SCO.16-Testnet/00007.png b/tests/snapshots/stax/test_transaction_manifest/SCO.16-Testnet/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/SCO.16-Testnet/00007.png and b/tests/snapshots/stax/test_transaction_manifest/SCO.16-Testnet/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/TH.01-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/TH.01-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/TH.01-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/TH.01-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/TH.01-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/TH.01-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/TH.01-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/TH.01-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/TH.02-Mainnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/TH.02-Mainnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/TH.02-Mainnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/TH.02-Mainnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_manifest/TH.02-Testnet/00006.png b/tests/snapshots/stax/test_transaction_manifest/TH.02-Testnet/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_manifest/TH.02-Testnet/00006.png and b/tests/snapshots/stax/test_transaction_manifest/TH.02-Testnet/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part1/00008.png b/tests/snapshots/stax/test_transaction_params/part1/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part1/00008.png and b/tests/snapshots/stax/test_transaction_params/part1/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part10/00006.png b/tests/snapshots/stax/test_transaction_params/part10/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part10/00006.png and b/tests/snapshots/stax/test_transaction_params/part10/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part11/00006.png b/tests/snapshots/stax/test_transaction_params/part11/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part11/00006.png and b/tests/snapshots/stax/test_transaction_params/part11/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part12/00006.png b/tests/snapshots/stax/test_transaction_params/part12/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part12/00006.png and b/tests/snapshots/stax/test_transaction_params/part12/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part2/00008.png b/tests/snapshots/stax/test_transaction_params/part2/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part2/00008.png and b/tests/snapshots/stax/test_transaction_params/part2/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part3/00008.png b/tests/snapshots/stax/test_transaction_params/part3/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part3/00008.png and b/tests/snapshots/stax/test_transaction_params/part3/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part4/00008.png b/tests/snapshots/stax/test_transaction_params/part4/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part4/00008.png and b/tests/snapshots/stax/test_transaction_params/part4/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part5/00008.png b/tests/snapshots/stax/test_transaction_params/part5/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part5/00008.png and b/tests/snapshots/stax/test_transaction_params/part5/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part6/00008.png b/tests/snapshots/stax/test_transaction_params/part6/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part6/00008.png and b/tests/snapshots/stax/test_transaction_params/part6/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part7/00008.png b/tests/snapshots/stax/test_transaction_params/part7/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part7/00008.png and b/tests/snapshots/stax/test_transaction_params/part7/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part8/00008.png b/tests/snapshots/stax/test_transaction_params/part8/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part8/00008.png and b/tests/snapshots/stax/test_transaction_params/part8/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_params/part9/00006.png b/tests/snapshots/stax/test_transaction_params/part9/00006.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_params/part9/00006.png and b/tests/snapshots/stax/test_transaction_params/part9/00006.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/00003.png b/tests/snapshots/stax/test_transaction_slot/00003.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/00003.png and b/tests/snapshots/stax/test_transaction_slot/00003.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part0/00008.png b/tests/snapshots/stax/test_transaction_slot/part0/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part0/00008.png and b/tests/snapshots/stax/test_transaction_slot/part0/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part1/00003.png b/tests/snapshots/stax/test_transaction_slot/part1/00003.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part1/00003.png and b/tests/snapshots/stax/test_transaction_slot/part1/00003.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part10/00007.png b/tests/snapshots/stax/test_transaction_slot/part10/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part10/00007.png and b/tests/snapshots/stax/test_transaction_slot/part10/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part12/00008.png b/tests/snapshots/stax/test_transaction_slot/part12/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part12/00008.png and b/tests/snapshots/stax/test_transaction_slot/part12/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part14/00008.png b/tests/snapshots/stax/test_transaction_slot/part14/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part14/00008.png and b/tests/snapshots/stax/test_transaction_slot/part14/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part15/00008.png b/tests/snapshots/stax/test_transaction_slot/part15/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part15/00008.png and b/tests/snapshots/stax/test_transaction_slot/part15/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part2/00008.png b/tests/snapshots/stax/test_transaction_slot/part2/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part2/00008.png and b/tests/snapshots/stax/test_transaction_slot/part2/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part3/00008.png b/tests/snapshots/stax/test_transaction_slot/part3/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part3/00008.png and b/tests/snapshots/stax/test_transaction_slot/part3/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part4/00008.png b/tests/snapshots/stax/test_transaction_slot/part4/00008.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part4/00008.png and b/tests/snapshots/stax/test_transaction_slot/part4/00008.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part6/00007.png b/tests/snapshots/stax/test_transaction_slot/part6/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part6/00007.png and b/tests/snapshots/stax/test_transaction_slot/part6/00007.png differ diff --git a/tests/snapshots/stax/test_transaction_slot/part8/00007.png b/tests/snapshots/stax/test_transaction_slot/part8/00007.png index cd2f5275..a21279c8 100644 Binary files a/tests/snapshots/stax/test_transaction_slot/part8/00007.png and b/tests/snapshots/stax/test_transaction_slot/part8/00007.png differ