gitextract__mufejjy/ ├── .github/ │ └── workflow/ │ └── claude.yml ├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── AGENTS.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── RegEx+/ │ ├── About/ │ │ └── AboutView.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── AppIconForAboutView.imageset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── CheatSheet/ │ │ └── CheatSheetView.swift │ ├── CoreData+CloudKit/ │ │ ├── DataManager.swift │ │ ├── RegEx.swift │ │ └── RegExFetch.swift │ ├── Editor/ │ │ ├── EditorView.swift │ │ ├── EditorViewModel.swift │ │ └── RegExFlowView.swift │ ├── HomeView.swift │ ├── Info.plist │ ├── Library/ │ │ ├── LibraryItemView.swift │ │ ├── LibraryView+Data.swift │ │ └── LibraryView.swift │ ├── Localizable.xcstrings │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ ├── RegEx+.entitlements │ ├── RegEx.xcdatamodeld/ │ │ ├── .xccurrentversion │ │ └── RegEx.xcdatamodel/ │ │ └── contents │ ├── SceneDelegate.swift │ ├── Views/ │ │ ├── ActivityViewController.swift │ │ ├── RegExSyntaxView.swift │ │ ├── RegExTextView/ │ │ │ ├── MatchesTextView.swift │ │ │ ├── RegExSyntaxHighlighter.swift │ │ │ ├── RegExTextView.swift │ │ │ ├── ShortcutKeys.swift │ │ │ └── String+NSRange.swift │ │ ├── SafariView.swift │ │ └── SearchView.swift │ ├── de.lproj/ │ │ └── CheatSheet.plist │ ├── en.lproj/ │ │ └── CheatSheet.plist │ ├── es.lproj/ │ │ └── CheatSheet.plist │ ├── fr.lproj/ │ │ └── CheatSheet.plist │ ├── it.lproj/ │ │ └── CheatSheet.plist │ ├── ja.lproj/ │ │ └── CheatSheet.plist │ ├── ko.lproj/ │ │ └── CheatSheet.plist │ ├── nl.lproj/ │ │ └── CheatSheet.plist │ ├── pl.lproj/ │ │ └── CheatSheet.plist │ ├── zh-Hans.lproj/ │ │ └── CheatSheet.plist │ └── zh-Hant.lproj/ │ └── CheatSheet.plist ├── RegEx+.xcodeproj/ │ └── project.pbxproj ├── fastlane/ │ ├── Deliverfile │ ├── Fastfile │ └── metadata/ │ ├── copyright.txt │ ├── de-DE/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── en-US/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── es-ES/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── fr-FR/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── it/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── ja/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── nl-NL/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── pl/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ ├── secondary_second_sub_category.txt │ ├── zh-Hans/ │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ └── zh-Hant/ │ ├── apple_tv_privacy_policy.txt │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── promotional_text.txt │ ├── release_notes.txt │ ├── subtitle.txt │ └── support_url.txt └── mise.toml