fix(l10n): generated files and new fixtures [no changelog]
What changed, and why it matters
This commit is a routine regeneration of translation files and UI test fixtures. It updates on-screen text strings (for example changing 'Hidden wallet' to 'Passphrase wallet' and adjusting wording for some prompts), removes one unused translation key, and refreshes the expected UI screenshots used by automated tests. There is no code that handles secrets, cryptography, user input validation, or device behavior—only text labels and test expectations.
No security action needed. Treat as normal localization/UI maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff touches four generated/derivative files: a MicroPython qstr header, a Rust enum of translated UI strings, a Python mock stub, and a JSON file of UI test fixtures. Changes are limited to string values, per-theme translations, removal of the unused MP_QSTR_address_details__title_receiving_to key, and updated byte-offset tables that map enum variants to translation blob positions. No executable logic, parsing, memory handling, or security-critical code is modified.
Changed components
core/embed/rust/librust_qstr.hcore/embed/rust/src/translations/generated/translated_string.rscore/mocks/trezortranslate_keys.pyitests/ui_tests/fixtures.jsonInspect captured patch +19208 / −19212
diff --git a/core/embed/rust/librust_qstr.h b/core/embed/rust/librust_qstr.h
index 02d5317c..9c0f9a56 100644
--- a/core/embed/rust/librust_qstr.h
+++ b/core/embed/rust/librust_qstr.h
@@ -112,7 +112,6 @@ static void _librust_qstrs(void) {
MP_QSTR_address_details__derivation_path;
MP_QSTR_address_details__derivation_path_colon;
MP_QSTR_address_details__title_receive_address;
- MP_QSTR_address_details__title_receiving_to;
MP_QSTR_address_label;
MP_QSTR_address_qr;
MP_QSTR_allow_cancel;
diff --git a/core/embed/rust/src/translations/generated/translated_string.rs b/core/embed/rust/src/translations/generated/translated_string.rs
index 5e66e7dc..2163a36f 100644
--- a/core/embed/rust/src/translations/generated/translated_string.rs
+++ b/core/embed/rust/src/translations/generated/translated_string.rs
@@ -24,7 +24,6 @@ pub enum TranslatedString {
address__title_yours = 9, // "Yours"
address_details__derivation_path_colon = 10, // "Derivation path:"
address_details__title_receive_address = 11, // "Receive address"
- address_details__title_receiving_to = 12, // "Receiving to"
authenticate__confirm_template = 13, // "Allow connected app to check the authenticity of your {0}?"
authenticate__header = 14, // "Authenticate device"
auto_lock__change_template = 15, // "Auto-lock Trezor after {0} of inactivity?"
@@ -74,7 +73,7 @@ pub enum TranslatedString {
buttons__cancel = 71, // "Cancel"
buttons__change = 72, // "Change"
buttons__check = 73, // "Check"
- buttons__check_again = 74, // "Check again"
+ buttons__check_again = 74, // {"Bolt": "Check again", "Caesar": "Check again", "Delizia": "", "Eckhart": ""}
buttons__close = 75, // "Close"
buttons__confirm = 76, // "Confirm"
buttons__continue = 77, // "Continue"
@@ -138,7 +137,7 @@ pub enum TranslatedString {
#[cfg(feature = "universal_fw")]
cardano__check_all_items = 119, // "Check all items carefully."
#[cfg(feature = "universal_fw")]
- cardano__choose_level_of_details = 120, // "Choose level of details:"
+ cardano__choose_level_of_details = 120, // "Choose level of detail:"
#[cfg(feature = "universal_fw")]
cardano__collateral_input_id = 121, // "Collateral input ID"
#[cfg(feature = "universal_fw")]
@@ -214,7 +213,7 @@ pub enum TranslatedString {
#[cfg(feature = "universal_fw")]
cardano__pool_metadata_hash = 158, // "Pool metadata hash"
#[cfg(feature = "universal_fw")]
- cardano__pool_metadata_url = 159, // "Pool metadata url"
+ cardano__pool_metadata_url = 159, // "Pool metadata URL"
#[cfg(feature = "universal_fw")]
cardano__pool_owner = 160, // "Pool owner"
#[cfg(feature = "universal_fw")]
@@ -717,7 +716,7 @@ pub enum TranslatedString {
pin__last_attempt = 458, // "Last attempt"
pin__mismatch = 459, // "Entered PINs do not match!"
pin__pin_mismatch = 460, // "PIN mismatch"
- pin__please_check_again = 461, // "Please check again."
+ pin__please_check_again = 461, // {"Bolt": "", "Caesar": "Please check again.", "Delizia": "", "Eckhart": ""}
pin__reenter_new = 462, // "Re-enter new PIN"
pin__reenter_to_confirm = 463, // "Please re-enter PIN to confirm."
pin__should_be_long = 464, // "PIN should be 4-50 digits long."
@@ -740,7 +739,7 @@ pub enum TranslatedString {
progress__authenticity_check = 481, // "Checking authenticity..."
progress__done = 482, // "Done"
progress__loading_transaction = 483, // "Loading transaction..."
- progress__locking_device = 484, // "Locking the device..."
+ progress__locking_device = 484, // {"Bolt": "Locking the device...", "Caesar": "Locking the device...", "Delizia": "Locking the device...", "Eckhart": ""}
progress__one_second_left = 485, // "1 second left"
progress__please_wait = 486, // {"Bolt": "Please wait", "Caesar": "Please wait", "Delizia": "Please wait", "Eckhart": "Please wait..."}
storage_msg__processing = 487, // {"Bolt": "Processing", "Caesar": "Processing", "Delizia": "Processing", "Eckhart": "Processing..."}
@@ -751,7 +750,7 @@ pub enum TranslatedString {
reboot_to_bootloader__restart = 492, // "Trezor will restart in bootloader mode."
reboot_to_bootloader__title = 493, // "Go to bootloader"
reboot_to_bootloader__version_by_template = 494, // "Firmware version {0}\nby {1}"
- recovery__cancel_dry_run = 495, // "Cancel backup check"
+ recovery__cancel_dry_run = 495, // {"Bolt": "", "Caesar": "", "Delizia": "Cancel backup check", "Eckhart": ""}
recovery__check_dry_run = 496, // {"Bolt": "Check your backup?", "Caesar": "Check your backup?", "Delizia": "Check your backup?", "Eckhart": "Let's do a wallet backup check."}
recovery__cursor_will_change = 497, // "Position of the cursor will change between entries for enhanced security."
recovery__dry_run_bip39_valid_match = 498, // "The entered wallet backup is valid and matches the one in this device."
@@ -795,11 +794,11 @@ pub enum TranslatedString {
reset__button_create = 537, // "Create wallet"
reset__button_recover = 538, // "Recover wallet"
reset__by_continuing = 539, // {"Bolt": "By continuing you agree to Trezor Company's terms and conditions.", "Caesar": "By continuing you agree to Trezor Company's terms and conditions.", "Delizia": "By continuing you agree to Trezor Company's terms and conditions.", "Eckhart": "By continuing, you agree to Trezor Company's Terms of Use."}
- reset__check_backup_title = 540, // "Check backup"
- reset__check_group_share_title_template = 541, // {"Bolt": "Check g{0} - share {1}", "Caesar": "", "Delizia": "Check g{0} - share {1}", "Eckhart": "Check g{0} - share {1}"}
+ reset__check_backup_title = 540, // {"Bolt": "", "Caesar": "Check backup", "Delizia": "", "Eckhart": "Check backup"}
+ reset__check_group_share_title_template = 541, // {"Bolt": "Check gr. {0} - share {1}", "Caesar": "", "Delizia": "Check gr. {0} - share {1}", "Eckhart": "Check group {0} - share {1}"}
reset__check_wallet_backup_title = 542, // "Check wallet backup"
reset__check_share_title_template = 543, // {"Bolt": "Check share #{0}", "Caesar": "", "Delizia": "Check share #{0}", "Eckhart": ""}
- reset__continue_with_next_share = 544, // "Continue with the next share."
+ reset__continue_with_next_share = 544, // {"Bolt": "Continue with the next share.", "Caesar": "Continue with the next share.", "Delizia": "Continue with the next share.", "Eckhart": "Continue with the next share"}
reset__continue_with_share_template = 545, // {"Bolt": "Continue with share #{0}.", "Caesar": "Continue with share #{0}.", "Delizia": "", "Eckhart": ""}
reset__finished_verifying_group_template = 546, // "You have finished verifying your recovery shares for group {0}."
reset__finished_verifying_wallet_backup = 547, // "You have finished verifying your wallet backup."
@@ -818,7 +817,7 @@ pub enum TranslatedString {
reset__num_of_shares_advanced_info_template = 560, // {"Bolt": "Each recovery share is a sequence of {0} words. Next you will choose the threshold number of shares needed to form Group {1}.", "Caesar": "", "Delizia": "Each recovery share is a sequence of {0} words. Next you will choose the threshold number of shares needed to form Group {1}.", "Eckhart": "Each recovery share is a sequence of {0} words. Next you will choose the threshold number of shares needed to form Group {1}."}
reset__num_of_shares_basic_info_template = 561, // {"Bolt": "Each recovery share is a sequence of {0} words. Next you will choose how many shares you need to recover your wallet.", "Caesar": "", "Delizia": "", "Eckhart": ""}
reset__num_shares_for_group_template = 562, // "The required number of shares to form Group {0}."
- reset__number_of_shares_info = 563, // {"Bolt": "", "Caesar": "= total number of unique word lists used for wallet backup.", "Delizia": "", "Eckhart": ""}
+ reset__number_of_shares_info = 563, // {"Bolt": "", "Caesar": "= total number of shares used for wallet backup.", "Delizia": "", "Eckhart": ""}
reset__one_share = 564, // {"Bolt": "1 share", "Caesar": "", "Delizia": "", "Eckhart": ""}
reset__only_one_share_will_be_created = 565, // {"Bolt": "Only one share will be created.", "Caesar": "", "Delizia": "", "Eckhart": ""}
reset__recovery_wallet_backup_title = 566, // "Wallet backup"
@@ -826,7 +825,7 @@ pub enum TranslatedString {
reset__required_number_of_groups = 568, // "The required number of groups for recovery."
reset__select_correct_word = 569, // "Select the correct word for each position."
reset__select_word_template = 570, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "Select word #{0} from your wallet backup"}
- reset__select_word_x_of_y_template = 571, // "Select word {0} of {1}:"
+ reset__select_word_x_of_y_template = 571, // {"Bolt": "Select word {0} of {1}:", "Caesar": "Select word {0} of {1}:", "Delizia": "Select word {0} of {1}:", "Eckhart": ""}
reset__set_it_to_count_template = 572, // {"Bolt": "Set it to {0} and you will need ", "Caesar": "", "Delizia": "", "Eckhart": ""}
reset__share_checked_successfully_template = 573, // {"Bolt": "Share #{0} checked successfully.", "Caesar": "Share #{0} checked successfully.", "Delizia": "", "Eckhart": ""}
reset__share_words_title = 574, // "Standard backup"
@@ -841,7 +840,7 @@ pub enum TranslatedString {
reset__slip39_checklist_write_down = 583, // {"Bolt": "Write down and check all shares", "Caesar": "Write down and check all shares", "Delizia": "", "Eckhart": ""}
reset__slip39_checklist_write_down_recovery = 584, // {"Bolt": "", "Caesar": "", "Delizia": "Write down & check all wallet backup shares", "Eckhart": "Write down & check all wallet backup shares"}
reset__the_threshold_sets_the_number_of_shares = 585, // {"Bolt": "The threshold sets the number of shares ", "Caesar": "", "Delizia": "", "Eckhart": ""}
- reset__threshold_info = 586, // {"Bolt": "", "Caesar": "= minimum number of unique word lists used for recovery.", "Delizia": "", "Eckhart": ""}
+ reset__threshold_info = 586, // {"Bolt": "", "Caesar": "= minimum number of shares used for recovery.", "Delizia": "", "Eckhart": ""}
reset__title_backup_is_done = 587, // "Backup is done"
reset__title_create_wallet = 588, // "Create wallet"
reset__title_group_threshold = 590, // {"Bolt": "", "Caesar": "Group threshold", "Delizia": "", "Eckhart": ""}
@@ -855,7 +854,7 @@ pub enum TranslatedString {
reset__tos_link = 598, // {"Bolt": "trezor.io/tos", "Caesar": "trezor.io/tos", "Delizia": "trezor.io/tos", "Eckhart": "More at trezor.io/tos"}
reset__total_number_of_shares_in_group_template = 599, // {"Bolt": "Set the total number of shares in Group {0}.", "Caesar": "", "Delizia": "Set the total number of shares in Group {0}.", "Eckhart": "Set the total number of shares in Group {0}."}
reset__use_your_backup = 600, // {"Bolt": "Use your backup when you need to recover your wallet.", "Caesar": "", "Delizia": "", "Eckhart": ""}
- reset__write_down_words_template = 601, // "Write the following {0} words in order on your wallet backup card."
+ reset__write_down_words_template = 601, // {"Bolt": "", "Caesar": "Write the following {0} words in order on your wallet backup card.", "Delizia": "Write the following {0} words in order on your wallet backup card.", "Eckhart": "Write the following {0} words in order on your wallet backup card."}
reset__wrong_word_selected = 602, // "Wrong word selected!"
reset__you_need_one_share = 603, // {"Bolt": "For recovery you need 1 share.", "Caesar": "", "Delizia": "", "Eckhart": ""}
reset__your_backup_is_done = 604, // "Your backup is done."
@@ -903,7 +902,7 @@ pub enum TranslatedString {
send__receiving_to_multisig = 645, // "Receiving to a multisig address."
send__title_confirm_sending = 646, // "Confirm sending"
send__title_joint_transaction = 647, // "Joint transaction"
- send__title_receiving_to = 648, // "Receiving to"
+ send__title_receiving_to = 648, // {"Bolt": "Receiving to", "Caesar": "", "Delizia": "", "Eckhart": ""}
send__title_sending = 649, // "Sending"
send__title_sending_amount = 650, // "Sending amount"
send__title_sending_to = 651, // "Sending to"
@@ -915,7 +914,7 @@ pub enum TranslatedString {
sign_message__bytes_template = 658, // "{0} Bytes"
sign_message__confirm_address = 659, // "Signing address"
sign_message__confirm_message = 660, // "Confirm message"
- sign_message__message_size = 661, // "Message size"
+ sign_message__message_size = 661, // {"Bolt": "Message size", "Caesar": "", "Delizia": "Message size", "Eckhart": "Message size"}
sign_message__verify_address = 662, // "Verify address"
#[cfg(feature = "universal_fw")]
solana__account_index = 663, // "Account index"
@@ -1093,7 +1092,7 @@ pub enum TranslatedString {
tutorial__title_screen_scroll = 762, // "Screen scroll"
tutorial__title_skip = 763, // "Skip tutorial"
tutorial__title_tutorial_complete = 764, // "Tutorial complete"
- tutorial__use_trezor = 765, // "Use Trezor by\nclicking the left and right buttons.\n\rContinue right."
+ tutorial__use_trezor = 765, // {"Bolt": "", "Caesar": "Use Trezor by\nclicking the left and right buttons.\n\rContinue right.", "Delizia": "", "Eckhart": ""}
tutorial__welcome_press_right = 766, // "Welcome to Trezor. Press right to continue."
#[cfg(feature = "universal_fw")]
u2f__get = 767, // "Increase and retrieve the U2F counter?"
@@ -1145,7 +1144,7 @@ pub enum TranslatedString {
words__my_trezor = 810, // "My Trezor"
words__no = 811, // "No"
words__outputs = 812, // "outputs"
- words__please_check_again = 813, // "Please check again"
+ words__please_check_again = 813, // {"Bolt": "Please check again", "Caesar": "Please check again", "Delizia": "", "Eckhart": ""}
words__please_try_again = 814, // "Please try again"
words__really_wanna = 815, // "Do you really want to"
words__recipient = 816, // "Recipient"
@@ -1200,7 +1199,7 @@ pub enum TranslatedString {
#[cfg(feature = "universal_fw")]
cardano__vote_delegation = 852, // "Vote delegation"
instructions__tap_to_confirm = 854, // "Tap to confirm"
- instructions__hold_to_confirm = 855, // "Hold to confirm"
+ instructions__hold_to_confirm = 855, // {"Bolt": "", "Caesar": "", "Delizia": "Hold to confirm", "Eckhart": ""}
words__important = 856, // "Important"
reset__words_written_down_template = 857, // "I wrote down all {0} words in order."
backup__create_backup_to_prevent_loss = 858, // {"Bolt": "Create a backup to avoid losing access to your funds", "Caesar": "Create a backup to avoid losing access to your funds", "Delizia": "Create a backup to avoid losing access to your funds", "Eckhart": "Create a wallet backup to avoid losing access to your funds."}
@@ -1209,7 +1208,7 @@ pub enum TranslatedString {
words__not_recommended = 861, // "Not recommended!"
address_details__account_info = 862, // "Account info"
address__cancel_contact_support = 863, // "If receive address doesn't match, contact Trezor Support at trezor.io/support."
- address__cancel_receive = 864, // {"Bolt": "Cancel receive", "Caesar": "Cancel receive", "Delizia": "Cancel receive", "Eckhart": "Cancel receive?"}
+ address__cancel_receive = 864, // {"Bolt": "", "Caesar": "", "Delizia": "Cancel receive", "Eckhart": "Cancel receive?"}
address__qr_code = 865, // "QR code"
address_details__derivation_path = 866, // "Derivation path"
instructions__continue_in_app = 867, // "Continue in the app"
@@ -1258,7 +1257,7 @@ pub enum TranslatedString {
reset__share_completed_template = 912, // {"Bolt": "", "Caesar": "", "Delizia": "Share #{0} completed", "Eckhart": "Share #{0} completed"}
reset__slip39_checklist_num_shares_x_template = 913, // {"Bolt": "", "Caesar": "", "Delizia": "Number of shares: {0}", "Eckhart": "Number of shares: {0}"}
reset__slip39_checklist_threshold_x_template = 914, // {"Bolt": "", "Caesar": "", "Delizia": "Recovery threshold: {0}", "Eckhart": "Recovery threshold: {0}"}
- send__transaction_signed = 915, // "Transaction signed"
+ send__transaction_signed = 915, // {"Bolt": "Transaction signed", "Caesar": "Transaction signed", "Delizia": "Transaction signed", "Eckhart": "Transaction signed."}
tutorial__continue = 916, // "Continue tutorial"
tutorial__exit = 917, // "Exit tutorial"
tutorial__menu = 920, // "Find context-specific actions and options in the menu."
@@ -1280,7 +1279,7 @@ pub enum TranslatedString {
reset__words_may_repeat = 937, // "Words may repeat."
reset__repeat_for_all_shares = 938, // "Repeat for all shares."
homescreen__settings_subtitle = 939, // "Settings"
- homescreen__settings_title = 940, // "Homescreen"
+ homescreen__settings_title = 940, // {"Bolt": "", "Caesar": "", "Delizia": "Wallpaper", "Eckhart": ""}
reset__the_word_is_repeated = 941, // {"Bolt": "The word is repeated", "Caesar": "The word is repeated", "Delizia": "The word is repeated", "Eckhart": "The word appears multiple times in the backup."}
tutorial__title_lets_begin = 942, // "Let's begin"
tutorial__did_you_know = 943, // "Did you know?"
@@ -1398,7 +1397,7 @@ pub enum TranslatedString {
backup__not_recommend = 1018, // "We don't recommend to skip wallet backup creation."
words__pay_attention = 1019, // "Pay attention"
address__check_with_source = 1020, // "Check the address with source."
- words__receive = 1021, // "Receive"
+ words__receive = 1021, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "Receive"}
reset__recovery_share_description = 1022, // "A recovery share is a list of words you wrote down when setting up your Trezor."
reset__recovery_share_number = 1023, // "Your wallet backup consists of 1 to 16 shares."
words__recovery_share = 1024, // "Recovery share"
@@ -1412,8 +1411,8 @@ pub enum TranslatedString {
auto_lock__description = 1032, // "Set the time before your Trezor locks automatically."
plurals__lock_after_x_days = 1033, // "day|days"
firmware_update__restart = 1034, // "Trezor will restart after update."
- passphrase__access_hidden_wallet = 1035, // "Access hidden wallet"
- passphrase__hidden_wallet = 1036, // "Hidden wallet"
+ passphrase__access_hidden_wallet = 1035, // "Access passphrase wallet"
+ passphrase__hidden_wallet = 1036, // "Passphrase wallet"
passphrase__show = 1037, // "Show passphrase"
pin__reenter = 1038, // "Re-enter PIN"
pin__setup_completed = 1039, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "PIN setup completed."}
@@ -1489,8 +1488,8 @@ pub enum TranslatedString {
words__disconnect = 1100, // "Disconnect"
words__led = 1101, // "LED"
words__manage = 1102, // "Manage"
- words__off = 1103, // "OFF"
- words__on = 1104, // "ON"
+ words__off = 1103, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "OFF"}
+ words__on = 1104, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "ON"}
words__review = 1105, // "Review"
words__security = 1106, // "Security"
pin__change_question = 1107, // "Change PIN?"
@@ -1499,8 +1498,8 @@ pub enum TranslatedString {
wipe_code__change_question = 1110, // "Change wipe code?"
wipe_code__remove = 1111, // "Remove wipe code"
wipe_code__title = 1112, // "Wipe code"
- words__disabled = 1113, // "Disabled"
- words__enabled = 1114, // "Enabled"
+ words__disabled = 1113, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "Disabled"}
+ words__enabled = 1114, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "Enabled"}
ble__disable = 1115, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "Turn Bluetooth off?"}
ble__enable = 1116, // {"Bolt": "", "Caesar": "", "Delizia": "", "Eckhart": "Turn Bluetooth on?"}
words__bluetooth = 1117, // "Bluetooth"
@@ -1589,7 +1588,7 @@ impl TranslatedString {
"Yours",
"Derivation path:",
"Receive address",
- "Receiving to",
+ "",
"Allow connected app to check the authenticity of your {0}?",
"Authenticate device",
"Auto-lock Trezor after {0} of inactivity?",
@@ -1697,7 +1696,7 @@ impl TranslatedString {
"Certificate",
"Change output",
"Check all items carefully.",
- "Choose level of details:",
+ "Choose level of detail:",
"Collateral input ID",
"Collateral input index",
"The collateral return output contains tokens.",
@@ -1736,7 +1735,7 @@ impl TranslatedString {
"pointer",
"Policy ID",
"Pool metadata hash",
- "Pool metadata url",
+ "Pool metadata URL",
"Pool owner",
"Pool reward account",
"Reference input ID",
@@ -2038,7 +2037,7 @@ impl TranslatedString {
"Last attempt",
"Entered PINs do not match!",
"PIN mismatch",
- "Please check again.",
+ "",
"Re-enter new PIN",
"Please re-enter PIN to confirm.",
"PIN should be 4-50 digits long.",
@@ -2072,7 +2071,7 @@ impl TranslatedString {
"Trezor will restart in bootloader mode.",
"Go to bootloader",
"Firmware version {0}\nby {1}",
- "Cancel backup check",
+ "",
"Check your backup?",
"Position of the cursor will change between entries for enhanced security.",
"The entered wallet backup is valid and matches the one in this device.",
@@ -2117,8 +2116,8 @@ impl TranslatedString {
"Create wallet",
"Recover wallet",
"By continuing you agree to Trezor Company's terms and conditions.",
- "Check backup",
- "Check g{0} - share {1}",
+ "",
+ "Check gr. {0} - share {1}",
"Check wallet backup",
"Check share #{0}",
"Continue with the next share.",
@@ -2178,7 +2177,7 @@ impl TranslatedString {
"trezor.io/tos",
"Set the total number of shares in Group {0}.",
"Use your backup when you need to recover your wallet.",
- "Write the following {0} words in order on your wallet backup card.",
+ "",
"Wrong word selected!",
"For recovery you need 1 share.",
"Your backup is done.",
@@ -2342,7 +2341,7 @@ impl TranslatedString {
"Screen scroll",
"Skip tutorial",
"Tutorial complete",
- "Use Trezor by\nclicking the left and right buttons.\n\rContinue right.",
+ "",
"Welcome to Trezor. Press right to continue.",
"Increase and retrieve the U2F counter?",
"Set the U2F counter to {0}?",
@@ -2432,7 +2431,7 @@ impl TranslatedString {
"Vote delegation",
"",
"Tap to confirm",
- "Hold to confirm",
+ "",
"Important",
"I wrote down all {0} words in order.",
"Create a backup to avoid losing access to your funds",
@@ -2441,7 +2440,7 @@ impl TranslatedString {
"Not recommended!",
"Account info",
"If receive address doesn't match, contact Trezor Support at trezor.io/support.",
- "Cancel receive",
+ "",
"QR code",
"Derivation path",
"Continue in the app",
@@ -2517,7 +2516,7 @@ impl TranslatedString {
"Words may repeat.",
"Repeat for all shares.",
"Settings",
- "Homescreen",
+ "",
"The word is repeated",
"Let's begin",
"Did you know?",
@@ -2598,7 +2597,7 @@ impl TranslatedString {
"We don't recommend to skip wallet backup creation.",
"Pay attention",
"Check the address with source.",
- "Receive",
+ "",
"A recovery share is a list of words you wrote down when setting up your Trezor.",
"Your wallet backup consists of 1 to 16 shares.",
"Recovery share",
@@ -2612,8 +2611,8 @@ impl TranslatedString {
"Set the time before your Trezor locks automatically.",
"day|days",
"Trezor will restart after update.",
- "Access hidden wallet",
- "Hidden wallet",
+ "Access passphrase wallet",
+ "Passphrase wallet",
"Show passphrase",
"Re-enter PIN",
"",
@@ -2680,8 +2679,8 @@ impl TranslatedString {
"Disconnect",
"LED",
"Manage",
- "OFF",
- "ON",
+ "",
+ "",
"Review",
"Security",
"Change PIN?",
@@ -2690,8 +2689,8 @@ impl TranslatedString {
"Change wipe code?",
"Remove wipe code",
"Wipe code",
- "Disabled",
- "Enabled",
+ "",
+ "",
"",
"",
"Bluetooth",
@@ -2777,1177 +2776,1177 @@ impl TranslatedString {
174,
190,
205,
- 217,
- 275,
- 294,
- 335,
- 350,
- 396,
- 441,
- 468,
- 484,
- 512,
- 571,
- 571,
- 582,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 638,
- 654,
- 697,
- 740,
- 780,
- 795,
- 822,
- 846,
+ 205,
+ 263,
+ 282,
+ 323,
+ 338,
+ 384,
+ 429,
+ 456,
+ 472,
+ 500,
+ 559,
+ 559,
+ 570,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 626,
+ 642,
+ 685,
+ 728,
+ 768,
+ 783,
+ 810,
+ 834,
+ 851,
863,
- 875,
- 889,
- 902,
- 917,
- 937,
- 952,
- 968,
- 981,
- 988,
- 1006,
- 1021,
+ 877,
+ 890,
+ 905,
+ 925,
+ 940,
+ 956,
+ 969,
+ 976,
+ 994,
+ 1009,
+ 1027,
1039,
- 1051,
- 1070,
- 1089,
- 1141,
- 1164,
- 1180,
- 1185,
- 1191,
- 1196,
- 1201,
- 1205,
+ 1058,
+ 1077,
+ 1129,
+ 1152,
+ 1168,
+ 1173,
+ 1179,
+ 1184,
+ 1189,
+ 1193,
+ 1200,
+ 1206,
1212,
- 1218,
- 1224,
- 1229,
+ 1217,
+ 1228,
+ 1233,
1240,
- 1245,
- 1252,
- 1260,
- 1267,
- 1273,
- 1278,
+ 1248,
+ 1255,
+ 1261,
+ 1266,
+ 1277,
+ 1283,
1289,
- 1295,
- 1301,
- 1308,
- 1323,
- 1327,
- 1334,
- 1343,
+ 1296,
+ 1311,
+ 1315,
+ 1322,
+ 1331,
+ 1347,
+ 1355,
1359,
- 1367,
+ 1366,
1371,
- 1378,
- 1383,
- 1389,
- 1392,
+ 1377,
+ 1380,
+ 1388,
1400,
- 1412,
- 1422,
- 1426,
- 1435,
- 1443,
- 1450,
- 1454,
- 1464,
- 1470,
- 1477,
- 1483,
- 1512,
- 1544,
- 1576,
- 1606,
- 1643,
- 1660,
- 1679,
- 1684,
- 1692,
- 1703,
- 1716,
- 1742,
- 1766,
- 1785,
- 1807,
- 1852,
- 1869,
- 1869,
- 1925,
- 1944,
- 1978,
- 2010,
- 2048,
- 2073,
- 2077,
- 2121,
+ 1410,
+ 1414,
+ 1423,
+ 1431,
+ 1438,
+ 1442,
+ 1452,
+ 1458,
+ 1465,
+ 1471,
+ 1500,
+ 1532,
+ 1564,
+ 1594,
+ 1631,
+ 1648,
+ 1667,
+ 1672,
+ 1680,
+ 1691,
+ 1704,
+ 1730,
+ 1753,
+ 1772,
+ 1794,
+ 1839,
+ 1856,
+ 1856,
+ 1912,
+ 1931,
+ 1965,
+ 1997,
+ 2035,
+ 2060,
+ 2064,
+ 2108,
+ 2118,
2131,
- 2144,
- 2173,
- 2188,
- 2200,
- 2210,
- 2222,
- 2230,
- 2241,
- 2287,
- 2337,
- 2407,
- 2415,
- 2421,
- 2435,
- 2463,
- 2470,
- 2525,
- 2530,
- 2535,
+ 2160,
+ 2175,
+ 2187,
+ 2197,
+ 2209,
+ 2217,
+ 2228,
+ 2274,
+ 2324,
+ 2394,
+ 2402,
+ 2408,
+ 2422,
+ 2450,
+ 2457,
+ 2512,
+ 2517,
+ 2522,
+ 2526,
+ 2532,
2539,
- 2545,
- 2552,
- 2561,
- 2579,
- 2596,
- 2606,
- 2625,
- 2643,
- 2664,
- 2680,
- 2695,
- 2701,
- 2729,
+ 2548,
+ 2566,
+ 2583,
+ 2593,
+ 2612,
+ 2630,
+ 2651,
+ 2667,
+ 2682,
+ 2688,
+ 2716,
+ 2794,
2807,
- 2820,
- 2826,
- 2829,
- 2832,
- 2848,
- 2859,
- 2873,
- 2890,
- 2893,
+ 2813,
+ 2816,
+ 2819,
+ 2835,
+ 2846,
+ 2860,
+ 2877,
+ 2880,
+ 2886,
2899,
- 2912,
- 2919,
- 2930,
- 2955,
- 2971,
- 2995,
- 3017,
- 3048,
- 3070,
- 3093,
- 3100,
- 3118,
- 3134,
- 3145,
- 3199,
- 3288,
- 3288,
- 3302,
- 3387,
- 3471,
- 3520,
- 3523,
- 3549,
- 3565,
+ 2906,
+ 2917,
+ 2942,
+ 2958,
+ 2982,
+ 3004,
+ 3035,
+ 3057,
+ 3080,
+ 3087,
+ 3105,
+ 3121,
+ 3132,
+ 3186,
+ 3275,
+ 3275,
+ 3289,
+ 3374,
+ 3458,
+ 3507,
+ 3510,
+ 3536,
+ 3552,
+ 3563,
3576,
- 3589,
- 3619,
- 3634,
+ 3606,
+ 3621,
+ 3635,
+ 3642,
3648,
- 3655,
- 3661,
- 3695,
- 3730,
- 3759,
- 3789,
- 3803,
- 3813,
- 3831,
- 3831,
- 3851,
- 3869,
- 3878,
- 3899,
- 3907,
- 3919,
- 3931,
- 3971,
- 3997,
- 4008,
- 4043,
- 4043,
- 4058,
- 4084,
- 4095,
- 4109,
- 4116,
- 4121,
- 4132,
- 4140,
- 4144,
- 4152,
- 4155,
- 4162,
- 4170,
+ 3682,
+ 3717,
+ 3746,
+ 3776,
+ 3790,
+ 3800,
+ 3818,
+ 3818,
+ 3838,
+ 3856,
+ 3865,
+ 3886,
+ 3894,
+ 3906,
+ 3918,
+ 3958,
+ 3984,
+ 3995,
+ 4030,
+ 4030,
+ 4045,
+ 4071,
+ 4082,
+ 4096,
+ 4103,
+ 4108,
+ 4119,
+ 4127,
+ 4131,
+ 4139,
+ 4142,
+ 4149,
+ 4157,
+ 4168,
+ 4172,
4181,
4185,
- 4194,
- 4198,
- 4202,
- 4205,
- 4216,
- 4221,
- 4227,
- 4232,
+ 4189,
+ 4192,
+ 4203,
+ 4208,
+ 4214,
+ 4219,
+ 4229,
+ 4234,
4242,
- 4247,
- 4255,
- 4261,
- 4272,
- 4280,
- 4286,
- 4302,
- 4311,
- 4313,
- 4321,
- 4325,
- 4335,
- 4346,
- 4357,
- 4375,
- 4389,
- 4394,
- 4406,
- 4406,
- 4421,
- 4430,
- 4439,
- 4454,
- 4470,
- 4499,
- 4515,
- 4531,
- 4546,
- 4562,
- 4579,
- 4595,
- 4626,
- 4636,
- 4650,
- 4665,
- 4679,
- 4697,
- 4712,
+ 4248,
+ 4259,
+ 4267,
+ 4273,
+ 4289,
+ 4298,
+ 4300,
+ 4308,
+ 4312,
+ 4322,
+ 4333,
+ 4344,
+ 4362,
+ 4376,
+ 4381,
+ 4393,
+ 4393,
+ 4408,
+ 4417,
+ 4426,
+ 4441,
+ 4457,
+ 4486,
+ 4502,
+ 4518,
+ 4533,
+ 4549,
+ 4566,
+ 4582,
+ 4613,
+ 4623,
+ 4637,
+ 4652,
+ 4666,
+ 4684,
+ 4699,
+ 4708,
4721,
- 4734,
- 4757,
- 4786,
- 4824,
- 4841,
- 4859,
- 4915,
- 4958,
- 5010,
- 5088,
- 5110,
- 5173,
- 5187,
- 5226,
- 5255,
- 5273,
- 5290,
- 5306,
- 5320,
- 5337,
- 5348,
- 5364,
- 5376,
- 5393,
- 5415,
- 5459,
- 5474,
- 5488,
- 5504,
+ 4744,
+ 4773,
+ 4811,
+ 4828,
+ 4846,
+ 4902,
+ 4945,
+ 4997,
+ 5075,
+ 5097,
+ 5160,
+ 5174,
+ 5213,
+ 5242,
+ 5260,
+ 5277,
+ 5293,
+ 5307,
+ 5324,
+ 5335,
+ 5351,
+ 5363,
+ 5380,
+ 5402,
+ 5446,
+ 5461,
+ 5475,
+ 5491,
+ 5506,
5519,
5532,
- 5545,
- 5564,
- 5581,
- 5598,
- 5609,
- 5617,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5650,
- 5669,
- 5689,
- 5712,
- 5741,
- 5758,
- 5775,
+ 5551,
+ 5568,
+ 5585,
+ 5596,
+ 5604,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5637,
+ 5656,
+ 5676,
+ 5699,
+ 5728,
+ 5745,
+ 5762,
+ 5776,
5789,
- 5802,
+ 5795,
5808,
5821,
5834,
- 5847,
- 5861,
- 5880,
- 5899,
+ 5848,
+ 5867,
+ 5886,
+ 5897,
5910,
- 5923,
- 5939,
- 5948,
- 5964,
- 5984,
- 6004,
- 6014,
- 6030,
- 6044,
- 6059,
- 6074,
- 6093,
- 6107,
- 6117,
+ 5926,
+ 5935,
+ 5951,
+ 5971,
+ 5991,
+ 6001,
+ 6017,
+ 6031,
+ 6046,
+ 6061,
+ 6080,
+ 6094,
+ 6104,
+ 6121,
6134,
- 6147,
- 6164,
- 6182,
- 6192,
- 6206,
- 6252,
- 6301,
- 6337,
- 6389,
- 6425,
- 6463,
- 6471,
- 6479,
- 6482,
- 6496,
- 6511,
- 6531,
- 6545,
- 6565,
- 6582,
- 6597,
- 6615,
- 6633,
- 6652,
- 6688,
- 6710,
+ 6151,
+ 6169,
+ 6179,
+ 6193,
+ 6239,
+ 6288,
+ 6324,
+ 6376,
+ 6412,
+ 6450,
+ 6458,
+ 6466,
+ 6469,
+ 6483,
+ 6498,
+ 6518,
+ 6532,
+ 6552,
+ 6569,
+ 6584,
+ 6602,
+ 6620,
+ 6639,
+ 6675,
+ 6697,
+ 6709,
6722,
- 6735,
- 6751,
- 6761,
- 6769,
- 6780,
- 6837,
+ 6738,
+ 6748,
+ 6756,
+ 6767,
+ 6824,
+ 6833,
6846,
- 6859,
- 6868,
- 6876,
- 6890,
- 6914,
- 6931,
- 6939,
- 6965,
- 6976,
- 6990,
- 7004,
- 7013,
- 7030,
- 7068,
- 7075,
- 7077,
+ 6855,
+ 6863,
+ 6877,
+ 6901,
+ 6918,
+ 6926,
+ 6952,
+ 6963,
+ 6977,
+ 6991,
+ 7000,
+ 7017,
+ 7055,
+ 7062,
+ 7064,
+ 7074,
7087,
- 7100,
- 7119,
- 7125,
- 7154,
+ 7106,
+ 7112,
+ 7141,
+ 7191,
7204,
- 7217,
- 7247,
- 7259,
- 7274,
- 7285,
- 7300,
- 7325,
- 7364,
- 7467,
- 7484,
- 7516,
- 7554,
- 7583,
- 7638,
- 7656,
- 7672,
- 7687,
- 7706,
- 7723,
- 7754,
- 7784,
- 7794,
- 7806,
- 7879,
- 7929,
- 7955,
- 7980,
+ 7234,
+ 7246,
+ 7261,
+ 7272,
+ 7287,
+ 7312,
+ 7351,
+ 7454,
+ 7471,
+ 7503,
+ 7541,
+ 7570,
+ 7625,
+ 7643,
+ 7659,
+ 7674,
+ 7693,
+ 7710,
+ 7741,
+ 7771,
+ 7781,
+ 7793,
+ 7866,
+ 7916,
+ 7942,
+ 7967,
+ 7976,
7989,
- 8002,
- 8040,
- 8083,
- 8094,
- 8106,
- 8132,
- 8144,
- 8163,
- 8179,
- 8210,
- 8241,
- 8250,
- 8262,
- 8271,
- 8281,
+ 8027,
+ 8070,
+ 8081,
+ 8093,
+ 8119,
+ 8131,
+ 8131,
+ 8147,
+ 8178,
+ 8209,
+ 8218,
+ 8230,
+ 8239,
+ 8249,
+ 8298,
+ 8321,
8330,
- 8353,
- 8362,
- 8370,
- 8380,
- 8404,
- 8418,
- 8432,
+ 8338,
+ 8348,
+ 8372,
+ 8386,
+ 8400,
+ 8414,
+ 8434,
8446,
- 8466,
- 8478,
- 8490,
- 8514,
- 8518,
- 8540,
- 8561,
- 8574,
- 8585,
- 8595,
+ 8458,
+ 8482,
+ 8486,
+ 8508,
+ 8529,
+ 8542,
+ 8553,
+ 8563,
+ 8576,
+ 8598,
8608,
- 8630,
- 8640,
- 8656,
- 8695,
- 8711,
- 8738,
- 8757,
- 8775,
- 8848,
- 8918,
- 8994,
- 9074,
- 9161,
- 9176,
- 9194,
- 9218,
- 9253,
- 9262,
- 9286,
- 9316,
- 9347,
- 9365,
- 9407,
- 9469,
- 9495,
- 9495,
- 9516,
- 9565,
- 9574,
- 9588,
- 9607,
- 9622,
- 9634,
- 9648,
- 9664,
- 9684,
- 9709,
- 9758,
- 9811,
- 9822,
- 9837,
- 9867,
- 9895,
- 9920,
- 9936,
- 10019,
- 10040,
- 10061,
- 10074,
- 10088,
- 10153,
- 10165,
- 10187,
- 10206,
- 10222,
- 10251,
- 10276,
- 10339,
- 10386,
- 10435,
- 10473,
- 10606,
- 10649,
- 10670,
- 10682,
- 10726,
- 10770,
- 10794,
- 10825,
- 10864,
- 10913,
- 11038,
- 11155,
- 11203,
- 11203,
- 11210,
- 11241,
- 11254,
- 11273,
- 11316,
- 11358,
- 11358,
- 11381,
- 11413,
- 11445,
- 11460,
- 11476,
- 11492,
- 11512,
- 11532,
- 11556,
+ 8624,
+ 8663,
+ 8679,
+ 8706,
+ 8706,
+ 8724,
+ 8797,
+ 8867,
+ 8943,
+ 9023,
+ 9110,
+ 9125,
+ 9143,
+ 9167,
+ 9202,
+ 9211,
+ 9235,
+ 9265,
+ 9296,
+ 9314,
+ 9356,
+ 9418,
+ 9444,
+ 9444,
+ 9465,
+ 9514,
+ 9523,
+ 9537,
+ 9556,
+ 9571,
+ 9583,
+ 9597,
+ 9613,
+ 9633,
+ 9658,
+ 9707,
+ 9760,
+ 9771,
+ 9786,
+ 9816,
+ 9844,
+ 9869,
+ 9885,
+ 9968,
+ 9989,
+ 10010,
+ 10023,
+ 10037,
+ 10102,
+ 10102,
+ 10127,
+ 10146,
+ 10162,
+ 10191,
+ 10216,
+ 10279,
+ 10326,
+ 10375,
+ 10413,
+ 10546,
+ 10589,
+ 10610,
+ 10622,
+ 10666,
+ 10710,
+ 10734,
+ 10765,
+ 10804,
+ 10853,
+ 10978,
+ 11095,
+ 11143,
+ 11143,
+ 11150,
+ 11181,
+ 11194,
+ 11213,
+ 11256,
+ 11298,
+ 11298,
+ 11321,
+ 11353,
+ 11385,
+ 11400,
+ 11416,
+ 11432,
+ 11452,
+ 11472,
+ 11496,
+ 11533,
+ 11546,
+ 11562,
11593,
- 11606,
- 11622,
- 11653,
- 11653,
- 11693,
- 11693,
- 11707,
- 11720,
- 11720,
- 11720,
- 11736,
- 11736,
- 11755,
- 11775,
- 11795,
- 11808,
- 11826,
- 11839,
- 11883,
- 11936,
- 12002,
- 12022,
- 12052,
- 12072,
- 12083,
- 12103,
- 12137,
- 12141,
- 12146,
- 12151,
- 12170,
- 12174,
- 12242,
- 12322,
- 12387,
- 12400,
- 12415,
- 12452,
- 12469,
- 12534,
- 12579,
- 12644,
- 12688,
- 12701,
+ 11593,
+ 11633,
+ 11633,
+ 11647,
+ 11660,
+ 11660,
+ 11660,
+ 11676,
+ 11676,
+ 11695,
+ 11715,
+ 11735,
+ 11748,
+ 11766,
+ 11779,
+ 11823,
+ 11876,
+ 11876,
+ 11896,
+ 11926,
+ 11946,
+ 11957,
+ 11977,
+ 12011,
+ 12015,
+ 12020,
+ 12025,
+ 12044,
+ 12048,
+ 12116,
+ 12196,
+ 12261,
+ 12274,
+ 12289,
+ 12326,
+ 12343,
+ 12408,
+ 12453,
+ 12518,
+ 12562,
+ 12575,
+ 12589,
+ 12639,
+ 12666,
12715,
- 12765,
- 12792,
+ 12757,
12841,
- 12883,
- 12967,
- 13013,
- 13062,
- 13080,
- 13095,
- 13114,
- 13170,
- 13237,
- 13278,
- 13292,
- 13292,
- 13306,
- 13337,
- 13350,
- 13361,
- 13393,
- 13408,
- 13425,
- 13437,
- 13444,
- 13458,
- 13468,
- 13488,
- 13488,
- 13502,
- 13523,
- 13523,
- 13523,
- 13532,
- 13547,
- 13562,
- 13574,
- 13588,
- 13601,
- 13625,
- 13641,
- 13653,
- 13718,
- 13734,
- 13786,
- 13821,
- 13841,
- 13857,
- 13857,
- 13899,
- 13956,
- 13969,
- 13987,
- 13997,
+ 12887,
+ 12936,
+ 12954,
+ 12969,
+ 12988,
+ 13044,
+ 13111,
+ 13152,
+ 13166,
+ 13166,
+ 13180,
+ 13211,
+ 13224,
+ 13235,
+ 13267,
+ 13282,
+ 13299,
+ 13311,
+ 13318,
+ 13332,
+ 13342,
+ 13362,
+ 13362,
+ 13376,
+ 13397,
+ 13397,
+ 13397,
+ 13406,
+ 13421,
+ 13436,
+ 13448,
+ 13462,
+ 13475,
+ 13499,
+ 13515,
+ 13527,
+ 13592,
+ 13608,
+ 13660,
+ 13695,
+ 13715,
+ 13731,
+ 13731,
+ 13773,
+ 13830,
+ 13843,
+ 13861,
+ 13871,
+ 13880,
+ 13903,
+ 13914,
+ 13919,
+ 13929,
+ 13942,
+ 13948,
+ 13971,
+ 13981,
+ 13992,
14006,
- 14029,
- 14040,
- 14045,
- 14055,
- 14068,
- 14074,
- 14097,
+ 14018,
+ 14018,
+ 14035,
+ 14035,
+ 14053,
+ 14067,
+ 14081,
+ 14087,
14107,
- 14118,
- 14132,
- 14144,
- 14144,
- 14161,
- 14161,
- 14179,
- 14193,
+ 14119,
+ 14130,
+ 14190,
+ 14203,
14207,
- 14213,
- 14233,
- 14245,
- 14256,
- 14316,
- 14329,
+ 14211,
+ 14222,
+ 14231,
+ 14231,
+ 14231,
+ 14241,
+ 14244,
+ 14249,
+ 14252,
+ 14265,
+ 14271,
+ 14280,
+ 14297,
+ 14309,
+ 14325,
+ 14325,
14333,
- 14337,
- 14348,
- 14357,
- 14357,
- 14357,
- 14367,
- 14370,
- 14375,
- 14378,
- 14391,
+ 14350,
+ 14353,
+ 14364,
+ 14384,
14397,
- 14406,
- 14423,
- 14435,
- 14451,
- 14451,
- 14459,
- 14476,
- 14479,
- 14490,
- 14510,
- 14523,
- 14523,
+ 14397,
+ 14410,
+ 14422,
+ 14429,
+ 14437,
+ 14446,
+ 14466,
+ 14502,
+ 14522,
14536,
- 14548,
- 14555,
- 14563,
- 14572,
- 14592,
- 14628,
- 14648,
- 14662,
- 14662,
- 14677,
- 14683,
- 14699,
- 14713,
- 14728,
- 14763,
- 14763,
- 14776,
- 14783,
- 14789,
- 14807,
- 14826,
- 14835,
- 14843,
- 14860,
- 14877,
- 14890,
- 14905,
- 14921,
- 14975,
- 15039,
- 15066,
- 15175,
- 15218,
- 15223,
- 15236,
- 15249,
- 15266,
- 15333,
- 15376,
- 15414,
- 15441,
- 15456,
- 15471,
- 15495,
- 15506,
- 15545,
- 15561,
- 15579,
- 15625,
- 15644,
- 15662,
- 15675,
- 15732,
- 15749,
- 15789,
- 15807,
- 15844,
- 15859,
- 15876,
- 15894,
+ 14536,
+ 14551,
+ 14557,
+ 14573,
+ 14587,
+ 14602,
+ 14637,
+ 14637,
+ 14650,
+ 14657,
+ 14663,
+ 14681,
+ 14700,
+ 14709,
+ 14717,
+ 14734,
+ 14751,
+ 14764,
+ 14779,
+ 14795,
+ 14849,
+ 14913,
+ 14940,
+ 15049,
+ 15092,
+ 15097,
+ 15110,
+ 15123,
+ 15140,
+ 15140,
+ 15183,
+ 15221,
+ 15248,
+ 15263,
+ 15278,
+ 15302,
+ 15313,
+ 15352,
+ 15368,
+ 15386,
+ 15432,
+ 15451,
+ 15469,
+ 15482,
+ 15539,
+ 15556,
+ 15596,
+ 15614,
+ 15651,
+ 15666,
+ 15683,
+ 15701,
+ 15731,
+ 15760,
+ 15778,
+ 15793,
+ 15800,
+ 15808,
+ 15815,
+ 15821,
+ 15834,
+ 15842,
+ 15851,
+ 15857,
+ 15864,
+ 15875,
+ 15883,
+ 15899,
+ 15912,
+ 15917,
+ 15920,
15924,
- 15953,
- 15971,
- 15986,
- 15993,
- 16001,
- 16008,
- 16014,
- 16027,
- 16035,
- 16044,
- 16050,
- 16057,
- 16068,
- 16076,
- 16092,
+ 15924,
+ 15969,
+ 15978,
+ 15980,
+ 15987,
+ 16005,
+ 16021,
+ 16042,
+ 16051,
+ 16055,
+ 16061,
+ 16066,
+ 16066,
+ 16077,
+ 16077,
+ 16077,
+ 16077,
+ 16084,
+ 16091,
+ 16091,
+ 16098,
16105,
- 16110,
16113,
- 16117,
- 16117,
- 16162,
- 16171,
- 16173,
+ 16116,
+ 16132,
+ 16132,
+ 16137,
+ 16150,
+ 16175,
16180,
- 16198,
- 16214,
- 16235,
- 16244,
- 16248,
- 16254,
- 16259,
- 16259,
- 16270,
- 16270,
- 16270,
- 16270,
- 16277,
- 16284,
- 16284,
- 16291,
- 16298,
- 16306,
- 16309,
- 16325,
- 16325,
- 16330,
- 16343,
- 16368,
- 16373,
- 16386,
- 16409,
- 16416,
- 16443,
- 16454,
+ 16193,
+ 16216,
+ 16223,
+ 16250,
+ 16261,
+ 16274,
+ 16283,
+ 16337,
+ 16355,
+ 16369,
+ 16389,
+ 16411,
+ 16431,
+ 16438,
+ 16453,
+ 16453,
+ 16467,
16467,
16476,
- 16530,
- 16548,
- 16562,
- 16582,
- 16604,
- 16624,
- 16631,
- 16646,
- 16646,
- 16660,
- 16675,
- 16684,
+ 16512,
+ 16564,
+ 16602,
+ 16614,
+ 16630,
+ 16642,
16720,
- 16772,
- 16810,
- 16822,
- 16838,
- 16850,
- 16928,
- 16942,
- 16949,
- 16964,
- 16983,
- 16998,
- 17023,
- 17023,
- 17023,
- 17023,
- 17034,
- 17043,
- 17055,
- 17063,
+ 16720,
+ 16727,
+ 16742,
+ 16761,
+ 16776,
+ 16801,
+ 16801,
+ 16801,
+ 16801,
+ 16812,
+ 16821,
+ 16833,
+ 16841,
+ 16862,
+ 16874,
+ 16893,
+ 16974,
+ 17032,
+ 17032,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17068,
17084,
- 17096,
+ 17105,
+ 17105,
17115,
- 17196,
- 17254,
- 17254,
- 17274,
- 17274,
- 17274,
- 17274,
- 17274,
- 17274,
- 17290,
- 17306,
- 17327,
- 17327,
- 17337,
- 17337,
- 17337,
- 17337,
- 17347,
- 17379,
- 17408,
- 17468,
- 17530,
- 17563,
- 17610,
- 17694,
- 17713,
- 17733,
- 17756,
- 17763,
- 17815,
- 17815,
- 17873,
- 17873,
- 17873,
- 17873,
- 17891,
- 17908,
- 17921,
- 17921,
- 17921,
- 17975,
- 17988,
- 18030,
- 18030,
- 18030,
- 18045,
- 18045,
- 18057,
- 18076,
- 18084,
- 18094,
- 18115,
- 18133,
- 18151,
- 18176,
- 18189,
- 18223,
- 18240,
- 18262,
- 18270,
- 18280,
- 18300,
- 18311,
- 18324,
- 18401,
- 18417,
- 18427,
- 18460,
- 18470,
- 18522,
- 18534,
- 18552,
- 18558,
- 18563,
- 18589,
- 18614,
- 18618,
- 18618,
- 18618,
- 18649,
- 18665,
- 18733,
- 18751,
- 18768,
- 18778,
- 18796,
- 18816,
- 18831,
- 18855,
- 18869,
- 18882,
- 18908,
- 18928,
- 18944,
- 18944,
- 18952,
- 18957,
- 18986,
- 19038,
- 19050,
- 19055,
- 19068,
- 19076,
- 19086,
- 19146,
- 19172,
- 19179,
- 19210,
- 19222,
- 19239,
- 19261,
- 19276,
- 19291,
- 19291,
- 19291,
- 19291,
- 19299,
- 19316,
- 19328,
- 19343,
- 19350,
- 19366,
- 19374,
- 19415,
- 19429,
- 19439,
- 19472,
- 19481,
- 19521,
- 19537,
- 19543,
- 19554,
- 19559,
- 19564,
- 19567,
- 19580,
- 19601,
+ 17115,
+ 17115,
+ 17115,
+ 17125,
+ 17157,
+ 17186,
+ 17246,
+ 17308,
+ 17341,
+ 17388,
+ 17472,
+ 17491,
+ 17511,
+ 17534,
+ 17541,
+ 17593,
+ 17593,
+ 17651,
+ 17651,
+ 17651,
+ 17651,
+ 17669,
+ 17686,
+ 17699,
+ 17699,
+ 17699,
+ 17753,
+ 17766,
+ 17808,
+ 17808,
+ 17808,
+ 17823,
+ 17823,
+ 17835,
+ 17854,
+ 17862,
+ 17872,
+ 17893,
+ 17911,
+ 17929,
+ 17954,
+ 17967,
+ 18001,
+ 18018,
+ 18040,
+ 18048,
+ 18048,
+ 18068,
+ 18079,
+ 18092,
+ 18169,
+ 18185,
+ 18195,
+ 18228,
+ 18238,
+ 18290,
+ 18302,
+ 18320,
+ 18326,
+ 18331,
+ 18357,
+ 18382,
+ 18386,
+ 18386,
+ 18386,
+ 18417,
+ 18433,
+ 18501,
+ 18519,
+ 18536,
+ 18546,
+ 18564,
+ 18584,
+ 18599,
+ 18623,
+ 18637,
+ 18650,
+ 18676,
+ 18696,
+ 18712,
+ 18712,
+ 18720,
+ 18725,
+ 18754,
+ 18806,
+ 18818,
+ 18823,
+ 18836,
+ 18844,
+ 18854,
+ 18914,
+ 18940,
+ 18947,
+ 18978,
+ 18990,
+ 19007,
+ 19029,
+ 19044,
+ 19059,
+ 19059,
+ 19059,
+ 19059,
+ 19067,
+ 19084,
+ 19096,
+ 19111,
+ 19118,
+ 19134,
+ 19142,
+ 19183,
+ 19197,
+ 19207,
+ 19240,
+ 19249,
+ 19289,
+ 19305,
+ 19311,
+ 19322,
+ 19327,
+ 19332,
+ 19335,
+ 19348,
+ 19369,
+ 19411,
+ 19461,
+ 19474,
+ 19504,
+ 19504,
+ 19583,
+ 19629,
19643,
- 19693,
- 19706,
- 19736,
- 19743,
- 19822,
- 19868,
- 19882,
- 19929,
- 19944,
- 19948,
- 19954,
- 19966,
- 19966,
- 19992,
- 20044,
- 20052,
- 20085,
- 20105,
- 20118,
- 20133,
- 20145,
- 20145,
- 20145,
- 20145,
- 20182,
- 20182,
- 20182,
- 20200,
- 20242,
- 20246,
- 20253,
- 20264,
- 20289,
- 20293,
- 20297,
- 20313,
- 20327,
- 20333,
- 20353,
+ 19690,
+ 19705,
+ 19709,
+ 19715,
+ 19727,
+ 19727,
+ 19753,
+ 19805,
+ 19813,
+ 19846,
+ 19870,
+ 19887,
+ 19902,
+ 19914,
+ 19914,
+ 19914,
+ 19914,
+ 19951,
+ 19951,
+ 19951,
+ 19969,
+ 20011,
+ 20015,
+ 20022,
+ 20033,
+ 20058,
+ 20062,
+ 20066,
+ 20082,
+ 20096,
+ 20102,
+ 20122,
+ 20128,
+ 20148,
+ 20156,
+ 20186,
+ 20186,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20262,
+ 20262,
+ 20271,
+ 20281,
+ 20291,
+ 20309,
20359,
- 20379,
- 20387,
- 20417,
- 20417,
- 20472,
+ 20391,
+ 20408,
+ 20408,
+ 20412,
+ 20432,
+ 20447,
+ 20460,
20472,
- 20472,
- 20472,
- 20472,
- 20472,
- 20472,
- 20493,
- 20493,
- 20502,
- 20512,
- 20522,
- 20540,
- 20590,
- 20622,
- 20639,
- 20639,
- 20643,
- 20663,
- 20678,
- 20691,
- 20703,
- 20714,
- 20726,
- 20752,
- 20773,
- 20773,
- 20773,
- 20773,
- 20773,
- 20786,
- 20802,
- 20802,
- 20802,
- 20802,
+ 20483,
+ 20495,
+ 20521,
+ 20542,
+ 20542,
+ 20542,
+ 20542,
+ 20542,
+ 20555,
+ 20571,
+ 20571,
+ 20571,
+ 20571,
+ 20576,
+ 20585,
+ 20591,
+ 20601,
+ 20604,
+ 20610,
+ 20610,
+ 20610,
+ 20616,
+ 20624,
+ 20635,
+ 20645,
+ 20653,
+ 20670,
+ 20686,
+ 20695,
+ 20695,
+ 20695,
+ 20695,
+ 20695,
+ 20704,
+ 20755,
+ 20758,
+ 20762,
+ 20768,
+ 20782,
+ 20794,
+ 20794,
+ 20801,
20807,
- 20816,
- 20822,
- 20832,
- 20835,
- 20841,
- 20844,
- 20846,
- 20852,
- 20860,
- 20871,
- 20881,
- 20889,
- 20906,
- 20922,
- 20931,
- 20939,
- 20946,
- 20946,
- 20946,
- 20955,
- 21006,
- 21009,
- 21013,
- 21019,
- 21033,
- 21045,
- 21045,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20875,
+ 20888,
+ 20930,
+ 20952,
+ 21052,
+ 21052,
+ 21052,
+ 21052,
21052,
- 21058,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21126,
- 21139,
- 21181,
- 21203,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21374,
- 21445,
- 21499,
- 21551,
- 21551,
- 21561,
- 21565,
- 21574,
- 21588,
- 21651,
- 21662,
- 21671,
- 21679,
- 21684,
- 21690,
+ 21052,
+ 21052,
+ 21052,
+ 21123,
+ 21194,
+ 21248,
+ 21300,
+ 21300,
+ 21310,
+ 21314,
+ 21323,
+ 21337,
+ 21400,
+ 21411,
+ 21420,
+ 21428,
+ 21433,
+ 21439,
];
#[cfg(all(feature = "debug", not(feature = "universal_fw")))]
@@ -3964,7 +3963,7 @@ impl TranslatedString {
"Yours",
"Derivation path:",
"Receive address",
- "Receiving to",
+ "",
"Allow connected app to check the authenticity of your {0}?",
"Authenticate device",
"Auto-lock Trezor after {0} of inactivity?",
@@ -4072,7 +4071,7 @@ impl TranslatedString {
"Certificate",
"Change output",
"Check all items carefully.",
- "Choose level of details:",
+ "Choose level of detail:",
"Collateral input ID",
"Collateral input index",
"The collateral return output contains tokens.",
@@ -4111,7 +4110,7 @@ impl TranslatedString {
"pointer",
"Policy ID",
"Pool metadata hash",
- "Pool metadata url",
+ "Pool metadata URL",
"Pool owner",
"Pool reward account",
"Reference input ID",
@@ -4413,7 +4412,7 @@ impl TranslatedString {
"Last attempt",
"Entered PINs do not match!",
"PIN mismatch",
- "Please check again.",
+ "",
"Re-enter new PIN",
"Please re-enter PIN to confirm.",
"PIN should be 4-50 digits long.",
@@ -4447,7 +4446,7 @@ impl TranslatedString {
"Trezor will restart in bootloader mode.",
"Go to bootloader",
"Firmware version {0}\nby {1}",
- "Cancel backup check",
+ "",
"Check your backup?",
"Position of the cursor will change between entries for enhanced security.",
"The entered wallet backup is valid and matches the one in this device.",
@@ -4492,8 +4491,8 @@ impl TranslatedString {
"Create wallet",
"Recover wallet",
"By continuing you agree to Trezor Company's terms and conditions.",
- "Check backup",
- "Check g{0} - share {1}",
+ "",
+ "Check gr. {0} - share {1}",
"Check wallet backup",
"Check share #{0}",
"Continue with the next share.",
@@ -4553,7 +4552,7 @@ impl TranslatedString {
"trezor.io/tos",
"Set the total number of shares in Group {0}.",
"Use your backup when you need to recover your wallet.",
- "Write the following {0} words in order on your wallet backup card.",
+ "",
"Wrong word selected!",
"For recovery you need 1 share.",
"Your backup is done.",
@@ -4717,7 +4716,7 @@ impl TranslatedString {
"Screen scroll",
"Skip tutorial",
"Tutorial complete",
- "Use Trezor by\nclicking the left and right buttons.\n\rContinue right.",
+ "",
"Welcome to Trezor. Press right to continue.",
"Increase and retrieve the U2F counter?",
"Set the U2F counter to {0}?",
@@ -4807,7 +4806,7 @@ impl TranslatedString {
"Vote delegation",
"",
"Tap to confirm",
- "Hold to confirm",
+ "",
"Important",
"I wrote down all {0} words in order.",
"Create a backup to avoid losing access to your funds",
@@ -4816,7 +4815,7 @@ impl TranslatedString {
"Not recommended!",
"Account info",
"If receive address doesn't match, contact Trezor Support at trezor.io/support.",
- "Cancel receive",
+ "",
"QR code",
"Derivation path",
"Continue in the app",
@@ -4892,7 +4891,7 @@ impl TranslatedString {
"Words may repeat.",
"Repeat for all shares.",
"Settings",
- "Homescreen",
+ "",
"The word is repeated",
"Let's begin",
"Did you know?",
@@ -4973,7 +4972,7 @@ impl TranslatedString {
"We don't recommend to skip wallet backup creation.",
"Pay attention",
"Check the address with source.",
- "Receive",
+ "",
"A recovery share is a list of words you wrote down when setting up your Trezor.",
"Your wallet backup consists of 1 to 16 shares.",
"Recovery share",
@@ -4987,8 +4986,8 @@ impl TranslatedString {
"Set the time before your Trezor locks automatically.",
"day|days",
"Trezor will restart after update.",
- "Access hidden wallet",
- "Hidden wallet",
+ "Access passphrase wallet",
+ "Passphrase wallet",
"Show passphrase",
"Re-enter PIN",
"",
@@ -5055,8 +5054,8 @@ impl TranslatedString {
"Disconnect",
"LED",
"Manage",
- "OFF",
- "ON",
+ "",
+ "",
"Review",
"Security",
"Change PIN?",
@@ -5065,8 +5064,8 @@ impl TranslatedString {
"Change wipe code?",
"Remove wipe code",
"Wipe code",
- "Disabled",
- "Enabled",
+ "",
+ "",
"",
"",
"Bluetooth",
@@ -5152,1177 +5151,1177 @@ impl TranslatedString {
174,
190,
205,
- 217,
- 275,
- 294,
- 335,
- 350,
- 396,
- 441,
- 468,
- 484,
- 512,
- 571,
- 571,
- 582,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 638,
- 654,
- 697,
- 740,
- 780,
- 795,
- 822,
- 846,
+ 205,
+ 263,
+ 282,
+ 323,
+ 338,
+ 384,
+ 429,
+ 456,
+ 472,
+ 500,
+ 559,
+ 559,
+ 570,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 626,
+ 642,
+ 685,
+ 728,
+ 768,
+ 783,
+ 810,
+ 834,
+ 851,
863,
- 875,
- 889,
- 902,
- 917,
- 937,
- 952,
- 968,
- 981,
- 988,
- 1006,
- 1021,
+ 877,
+ 890,
+ 905,
+ 925,
+ 940,
+ 956,
+ 969,
+ 976,
+ 994,
+ 1009,
+ 1027,
1039,
- 1051,
- 1070,
- 1089,
- 1141,
- 1164,
- 1180,
- 1185,
- 1191,
- 1196,
- 1201,
- 1205,
+ 1058,
+ 1077,
+ 1129,
+ 1152,
+ 1168,
+ 1173,
+ 1179,
+ 1184,
+ 1189,
+ 1193,
+ 1200,
+ 1206,
1212,
- 1218,
- 1224,
- 1229,
+ 1217,
+ 1228,
+ 1233,
1240,
- 1245,
- 1252,
- 1260,
- 1267,
- 1273,
- 1278,
+ 1248,
+ 1255,
+ 1261,
+ 1266,
+ 1277,
+ 1283,
1289,
- 1295,
- 1301,
- 1308,
- 1323,
- 1327,
- 1334,
- 1343,
+ 1296,
+ 1311,
+ 1315,
+ 1322,
+ 1331,
+ 1347,
+ 1355,
1359,
- 1367,
+ 1366,
1371,
- 1378,
- 1383,
- 1389,
- 1392,
+ 1377,
+ 1380,
+ 1388,
1400,
- 1412,
- 1422,
- 1426,
- 1435,
- 1443,
- 1450,
- 1454,
- 1464,
- 1470,
- 1477,
- 1483,
- 1512,
- 1544,
- 1576,
- 1606,
- 1643,
- 1660,
- 1679,
- 1684,
- 1692,
- 1703,
- 1716,
- 1742,
- 1766,
- 1785,
- 1807,
- 1852,
- 1869,
- 1869,
- 1925,
- 1944,
- 1978,
- 2010,
- 2048,
- 2073,
- 2077,
- 2121,
+ 1410,
+ 1414,
+ 1423,
+ 1431,
+ 1438,
+ 1442,
+ 1452,
+ 1458,
+ 1465,
+ 1471,
+ 1500,
+ 1532,
+ 1564,
+ 1594,
+ 1631,
+ 1648,
+ 1667,
+ 1672,
+ 1680,
+ 1691,
+ 1704,
+ 1730,
+ 1753,
+ 1772,
+ 1794,
+ 1839,
+ 1856,
+ 1856,
+ 1912,
+ 1931,
+ 1965,
+ 1997,
+ 2035,
+ 2060,
+ 2064,
+ 2108,
+ 2118,
2131,
- 2144,
- 2173,
- 2188,
- 2200,
- 2210,
- 2222,
- 2230,
- 2241,
- 2287,
- 2337,
- 2407,
- 2415,
- 2421,
- 2435,
- 2463,
- 2470,
- 2525,
- 2530,
- 2535,
+ 2160,
+ 2175,
+ 2187,
+ 2197,
+ 2209,
+ 2217,
+ 2228,
+ 2274,
+ 2324,
+ 2394,
+ 2402,
+ 2408,
+ 2422,
+ 2450,
+ 2457,
+ 2512,
+ 2517,
+ 2522,
+ 2526,
+ 2532,
2539,
- 2545,
- 2552,
- 2561,
- 2579,
- 2596,
- 2606,
- 2625,
- 2643,
- 2664,
- 2680,
- 2695,
- 2701,
- 2729,
+ 2548,
+ 2566,
+ 2583,
+ 2593,
+ 2612,
+ 2630,
+ 2651,
+ 2667,
+ 2682,
+ 2688,
+ 2716,
+ 2794,
2807,
- 2820,
- 2826,
- 2829,
- 2832,
- 2848,
- 2859,
- 2873,
- 2890,
- 2893,
+ 2813,
+ 2816,
+ 2819,
+ 2835,
+ 2846,
+ 2860,
+ 2877,
+ 2880,
+ 2886,
2899,
- 2912,
- 2919,
- 2930,
- 2955,
- 2971,
- 2995,
- 3017,
- 3048,
- 3070,
- 3093,
- 3100,
- 3118,
- 3134,
- 3145,
- 3199,
- 3288,
- 3288,
- 3302,
- 3387,
- 3471,
- 3520,
- 3523,
- 3549,
- 3565,
+ 2906,
+ 2917,
+ 2942,
+ 2958,
+ 2982,
+ 3004,
+ 3035,
+ 3057,
+ 3080,
+ 3087,
+ 3105,
+ 3121,
+ 3132,
+ 3186,
+ 3275,
+ 3275,
+ 3289,
+ 3374,
+ 3458,
+ 3507,
+ 3510,
+ 3536,
+ 3552,
+ 3563,
3576,
- 3589,
- 3619,
- 3634,
+ 3606,
+ 3621,
+ 3635,
+ 3642,
3648,
- 3655,
- 3661,
- 3695,
- 3730,
- 3759,
- 3789,
- 3803,
- 3813,
- 3831,
- 3831,
- 3851,
- 3869,
- 3878,
- 3899,
- 3907,
- 3919,
- 3931,
- 3971,
- 3997,
- 4008,
- 4043,
- 4043,
- 4058,
- 4084,
- 4095,
- 4109,
- 4116,
- 4121,
- 4132,
- 4140,
- 4144,
- 4152,
- 4155,
- 4162,
- 4170,
+ 3682,
+ 3717,
+ 3746,
+ 3776,
+ 3790,
+ 3800,
+ 3818,
+ 3818,
+ 3838,
+ 3856,
+ 3865,
+ 3886,
+ 3894,
+ 3906,
+ 3918,
+ 3958,
+ 3984,
+ 3995,
+ 4030,
+ 4030,
+ 4045,
+ 4071,
+ 4082,
+ 4096,
+ 4103,
+ 4108,
+ 4119,
+ 4127,
+ 4131,
+ 4139,
+ 4142,
+ 4149,
+ 4157,
+ 4168,
+ 4172,
4181,
4185,
- 4194,
- 4198,
- 4202,
- 4205,
- 4216,
- 4221,
- 4227,
- 4232,
+ 4189,
+ 4192,
+ 4203,
+ 4208,
+ 4214,
+ 4219,
+ 4229,
+ 4234,
4242,
- 4247,
- 4255,
- 4261,
- 4272,
- 4280,
- 4286,
- 4302,
- 4311,
- 4313,
- 4321,
- 4325,
- 4335,
- 4346,
- 4357,
- 4375,
- 4389,
- 4394,
- 4406,
- 4406,
- 4421,
- 4430,
- 4439,
- 4454,
- 4470,
- 4499,
- 4515,
- 4531,
- 4546,
- 4562,
- 4579,
- 4595,
- 4626,
- 4636,
- 4650,
- 4665,
- 4679,
- 4697,
- 4712,
+ 4248,
+ 4259,
+ 4267,
+ 4273,
+ 4289,
+ 4298,
+ 4300,
+ 4308,
+ 4312,
+ 4322,
+ 4333,
+ 4344,
+ 4362,
+ 4376,
+ 4381,
+ 4393,
+ 4393,
+ 4408,
+ 4417,
+ 4426,
+ 4441,
+ 4457,
+ 4486,
+ 4502,
+ 4518,
+ 4533,
+ 4549,
+ 4566,
+ 4582,
+ 4613,
+ 4623,
+ 4637,
+ 4652,
+ 4666,
+ 4684,
+ 4699,
+ 4708,
4721,
- 4734,
- 4757,
- 4786,
- 4824,
- 4841,
- 4859,
- 4915,
- 4958,
- 5010,
- 5088,
- 5110,
- 5173,
- 5187,
- 5226,
- 5255,
- 5273,
- 5290,
- 5306,
- 5320,
- 5337,
- 5348,
- 5364,
- 5376,
- 5393,
- 5415,
- 5459,
- 5474,
- 5488,
- 5504,
+ 4744,
+ 4773,
+ 4811,
+ 4828,
+ 4846,
+ 4902,
+ 4945,
+ 4997,
+ 5075,
+ 5097,
+ 5160,
+ 5174,
+ 5213,
+ 5242,
+ 5260,
+ 5277,
+ 5293,
+ 5307,
+ 5324,
+ 5335,
+ 5351,
+ 5363,
+ 5380,
+ 5402,
+ 5446,
+ 5461,
+ 5475,
+ 5491,
+ 5506,
5519,
5532,
- 5545,
- 5564,
- 5581,
- 5598,
- 5609,
- 5617,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5650,
- 5669,
- 5689,
- 5712,
- 5741,
- 5758,
- 5775,
+ 5551,
+ 5568,
+ 5585,
+ 5596,
+ 5604,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5637,
+ 5656,
+ 5676,
+ 5699,
+ 5728,
+ 5745,
+ 5762,
+ 5776,
5789,
- 5802,
+ 5795,
5808,
5821,
5834,
- 5847,
- 5861,
- 5880,
- 5899,
+ 5848,
+ 5867,
+ 5886,
+ 5897,
5910,
- 5923,
- 5939,
- 5948,
- 5964,
- 5984,
- 6004,
- 6014,
- 6030,
- 6044,
- 6059,
- 6074,
- 6093,
- 6107,
- 6117,
+ 5926,
+ 5935,
+ 5951,
+ 5971,
+ 5991,
+ 6001,
+ 6017,
+ 6031,
+ 6046,
+ 6061,
+ 6080,
+ 6094,
+ 6104,
+ 6121,
6134,
- 6147,
- 6164,
- 6182,
- 6192,
- 6206,
- 6252,
- 6301,
- 6337,
- 6389,
- 6425,
- 6463,
- 6471,
- 6479,
- 6482,
- 6496,
- 6511,
- 6531,
- 6545,
- 6565,
- 6582,
- 6597,
- 6615,
- 6633,
- 6652,
- 6688,
- 6710,
+ 6151,
+ 6169,
+ 6179,
+ 6193,
+ 6239,
+ 6288,
+ 6324,
+ 6376,
+ 6412,
+ 6450,
+ 6458,
+ 6466,
+ 6469,
+ 6483,
+ 6498,
+ 6518,
+ 6532,
+ 6552,
+ 6569,
+ 6584,
+ 6602,
+ 6620,
+ 6639,
+ 6675,
+ 6697,
+ 6709,
6722,
- 6735,
- 6751,
- 6761,
- 6769,
- 6780,
- 6837,
+ 6738,
+ 6748,
+ 6756,
+ 6767,
+ 6824,
+ 6833,
6846,
- 6859,
- 6868,
- 6876,
- 6890,
- 6914,
- 6931,
- 6939,
- 6965,
- 6976,
- 6990,
- 7004,
- 7013,
- 7030,
- 7068,
- 7075,
- 7077,
+ 6855,
+ 6863,
+ 6877,
+ 6901,
+ 6918,
+ 6926,
+ 6952,
+ 6963,
+ 6977,
+ 6991,
+ 7000,
+ 7017,
+ 7055,
+ 7062,
+ 7064,
+ 7074,
7087,
- 7100,
- 7119,
- 7125,
- 7154,
+ 7106,
+ 7112,
+ 7141,
+ 7191,
7204,
- 7217,
- 7247,
- 7259,
- 7274,
- 7285,
- 7300,
- 7325,
- 7364,
- 7467,
- 7484,
- 7516,
- 7554,
- 7583,
- 7638,
- 7656,
- 7672,
- 7687,
- 7706,
- 7723,
- 7754,
- 7784,
- 7794,
- 7806,
- 7879,
- 7929,
- 7955,
- 7980,
+ 7234,
+ 7246,
+ 7261,
+ 7272,
+ 7287,
+ 7312,
+ 7351,
+ 7454,
+ 7471,
+ 7503,
+ 7541,
+ 7570,
+ 7625,
+ 7643,
+ 7659,
+ 7674,
+ 7693,
+ 7710,
+ 7741,
+ 7771,
+ 7781,
+ 7793,
+ 7866,
+ 7916,
+ 7942,
+ 7967,
+ 7976,
7989,
- 8002,
- 8040,
- 8083,
- 8094,
- 8106,
- 8132,
- 8144,
- 8163,
- 8179,
- 8210,
- 8241,
- 8250,
- 8262,
- 8271,
- 8281,
+ 8027,
+ 8070,
+ 8081,
+ 8093,
+ 8119,
+ 8131,
+ 8131,
+ 8147,
+ 8178,
+ 8209,
+ 8218,
+ 8230,
+ 8239,
+ 8249,
+ 8298,
+ 8321,
8330,
- 8353,
- 8362,
- 8370,
- 8380,
- 8404,
- 8418,
- 8432,
+ 8338,
+ 8348,
+ 8372,
+ 8386,
+ 8400,
+ 8414,
+ 8434,
8446,
- 8466,
- 8478,
- 8490,
- 8514,
- 8518,
- 8540,
- 8561,
- 8574,
- 8585,
- 8595,
+ 8458,
+ 8482,
+ 8486,
+ 8508,
+ 8529,
+ 8542,
+ 8553,
+ 8563,
+ 8576,
+ 8598,
8608,
- 8630,
- 8640,
- 8656,
- 8695,
- 8711,
- 8738,
- 8757,
- 8775,
- 8848,
- 8918,
- 8994,
- 9074,
- 9161,
- 9176,
- 9194,
- 9218,
- 9253,
- 9262,
- 9286,
- 9316,
- 9347,
- 9365,
- 9407,
- 9469,
- 9495,
- 9495,
- 9516,
- 9565,
- 9574,
- 9588,
- 9607,
- 9622,
- 9634,
- 9648,
- 9664,
- 9684,
- 9709,
- 9758,
- 9811,
- 9822,
- 9837,
- 9867,
- 9895,
- 9920,
- 9936,
- 10019,
- 10040,
- 10061,
- 10074,
- 10088,
- 10153,
- 10165,
- 10187,
- 10206,
- 10222,
- 10251,
- 10276,
- 10339,
- 10386,
- 10435,
- 10473,
- 10606,
- 10649,
- 10670,
- 10682,
- 10726,
- 10770,
- 10794,
- 10825,
- 10864,
- 10913,
- 11038,
- 11155,
- 11203,
- 11203,
- 11210,
- 11241,
- 11254,
- 11273,
- 11316,
- 11358,
- 11358,
- 11381,
- 11413,
- 11445,
- 11460,
- 11476,
- 11492,
- 11512,
- 11532,
- 11556,
+ 8624,
+ 8663,
+ 8679,
+ 8706,
+ 8706,
+ 8724,
+ 8797,
+ 8867,
+ 8943,
+ 9023,
+ 9110,
+ 9125,
+ 9143,
+ 9167,
+ 9202,
+ 9211,
+ 9235,
+ 9265,
+ 9296,
+ 9314,
+ 9356,
+ 9418,
+ 9444,
+ 9444,
+ 9465,
+ 9514,
+ 9523,
+ 9537,
+ 9556,
+ 9571,
+ 9583,
+ 9597,
+ 9613,
+ 9633,
+ 9658,
+ 9707,
+ 9760,
+ 9771,
+ 9786,
+ 9816,
+ 9844,
+ 9869,
+ 9885,
+ 9968,
+ 9989,
+ 10010,
+ 10023,
+ 10037,
+ 10102,
+ 10102,
+ 10127,
+ 10146,
+ 10162,
+ 10191,
+ 10216,
+ 10279,
+ 10326,
+ 10375,
+ 10413,
+ 10546,
+ 10589,
+ 10610,
+ 10622,
+ 10666,
+ 10710,
+ 10734,
+ 10765,
+ 10804,
+ 10853,
+ 10978,
+ 11095,
+ 11143,
+ 11143,
+ 11150,
+ 11181,
+ 11194,
+ 11213,
+ 11256,
+ 11298,
+ 11298,
+ 11321,
+ 11353,
+ 11385,
+ 11400,
+ 11416,
+ 11432,
+ 11452,
+ 11472,
+ 11496,
+ 11533,
+ 11546,
+ 11562,
11593,
- 11606,
- 11622,
- 11653,
- 11653,
- 11693,
- 11693,
- 11707,
- 11720,
- 11720,
- 11720,
- 11736,
- 11736,
- 11755,
- 11775,
- 11795,
- 11808,
- 11826,
- 11839,
- 11883,
- 11936,
- 12002,
- 12022,
- 12052,
- 12072,
- 12083,
- 12103,
- 12137,
- 12141,
- 12146,
- 12151,
- 12170,
- 12174,
- 12242,
- 12322,
- 12387,
- 12400,
- 12415,
- 12452,
- 12469,
- 12534,
- 12579,
- 12644,
- 12688,
- 12701,
+ 11593,
+ 11633,
+ 11633,
+ 11647,
+ 11660,
+ 11660,
+ 11660,
+ 11676,
+ 11676,
+ 11695,
+ 11715,
+ 11735,
+ 11748,
+ 11766,
+ 11779,
+ 11823,
+ 11876,
+ 11876,
+ 11896,
+ 11926,
+ 11946,
+ 11957,
+ 11977,
+ 12011,
+ 12015,
+ 12020,
+ 12025,
+ 12044,
+ 12048,
+ 12116,
+ 12196,
+ 12261,
+ 12274,
+ 12289,
+ 12326,
+ 12343,
+ 12408,
+ 12453,
+ 12518,
+ 12562,
+ 12575,
+ 12589,
+ 12639,
+ 12666,
12715,
- 12765,
- 12792,
+ 12757,
12841,
- 12883,
- 12967,
- 13013,
- 13062,
- 13080,
- 13095,
- 13114,
- 13170,
- 13237,
- 13278,
- 13292,
- 13292,
- 13306,
- 13337,
- 13350,
- 13361,
- 13393,
- 13408,
- 13425,
- 13437,
- 13444,
- 13458,
- 13468,
- 13488,
- 13488,
- 13502,
- 13523,
- 13523,
- 13523,
- 13532,
- 13547,
- 13562,
- 13574,
- 13588,
- 13601,
- 13625,
- 13641,
- 13653,
- 13718,
- 13734,
- 13786,
- 13821,
- 13841,
- 13857,
- 13857,
- 13899,
- 13956,
- 13969,
- 13987,
- 13997,
+ 12887,
+ 12936,
+ 12954,
+ 12969,
+ 12988,
+ 13044,
+ 13111,
+ 13152,
+ 13166,
+ 13166,
+ 13180,
+ 13211,
+ 13224,
+ 13235,
+ 13267,
+ 13282,
+ 13299,
+ 13311,
+ 13318,
+ 13332,
+ 13342,
+ 13362,
+ 13362,
+ 13376,
+ 13397,
+ 13397,
+ 13397,
+ 13406,
+ 13421,
+ 13436,
+ 13448,
+ 13462,
+ 13475,
+ 13499,
+ 13515,
+ 13527,
+ 13592,
+ 13608,
+ 13660,
+ 13695,
+ 13715,
+ 13731,
+ 13731,
+ 13773,
+ 13830,
+ 13843,
+ 13861,
+ 13871,
+ 13880,
+ 13903,
+ 13914,
+ 13919,
+ 13929,
+ 13942,
+ 13948,
+ 13971,
+ 13981,
+ 13992,
14006,
- 14029,
- 14040,
- 14045,
- 14055,
- 14068,
- 14074,
- 14097,
+ 14018,
+ 14018,
+ 14035,
+ 14035,
+ 14053,
+ 14067,
+ 14081,
+ 14087,
14107,
- 14118,
- 14132,
- 14144,
- 14144,
- 14161,
- 14161,
- 14179,
- 14193,
+ 14119,
+ 14130,
+ 14190,
+ 14203,
14207,
- 14213,
- 14233,
- 14245,
- 14256,
- 14316,
- 14329,
+ 14211,
+ 14222,
+ 14231,
+ 14231,
+ 14231,
+ 14241,
+ 14244,
+ 14249,
+ 14252,
+ 14265,
+ 14271,
+ 14280,
+ 14297,
+ 14309,
+ 14325,
+ 14325,
14333,
- 14337,
- 14348,
- 14357,
- 14357,
- 14357,
- 14367,
- 14370,
- 14375,
- 14378,
- 14391,
+ 14350,
+ 14353,
+ 14364,
+ 14384,
14397,
- 14406,
- 14423,
- 14435,
- 14451,
- 14451,
- 14459,
- 14476,
- 14479,
- 14490,
- 14510,
- 14523,
- 14523,
+ 14397,
+ 14410,
+ 14422,
+ 14429,
+ 14437,
+ 14446,
+ 14466,
+ 14502,
+ 14522,
14536,
- 14548,
- 14555,
- 14563,
- 14572,
- 14592,
- 14628,
- 14648,
- 14662,
- 14662,
- 14677,
- 14683,
- 14699,
- 14713,
- 14728,
- 14763,
- 14763,
- 14776,
- 14783,
- 14789,
- 14807,
- 14826,
- 14835,
- 14843,
- 14860,
- 14877,
- 14890,
- 14905,
- 14921,
- 14975,
- 15039,
- 15066,
- 15175,
- 15218,
- 15223,
- 15236,
- 15249,
- 15266,
- 15333,
- 15376,
- 15414,
- 15441,
- 15456,
- 15471,
- 15495,
- 15506,
- 15545,
- 15561,
- 15579,
- 15625,
- 15644,
- 15662,
- 15675,
- 15732,
- 15749,
- 15789,
- 15807,
- 15844,
- 15859,
- 15876,
- 15894,
- 15924,
- 15953,
- 15971,
- 15986,
- 15993,
- 16001,
- 16008,
- 16014,
- 16027,
- 16035,
- 16044,
- 16050,
- 16057,
- 16068,
- 16076,
- 16092,
+ 14536,
+ 14551,
+ 14557,
+ 14573,
+ 14587,
+ 14602,
+ 14637,
+ 14637,
+ 14650,
+ 14657,
+ 14663,
+ 14681,
+ 14700,
+ 14709,
+ 14717,
+ 14734,
+ 14751,
+ 14764,
+ 14779,
+ 14795,
+ 14849,
+ 14913,
+ 14940,
+ 15049,
+ 15092,
+ 15097,
+ 15110,
+ 15123,
+ 15140,
+ 15140,
+ 15183,
+ 15221,
+ 15248,
+ 15263,
+ 15278,
+ 15302,
+ 15313,
+ 15352,
+ 15368,
+ 15386,
+ 15432,
+ 15451,
+ 15469,
+ 15482,
+ 15539,
+ 15556,
+ 15596,
+ 15614,
+ 15651,
+ 15666,
+ 15683,
+ 15701,
+ 15731,
+ 15760,
+ 15778,
+ 15793,
+ 15800,
+ 15808,
+ 15815,
+ 15821,
+ 15834,
+ 15842,
+ 15851,
+ 15857,
+ 15864,
+ 15875,
+ 15883,
+ 15899,
+ 15912,
+ 15917,
+ 15920,
+ 15924,
+ 15924,
+ 15969,
+ 15978,
+ 15980,
+ 15987,
+ 16005,
+ 16021,
+ 16042,
+ 16051,
+ 16055,
+ 16061,
+ 16066,
+ 16066,
+ 16077,
+ 16077,
+ 16077,
+ 16077,
+ 16084,
+ 16091,
+ 16091,
+ 16098,
16105,
- 16110,
16113,
- 16117,
- 16117,
- 16162,
- 16171,
- 16173,
+ 16116,
+ 16132,
+ 16132,
+ 16137,
+ 16150,
+ 16175,
16180,
- 16198,
- 16214,
- 16235,
- 16244,
- 16248,
- 16254,
- 16259,
- 16259,
- 16270,
- 16270,
- 16270,
- 16270,
- 16277,
- 16284,
- 16284,
- 16291,
- 16298,
- 16306,
- 16309,
- 16325,
- 16325,
- 16330,
- 16343,
- 16368,
- 16373,
- 16386,
- 16409,
- 16416,
- 16443,
- 16454,
+ 16193,
+ 16216,
+ 16223,
+ 16250,
+ 16261,
+ 16274,
+ 16283,
+ 16337,
+ 16355,
+ 16369,
+ 16389,
+ 16411,
+ 16431,
+ 16438,
+ 16453,
+ 16453,
+ 16467,
16467,
16476,
- 16530,
- 16548,
- 16562,
- 16582,
- 16604,
- 16624,
- 16631,
- 16646,
- 16646,
- 16660,
- 16675,
- 16684,
+ 16512,
+ 16564,
+ 16602,
+ 16614,
+ 16630,
+ 16642,
16720,
- 16772,
- 16810,
- 16822,
- 16838,
- 16850,
- 16928,
- 16942,
- 16949,
- 16964,
- 16983,
- 16998,
- 17023,
- 17023,
- 17023,
- 17023,
- 17034,
- 17043,
- 17055,
- 17063,
+ 16720,
+ 16727,
+ 16742,
+ 16761,
+ 16776,
+ 16801,
+ 16801,
+ 16801,
+ 16801,
+ 16812,
+ 16821,
+ 16833,
+ 16841,
+ 16862,
+ 16874,
+ 16893,
+ 16974,
+ 17032,
+ 17032,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17068,
17084,
- 17096,
+ 17105,
+ 17105,
17115,
- 17196,
- 17254,
- 17254,
- 17274,
- 17274,
- 17274,
- 17274,
- 17274,
- 17274,
- 17290,
- 17306,
- 17327,
- 17327,
- 17337,
- 17337,
- 17337,
- 17337,
- 17347,
- 17379,
- 17408,
- 17468,
- 17530,
- 17563,
- 17610,
- 17694,
- 17713,
- 17733,
- 17756,
- 17763,
- 17815,
- 17815,
- 17873,
- 17873,
- 17873,
- 17873,
- 17891,
- 17908,
- 17921,
- 17921,
- 17921,
- 17975,
- 17988,
- 18030,
- 18030,
- 18030,
- 18045,
- 18045,
- 18057,
- 18076,
- 18084,
- 18094,
- 18115,
- 18133,
- 18151,
- 18176,
- 18189,
- 18223,
- 18240,
- 18262,
- 18270,
- 18280,
- 18300,
- 18311,
- 18324,
- 18401,
+ 17115,
+ 17115,
+ 17115,
+ 17125,
+ 17157,
+ 17186,
+ 17246,
+ 17308,
+ 17341,
+ 17388,
+ 17472,
+ 17491,
+ 17511,
+ 17534,
+ 17541,
+ 17593,
+ 17593,
+ 17651,
+ 17651,
+ 17651,
+ 17651,
+ 17669,
+ 17686,
+ 17699,
+ 17699,
+ 17699,
+ 17753,
+ 17766,
+ 17808,
+ 17808,
+ 17808,
+ 17823,
+ 17823,
+ 17835,
+ 17854,
+ 17862,
+ 17872,
+ 17893,
+ 17911,
+ 17929,
+ 17954,
+ 17967,
+ 18001,
+ 18018,
+ 18040,
+ 18048,
+ 18048,
+ 18068,
+ 18079,
+ 18092,
+ 18169,
+ 18185,
+ 18195,
+ 18228,
+ 18238,
+ 18290,
+ 18302,
+ 18320,
+ 18326,
+ 18331,
+ 18357,
+ 18382,
+ 18386,
+ 18386,
+ 18386,
18417,
- 18427,
- 18460,
- 18470,
- 18522,
- 18534,
- 18552,
- 18558,
- 18563,
- 18589,
- 18614,
- 18618,
- 18618,
- 18618,
- 18649,
- 18665,
- 18733,
- 18751,
- 18768,
- 18778,
- 18796,
- 18816,
- 18831,
- 18855,
- 18869,
- 18882,
- 18908,
- 18928,
- 18944,
- 18944,
- 18952,
- 18957,
- 18986,
- 19038,
- 19050,
- 19055,
- 19068,
- 19076,
- 19086,
- 19146,
- 19172,
- 19179,
- 19210,
- 19222,
- 19239,
- 19261,
- 19276,
- 19291,
- 19291,
- 19291,
- 19291,
- 19299,
- 19316,
- 19328,
- 19343,
- 19350,
- 19366,
- 19374,
- 19415,
- 19429,
- 19439,
- 19472,
- 19481,
- 19521,
- 19537,
- 19543,
- 19554,
- 19559,
- 19564,
- 19567,
- 19580,
- 19601,
+ 18433,
+ 18501,
+ 18519,
+ 18536,
+ 18546,
+ 18564,
+ 18584,
+ 18599,
+ 18623,
+ 18637,
+ 18650,
+ 18676,
+ 18696,
+ 18712,
+ 18712,
+ 18720,
+ 18725,
+ 18754,
+ 18806,
+ 18818,
+ 18823,
+ 18836,
+ 18844,
+ 18854,
+ 18914,
+ 18940,
+ 18947,
+ 18978,
+ 18990,
+ 19007,
+ 19029,
+ 19044,
+ 19059,
+ 19059,
+ 19059,
+ 19059,
+ 19067,
+ 19084,
+ 19096,
+ 19111,
+ 19118,
+ 19134,
+ 19142,
+ 19183,
+ 19197,
+ 19207,
+ 19240,
+ 19249,
+ 19289,
+ 19305,
+ 19311,
+ 19322,
+ 19327,
+ 19332,
+ 19335,
+ 19348,
+ 19369,
+ 19411,
+ 19461,
+ 19474,
+ 19504,
+ 19504,
+ 19583,
+ 19629,
19643,
- 19693,
- 19706,
- 19736,
- 19743,
- 19822,
- 19868,
- 19882,
- 19929,
- 19944,
- 19948,
- 19954,
- 19966,
- 19966,
- 19992,
- 20044,
- 20052,
- 20085,
- 20105,
- 20118,
- 20133,
- 20145,
- 20145,
- 20145,
- 20145,
- 20182,
- 20182,
- 20182,
- 20200,
- 20242,
- 20246,
- 20253,
- 20264,
- 20289,
- 20293,
- 20297,
- 20313,
- 20327,
- 20333,
- 20353,
+ 19690,
+ 19705,
+ 19709,
+ 19715,
+ 19727,
+ 19727,
+ 19753,
+ 19805,
+ 19813,
+ 19846,
+ 19870,
+ 19887,
+ 19902,
+ 19914,
+ 19914,
+ 19914,
+ 19914,
+ 19951,
+ 19951,
+ 19951,
+ 19969,
+ 20011,
+ 20015,
+ 20022,
+ 20033,
+ 20058,
+ 20062,
+ 20066,
+ 20082,
+ 20096,
+ 20102,
+ 20122,
+ 20128,
+ 20148,
+ 20156,
+ 20186,
+ 20186,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20262,
+ 20262,
+ 20271,
+ 20281,
+ 20291,
+ 20309,
20359,
- 20379,
- 20387,
- 20417,
- 20417,
- 20472,
- 20472,
- 20472,
- 20472,
- 20472,
+ 20391,
+ 20408,
+ 20408,
+ 20412,
+ 20432,
+ 20447,
+ 20460,
20472,
- 20472,
- 20493,
- 20493,
- 20502,
- 20512,
- 20522,
- 20540,
- 20590,
- 20622,
- 20639,
- 20639,
- 20643,
- 20663,
- 20678,
- 20691,
- 20703,
- 20714,
- 20726,
- 20752,
- 20773,
- 20773,
- 20773,
- 20773,
- 20773,
- 20786,
- 20802,
- 20802,
- 20802,
- 20802,
+ 20483,
+ 20495,
+ 20521,
+ 20542,
+ 20542,
+ 20542,
+ 20542,
+ 20542,
+ 20555,
+ 20571,
+ 20571,
+ 20571,
+ 20571,
+ 20576,
+ 20585,
+ 20591,
+ 20601,
+ 20604,
+ 20610,
+ 20610,
+ 20610,
+ 20616,
+ 20624,
+ 20635,
+ 20645,
+ 20653,
+ 20670,
+ 20686,
+ 20695,
+ 20695,
+ 20695,
+ 20695,
+ 20695,
+ 20704,
+ 20755,
+ 20758,
+ 20762,
+ 20768,
+ 20782,
+ 20794,
+ 20794,
+ 20801,
20807,
- 20816,
- 20822,
- 20832,
- 20835,
- 20841,
- 20844,
- 20846,
- 20852,
- 20860,
- 20871,
- 20881,
- 20889,
- 20906,
- 20922,
- 20931,
- 20939,
- 20946,
- 20946,
- 20946,
- 20955,
- 21006,
- 21009,
- 21013,
- 21019,
- 21033,
- 21045,
- 21045,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20875,
+ 20888,
+ 20930,
+ 20952,
21052,
- 21058,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21126,
- 21139,
- 21181,
- 21203,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21374,
- 21445,
- 21499,
- 21551,
- 21551,
- 21561,
- 21565,
- 21574,
- 21588,
- 21651,
- 21662,
- 21671,
- 21679,
- 21684,
- 21690,
+ 21052,
+ 21052,
+ 21052,
+ 21052,
+ 21052,
+ 21052,
+ 21052,
+ 21123,
+ 21194,
+ 21248,
+ 21300,
+ 21300,
+ 21310,
+ 21314,
+ 21323,
+ 21337,
+ 21400,
+ 21411,
+ 21420,
+ 21428,
+ 21433,
+ 21439,
];
#[cfg(all(not(feature = "debug"), feature = "universal_fw"))]
@@ -6339,7 +6338,7 @@ impl TranslatedString {
"Yours",
"Derivation path:",
"Receive address",
- "Receiving to",
+ "",
"Allow connected app to check the authenticity of your {0}?",
"Authenticate device",
"Auto-lock Trezor after {0} of inactivity?",
@@ -6447,7 +6446,7 @@ impl TranslatedString {
"Certificate",
"Change output",
"Check all items carefully.",
- "Choose level of details:",
+ "Choose level of detail:",
"Collateral input ID",
"Collateral input index",
"The collateral return output contains tokens.",
@@ -6486,7 +6485,7 @@ impl TranslatedString {
"pointer",
"Policy ID",
"Pool metadata hash",
- "Pool metadata url",
+ "Pool metadata URL",
"Pool owner",
"Pool reward account",
"Reference input ID",
@@ -6788,7 +6787,7 @@ impl TranslatedString {
"Last attempt",
"Entered PINs do not match!",
"PIN mismatch",
- "Please check again.",
+ "",
"Re-enter new PIN",
"Please re-enter PIN to confirm.",
"PIN should be 4-50 digits long.",
@@ -6822,7 +6821,7 @@ impl TranslatedString {
"Trezor will restart in bootloader mode.",
"Go to bootloader",
"Firmware version {0}\nby {1}",
- "Cancel backup check",
+ "",
"Check your backup?",
"Position of the cursor will change between entries for enhanced security.",
"The entered wallet backup is valid and matches the one in this device.",
@@ -6867,8 +6866,8 @@ impl TranslatedString {
"Create wallet",
"Recover wallet",
"By continuing you agree to Trezor Company's terms and conditions.",
- "Check backup",
- "Check g{0} - share {1}",
+ "",
+ "Check gr. {0} - share {1}",
"Check wallet backup",
"Check share #{0}",
"Continue with the next share.",
@@ -6928,7 +6927,7 @@ impl TranslatedString {
"trezor.io/tos",
"Set the total number of shares in Group {0}.",
"Use your backup when you need to recover your wallet.",
- "Write the following {0} words in order on your wallet backup card.",
+ "",
"Wrong word selected!",
"For recovery you need 1 share.",
"Your backup is done.",
@@ -7092,7 +7091,7 @@ impl TranslatedString {
"Screen scroll",
"Skip tutorial",
"Tutorial complete",
- "Use Trezor by\nclicking the left and right buttons.\n\rContinue right.",
+ "",
"Welcome to Trezor. Press right to continue.",
"Increase and retrieve the U2F counter?",
"Set the U2F counter to {0}?",
@@ -7182,7 +7181,7 @@ impl TranslatedString {
"Vote delegation",
"",
"Tap to confirm",
- "Hold to confirm",
+ "",
"Important",
"I wrote down all {0} words in order.",
"Create a backup to avoid losing access to your funds",
@@ -7191,7 +7190,7 @@ impl TranslatedString {
"Not recommended!",
"Account info",
"If receive address doesn't match, contact Trezor Support at trezor.io/support.",
- "Cancel receive",
+ "",
"QR code",
"Derivation path",
"Continue in the app",
@@ -7267,7 +7266,7 @@ impl TranslatedString {
"Words may repeat.",
"Repeat for all shares.",
"Settings",
- "Homescreen",
+ "",
"The word is repeated",
"Let's begin",
"Did you know?",
@@ -7348,7 +7347,7 @@ impl TranslatedString {
"We don't recommend to skip wallet backup creation.",
"Pay attention",
"Check the address with source.",
- "Receive",
+ "",
"A recovery share is a list of words you wrote down when setting up your Trezor.",
"Your wallet backup consists of 1 to 16 shares.",
"Recovery share",
@@ -7362,8 +7361,8 @@ impl TranslatedString {
"Set the time before your Trezor locks automatically.",
"day|days",
"Trezor will restart after update.",
- "Access hidden wallet",
- "Hidden wallet",
+ "Access passphrase wallet",
+ "Passphrase wallet",
"Show passphrase",
"Re-enter PIN",
"",
@@ -7430,8 +7429,8 @@ impl TranslatedString {
"Disconnect",
"LED",
"Manage",
- "OFF",
- "ON",
+ "",
+ "",
"Review",
"Security",
"Change PIN?",
@@ -7440,8 +7439,8 @@ impl TranslatedString {
"Change wipe code?",
"Remove wipe code",
"Wipe code",
- "Disabled",
- "Enabled",
+ "",
+ "",
"",
"",
"Bluetooth",
@@ -7527,1177 +7526,1177 @@ impl TranslatedString {
174,
190,
205,
- 217,
- 275,
- 294,
- 335,
- 350,
- 396,
- 441,
- 468,
- 484,
- 512,
- 571,
- 571,
- 582,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 638,
- 654,
- 697,
- 740,
- 780,
- 795,
- 822,
- 846,
+ 205,
+ 263,
+ 282,
+ 323,
+ 338,
+ 384,
+ 429,
+ 456,
+ 472,
+ 500,
+ 559,
+ 559,
+ 570,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 626,
+ 642,
+ 685,
+ 728,
+ 768,
+ 783,
+ 810,
+ 834,
+ 851,
863,
- 875,
- 889,
- 902,
- 917,
- 937,
- 952,
- 968,
- 981,
- 988,
- 1006,
- 1021,
+ 877,
+ 890,
+ 905,
+ 925,
+ 940,
+ 956,
+ 969,
+ 976,
+ 994,
+ 1009,
+ 1027,
1039,
- 1051,
- 1070,
- 1089,
- 1141,
- 1164,
- 1180,
- 1185,
- 1191,
- 1196,
- 1201,
- 1205,
+ 1058,
+ 1077,
+ 1129,
+ 1152,
+ 1168,
+ 1173,
+ 1179,
+ 1184,
+ 1189,
+ 1193,
+ 1200,
+ 1206,
1212,
- 1218,
- 1224,
- 1229,
+ 1217,
+ 1228,
+ 1233,
1240,
- 1245,
- 1252,
- 1260,
- 1267,
- 1273,
- 1278,
+ 1248,
+ 1255,
+ 1261,
+ 1266,
+ 1277,
+ 1283,
1289,
- 1295,
- 1301,
- 1308,
- 1323,
- 1327,
- 1334,
- 1343,
+ 1296,
+ 1311,
+ 1315,
+ 1322,
+ 1331,
+ 1347,
+ 1355,
1359,
- 1367,
+ 1366,
1371,
- 1378,
- 1383,
- 1389,
- 1392,
+ 1377,
+ 1380,
+ 1388,
1400,
- 1412,
- 1422,
- 1426,
- 1435,
- 1443,
- 1450,
- 1454,
- 1464,
- 1470,
- 1477,
- 1483,
- 1512,
- 1544,
- 1576,
- 1606,
- 1643,
- 1660,
- 1679,
- 1684,
- 1692,
- 1703,
- 1716,
- 1742,
- 1766,
- 1785,
- 1807,
- 1852,
- 1869,
- 1869,
- 1925,
- 1944,
- 1978,
- 2010,
- 2048,
- 2073,
- 2077,
- 2121,
+ 1410,
+ 1414,
+ 1423,
+ 1431,
+ 1438,
+ 1442,
+ 1452,
+ 1458,
+ 1465,
+ 1471,
+ 1500,
+ 1532,
+ 1564,
+ 1594,
+ 1631,
+ 1648,
+ 1667,
+ 1672,
+ 1680,
+ 1691,
+ 1704,
+ 1730,
+ 1753,
+ 1772,
+ 1794,
+ 1839,
+ 1856,
+ 1856,
+ 1912,
+ 1931,
+ 1965,
+ 1997,
+ 2035,
+ 2060,
+ 2064,
+ 2108,
+ 2118,
2131,
- 2144,
- 2173,
- 2188,
- 2200,
- 2210,
- 2222,
- 2230,
- 2241,
- 2287,
- 2337,
- 2407,
- 2415,
- 2421,
- 2435,
- 2463,
- 2470,
- 2525,
- 2530,
- 2535,
+ 2160,
+ 2175,
+ 2187,
+ 2197,
+ 2209,
+ 2217,
+ 2228,
+ 2274,
+ 2324,
+ 2394,
+ 2402,
+ 2408,
+ 2422,
+ 2450,
+ 2457,
+ 2512,
+ 2517,
+ 2522,
+ 2526,
+ 2532,
2539,
- 2545,
- 2552,
- 2561,
- 2579,
- 2596,
- 2606,
- 2625,
- 2643,
- 2664,
- 2680,
- 2695,
- 2701,
- 2729,
+ 2548,
+ 2566,
+ 2583,
+ 2593,
+ 2612,
+ 2630,
+ 2651,
+ 2667,
+ 2682,
+ 2688,
+ 2716,
+ 2794,
2807,
- 2820,
- 2826,
- 2829,
- 2832,
- 2848,
- 2859,
- 2873,
- 2890,
- 2893,
+ 2813,
+ 2816,
+ 2819,
+ 2835,
+ 2846,
+ 2860,
+ 2877,
+ 2880,
+ 2886,
2899,
- 2912,
- 2919,
- 2930,
- 2955,
- 2971,
- 2995,
- 3017,
- 3048,
- 3070,
- 3093,
- 3100,
- 3118,
- 3134,
- 3145,
- 3199,
- 3288,
- 3288,
- 3302,
- 3387,
- 3471,
- 3520,
- 3523,
- 3549,
- 3565,
+ 2906,
+ 2917,
+ 2942,
+ 2958,
+ 2982,
+ 3004,
+ 3035,
+ 3057,
+ 3080,
+ 3087,
+ 3105,
+ 3121,
+ 3132,
+ 3186,
+ 3275,
+ 3275,
+ 3289,
+ 3374,
+ 3458,
+ 3507,
+ 3510,
+ 3536,
+ 3552,
+ 3563,
3576,
- 3589,
- 3619,
- 3634,
+ 3606,
+ 3621,
+ 3635,
+ 3642,
3648,
- 3655,
- 3661,
- 3695,
- 3730,
- 3759,
- 3789,
- 3803,
- 3813,
- 3831,
- 3831,
- 3851,
- 3869,
- 3878,
- 3899,
- 3907,
- 3919,
- 3931,
- 3971,
- 3997,
- 4008,
- 4043,
- 4043,
- 4058,
- 4084,
- 4095,
- 4109,
- 4116,
- 4121,
- 4132,
- 4140,
- 4144,
- 4152,
- 4155,
- 4162,
- 4170,
+ 3682,
+ 3717,
+ 3746,
+ 3776,
+ 3790,
+ 3800,
+ 3818,
+ 3818,
+ 3838,
+ 3856,
+ 3865,
+ 3886,
+ 3894,
+ 3906,
+ 3918,
+ 3958,
+ 3984,
+ 3995,
+ 4030,
+ 4030,
+ 4045,
+ 4071,
+ 4082,
+ 4096,
+ 4103,
+ 4108,
+ 4119,
+ 4127,
+ 4131,
+ 4139,
+ 4142,
+ 4149,
+ 4157,
+ 4168,
+ 4172,
4181,
4185,
- 4194,
- 4198,
- 4202,
- 4205,
- 4216,
- 4221,
- 4227,
- 4232,
+ 4189,
+ 4192,
+ 4203,
+ 4208,
+ 4214,
+ 4219,
+ 4229,
+ 4234,
4242,
- 4247,
- 4255,
- 4261,
- 4272,
- 4280,
- 4286,
- 4302,
- 4311,
- 4313,
- 4321,
- 4325,
- 4335,
- 4346,
- 4357,
- 4375,
- 4389,
- 4394,
- 4406,
- 4406,
- 4421,
- 4430,
- 4439,
- 4454,
- 4470,
- 4499,
- 4515,
- 4531,
- 4546,
- 4562,
- 4579,
- 4595,
- 4626,
- 4636,
- 4650,
- 4665,
- 4679,
- 4697,
- 4712,
+ 4248,
+ 4259,
+ 4267,
+ 4273,
+ 4289,
+ 4298,
+ 4300,
+ 4308,
+ 4312,
+ 4322,
+ 4333,
+ 4344,
+ 4362,
+ 4376,
+ 4381,
+ 4393,
+ 4393,
+ 4408,
+ 4417,
+ 4426,
+ 4441,
+ 4457,
+ 4486,
+ 4502,
+ 4518,
+ 4533,
+ 4549,
+ 4566,
+ 4582,
+ 4613,
+ 4623,
+ 4637,
+ 4652,
+ 4666,
+ 4684,
+ 4699,
+ 4708,
4721,
- 4734,
- 4757,
- 4786,
- 4824,
- 4841,
- 4859,
- 4915,
- 4958,
- 5010,
- 5088,
- 5110,
- 5173,
- 5187,
- 5226,
- 5255,
- 5273,
- 5290,
- 5306,
- 5320,
- 5337,
- 5348,
- 5364,
- 5376,
- 5393,
- 5415,
- 5459,
- 5474,
- 5488,
- 5504,
+ 4744,
+ 4773,
+ 4811,
+ 4828,
+ 4846,
+ 4902,
+ 4945,
+ 4997,
+ 5075,
+ 5097,
+ 5160,
+ 5174,
+ 5213,
+ 5242,
+ 5260,
+ 5277,
+ 5293,
+ 5307,
+ 5324,
+ 5335,
+ 5351,
+ 5363,
+ 5380,
+ 5402,
+ 5446,
+ 5461,
+ 5475,
+ 5491,
+ 5506,
5519,
5532,
- 5545,
- 5564,
- 5581,
- 5598,
- 5609,
- 5617,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5650,
- 5669,
- 5689,
- 5712,
- 5741,
- 5758,
- 5775,
+ 5551,
+ 5568,
+ 5585,
+ 5596,
+ 5604,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5637,
+ 5656,
+ 5676,
+ 5699,
+ 5728,
+ 5745,
+ 5762,
+ 5776,
5789,
- 5802,
+ 5795,
5808,
5821,
5834,
- 5847,
- 5861,
- 5880,
- 5899,
+ 5848,
+ 5867,
+ 5886,
+ 5897,
5910,
- 5923,
- 5939,
- 5948,
- 5964,
- 5984,
- 6004,
- 6014,
- 6030,
- 6044,
- 6059,
- 6074,
- 6093,
- 6107,
- 6117,
+ 5926,
+ 5935,
+ 5951,
+ 5971,
+ 5991,
+ 6001,
+ 6017,
+ 6031,
+ 6046,
+ 6061,
+ 6080,
+ 6094,
+ 6104,
+ 6121,
6134,
- 6147,
- 6164,
- 6182,
- 6192,
- 6206,
- 6252,
- 6301,
- 6337,
- 6389,
- 6425,
- 6463,
- 6471,
- 6479,
- 6482,
- 6496,
- 6511,
- 6531,
- 6545,
- 6565,
- 6582,
- 6597,
- 6615,
- 6633,
- 6652,
- 6688,
- 6710,
+ 6151,
+ 6169,
+ 6179,
+ 6193,
+ 6239,
+ 6288,
+ 6324,
+ 6376,
+ 6412,
+ 6450,
+ 6458,
+ 6466,
+ 6469,
+ 6483,
+ 6498,
+ 6518,
+ 6532,
+ 6552,
+ 6569,
+ 6584,
+ 6602,
+ 6620,
+ 6639,
+ 6675,
+ 6697,
+ 6709,
6722,
- 6735,
- 6751,
- 6761,
- 6769,
- 6780,
- 6837,
+ 6738,
+ 6748,
+ 6756,
+ 6767,
+ 6824,
+ 6833,
6846,
- 6859,
- 6868,
- 6876,
- 6890,
- 6914,
- 6931,
- 6939,
- 6965,
- 6976,
- 6990,
- 7004,
- 7013,
- 7030,
- 7068,
- 7075,
- 7077,
+ 6855,
+ 6863,
+ 6877,
+ 6901,
+ 6918,
+ 6926,
+ 6952,
+ 6963,
+ 6977,
+ 6991,
+ 7000,
+ 7017,
+ 7055,
+ 7062,
+ 7064,
+ 7074,
7087,
- 7100,
- 7119,
- 7125,
- 7154,
+ 7106,
+ 7112,
+ 7141,
+ 7191,
7204,
- 7217,
- 7247,
- 7259,
- 7274,
- 7285,
- 7300,
- 7325,
- 7364,
- 7467,
- 7484,
- 7516,
- 7554,
- 7583,
- 7638,
- 7656,
- 7672,
- 7687,
- 7706,
- 7723,
- 7754,
- 7784,
- 7794,
- 7806,
- 7879,
- 7929,
- 7955,
- 7980,
+ 7234,
+ 7246,
+ 7261,
+ 7272,
+ 7287,
+ 7312,
+ 7351,
+ 7454,
+ 7471,
+ 7503,
+ 7541,
+ 7570,
+ 7625,
+ 7643,
+ 7659,
+ 7674,
+ 7693,
+ 7710,
+ 7741,
+ 7771,
+ 7781,
+ 7793,
+ 7866,
+ 7916,
+ 7942,
+ 7967,
+ 7976,
7989,
- 8002,
- 8040,
- 8083,
- 8094,
- 8106,
- 8132,
- 8144,
- 8163,
- 8179,
- 8210,
- 8241,
- 8250,
- 8262,
- 8271,
- 8281,
+ 8027,
+ 8070,
+ 8081,
+ 8093,
+ 8119,
+ 8131,
+ 8131,
+ 8147,
+ 8178,
+ 8209,
+ 8218,
+ 8230,
+ 8239,
+ 8249,
+ 8298,
+ 8321,
8330,
- 8353,
- 8362,
- 8370,
- 8380,
- 8404,
- 8418,
- 8432,
+ 8338,
+ 8348,
+ 8372,
+ 8386,
+ 8400,
+ 8414,
+ 8434,
8446,
- 8466,
- 8478,
- 8490,
- 8514,
- 8518,
- 8540,
- 8561,
- 8574,
- 8585,
- 8595,
+ 8458,
+ 8482,
+ 8486,
+ 8508,
+ 8529,
+ 8542,
+ 8553,
+ 8563,
+ 8576,
+ 8598,
8608,
- 8630,
- 8640,
- 8656,
- 8695,
- 8711,
- 8738,
- 8757,
- 8775,
- 8848,
- 8918,
- 8994,
- 9074,
- 9161,
- 9176,
- 9194,
- 9218,
- 9253,
- 9262,
- 9286,
- 9316,
- 9347,
- 9365,
- 9407,
- 9469,
- 9495,
- 9495,
- 9516,
- 9565,
- 9574,
- 9588,
- 9607,
- 9622,
- 9634,
- 9648,
- 9664,
- 9684,
- 9709,
- 9758,
- 9811,
- 9822,
- 9837,
- 9867,
- 9895,
- 9920,
- 9936,
- 10019,
- 10040,
- 10061,
- 10074,
- 10088,
- 10153,
- 10165,
- 10187,
- 10206,
- 10222,
- 10251,
- 10276,
- 10339,
- 10386,
- 10435,
- 10473,
- 10606,
- 10649,
- 10670,
- 10682,
- 10726,
- 10770,
- 10794,
- 10825,
- 10864,
- 10913,
- 11038,
- 11155,
- 11203,
- 11203,
- 11210,
- 11241,
- 11254,
- 11273,
- 11316,
- 11358,
- 11358,
- 11381,
- 11413,
- 11445,
- 11460,
- 11476,
- 11492,
- 11512,
- 11532,
- 11556,
+ 8624,
+ 8663,
+ 8679,
+ 8706,
+ 8706,
+ 8724,
+ 8797,
+ 8867,
+ 8943,
+ 9023,
+ 9110,
+ 9125,
+ 9143,
+ 9167,
+ 9202,
+ 9211,
+ 9235,
+ 9265,
+ 9296,
+ 9314,
+ 9356,
+ 9418,
+ 9444,
+ 9444,
+ 9465,
+ 9514,
+ 9523,
+ 9537,
+ 9556,
+ 9571,
+ 9583,
+ 9597,
+ 9613,
+ 9633,
+ 9658,
+ 9707,
+ 9760,
+ 9771,
+ 9786,
+ 9816,
+ 9844,
+ 9869,
+ 9885,
+ 9968,
+ 9989,
+ 10010,
+ 10023,
+ 10037,
+ 10102,
+ 10102,
+ 10127,
+ 10146,
+ 10162,
+ 10191,
+ 10216,
+ 10279,
+ 10326,
+ 10375,
+ 10413,
+ 10546,
+ 10589,
+ 10610,
+ 10622,
+ 10666,
+ 10710,
+ 10734,
+ 10765,
+ 10804,
+ 10853,
+ 10978,
+ 11095,
+ 11143,
+ 11143,
+ 11150,
+ 11181,
+ 11194,
+ 11213,
+ 11256,
+ 11298,
+ 11298,
+ 11321,
+ 11353,
+ 11385,
+ 11400,
+ 11416,
+ 11432,
+ 11452,
+ 11472,
+ 11496,
+ 11533,
+ 11546,
+ 11562,
11593,
- 11606,
- 11622,
- 11653,
- 11653,
- 11693,
- 11693,
- 11707,
- 11720,
- 11720,
- 11720,
- 11736,
- 11736,
- 11755,
- 11775,
- 11795,
- 11808,
- 11826,
- 11839,
- 11883,
- 11936,
- 12002,
- 12022,
- 12052,
- 12072,
- 12083,
- 12103,
- 12137,
- 12141,
- 12146,
- 12151,
- 12170,
- 12174,
- 12242,
- 12322,
- 12387,
- 12400,
- 12415,
- 12452,
- 12469,
- 12534,
- 12579,
- 12644,
- 12688,
- 12701,
+ 11593,
+ 11633,
+ 11633,
+ 11647,
+ 11660,
+ 11660,
+ 11660,
+ 11676,
+ 11676,
+ 11695,
+ 11715,
+ 11735,
+ 11748,
+ 11766,
+ 11779,
+ 11823,
+ 11876,
+ 11876,
+ 11896,
+ 11926,
+ 11946,
+ 11957,
+ 11977,
+ 12011,
+ 12015,
+ 12020,
+ 12025,
+ 12044,
+ 12048,
+ 12116,
+ 12196,
+ 12261,
+ 12274,
+ 12289,
+ 12326,
+ 12343,
+ 12408,
+ 12453,
+ 12518,
+ 12562,
+ 12575,
+ 12589,
+ 12639,
+ 12666,
12715,
- 12765,
- 12792,
+ 12757,
12841,
- 12883,
- 12967,
- 13013,
- 13062,
- 13080,
- 13095,
- 13114,
- 13170,
- 13237,
- 13278,
- 13292,
- 13292,
- 13306,
- 13337,
- 13350,
- 13361,
- 13393,
- 13408,
- 13425,
- 13437,
- 13444,
- 13458,
- 13468,
- 13488,
- 13488,
- 13502,
- 13523,
- 13523,
- 13523,
- 13532,
- 13547,
- 13562,
- 13574,
- 13588,
- 13601,
- 13625,
- 13641,
- 13653,
- 13718,
- 13734,
- 13786,
- 13821,
- 13841,
- 13857,
- 13857,
- 13899,
- 13956,
- 13969,
- 13987,
- 13997,
+ 12887,
+ 12936,
+ 12954,
+ 12969,
+ 12988,
+ 13044,
+ 13111,
+ 13152,
+ 13166,
+ 13166,
+ 13180,
+ 13211,
+ 13224,
+ 13235,
+ 13267,
+ 13282,
+ 13299,
+ 13311,
+ 13318,
+ 13332,
+ 13342,
+ 13362,
+ 13362,
+ 13376,
+ 13397,
+ 13397,
+ 13397,
+ 13406,
+ 13421,
+ 13436,
+ 13448,
+ 13462,
+ 13475,
+ 13499,
+ 13515,
+ 13527,
+ 13592,
+ 13608,
+ 13660,
+ 13695,
+ 13715,
+ 13731,
+ 13731,
+ 13773,
+ 13830,
+ 13843,
+ 13861,
+ 13871,
+ 13880,
+ 13903,
+ 13914,
+ 13919,
+ 13929,
+ 13942,
+ 13948,
+ 13971,
+ 13981,
+ 13992,
14006,
- 14029,
- 14040,
- 14045,
- 14055,
- 14068,
- 14074,
- 14097,
+ 14018,
+ 14018,
+ 14035,
+ 14035,
+ 14053,
+ 14067,
+ 14081,
+ 14087,
14107,
- 14118,
- 14132,
- 14144,
- 14144,
- 14161,
- 14161,
- 14179,
- 14193,
+ 14119,
+ 14130,
+ 14190,
+ 14203,
14207,
- 14213,
- 14233,
- 14245,
- 14256,
- 14316,
- 14329,
+ 14211,
+ 14222,
+ 14231,
+ 14231,
+ 14231,
+ 14241,
+ 14244,
+ 14249,
+ 14252,
+ 14265,
+ 14271,
+ 14280,
+ 14297,
+ 14309,
+ 14325,
+ 14325,
14333,
- 14337,
- 14348,
- 14357,
- 14357,
- 14357,
- 14367,
- 14370,
- 14375,
- 14378,
- 14391,
+ 14350,
+ 14353,
+ 14364,
+ 14384,
14397,
- 14406,
- 14423,
- 14435,
- 14451,
- 14451,
- 14459,
- 14476,
- 14479,
- 14490,
- 14510,
- 14523,
- 14523,
+ 14397,
+ 14410,
+ 14422,
+ 14429,
+ 14437,
+ 14446,
+ 14466,
+ 14502,
+ 14522,
14536,
- 14548,
- 14555,
- 14563,
- 14572,
- 14592,
- 14628,
- 14648,
- 14662,
- 14662,
- 14677,
- 14683,
- 14699,
- 14713,
- 14728,
- 14763,
- 14763,
- 14776,
- 14783,
- 14789,
- 14807,
- 14826,
- 14835,
- 14843,
- 14860,
- 14877,
- 14890,
- 14905,
- 14921,
- 14975,
- 15039,
- 15066,
- 15175,
- 15218,
- 15223,
- 15236,
- 15249,
- 15266,
- 15333,
- 15376,
- 15414,
- 15441,
- 15456,
- 15471,
- 15495,
- 15506,
- 15545,
- 15561,
- 15579,
- 15625,
- 15644,
- 15662,
- 15675,
- 15732,
- 15749,
- 15789,
- 15807,
- 15844,
- 15859,
- 15876,
- 15894,
+ 14536,
+ 14551,
+ 14557,
+ 14573,
+ 14587,
+ 14602,
+ 14637,
+ 14637,
+ 14650,
+ 14657,
+ 14663,
+ 14681,
+ 14700,
+ 14709,
+ 14717,
+ 14734,
+ 14751,
+ 14764,
+ 14779,
+ 14795,
+ 14849,
+ 14913,
+ 14940,
+ 15049,
+ 15092,
+ 15097,
+ 15110,
+ 15123,
+ 15140,
+ 15140,
+ 15183,
+ 15221,
+ 15248,
+ 15263,
+ 15278,
+ 15302,
+ 15313,
+ 15352,
+ 15368,
+ 15386,
+ 15432,
+ 15451,
+ 15469,
+ 15482,
+ 15539,
+ 15556,
+ 15596,
+ 15614,
+ 15651,
+ 15666,
+ 15683,
+ 15701,
+ 15731,
+ 15760,
+ 15778,
+ 15793,
+ 15800,
+ 15808,
+ 15815,
+ 15821,
+ 15834,
+ 15842,
+ 15851,
+ 15857,
+ 15864,
+ 15875,
+ 15883,
+ 15899,
+ 15912,
+ 15917,
+ 15920,
15924,
- 15953,
- 15971,
- 15986,
- 15993,
- 16001,
- 16008,
- 16014,
- 16027,
- 16035,
- 16044,
- 16050,
- 16057,
- 16068,
- 16076,
- 16092,
+ 15924,
+ 15969,
+ 15978,
+ 15980,
+ 15987,
+ 16005,
+ 16021,
+ 16042,
+ 16051,
+ 16055,
+ 16061,
+ 16066,
+ 16066,
+ 16077,
+ 16077,
+ 16077,
+ 16077,
+ 16084,
+ 16091,
+ 16091,
+ 16098,
16105,
- 16110,
16113,
- 16117,
- 16117,
- 16162,
- 16171,
- 16173,
+ 16116,
+ 16132,
+ 16132,
+ 16137,
+ 16150,
+ 16175,
16180,
- 16198,
- 16214,
- 16235,
- 16244,
- 16248,
- 16254,
- 16259,
- 16259,
- 16270,
- 16270,
- 16270,
- 16270,
- 16277,
- 16284,
- 16284,
- 16291,
- 16298,
- 16306,
- 16309,
- 16325,
- 16325,
- 16330,
- 16343,
- 16368,
- 16373,
- 16386,
- 16409,
- 16416,
- 16443,
- 16454,
+ 16193,
+ 16216,
+ 16223,
+ 16250,
+ 16261,
+ 16274,
+ 16283,
+ 16337,
+ 16355,
+ 16369,
+ 16389,
+ 16411,
+ 16431,
+ 16438,
+ 16453,
+ 16453,
+ 16467,
16467,
16476,
- 16530,
- 16548,
- 16562,
- 16582,
- 16604,
- 16624,
- 16631,
- 16646,
- 16646,
- 16660,
- 16675,
- 16684,
+ 16512,
+ 16564,
+ 16602,
+ 16614,
+ 16630,
+ 16642,
16720,
- 16772,
- 16810,
- 16822,
- 16838,
- 16850,
- 16928,
- 16942,
- 16949,
- 16964,
- 16983,
- 16998,
- 17023,
- 17023,
- 17023,
- 17023,
- 17034,
- 17043,
- 17055,
- 17063,
+ 16720,
+ 16727,
+ 16742,
+ 16761,
+ 16776,
+ 16801,
+ 16801,
+ 16801,
+ 16801,
+ 16812,
+ 16821,
+ 16833,
+ 16841,
+ 16862,
+ 16874,
+ 16893,
+ 16974,
+ 17032,
+ 17032,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17068,
17084,
- 17096,
+ 17105,
+ 17105,
17115,
- 17196,
- 17254,
- 17254,
- 17274,
- 17274,
- 17274,
- 17274,
- 17274,
- 17274,
- 17290,
- 17306,
- 17327,
- 17327,
- 17337,
- 17337,
- 17337,
- 17337,
- 17347,
- 17379,
- 17408,
- 17468,
- 17530,
- 17563,
- 17610,
- 17694,
- 17713,
- 17733,
- 17756,
- 17763,
- 17815,
- 17815,
- 17873,
- 17873,
- 17873,
- 17873,
- 17891,
- 17908,
- 17921,
- 17921,
- 17921,
- 17975,
- 17988,
- 18030,
- 18030,
- 18030,
- 18045,
- 18045,
- 18057,
- 18076,
- 18084,
- 18094,
- 18115,
- 18133,
- 18151,
- 18176,
- 18189,
- 18223,
- 18240,
- 18262,
- 18270,
- 18280,
- 18300,
- 18311,
- 18324,
- 18401,
+ 17115,
+ 17115,
+ 17115,
+ 17125,
+ 17157,
+ 17186,
+ 17246,
+ 17308,
+ 17341,
+ 17388,
+ 17472,
+ 17491,
+ 17511,
+ 17534,
+ 17541,
+ 17593,
+ 17593,
+ 17651,
+ 17651,
+ 17651,
+ 17651,
+ 17669,
+ 17686,
+ 17699,
+ 17699,
+ 17699,
+ 17753,
+ 17766,
+ 17808,
+ 17808,
+ 17808,
+ 17823,
+ 17823,
+ 17835,
+ 17854,
+ 17862,
+ 17872,
+ 17893,
+ 17911,
+ 17929,
+ 17954,
+ 17967,
+ 18001,
+ 18018,
+ 18040,
+ 18048,
+ 18048,
+ 18068,
+ 18079,
+ 18092,
+ 18169,
+ 18185,
+ 18195,
+ 18228,
+ 18238,
+ 18290,
+ 18302,
+ 18320,
+ 18326,
+ 18331,
+ 18357,
+ 18382,
+ 18386,
+ 18386,
+ 18386,
18417,
- 18427,
- 18460,
- 18470,
- 18522,
- 18534,
- 18552,
- 18558,
- 18563,
- 18589,
- 18614,
- 18618,
- 18618,
- 18618,
- 18649,
- 18665,
- 18733,
- 18751,
- 18768,
- 18778,
- 18796,
- 18816,
- 18831,
- 18855,
- 18869,
- 18882,
- 18908,
- 18928,
- 18944,
- 18944,
- 18952,
- 18957,
- 18986,
- 19038,
- 19050,
- 19055,
- 19068,
- 19076,
- 19086,
- 19146,
- 19172,
- 19179,
- 19210,
- 19222,
- 19239,
- 19261,
- 19276,
- 19291,
- 19291,
- 19291,
- 19291,
- 19299,
- 19316,
- 19328,
- 19343,
- 19350,
- 19366,
- 19374,
- 19415,
- 19429,
- 19439,
- 19472,
- 19481,
- 19521,
- 19537,
- 19543,
- 19554,
- 19559,
- 19564,
- 19567,
- 19580,
- 19601,
+ 18433,
+ 18501,
+ 18519,
+ 18536,
+ 18546,
+ 18564,
+ 18584,
+ 18599,
+ 18623,
+ 18637,
+ 18650,
+ 18676,
+ 18696,
+ 18712,
+ 18712,
+ 18720,
+ 18725,
+ 18754,
+ 18806,
+ 18818,
+ 18823,
+ 18836,
+ 18844,
+ 18854,
+ 18914,
+ 18940,
+ 18947,
+ 18978,
+ 18990,
+ 19007,
+ 19029,
+ 19044,
+ 19059,
+ 19059,
+ 19059,
+ 19059,
+ 19067,
+ 19084,
+ 19096,
+ 19111,
+ 19118,
+ 19134,
+ 19142,
+ 19183,
+ 19197,
+ 19207,
+ 19240,
+ 19249,
+ 19289,
+ 19305,
+ 19311,
+ 19322,
+ 19327,
+ 19332,
+ 19335,
+ 19348,
+ 19369,
+ 19411,
+ 19461,
+ 19474,
+ 19504,
+ 19504,
+ 19583,
+ 19629,
19643,
- 19693,
- 19706,
- 19736,
- 19743,
- 19822,
- 19868,
- 19882,
- 19929,
- 19944,
- 19948,
- 19954,
- 19966,
- 19966,
- 19992,
- 20044,
- 20052,
- 20085,
- 20105,
- 20118,
- 20133,
- 20145,
- 20145,
- 20145,
- 20145,
- 20182,
- 20182,
- 20182,
- 20200,
- 20242,
- 20246,
- 20253,
- 20264,
- 20289,
- 20293,
- 20297,
- 20313,
- 20327,
- 20333,
- 20353,
+ 19690,
+ 19705,
+ 19709,
+ 19715,
+ 19727,
+ 19727,
+ 19753,
+ 19805,
+ 19813,
+ 19846,
+ 19870,
+ 19887,
+ 19902,
+ 19914,
+ 19914,
+ 19914,
+ 19914,
+ 19951,
+ 19951,
+ 19951,
+ 19969,
+ 20011,
+ 20015,
+ 20022,
+ 20033,
+ 20058,
+ 20062,
+ 20066,
+ 20082,
+ 20096,
+ 20102,
+ 20122,
+ 20128,
+ 20148,
+ 20156,
+ 20186,
+ 20186,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20241,
+ 20262,
+ 20262,
+ 20271,
+ 20281,
+ 20291,
+ 20309,
20359,
- 20379,
- 20387,
- 20417,
- 20417,
- 20472,
- 20472,
- 20472,
+ 20391,
+ 20408,
+ 20408,
+ 20412,
+ 20432,
+ 20447,
+ 20460,
20472,
- 20472,
- 20472,
- 20472,
- 20493,
- 20493,
- 20502,
- 20512,
- 20522,
- 20540,
- 20590,
- 20622,
- 20639,
- 20639,
- 20643,
- 20663,
- 20678,
- 20691,
- 20703,
- 20714,
- 20726,
- 20752,
- 20773,
- 20773,
- 20773,
- 20773,
- 20773,
- 20786,
- 20802,
- 20802,
- 20802,
- 20802,
+ 20483,
+ 20495,
+ 20521,
+ 20542,
+ 20542,
+ 20542,
+ 20542,
+ 20542,
+ 20555,
+ 20571,
+ 20571,
+ 20571,
+ 20571,
+ 20576,
+ 20585,
+ 20591,
+ 20601,
+ 20604,
+ 20610,
+ 20610,
+ 20610,
+ 20616,
+ 20624,
+ 20635,
+ 20645,
+ 20653,
+ 20670,
+ 20686,
+ 20695,
+ 20695,
+ 20695,
+ 20695,
+ 20695,
+ 20704,
+ 20755,
+ 20758,
+ 20762,
+ 20768,
+ 20782,
+ 20794,
+ 20794,
+ 20801,
20807,
- 20816,
- 20822,
- 20832,
- 20835,
- 20841,
- 20844,
- 20846,
- 20852,
- 20860,
- 20871,
- 20881,
- 20889,
- 20906,
- 20922,
- 20931,
- 20939,
- 20946,
- 20946,
- 20946,
- 20955,
- 21006,
- 21009,
- 21013,
- 21019,
- 21033,
- 21045,
- 21045,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20812,
+ 20875,
+ 20888,
+ 20930,
+ 20952,
+ 21052,
+ 21052,
+ 21052,
+ 21052,
+ 21052,
+ 21052,
21052,
- 21058,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21063,
- 21126,
- 21139,
- 21181,
- 21203,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21303,
- 21374,
- 21445,
- 21499,
- 21551,
- 21551,
- 21561,
- 21565,
- 21574,
- 21588,
- 21651,
- 21662,
- 21671,
- 21679,
- 21684,
- 21690,
+ 21052,
+ 21123,
+ 21194,
+ 21248,
+ 21300,
+ 21300,
+ 21310,
+ 21314,
+ 21323,
+ 21337,
+ 21400,
+ 21411,
+ 21420,
+ 21428,
+ 21433,
+ 21439,
];
#[cfg(all(not(feature = "debug"), not(feature = "universal_fw")))]
@@ -8714,7 +8713,7 @@ impl TranslatedString {
"Yours",
"Derivation path:",
"Receive address",
- "Receiving to",
+ "",
"Allow connected app to check the authenticity of your {0}?",
"Authenticate device",
"Auto-lock Trezor after {0} of inactivity?",
@@ -8822,7 +8821,7 @@ impl TranslatedString {
"Certificate",
"Change output",
"Check all items carefully.",
- "Choose level of details:",
+ "Choose level of detail:",
"Collateral input ID",
"Collateral input index",
"The collateral return output contains tokens.",
@@ -8861,7 +8860,7 @@ impl TranslatedString {
"pointer",
"Policy ID",
"Pool metadata hash",
- "Pool metadata url",
+ "Pool metadata URL",
"Pool owner",
"Pool reward account",
"Reference input ID",
@@ -9163,7 +9162,7 @@ impl TranslatedString {
"Last attempt",
"Entered PINs do not match!",
"PIN mismatch",
- "Please check again.",
+ "",
"Re-enter new PIN",
"Please re-enter PIN to confirm.",
"PIN should be 4-50 digits long.",
@@ -9197,7 +9196,7 @@ impl TranslatedString {
"Trezor will restart in bootloader mode.",
"Go to bootloader",
"Firmware version {0}\nby {1}",
- "Cancel backup check",
+ "",
"Check your backup?",
"Position of the cursor will change between entries for enhanced security.",
"The entered wallet backup is valid and matches the one in this device.",
@@ -9242,8 +9241,8 @@ impl TranslatedString {
"Create wallet",
"Recover wallet",
"By continuing you agree to Trezor Company's terms and conditions.",
- "Check backup",
- "Check g{0} - share {1}",
+ "",
+ "Check gr. {0} - share {1}",
"Check wallet backup",
"Check share #{0}",
"Continue with the next share.",
@@ -9303,7 +9302,7 @@ impl TranslatedString {
"trezor.io/tos",
"Set the total number of shares in Group {0}.",
"Use your backup when you need to recover your wallet.",
- "Write the following {0} words in order on your wallet backup card.",
+ "",
"Wrong word selected!",
"For recovery you need 1 share.",
"Your backup is done.",
@@ -9467,7 +9466,7 @@ impl TranslatedString {
"Screen scroll",
"Skip tutorial",
"Tutorial complete",
- "Use Trezor by\nclicking the left and right buttons.\n\rContinue right.",
+ "",
"Welcome to Trezor. Press right to continue.",
"Increase and retrieve the U2F counter?",
"Set the U2F counter to {0}?",
@@ -9557,7 +9556,7 @@ impl TranslatedString {
"Vote delegation",
"",
"Tap to confirm",
- "Hold to confirm",
+ "",
"Important",
"I wrote down all {0} words in order.",
"Create a backup to avoid losing access to your funds",
@@ -9566,7 +9565,7 @@ impl TranslatedString {
"Not recommended!",
"Account info",
"If receive address doesn't match, contact Trezor Support at trezor.io/support.",
- "Cancel receive",
+ "",
"QR code",
"Derivation path",
"Continue in the app",
@@ -9642,7 +9641,7 @@ impl TranslatedString {
"Words may repeat.",
"Repeat for all shares.",
"Settings",
- "Homescreen",
+ "",
"The word is repeated",
"Let's begin",
"Did you know?",
@@ -9723,7 +9722,7 @@ impl TranslatedString {
"We don't recommend to skip wallet backup creation.",
"Pay attention",
"Check the address with source.",
- "Receive",
+ "",
"A recovery share is a list of words you wrote down when setting up your Trezor.",
"Your wallet backup consists of 1 to 16 shares.",
"Recovery share",
@@ -9737,8 +9736,8 @@ impl TranslatedString {
"Set the time before your Trezor locks automatically.",
"day|days",
"Trezor will restart after update.",
- "Access hidden wallet",
- "Hidden wallet",
+ "Access passphrase wallet",
+ "Passphrase wallet",
"Show passphrase",
"Re-enter PIN",
"",
@@ -9805,8 +9804,8 @@ impl TranslatedString {
"Disconnect",
"LED",
"Manage",
- "OFF",
- "ON",
+ "",
+ "",
"Review",
"Security",
"Change PIN?",
@@ -9815,8 +9814,8 @@ impl TranslatedString {
"Change wipe code?",
"Remove wipe code",
"Wipe code",
- "Disabled",
- "Enabled",
+ "",
+ "",
"",
"",
"Bluetooth",
@@ -9902,1177 +9901,1177 @@ impl TranslatedString {
174,
190,
205,
- 217,
- 275,
- 294,
- 335,
- 350,
- 396,
- 441,
- 468,
- 484,
- 512,
- 571,
- 571,
- 582,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 623,
- 638,
- 654,
- 697,
- 740,
- 780,
- 795,
- 822,
- 846,
+ 205,
+ 263,
+ 282,
+ 323,
+ 338,
+ 384,
+ 429,
+ 456,
+ 472,
+ 500,
+ 559,
+ 559,
+ 570,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 611,
+ 626,
+ 642,
+ 685,
+ 728,
+ 768,
+ 783,
+ 810,
+ 834,
+ 851,
863,
- 875,
- 889,
- 902,
- 917,
- 937,
- 952,
- 968,
- 981,
- 988,
- 1006,
- 1021,
+ 877,
+ 890,
+ 905,
+ 925,
+ 940,
+ 956,
+ 969,
+ 976,
+ 994,
+ 1009,
+ 1027,
1039,
- 1051,
- 1070,
- 1089,
- 1141,
- 1164,
- 1180,
- 1185,
- 1191,
- 1196,
- 1201,
- 1205,
+ 1058,
+ 1077,
+ 1129,
+ 1152,
+ 1168,
+ 1173,
+ 1179,
+ 1184,
+ 1189,
+ 1193,
+ 1200,
+ 1206,
1212,
- 1218,
- 1224,
- 1229,
+ 1217,
+ 1228,
+ 1233,
1240,
- 1245,
- 1252,
- 1260,
- 1267,
- 1273,
- 1278,
+ 1248,
+ 1255,
+ 1261,
+ 1266,
+ 1277,
+ 1283,
1289,
- 1295,
- 1301,
- 1308,
- 1323,
- 1327,
- 1334,
- 1343,
+ 1296,
+ 1311,
+ 1315,
+ 1322,
+ 1331,
+ 1347,
+ 1355,
1359,
- 1367,
+ 1366,
1371,
- 1378,
- 1383,
- 1389,
- 1392,
+ 1377,
+ 1380,
+ 1388,
1400,
- 1412,
- 1422,
- 1426,
- 1435,
- 1443,
- 1450,
- 1454,
- 1464,
- 1470,
- 1477,
- 1483,
- 1512,
- 1544,
- 1576,
- 1606,
- 1643,
- 1660,
- 1679,
- 1684,
- 1692,
- 1703,
- 1716,
- 1742,
- 1766,
- 1785,
- 1807,
- 1852,
- 1869,
- 1869,
- 1925,
- 1944,
- 1978,
- 2010,
- 2048,
- 2073,
- 2077,
- 2121,
+ 1410,
+ 1414,
+ 1423,
+ 1431,
+ 1438,
+ 1442,
+ 1452,
+ 1458,
+ 1465,
+ 1471,
+ 1500,
+ 1532,
+ 1564,
+ 1594,
+ 1631,
+ 1648,
+ 1667,
+ 1672,
+ 1680,
+ 1691,
+ 1704,
+ 1730,
+ 1753,
+ 1772,
+ 1794,
+ 1839,
+ 1856,
+ 1856,
+ 1912,
+ 1931,
+ 1965,
+ 1997,
+ 2035,
+ 2060,
+ 2064,
+ 2108,
+ 2118,
2131,
- 2144,
- 2173,
- 2188,
- 2200,
- 2210,
- 2222,
- 2230,
- 2241,
- 2287,
- 2337,
- 2407,
- 2415,
- 2421,
- 2435,
- 2463,
- 2470,
- 2525,
- 2530,
- 2535,
+ 2160,
+ 2175,
+ 2187,
+ 2197,
+ 2209,
+ 2217,
+ 2228,
+ 2274,
+ 2324,
+ 2394,
+ 2402,
+ 2408,
+ 2422,
+ 2450,
+ 2457,
+ 2512,
+ 2517,
+ 2522,
+ 2526,
+ 2532,
2539,
- 2545,
- 2552,
- 2561,
- 2579,
- 2596,
- 2606,
- 2625,
- 2643,
- 2664,
- 2680,
- 2695,
- 2701,
- 2729,
+ 2548,
+ 2566,
+ 2583,
+ 2593,
+ 2612,
+ 2630,
+ 2651,
+ 2667,
+ 2682,
+ 2688,
+ 2716,
+ 2794,
2807,
- 2820,
- 2826,
- 2829,
- 2832,
- 2848,
- 2859,
- 2873,
- 2890,
- 2893,
+ 2813,
+ 2816,
+ 2819,
+ 2835,
+ 2846,
+ 2860,
+ 2877,
+ 2880,
+ 2886,
2899,
- 2912,
- 2919,
- 2930,
- 2955,
- 2971,
- 2995,
- 3017,
- 3048,
- 3070,
- 3093,
- 3100,
- 3118,
- 3134,
- 3145,
- 3199,
- 3288,
- 3288,
- 3302,
- 3387,
- 3471,
- 3520,
- 3523,
- 3549,
- 3565,
+ 2906,
+ 2917,
+ 2942,
+ 2958,
+ 2982,
+ 3004,
+ 3035,
+ 3057,
+ 3080,
+ 3087,
+ 3105,
+ 3121,
+ 3132,
+ 3186,
+ 3275,
+ 3275,
+ 3289,
+ 3374,
+ 3458,
+ 3507,
+ 3510,
+ 3536,
+ 3552,
+ 3563,
3576,
- 3589,
- 3619,
- 3634,
+ 3606,
+ 3621,
+ 3635,
+ 3642,
3648,
- 3655,
- 3661,
- 3695,
- 3730,
- 3759,
- 3789,
- 3803,
- 3813,
- 3831,
- 3831,
- 3851,
- 3869,
- 3878,
- 3899,
- 3907,
- 3919,
- 3931,
- 3971,
- 3997,
- 4008,
- 4043,
- 4043,
- 4058,
- 4084,
- 4095,
- 4109,
- 4116,
- 4121,
- 4132,
- 4140,
- 4144,
- 4152,
- 4155,
- 4162,
- 4170,
- 4181,
- 4185,
- 4194,
- 4198,
- 4202,
- 4205,
- 4216,
- 4221,
- 4227,
- 4232,
+ 3682,
+ 3717,
+ 3746,
+ 3776,
+ 3790,
+ 3800,
+ 3818,
+ 3818,
+ 3838,
+ 3856,
+ 3865,
+ 3886,
+ 3894,
+ 3906,
+ 3918,
+ 3958,
+ 3984,
+ 3995,
+ 4030,
+ 4030,
+ 4045,
+ 4071,
+ 4082,
+ 4096,
+ 4103,
+ 4108,
+ 4119,
+ 4127,
+ 4131,
+ 4139,
+ 4142,
+ 4149,
+ 4157,
+ 4168,
+ 4172,
+ 4181,
+ 4185,
+ 4189,
+ 4192,
+ 4203,
+ 4208,
+ 4214,
+ 4219,
+ 4229,
+ 4234,
4242,
- 4247,
- 4255,
- 4261,
- 4272,
- 4280,
- 4286,
- 4302,
- 4311,
- 4313,
- 4321,
- 4325,
- 4335,
- 4346,
- 4357,
- 4375,
- 4389,
- 4394,
- 4406,
- 4406,
- 4421,
- 4430,
- 4439,
- 4454,
- 4470,
- 4499,
- 4515,
- 4531,
- 4546,
- 4562,
- 4579,
- 4595,
- 4626,
- 4636,
- 4650,
- 4665,
- 4679,
- 4697,
- 4712,
+ 4248,
+ 4259,
+ 4267,
+ 4273,
+ 4289,
+ 4298,
+ 4300,
+ 4308,
+ 4312,
+ 4322,
+ 4333,
+ 4344,
+ 4362,
+ 4376,
+ 4381,
+ 4393,
+ 4393,
+ 4408,
+ 4417,
+ 4426,
+ 4441,
+ 4457,
+ 4486,
+ 4502,
+ 4518,
+ 4533,
+ 4549,
+ 4566,
+ 4582,
+ 4613,
+ 4623,
+ 4637,
+ 4652,
+ 4666,
+ 4684,
+ 4699,
+ 4708,
4721,
- 4734,
- 4757,
- 4786,
- 4824,
- 4841,
- 4859,
- 4915,
- 4958,
- 5010,
- 5088,
- 5110,
- 5173,
- 5187,
- 5226,
- 5255,
- 5273,
- 5290,
- 5306,
- 5320,
- 5337,
- 5348,
- 5364,
- 5376,
- 5393,
- 5415,
- 5459,
- 5474,
- 5488,
- 5504,
+ 4744,
+ 4773,
+ 4811,
+ 4828,
+ 4846,
+ 4902,
+ 4945,
+ 4997,
+ 5075,
+ 5097,
+ 5160,
+ 5174,
+ 5213,
+ 5242,
+ 5260,
+ 5277,
+ 5293,
+ 5307,
+ 5324,
+ 5335,
+ 5351,
+ 5363,
+ 5380,
+ 5402,
+ 5446,
+ 5461,
+ 5475,
+ 5491,
+ 5506,
5519,
5532,
- 5545,
- 5564,
- 5581,
- 5598,
- 5609,
- 5617,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5633,
- 5650,
- 5669,
- 5689,
- 5712,
- 5741,
- 5758,
- 5775,
+ 5551,
+ 5568,
+ 5585,
+ 5596,
+ 5604,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5620,
+ 5637,
+ 5656,
+ 5676,
+ 5699,
+ 5728,
+ 5745,
+ 5762,
+ 5776,
5789,
- 5802,
+ 5795,
5808,
5821,
5834,
- 5847,
- 5861,
- 5880,
- 5899,
+ 5848,
+ 5867,
+ 5886,
+ 5897,
5910,
- 5923,
- 5939,
- 5948,
- 5964,
- 5984,
- 6004,
- 6014,
- 6030,
- 6044,
- 6059,
- 6074,
- 6093,
- 6107,
- 6117,
+ 5926,
+ 5935,
+ 5951,
+ 5971,
+ 5991,
+ 6001,
+ 6017,
+ 6031,
+ 6046,
+ 6061,
+ 6080,
+ 6094,
+ 6104,
+ 6121,
6134,
- 6147,
- 6164,
- 6182,
- 6192,
- 6206,
- 6252,
- 6301,
- 6337,
- 6389,
- 6425,
- 6463,
- 6471,
- 6479,
- 6482,
- 6496,
- 6511,
- 6531,
- 6545,
- 6565,
- 6582,
- 6597,
- 6615,
- 6633,
- 6652,
- 6688,
- 6710,
+ 6151,
+ 6169,
+ 6179,
+ 6193,
+ 6239,
+ 6288,
+ 6324,
+ 6376,
+ 6412,
+ 6450,
+ 6458,
+ 6466,
+ 6469,
+ 6483,
+ 6498,
+ 6518,
+ 6532,
+ 6552,
+ 6569,
+ 6584,
+ 6602,
+ 6620,
+ 6639,
+ 6675,
+ 6697,
+ 6709,
6722,
- 6735,
- 6751,
- 6761,
- 6769,
- 6780,
- 6837,
+ 6738,
+ 6748,
+ 6756,
+ 6767,
+ 6824,
+ 6833,
6846,
- 6859,
- 6868,
- 6876,
- 6890,
- 6914,
- 6931,
- 6939,
- 6965,
- 6976,
- 6990,
- 7004,
- 7013,
- 7030,
- 7068,
- 7075,
- 7077,
+ 6855,
+ 6863,
+ 6877,
+ 6901,
+ 6918,
+ 6926,
+ 6952,
+ 6963,
+ 6977,
+ 6991,
+ 7000,
+ 7017,
+ 7055,
+ 7062,
+ 7064,
+ 7074,
7087,
- 7100,
- 7119,
- 7125,
- 7154,
+ 7106,
+ 7112,
+ 7141,
+ 7191,
7204,
- 7217,
- 7247,
- 7259,
- 7274,
- 7285,
- 7300,
- 7325,
- 7364,
- 7467,
- 7484,
- 7516,
- 7554,
- 7583,
- 7638,
- 7656,
- 7672,
- 7687,
- 7706,
- 7723,
- 7754,
- 7784,
- 7794,
- 7806,
- 7879,
- 7929,
- 7955,
- 7980,
+ 7234,
+ 7246,
+ 7261,
+ 7272,
+ 7287,
+ 7312,
+ 7351,
+ 7454,
+ 7471,
+ 7503,
+ 7541,
+ 7570,
+ 7625,
+ 7643,
+ 7659,
+ 7674,
+ 7693,
+ 7710,
+ 7741,
+ 7771,
+ 7781,
+ 7793,
+ 7866,
+ 7916,
+ 7942,
+ 7967,
+ 7976,
7989,
- 8002,
- 8040,
- 8083,
- 8094,
- 8106,
- 8132,
- 8144,
- 8163,
- 8179,
- 8210,
- 8241,
- 8250,
- 8262,
- 8271,
- 8281,
+ 8027,
+ 8070,
+ 8081,
+ 8093,
+ 8119,
+ 8131,
+ 8131,
+ 8147,
+ 8178,
+ 8209,
+ 8218,
+ 8230,
+ 8239,
+ 8249,
+ 8298,
+ 8321,
8330,
- 8353,
- 8362,
- 8370,
- 8380,
- 8404,
- 8418,
- 8432,
+ 8338,
+ 8348,
+ 8372,
+ 8386,
+ 8400,
+ 8414,
+ 8434,
8446,
- 8466,
- 8478,
- 8490,
- 8514,
- 8518,
- 8540,
- 8561,
- 8574,
- 8585,
- 8595,
+ 8458,
+ 8482,
+ 8486,
+ 8508,
+ 8529,
+ 8542,
+ 8553,
+ 8563,
+ 8576,
+ 8598,
8608,
- 8630,
- 8640,
- 8656,
- 8695,
- 8711,
- 8738,
- 8757,
- 8775,
- 8848,
- 8918,
- 8994,
- 9074,
- 9161,
- 9176,
- 9194,
- 9218,
- 9253,
- 9262,
- 9286,
- 9316,
- 9347,
- 9365,
- 9407,
- 9469,
- 9495,
- 9495,
- 9516,
- 9565,
- 9574,
- 9588,
- 9607,
- 9622,
- 9634,
- 9648,
- 9664,
- 9684,
- 9709,
- 9758,
- 9811,
- 9822,
- 9837,
- 9867,
- 9895,
- 9920,
- 9936,
- 10019,
- 10040,
- 10061,
- 10074,
- 10088,
- 10153,
- 10165,
- 10187,
- 10206,
- 10222,
- 10251,
- 10276,
- 10339,
- 10386,
- 10435,
- 10473,
- 10606,
- 10649,
- 10670,
- 10682,
- 10726,
- 10770,
- 10794,
- 10825,
- 10864,
- 10913,
- 11038,
- 11155,
- 11203,
- 11203,
- 11210,
- 11241,
- 11254,
- 11273,
- 11316,
- 11358,
- 11358,
- 11381,
- 11413,
- 11445,
- 11460,
- 11476,
- 11492,
- 11512,
- 11532,
- 11556,
+ 8624,
+ 8663,
+ 8679,
+ 8706,
+ 8706,
+ 8724,
+ 8797,
+ 8867,
+ 8943,
+ 9023,
+ 9110,
+ 9125,
+ 9143,
+ 9167,
+ 9202,
+ 9211,
+ 9235,
+ 9265,
+ 9296,
+ 9314,
+ 9356,
+ 9418,
+ 9444,
+ 9444,
+ 9465,
+ 9514,
+ 9523,
+ 9537,
+ 9556,
+ 9571,
+ 9583,
+ 9597,
+ 9613,
+ 9633,
+ 9658,
+ 9707,
+ 9760,
+ 9771,
+ 9786,
+ 9816,
+ 9844,
+ 9869,
+ 9885,
+ 9968,
+ 9989,
+ 10010,
+ 10023,
+ 10037,
+ 10102,
+ 10102,
+ 10127,
+ 10146,
+ 10162,
+ 10191,
+ 10216,
+ 10279,
+ 10326,
+ 10375,
+ 10413,
+ 10546,
+ 10589,
+ 10610,
+ 10622,
+ 10666,
+ 10710,
+ 10734,
+ 10765,
+ 10804,
+ 10853,
+ 10978,
+ 11095,
+ 11143,
+ 11143,
+ 11150,
+ 11181,
+ 11194,
+ 11213,
+ 11256,
+ 11298,
+ 11298,
+ 11321,
+ 11353,
+ 11385,
+ 11400,
+ 11416,
+ 11432,
+ 11452,
+ 11472,
+ 11496,
+ 11533,
+ 11546,
+ 11562,
11593,
- 11606,
- 11622,
- 11653,
- 11653,
- 11693,
- 11693,
- 11707,
- 11720,
- 11720,
- 11720,
- 11736,
- 11736,
- 11755,
- 11775,
- 11795,
- 11808,
- 11826,
- 11839,
- 11883,
- 11936,
- 12002,
- 12022,
- 12052,
- 12072,
- 12083,
- 12103,
- 12137,
- 12141,
- 12146,
- 12151,
- 12170,
- 12174,
- 12242,
- 12322,
- 12387,
- 12400,
- 12415,
- 12452,
- 12469,
- 12534,
- 12579,
- 12644,
- 12688,
- 12701,
+ 11593,
+ 11633,
+ 11633,
+ 11647,
+ 11660,
+ 11660,
+ 11660,
+ 11676,
+ 11676,
+ 11695,
+ 11715,
+ 11735,
+ 11748,
+ 11766,
+ 11779,
+ 11823,
+ 11876,
+ 11876,
+ 11896,
+ 11926,
+ 11946,
+ 11957,
+ 11977,
+ 12011,
+ 12015,
+ 12020,
+ 12025,
+ 12044,
+ 12048,
+ 12116,
+ 12196,
+ 12261,
+ 12274,
+ 12289,
+ 12326,
+ 12343,
+ 12408,
+ 12453,
+ 12518,
+ 12562,
+ 12575,
+ 12589,
+ 12639,
+ 12666,
12715,
- 12765,
- 12792,
+ 12757,
12841,
- 12883,
- 12967,
- 13013,
- 13062,
- 13080,
- 13095,
- 13114,
- 13170,
- 13237,
- 13278,
- 13292,
- 13292,
- 13306,
- 13337,
- 13350,
- 13361,
- 13393,
- 13408,
- 13425,
- 13437,
- 13444,
- 13458,
- 13468,
- 13488,
- 13488,
- 13502,
- 13523,
- 13523,
- 13523,
- 13532,
- 13547,
- 13562,
- 13574,
- 13588,
- 13601,
- 13625,
- 13641,
- 13653,
- 13718,
- 13734,
- 13786,
- 13821,
- 13841,
- 13857,
- 13857,
- 13899,
- 13956,
- 13969,
- 13987,
- 13997,
+ 12887,
+ 12936,
+ 12954,
+ 12969,
+ 12988,
+ 13044,
+ 13111,
+ 13152,
+ 13166,
+ 13166,
+ 13180,
+ 13211,
+ 13224,
+ 13235,
+ 13267,
+ 13282,
+ 13299,
+ 13311,
+ 13318,
+ 13332,
+ 13342,
+ 13362,
+ 13362,
+ 13376,
+ 13397,
+ 13397,
+ 13397,
+ 13406,
+ 13421,
+ 13436,
+ 13448,
+ 13462,
+ 13475,
+ 13499,
+ 13515,
+ 13527,
+ 13592,
+ 13608,
+ 13660,
+ 13695,
+ 13715,
+ 13731,
+ 13731,
+ 13773,
+ 13830,
+ 13843,
+ 13861,
+ 13871,
+ 13880,
+ 13903,
+ 13914,
+ 13919,
+ 13929,
+ 13942,
+ 13948,
+ 13971,
+ 13981,
+ 13992,
14006,
- 14029,
- 14040,
- 14045,
- 14055,
- 14068,
- 14074,
- 14097,
+ 14018,
+ 14018,
+ 14035,
+ 14035,
+ 14053,
+ 14067,
+ 14081,
+ 14087,
14107,
- 14118,
- 14132,
- 14144,
- 14144,
- 14161,
- 14161,
- 14179,
- 14193,
+ 14119,
+ 14130,
+ 14190,
+ 14203,
14207,
- 14213,
- 14233,
- 14245,
- 14256,
- 14316,
- 14329,
+ 14211,
+ 14222,
+ 14231,
+ 14231,
+ 14231,
+ 14241,
+ 14244,
+ 14249,
+ 14252,
+ 14265,
+ 14271,
+ 14280,
+ 14297,
+ 14309,
+ 14325,
+ 14325,
14333,
- 14337,
- 14348,
- 14357,
- 14357,
- 14357,
- 14367,
- 14370,
- 14375,
- 14378,
- 14391,
+ 14350,
+ 14353,
+ 14364,
+ 14384,
14397,
- 14406,
- 14423,
- 14435,
- 14451,
- 14451,
- 14459,
- 14476,
- 14479,
- 14490,
- 14510,
- 14523,
- 14523,
+ 14397,
+ 14410,
+ 14422,
+ 14429,
+ 14437,
+ 14446,
+ 14466,
+ 14502,
+ 14522,
14536,
- 14548,
- 14555,
- 14563,
- 14572,
- 14592,
- 14628,
- 14648,
- 14662,
- 14662,
- 14677,
- 14683,
- 14699,
- 14713,
- 14728,
- 14763,
- 14763,
- 14776,
- 14783,
- 14789,
- 14807,
- 14826,
- 14835,
- 14843,
- 14860,
- 14877,
- 14890,
- 14905,
- 14921,
- 14975,
- 15039,
- 15066,
- 15175,
- 15218,
- 15223,
- 15236,
- 15249,
- 15266,
- 15333,
- 15376,
- 15414,
- 15441,
- 15456,
- 15471,
- 15495,
- 15506,
- 15545,
- 15561,
- 15579,
- 15625,
- 15644,
- 15662,
- 15675,
- 15732,
- 15749,
- 15789,
- 15807,
- 15844,
- 15859,
- 15876,
- 15894,
+ 14536,
+ 14551,
+ 14557,
+ 14573,
+ 14587,
+ 14602,
+ 14637,
+ 14637,
+ 14650,
+ 14657,
+ 14663,
+ 14681,
+ 14700,
+ 14709,
+ 14717,
+ 14734,
+ 14751,
+ 14764,
+ 14779,
+ 14795,
+ 14849,
+ 14913,
+ 14940,
+ 15049,
+ 15092,
+ 15097,
+ 15110,
+ 15123,
+ 15140,
+ 15140,
+ 15183,
+ 15221,
+ 15248,
+ 15263,
+ 15278,
+ 15302,
+ 15313,
+ 15352,
+ 15368,
+ 15386,
+ 15432,
+ 15451,
+ 15469,
+ 15482,
+ 15539,
+ 15556,
+ 15596,
+ 15614,
+ 15651,
+ 15666,
+ 15683,
+ 15701,
+ 15731,
+ 15760,
+ 15778,
+ 15793,
+ 15800,
+ 15808,
+ 15815,
+ 15821,
+ 15834,
+ 15842,
+ 15851,
+ 15857,
+ 15864,
+ 15875,
+ 15883,
+ 15899,
+ 15912,
+ 15917,
+ 15920,
15924,
- 15953,
- 15971,
- 15986,
- 15993,
- 16001,
- 16008,
- 16014,
- 16027,
- 16035,
- 16044,
- 16050,
- 16057,
- 16068,
- 16076,
- 16092,
+ 15924,
+ 15969,
+ 15978,
+ 15980,
+ 15987,
+ 16005,
+ 16021,
+ 16042,
+ 16051,
+ 16055,
+ 16061,
+ 16066,
+ 16066,
+ 16077,
+ 16077,
+ 16077,
+ 16077,
+ 16084,
+ 16091,
+ 16091,
+ 16098,
16105,
- 16110,
16113,
- 16117,
- 16117,
- 16162,
- 16171,
- 16173,
+ 16116,
+ 16132,
+ 16132,
+ 16137,
+ 16150,
+ 16175,
16180,
- 16198,
- 16214,
- 16235,
- 16244,
- 16248,
- 16254,
- 16259,
- 16259,
- 16270,
- 16270,
- 16270,
- 16270,
- 16277,
- 16284,
- 16284,
- 16291,
- 16298,
- 16306,
- 16309,
- 16325,
- 16325,
- 16330,
- 16343,
- 16368,
- 16373,
- 16386,
- 16409,
- 16416,
- 16443,
- 16454,
+ 16193,
+ 16216,
+ 16223,
+ 16250,
+ 16261,
+ 16274,
+ 16283,
+ 16337,
+ 16355,
+ 16369,
+ 16389,
+ 16411,
+ 16431,
+ 16438,
+ 16453,
+ 16453,
+ 16467,
16467,
16476,
- 16530,
- 16548,
- 16562,
- 16582,
- 16604,
- 16624,
- 16631,
- 16646,
- 16646,
- 16660,
- 16675,
- 16684,
+ 16512,
+ 16564,
+ 16602,
+ 16614,
+ 16630,
+ 16642,
16720,
- 16772,
- 16810,
- 16822,
- 16838,
- 16850,
- 16928,
- 16942,
- 16949,
- 16964,
- 16983,
- 16998,
- 17023,
- 17023,
- 17023,
- 17023,
- 17034,
- 17043,
- 17055,
- 17063,
+ 16720,
+ 16727,
+ 16742,
+ 16761,
+ 16776,
+ 16801,
+ 16801,
+ 16801,
+ 16801,
+ 16812,
+ 16821,
+ 16833,
+ 16841,
+ 16862,
+ 16874,
+ 16893,
+ 16974,
+ 17032,
+ 17032,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17052,
+ 17068,
17084,
- 17096,
+ 17105,
+ 17105,
17115,
- 17196,
- 17254,
- 17254,
- 17274,
- 17274,
- 17274,
- 17274,
- 17274,
- 17274,
- 17290,
- 17306,
- 17327,
- 17327,
- 17337,
- 17337,
- 17337,
- 17337,
- 17347,
- 17379,
- 17408,
- 17468,
- 17530,
- 17563,
- 17610,
- 17694,
- 17713,
- 17733,
- 17756,
- 17763,
- 17815,
- 17815,
- 17873,
- 17873,
- 17873,
- 17873,
- 17891,
- 17908,
- 17921,
- 17921,
- 17921,
- 17975,
- 17988,
- 18030,
- 18030,
- 18030,
- 18045,
- 18045,
- 18057,
- 18076,
- 18084,
- 18094,
- 18115,
- 18133,
- 18151,
- 18176,
- 18189,
- 18223,
- 18240,
- 18262,
- 18270,
- 18280,
- 18300,
- 18311,
- 18324,
- 18401,
+ 17115,
+ 17115,
+ 17115,
+ 17125,
+ 17157,
+ 17186,
+ 17246,
+ 17308,
+ 17341,
+ 17388,
+ 17472,
+ 17491,
+ 17511,
+ 17534,
+ 17541,
+ 17593,
+ 17593,
+ 17651,
+ 17651,
+ 17651,
+ 17651,
+ 17669,
+ 17686,
+ 17699,
+ 17699,
+ 17699,
+ 17753,
+ 17766,
+ 17808,
+ 17808,
+ 17808,
+ 17823,
+ 17823,
+ 17835,
+ 17854,
+ 17862,
+ 17872,
+ 17893,
+ 17911,
+ 17929,
+ 17954,
+ 17967,
+ 18001,
+ 18018,
+ 18040,
+ 18048,
+ 18048,
+ 18068,
+ 18079,
+ 18092,
+ 18169,
+ 18185,
+ 18195,
+ 18228,
+ 18238,
+ 18290,
+ 18302,
+ 18320,
+ 18326,
+ 18331,
+ 18357,
+ 18382,
+ 18386,
+ 18386,
+ 18386,
18417,
- 18427,
- 18460,
- 18470,
- 18522,
- 18534,
- 18552,
- 18558,
- 18563,
- 18589,
- 18614,
- 18618,
- 18618,
- 18618,
- 18649,
- 18665,
- 18733,
- 18751,
- 18768,
- 18778,
- 18796,
- 18816,
- 18831,
- 18855,
- 18869,
- 18882,
- 18908,
- 18928,
- 18944,
- 18944,
- 18952,
- 18957,
- 18986,
- 19038,
- 19050,
- 19055,
- 19068,
- 19076,
- 19086,
- 19146,
- 19172,
- 19179,
- 19210,
- 19222,
- 19239,
- 19261,
- 19276,
- 19291,
- 19291,
- 19291,
- 19291,
- 19299,
- 19316,
- 19328,
- 19343,
- 19350,
- 19366,
- 19374,
- Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.