gitextract_kxyr337y/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── Samra/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Backend/ │ │ ├── AppKitPrivates/ │ │ │ ├── AppKitPrivates.h │ │ │ └── module.modulemap │ │ ├── AssetCatalogInput.swift │ │ ├── ClosureMenuItem.swift │ │ ├── DetailItem.swift │ │ ├── Extensions.swift │ │ ├── Preferences.swift │ │ ├── RenditionDiff.swift │ │ └── UI Support/ │ │ ├── AssetCatalogDocument.swift │ │ ├── BasicLayoutAnchorsHolding.swift │ │ ├── QuickLooKPreviewSource.swift │ │ └── URLHandler.swift │ ├── Info.plist │ ├── Samra.entitlements │ ├── UI/ │ │ ├── AboutViewController.swift │ │ ├── ClosureBasedButton.swift │ │ ├── CollapseNotifierSplitViewController.swift │ │ ├── Diff/ │ │ │ ├── AssetCatalogDiffSelectionViewController.swift │ │ │ ├── DiffFilePreviewView.swift │ │ │ └── DiffListViewController.swift │ │ ├── MenuableCollectionView.swift │ │ ├── PastFilesListViewController.swift │ │ ├── Rendition/ │ │ │ ├── AssetCatalogDetailsView.swift │ │ │ ├── RenditionCollectionViewItem.swift │ │ │ ├── RenditionInformationView.swift │ │ │ ├── RenditionListViewController.swift │ │ │ ├── RenditionTypeHeaderView.swift │ │ │ └── TypesListViewController.swift │ │ ├── WelcomeScreenOption.swift │ │ └── WelcomeViewController.swift │ └── WindowController.swift ├── Samra.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── Samra.xcscheme │ └── extractutil.xcscheme └── extractutil/ └── main.swift