gitextract_y0_euu71/ ├── .eslintrc.js ├── .gitignore ├── LICENCE ├── README.DEV.md ├── README.md ├── articles/ │ └── printed_links_detection/ │ ├── printed_links_detection.md │ └── printed_links_detection.ru.md ├── package.json ├── public/ │ ├── index.css │ ├── index.html │ ├── manifest.json │ ├── models/ │ │ └── links_detector/ │ │ └── v1/ │ │ └── model.json │ ├── robots.txt │ ├── videos/ │ │ └── demo-black-720p.webm │ └── wasm/ │ ├── tfjs-backend-wasm-simd.wasm │ ├── tfjs-backend-wasm-threaded-simd.wasm │ └── tfjs-backend-wasm.wasm ├── serve.json ├── src/ │ ├── components/ │ │ ├── App.tsx │ │ ├── Routes.tsx │ │ ├── elements/ │ │ │ ├── BoxesCanvas.tsx │ │ │ ├── DebugInfo.tsx │ │ │ ├── DetectedLinks.tsx │ │ │ ├── DetectedLinksPrefixes.tsx │ │ │ ├── LinksDetector.tsx │ │ │ ├── PerformanceMonitor.tsx │ │ │ └── PixelsCanvas.tsx │ │ ├── screens/ │ │ │ ├── DebugScreen.tsx │ │ │ ├── DemoScreen.tsx │ │ │ ├── DetectorScreen.tsx │ │ │ ├── HomeScreen.tsx │ │ │ └── NotFoundScreen.tsx │ │ └── shared/ │ │ ├── CameraStream.tsx │ │ ├── Demo.tsx │ │ ├── EnhancedRow.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── Footer.tsx │ │ ├── Grid.tsx │ │ ├── Header.tsx │ │ ├── HyperLink.tsx │ │ ├── Icon.tsx │ │ ├── LaunchButton.tsx │ │ ├── Logo.tsx │ │ ├── MainNavigation.tsx │ │ ├── Modal.tsx │ │ ├── ModalCloseButton.tsx │ │ ├── Notification.tsx │ │ ├── PageTitle.tsx │ │ ├── ProgressBar.tsx │ │ ├── Promo.tsx │ │ ├── Spinner.css │ │ ├── Spinner.tsx │ │ └── Template.tsx │ ├── configs/ │ │ ├── analytics.ts │ │ ├── detectionConfig.ts │ │ └── pwa.ts │ ├── constants/ │ │ ├── debug.ts │ │ ├── links.ts │ │ ├── page.ts │ │ ├── routes.ts │ │ └── style.ts │ ├── hooks/ │ │ ├── useGraphModel.ts │ │ ├── useLinksDetector.ts │ │ ├── useLogger.ts │ │ ├── usePageTitle.ts │ │ ├── useTesseract.ts │ │ └── useWindowSize.ts │ ├── icons/ │ │ ├── README.md │ │ └── index.ts │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── service-worker.ts │ ├── serviceWorkerRegistration.ts │ ├── setupTests.ts │ ├── styles/ │ │ └── index.css │ └── utils/ │ ├── analytics.ts │ ├── debug.ts │ ├── graphModel.ts │ ├── image.ts │ ├── logger.ts │ ├── numbers.ts │ ├── profiler.ts │ ├── routes.ts │ ├── tesseract.ts │ └── types.ts ├── tailwind.config.js └── tsconfig.json