gitextract_nh3e0iid/ ├── CHANGELOG.md ├── LICENSE ├── LOCALIZATION.md ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── requirements.txt ├── setup.py ├── src/ │ └── bcsfe/ │ ├── __init__.py │ ├── __main__.py │ ├── cli/ │ │ ├── __init__.py │ │ ├── color.py │ │ ├── dialog_creator.py │ │ ├── edits/ │ │ │ ├── __init__.py │ │ │ ├── aku_realm.py │ │ │ ├── basic_items.py │ │ │ ├── cat_editor.py │ │ │ ├── clear_tutorial.py │ │ │ ├── enemy_editor.py │ │ │ ├── event_tickets.py │ │ │ ├── fixes.py │ │ │ ├── map.py │ │ │ ├── max_all.py │ │ │ ├── rare_ticket_trade.py │ │ │ └── storage.py │ │ ├── feature_handler.py │ │ ├── file_dialog.py │ │ ├── main.py │ │ ├── recent_saves.py │ │ ├── save_management.py │ │ └── server_cli.py │ ├── core/ │ │ ├── __init__.py │ │ ├── country_code.py │ │ ├── crypto.py │ │ ├── game/ │ │ │ ├── __init__.py │ │ │ ├── battle/ │ │ │ │ ├── __init__.py │ │ │ │ ├── battle_items.py │ │ │ │ ├── cleared_slots.py │ │ │ │ ├── enemy.py │ │ │ │ └── slots.py │ │ │ ├── catbase/ │ │ │ │ ├── __init__.py │ │ │ │ ├── beacon_base.py │ │ │ │ ├── cat.py │ │ │ │ ├── drop_chara.py │ │ │ │ ├── gambling.py │ │ │ │ ├── gatya.py │ │ │ │ ├── gatya_item.py │ │ │ │ ├── item_pack.py │ │ │ │ ├── login_bonuses.py │ │ │ │ ├── matatabi.py │ │ │ │ ├── medals.py │ │ │ │ ├── mission.py │ │ │ │ ├── my_sale.py │ │ │ │ ├── nyanko_club.py │ │ │ │ ├── officer_pass.py │ │ │ │ ├── playtime.py │ │ │ │ ├── powerup.py │ │ │ │ ├── scheme_items.py │ │ │ │ ├── special_skill.py │ │ │ │ ├── stamp.py │ │ │ │ ├── talent_orbs.py │ │ │ │ ├── unlock_popups.py │ │ │ │ ├── upgrade.py │ │ │ │ └── user_rank_rewards.py │ │ │ ├── gamoto/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base_materials.py │ │ │ │ ├── cat_shrine.py │ │ │ │ ├── catamins.py │ │ │ │ ├── gamatoto.py │ │ │ │ └── ototo.py │ │ │ ├── localizable.py │ │ │ └── map/ │ │ │ ├── __init__.py │ │ │ ├── aku.py │ │ │ ├── challenge.py │ │ │ ├── chapters.py │ │ │ ├── dojo.py │ │ │ ├── enigma.py │ │ │ ├── event.py │ │ │ ├── ex_stage.py │ │ │ ├── gauntlets.py │ │ │ ├── item_reward_stage.py │ │ │ ├── legend_quest.py │ │ │ ├── map_names.py │ │ │ ├── map_option.py │ │ │ ├── map_reset.py │ │ │ ├── outbreaks.py │ │ │ ├── story.py │ │ │ ├── timed_score.py │ │ │ ├── tower.py │ │ │ ├── uncanny.py │ │ │ └── zero_legends.py │ │ ├── game_version.py │ │ ├── io/ │ │ │ ├── __init__.py │ │ │ ├── adb_handler.py │ │ │ ├── bc_csv.py │ │ │ ├── command.py │ │ │ ├── config.py │ │ │ ├── data.py │ │ │ ├── git_handler.py │ │ │ ├── json_file.py │ │ │ ├── path.py │ │ │ ├── root_handler.py │ │ │ ├── save.py │ │ │ ├── thread_helper.py │ │ │ ├── waydroid.py │ │ │ └── yaml.py │ │ ├── locale_handler.py │ │ ├── log.py │ │ ├── max_value_helper.py │ │ ├── server/ │ │ │ ├── __init__.py │ │ │ ├── client_info.py │ │ │ ├── event_data.py │ │ │ ├── game_data_getter.py │ │ │ ├── headers.py │ │ │ ├── managed_item.py │ │ │ ├── request.py │ │ │ ├── server_handler.py │ │ │ └── updater.py │ │ └── theme_handler.py │ ├── files/ │ │ ├── locales/ │ │ │ ├── en/ │ │ │ │ ├── core/ │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── files.properties │ │ │ │ │ ├── input.properties │ │ │ │ │ ├── locale.properties │ │ │ │ │ ├── main.properties │ │ │ │ │ ├── save.properties │ │ │ │ │ ├── server.properties │ │ │ │ │ ├── theme.properties │ │ │ │ │ └── updater.properties │ │ │ │ └── edits/ │ │ │ │ ├── bannable_items.properties │ │ │ │ ├── cats.properties │ │ │ │ ├── enemy.properties │ │ │ │ ├── fixes.properties │ │ │ │ ├── gambling.properties │ │ │ │ ├── gamototo.properties │ │ │ │ ├── gatya.properties │ │ │ │ ├── gold_pass.properties │ │ │ │ ├── items.properties │ │ │ │ ├── map.properties │ │ │ │ ├── medals.properties │ │ │ │ ├── missions.properties │ │ │ │ ├── playtime.properties │ │ │ │ ├── scheme_items.properties │ │ │ │ ├── special_skills.properties │ │ │ │ ├── talent_orbs.properties │ │ │ │ ├── treasures.properties │ │ │ │ └── user_rank.properties │ │ │ ├── tw/ │ │ │ │ ├── core/ │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── files.properties │ │ │ │ │ ├── input.properties │ │ │ │ │ ├── locale.properties │ │ │ │ │ ├── main.properties │ │ │ │ │ ├── save.properties │ │ │ │ │ ├── server.properties │ │ │ │ │ ├── theme.properties │ │ │ │ │ └── updater.properties │ │ │ │ ├── edits/ │ │ │ │ │ ├── bannable_items.properties │ │ │ │ │ ├── cats.properties │ │ │ │ │ ├── enemy.properties │ │ │ │ │ ├── fixes.properties │ │ │ │ │ ├── gambling.properties │ │ │ │ │ ├── gamototo.properties │ │ │ │ │ ├── gatya.properties │ │ │ │ │ ├── gold_pass.properties │ │ │ │ │ ├── items.properties │ │ │ │ │ ├── map.properties │ │ │ │ │ ├── medals.properties │ │ │ │ │ ├── missions.properties │ │ │ │ │ ├── playtime.properties │ │ │ │ │ ├── scheme_items.properties │ │ │ │ │ ├── special_skills.properties │ │ │ │ │ ├── talent_orbs.properties │ │ │ │ │ ├── treasures.properties │ │ │ │ │ └── user_rank.properties │ │ │ │ └── metadata.json │ │ │ └── vi/ │ │ │ ├── core/ │ │ │ │ ├── config.properties │ │ │ │ ├── files.properties │ │ │ │ ├── input.properties │ │ │ │ ├── locale.properties │ │ │ │ ├── main.properties │ │ │ │ ├── save.properties │ │ │ │ ├── server.properties │ │ │ │ ├── theme.properties │ │ │ │ └── updater.properties │ │ │ ├── edits/ │ │ │ │ ├── bannable_items.properties │ │ │ │ ├── cats.properties │ │ │ │ ├── enemy.properties │ │ │ │ ├── fixes.properties │ │ │ │ ├── gambling.properties │ │ │ │ ├── gamototo.properties │ │ │ │ ├── gatya.properties │ │ │ │ ├── gold_pass.properties │ │ │ │ ├── items.properties │ │ │ │ ├── map.properties │ │ │ │ ├── medals.properties │ │ │ │ ├── missions.properties │ │ │ │ ├── playtime.properties │ │ │ │ ├── scheme_items.properties │ │ │ │ ├── special_skills.properties │ │ │ │ ├── talent_orbs.properties │ │ │ │ ├── treasures.properties │ │ │ │ └── user_rank.properties │ │ │ └── metadata.json │ │ ├── max_values.json │ │ └── themes/ │ │ ├── default.json │ │ └── discord.json │ └── py.typed └── tests/ ├── __init__.py └── test_parse.py