gitextract_pue27tcn/ ├── .github/ │ └── workflows/ │ └── build.yaml ├── .gitignore ├── LICENSE ├── README.md ├── approf/ │ ├── App/ │ │ ├── AppDataSource.swift │ │ ├── AppDelegate.swift │ │ └── AppShortcuts.swift │ ├── App.swift │ ├── Assets.xcassets/ │ │ ├── About.imageset/ │ │ │ └── Contents.json │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── DocIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Gopple.imageset/ │ │ │ └── Contents.json │ │ └── jobs.imageset/ │ │ └── Contents.json │ ├── Component/ │ │ ├── Buttons.swift │ │ ├── CountDown.swift │ │ ├── FloatTopTrailing.swift │ │ ├── Symbols.swift │ │ ├── Texts.swift │ │ └── effcts/ │ │ ├── GradientBackgroundAnimation.swift │ │ ├── LightsOff.metal │ │ ├── Ripple.metal │ │ └── Ripple.swift │ ├── ContentView.swift │ ├── Exts.swift │ ├── Info.plist │ ├── Preview/ │ │ └── PerviewData.swift │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ ├── Process/ │ │ ├── Command.swift │ │ ├── CommandGenerate.swift │ │ ├── README.md │ │ ├── Whatever.swift │ │ └── pprof │ ├── State/ │ │ ├── AppStorage.swift │ │ ├── State.swift │ │ └── WKState.swift │ ├── SwiftUI AppKit/ │ │ ├── Color+Luminance.swift │ │ ├── Color.swift │ │ ├── Date.swift │ │ ├── Delay.swift │ │ ├── File.swift │ │ ├── Hover.swift │ │ ├── Image.swift │ │ ├── Other.swift │ │ ├── Shortcuts.swift │ │ ├── Toolbar.swift │ │ └── Tooltip.swift │ ├── Types/ │ │ ├── Others.swift │ │ ├── PProfBasic.swift │ │ └── PProfPresentation.swift │ ├── View/ │ │ ├── AboutView.swift │ │ ├── AppFeature.swift │ │ ├── DetailFeature.swift │ │ ├── DetailView.swift │ │ ├── DetectingHTTPView.swift │ │ ├── DragNDrop/ │ │ │ ├── DropAndAppendFeature.swift │ │ │ ├── DropAndAppendView.swift │ │ │ ├── DropAndImportFeature.swift │ │ │ ├── DropAndImportView.swift │ │ │ └── ImportView.swift │ │ ├── FailureFeature.swift │ │ ├── IdleFeature.swift │ │ ├── LaunchingFeature.swift │ │ ├── NavigaionView.swift │ │ ├── PProfRowView.swift │ │ ├── Setting/ │ │ │ ├── DefaultGzAppView.swift │ │ │ ├── GraphvizGuideView.swift │ │ │ └── SettingView.swift │ │ ├── ShortcutView.swift │ │ ├── SuccessFeature.swift │ │ ├── SuccessView.swift │ │ ├── UnderTheHood/ │ │ │ ├── ActionButtonView.swift │ │ │ ├── CommandPreviewView.swift │ │ │ ├── FileListView.swift │ │ │ ├── FileRowView.swift │ │ │ ├── ImportView.swift │ │ │ ├── NameFeature.swift │ │ │ ├── NameView.swift │ │ │ ├── NotificationFeature.swift │ │ │ ├── ShortcutsView.swift │ │ │ ├── StatusView.swift │ │ │ ├── TerminalView.swift │ │ │ ├── UTH.swift │ │ │ └── UnderTheHoodView.swift │ │ ├── WebIndicatorView.swift │ │ ├── WelcomeView.swift │ │ └── WkWrapper.swift │ ├── WindowController.swift │ └── pprof.entitlements ├── approf.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ └── approf.xcscheme ├── approfTests/ │ ├── Files/ │ │ ├── Dummy.swift │ │ └── b.pb │ ├── TestAppDropFiles.swift │ ├── TestDropFiles.swift │ ├── TestDropFilesLegacy.swift │ └── TestPlan.xctestplan ├── approfUITests/ │ ├── pprofUITests.swift │ └── pprofUITestsLaunchTests.swift └── ci_scripts/ ├── ci_post_clone.sh └── macros.json