gitextract_6t44zbop/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── Contents/ │ ├── Info.plist │ ├── PkgInfo │ └── Resources/ │ ├── Base.lproj/ │ │ ├── MainMenu.nib │ │ ├── RMWindowController.nib │ │ ├── XprobeConsole.nib │ │ └── XprobePluginMenuController.nib │ ├── Credits.rtf │ ├── InjectionBusy.tif │ ├── InjectionError.tif │ ├── InjectionIdle.tif │ ├── InjectionOK.tif │ ├── LICENSE │ ├── README.md │ ├── SwiftTrace.h │ ├── fishhook.h │ ├── graph.gv │ └── log.html ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── HotReloading/ │ │ ├── DeviceInjection.swift │ │ ├── DynamicCast.swift │ │ ├── FileWatcher.swift │ │ ├── InjectionClient.swift │ │ ├── InjectionStats.swift │ │ ├── ObjcInjection.swift │ │ ├── ReducerInjection.swift │ │ ├── StandaloneInjection.swift │ │ ├── SwiftEval.swift │ │ ├── SwiftInjection.swift │ │ ├── SwiftInterpose.swift │ │ ├── SwiftKeyPath.swift │ │ ├── SwiftSweeper.swift │ │ ├── UnhidingEval.swift │ │ └── Vaccine.swift │ ├── HotReloadingGuts/ │ │ ├── ClientBoot.mm │ │ ├── SimpleSocket.mm │ │ ├── Unhide.mm │ │ └── include/ │ │ ├── InjectionClient.h │ │ ├── SimpleSocket.h │ │ └── UserDefaults.h │ ├── injectiond/ │ │ ├── AppDelegate.swift │ │ ├── DeviceServer.swift │ │ ├── Experimental.swift │ │ ├── InjectionServer.swift │ │ ├── UpdateCheck.swift │ │ └── main.swift │ └── injectiondGuts/ │ ├── SignerService.m │ └── include/ │ ├── SignerService.h │ └── Xcode.h ├── copy_bundle.sh ├── fix_previews.sh └── start_daemon.sh