File size: 432,618 Bytes
67e21ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 | image_path,gt_text,dataset_name,image_category,language,type_of_word,text_type
evarest_dataset/file4/English_words_test/word_0.png,HOSE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_1.png,FIRE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_2.png,REEL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_3.png,harir,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_4.png,khayt,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_5.png,CITY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_6.png,SNOW,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_7.png,CITY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_8.png,SEI,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_9.png,Works,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_10.png,2021,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_11.png,Bath&Body,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_12.png,ATM,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_13.png,PACK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_14.png,PYJAMAS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_15.png,FLAT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_16.png,YAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_17.png,DAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_18.png,SUN,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_19.png,CASHBACK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_20.png,WITH,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_21.png,THE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_22.png,BLUE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_23.png,GET,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_24.png,JOIN,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_25.png,OFFERS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_26.png,&,evarest,scene_text,Other,Other,typed
evarest_dataset/file4/English_words_test/word_27.png,UNLIMITED,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_28.png,REWARDS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_29.png,PROGRAM!,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_30.png,SHOP,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_31.png,THE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_32.png,BLUE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_33.png,EXCLUSIVE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_34.png,T,evarest,scene_text,English,Character,typed
evarest_dataset/file4/English_words_test/word_35.png,EXIT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_36.png,CAR,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_37.png,EXIT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_38.png,K2,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_39.png,P2,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_40.png,Fekri,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_41.png,Ahmed,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_42.png,Maria,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_43.png,St.,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_44.png,El,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_45.png,Beverages,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_46.png,GROCERY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_47.png,BUTCHERY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_48.png,Only,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_49.png,Staff,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_50.png,Downy,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_51.png,concentrate,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_52.png,10AM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_53.png,10PM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_54.png,10AM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_55.png,SATURDAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_56.png,10AM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_57.png,11PM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_58.png,FRIDAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_59.png,11PM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_60.png,THURSDAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_61.png,10PM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_62.png,10AM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_63.png,WEDNESDAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_64.png,10PM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_65.png,10AM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_66.png,TUESDAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_67.png,10PM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_68.png,10AM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_69.png,MONDAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_70.png,10PM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_71.png,10AM,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_72.png,SUNDAY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_73.png,OPEN,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_74.png,STORE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_75.png,NO,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_76.png,SMOKING,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_77.png,Calm.,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_78.png,Be,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_79.png,Snug.,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_80.png,Be,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_81.png,Be,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_82.png,Relaxed.,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_83.png,SHORT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_84.png,FREE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_85.png,SHORTS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_86.png,MARKS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_87.png,&,evarest,scene_text,Other,Other,typed
evarest_dataset/file4/English_words_test/word_88.png,1,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_89.png,SPENCER,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_90.png,TO,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_91.png,DOWNLOAD,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_92.png,SCAN,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_93.png,EGP,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_94.png,DRESS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_95.png,LANDING,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_96.png,FIRE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_97.png,REEL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_98.png,HOSE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_99.png,FIRE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_100.png,VALVE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_101.png,EXTINGUISHER,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_102.png,EXIT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_103.png,Mall,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_104.png,Drop-Off,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_105.png,Rd,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_106.png,(heliopolis),evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_107.png,Ring,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_108.png,Parking,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_109.png,Mall,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_110.png,Mall,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_111.png,The,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_112.png,SAMSUNG,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_113.png,Cadbury,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_114.png,30,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_115.png,30,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_116.png,16367,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_117.png,NOW,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_118.png,LEASING,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_119.png,XLV,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_120.png,14,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_121.png,11,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_122.png,mg,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_123.png,vitamin,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_124.png,C,evarest,scene_text,English,Character,typed
evarest_dataset/file4/English_words_test/word_125.png,vitam,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_126.png,tablets,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_127.png,Redonox,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_128.png,15,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_129.png,Redoxon,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_130.png,1000,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_131.png,5%,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_132.png,SHOW,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_133.png,FURNITURE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_134.png,INTERNATIONAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_135.png,CAIRO,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_136.png,Le,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_137.png,Marche,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_138.png,Cairo,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_139.png,19691,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_140.png,M71CE,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_141.png,New,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_142.png,AlRehab,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_143.png,365,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_144.png,-1,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_145.png,Kayan.group.realestate,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_146.png,1201966665,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_147.png,1000065964,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_148.png,2,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_149.png,19793,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_150.png,QAWAFIL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_151.png,%,evarest,scene_text,Other,Other,typed
evarest_dataset/file4/English_words_test/word_152.png,6,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_153.png,50,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_154.png,90,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_155.png,St,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_156.png,Suez,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_157.png,Rd,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_158.png,5,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_159.png,Settlement,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_160.png,SPARK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_161.png,NGK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_162.png,NGK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_163.png,R,evarest,scene_text,English,Character,typed
evarest_dataset/file4/English_words_test/word_164.png,PLUGS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_165.png,NGK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_166.png,1,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_167.png,City,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_168.png,Maadi,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_169.png,irport,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_170.png,Suez,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_171.png,early,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_172.png,year,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_173.png,Rd.,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_174.png,Nasr,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_175.png,Honey,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_176.png,SWISS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_177.png,Citrus,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_178.png,1886,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_179.png,BRAND,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_180.png,SINCE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_181.png,Hero,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_182.png,SIMPLE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_183.png,3,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_184.png,STEPS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_185.png,VOOOM,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_186.png,1000,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_187.png,19793,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_188.png,www.qawafil-eg.com,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_189.png,QAWAFIL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_190.png,EGYPT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_191.png,OF,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_192.png,BANK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_193.png,NATIONAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_194.png,PLATINUM,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_195.png,PLATINUM,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_196.png,NATIONAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_197.png,BANK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_198.png,OF,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_199.png,EGYPT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_200.png,0,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_201.png,NATIONAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_202.png,BANK,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_203.png,OF,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_204.png,EGYPT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_205.png,0,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_206.png,0,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_207.png,titanium,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_208.png,0,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_209.png,00/00,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_210.png,00/00,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_211.png,MasterCard,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_212.png,Debit,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_213.png,LIFE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_214.png,MISR,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_215.png,INSURANCE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_216.png,VISA,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_217.png,EXIT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_218.png,Street,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_219.png,45,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_220.png,Miyami,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_221.png,Rashid,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_222.png,Damietta,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_223.png,45,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_224.png,Burg,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_225.png,elArab,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_226.png,Airport,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_227.png,Sedi,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_228.png,Krer,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_229.png,Rashi,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_230.png,Alexandria,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_231.png,Agr.,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_232.png,Apyss,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_233.png,Rashid,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_234.png,&,evarest,scene_text,Other,Other,typed
evarest_dataset/file4/English_words_test/word_235.png,IMPORT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_236.png,CAIRO,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_237.png,CO,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_238.png,MOWIENA,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_239.png,GABER,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_240.png,EXPORT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_241.png,CO,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_242.png,TOLIP,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_243.png,BORG,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_244.png,ELARAB,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_245.png,HOTEL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_246.png,Cairo,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_247.png,13,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_248.png,Rd,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_249.png,Alexandria,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_250.png,Desert,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_251.png,Rd,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_252.png,6,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_253.png,Matrouh,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_254.png,Alexandria,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_255.png,Coast,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_256.png,50%,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_257.png,CLEARANCE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_258.png,SALE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_259.png,SALE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_260.png,50%,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_261.png,CLEARANCE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_262.png,C48,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_263.png,C48,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_264.png,Accessories,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_265.png,Computer,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_266.png,199,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_267.png,No,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_268.png,smoking,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_269.png,Bakery,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_270.png,ATM,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_271.png,arab,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_272.png,african,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_273.png,international,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_274.png,bank,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_275.png,EGYPT-JAPAN,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_276.png,AND,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_277.png,TECHNOLOGY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_278.png,SCIENCE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_279.png,OF,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_280.png,UNIVERSITY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_281.png,A215,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_282.png,STRA,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_283.png,Applications,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_284.png,and,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_285.png,of,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_286.png,Scientific,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_287.png,Research,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_288.png,Technological,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_289.png,CITY),evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_290.png,Offices,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_291.png,Academic,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_292.png,Rooms,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_293.png,Rooms,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_294.png,Storage,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_295.png,Study,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_296.png,Stations,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_297.png,Work,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_298.png,Meeting,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_299.png,B157,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_300.png,SYSYTEM,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_301.png,cwwf,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_302.png,Florenza,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_303.png,MANAGEMENT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_304.png,9001,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_305.png,2015,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_306.png,QUALITY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_307.png,ISO,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_308.png,3,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_309.png,OHSAS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_310.png,2007,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_311.png,18001,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_312.png,MADE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_313.png,home,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_314.png,made,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_315.png,daily,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_316.png,HOME,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_317.png,DAILY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_318.png,HOME,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_319.png,DAILY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_320.png,MADE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_321.png,3,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_322.png,CLEARANCE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_323.png,1,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_324.png,MyCLUB,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_325.png,Carrefour,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_326.png,2,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_327.png,off,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_328.png,50%,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_329.png,CLEARANCE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_330.png,to,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_331.png,Winter,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_332.png,Collection,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_333.png,up,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_334.png,on,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_335.png,Lombardy,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_336.png,espnoul,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_337.png,Barrio,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_338.png,Cafe,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_339.png,Carrefour,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_340.png,Zone,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_341.png,C,evarest,scene_text,English,Character,typed
evarest_dataset/file4/English_words_test/word_342.png,No,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_343.png,mall,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_344.png,Orouba,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_345.png,to,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_346.png,Smoking,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_347.png,Welcome,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_348.png,Orouba,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_349.png,Mall,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_350.png,of,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_351.png,Axis,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_352.png,Airport,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_353.png,International,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_354.png,Alarab,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_355.png,Alexandria,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_356.png,Borg,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_357.png,Army,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_358.png,Egyptian,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_359.png,Cairo,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_360.png,Reconstruction,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_361.png,Stadium,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_362.png,1000,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_363.png,5,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_364.png,20,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_365.png,Tanta,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_366.png,Money,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_367.png,100,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_368.png,is,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_369.png,Time,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_370.png,Print,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_371.png,Digital,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_372.png,3D,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_373.png,3D,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_374.png,5G,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_375.png,OPPO,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_376.png,65W,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_377.png,2,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_378.png,Super,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_379.png,Reno5,evarest,scene_text,English,Mixed,typed
evarest_dataset/file4/English_words_test/word_380.png,VOOC,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_381.png,1020418658,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_382.png,TADAWI,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_383.png,HOSPITAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_384.png,FOR,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_385.png,SMART,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_386.png,SEM,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_387.png,CONTRACTING,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_388.png,GENERAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_389.png,contracting,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_390.png,To,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_391.png,Governorate,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_392.png,Head,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_393.png,Quarter,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_394.png,Accessories,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_395.png,Electricity,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_396.png,KV,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_397.png,11,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_398.png,Substation,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_399.png,Same,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_400.png,quality,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_401.png,we,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_402.png,manufacture,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_403.png,all,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_404.png,the,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_405.png,world,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_406.png,over,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_407.png,wherever,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_408.png,Spinneys,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_409.png,SUPER,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_410.png,CHEESE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_411.png,PRICE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_412.png,BEST,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_413.png,16005,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_414.png,DEALS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_415.png,ONLINE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_416.png,DISCOUNT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_417.png,spinneys-egypt.com,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_418.png,95,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_419.png,chillout,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_420.png,KIDS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_421.png,WAIKIKI,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_422.png,LC,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_423.png,UNDERWEAR,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_424.png,MATERNITY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_425.png,MEN,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_426.png,BABY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_427.png,UNDERWEAR,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_428.png,WOMEN,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_429.png,TECH,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_430.png,B,evarest,scene_text,English,Character,typed
evarest_dataset/file4/English_words_test/word_431.png,19966,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_432.png,KiDS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_433.png,GEOGRAPHIC,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_434.png,NATIONAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_435.png,Faculty,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_436.png,AGRICULTURE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_437.png,of,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_438.png,in-store,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_439.png,maxfashion.com,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_440.png,online,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_441.png,Shop,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_442.png,Collect,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_443.png,&,evarest,scene_text,Other,Other,typed
evarest_dataset/file4/English_words_test/word_444.png,Click,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_445.png,Point,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_446.png,Collection,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_447.png,collect,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_448.png,maxfashion.com,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_449.png,For,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_450.png,1090705757,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_451.png,Rent,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_452.png,EXIT,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_453.png,store,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_454.png,is,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_455.png,This,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_456.png,surveillance,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_457.png,electronic,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_458.png,under,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_459.png,ELECTRICAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_460.png,HAZARD,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_461.png,Post,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_462.png,Office,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_463.png,University,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_464.png,Women,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_465.png,8,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_466.png,Boys,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_467.png,SALE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_468.png,60,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_469.png,From,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_470.png,Egp,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_471.png,16,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_472.png,2,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_473.png,GET,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_474.png,2,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_475.png,1,evarest,scene_text,English,Number,typed
evarest_dataset/file4/English_words_test/word_476.png,BUY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_477.png,FREE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_478.png,KiDS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_479.png,GEOGRAPHIC,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_480.png,NATIONAL,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_481.png,Vox,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_482.png,THE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_483.png,FOR,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_484.png,A,evarest,scene_text,English,Character,typed
evarest_dataset/file4/English_words_test/word_485.png,Cinema,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_486.png,FOR,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_487.png,MARKED,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_488.png,BY,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_489.png,BEAN,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_490.png,LOVE,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_491.png,MAKEUP,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_492.png,Egypt,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_493.png,Ski,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_494.png,EVER,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_495.png,STARBUCKS,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_496.png,Plaza,evarest,scene_text,English,String,typed
evarest_dataset/file4/English_words_test/word_497.png,Rd,evarest,scene_text,English,String,typed
evarest_dataset/file3/Arabic_words_test/word_0.png,بكرة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1.png,خرطوم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_2.png,حريق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_3.png,جمله,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_4.png,اسباني),evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_5.png,(تركي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_6.png,الراقيه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_7.png,وقطاعي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_8.png,للمفروشات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_9.png,عاصمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_10.png,مدينة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_11.png,الثلج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_12.png,التلج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_13.png,تنزيلات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_14.png,كبرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_15.png,باث,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_16.png,وركس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_17.png,بودي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_18.png,غسل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_19.png,يديك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_20.png,أو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_21.png,بتعقيم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_22.png,دائماً,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_23.png,قم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_24.png,٥,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_25.png,أجهزة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_26.png,الآلي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_27.png,الصراف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_28.png,استخدام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_29.png,أو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_30.png,بعد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_31.png,الخ.,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_32.png,التسوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_33.png,عربات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_34.png,بدلاً,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_35.png,البطاقات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_36.png,باستخدام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_37.png,ادفع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_38.png,٦,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_39.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_40.png,ذلك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_41.png,أمكن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_42.png,كلما,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_43.png,النقد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_44.png,كمامة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_45.png,ارتداء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_46.png,٧,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_47.png,يجب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_48.png,المول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_49.png,لدخول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_50.png,الوجه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_51.png,زيارتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_52.png,وطوال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_53.png,ملابس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_54.png,للنوم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_55.png,محدود,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_56.png,غير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_57.png,عروض,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_58.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_59.png,الأزرق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_60.png,الزرقاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_61.png,المكافآت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_62.png,ضم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_63.png,الي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_64.png,للحصول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_65.png,برنامج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_66.png,تسوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_67.png,مع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_68.png,نقدي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_69.png,حصرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_70.png,واسترداد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_71.png,مخرج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_72.png,مخرج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_73.png,سيارات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_74.png,احمد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_75.png,ش,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_76.png,المارية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_77.png,فكرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_78.png,المشروبات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_79.png,جزارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_80.png,غذائية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_81.png,مواد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_82.png,للموظفين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_83.png,فقط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_84.png,المركز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_85.png,إعادة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_86.png,مقترح,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_87.png,بيع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_88.png,سعر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_89.png,أعلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_90.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_91.png,بناء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_92.png,ممنوع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_93.png,الاثنين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_94.png,التدخين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_95.png,الجمعه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_96.png,الاربعاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_97.png,الثلاثاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_98.png,الاحد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_99.png,السبت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_100.png,الخميس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_101.png,اكسسوارات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_102.png,نسائية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_103.png,مسترخيا.,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_104.png,كن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_105.png,هادئ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_106.png,كن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_107.png,دافئاً,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_108.png,كن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_109.png,سروال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_110.png,قصير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_111.png,شورتات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_112.png,و,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_113.png,سبنسر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_114.png,ماركس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_115.png,للتحميل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_116.png,أمسح,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_117.png,فستان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_118.png,بكرة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_119.png,خرطوم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_120.png,حريق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_121.png,حريق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_122.png,محبس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_123.png,طفاية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_124.png,حريق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_125.png,مخرج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_126.png,المول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_127.png,إنتظار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_128.png,الجديدة),evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_129.png,(مصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_130.png,الدائري,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_131.png,الطريق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_132.png,المول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_133.png,سيارات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_134.png,إنتظار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_135.png,مؤقت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_136.png,المول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_137.png,كسبان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_138.png,كل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_139.png,يوم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_140.png,ممكن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_141.png,تكسب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_142.png,هدايا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_143.png,سنة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_144.png,جوه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_145.png,اغلفة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_146.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_147.png,الآن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_148.png,الاستئجار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_149.png,يمكنكم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_150.png,المركزي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_151.png,الجهاز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_152.png,للمحاسبات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_153.png,مناعتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_154.png,عزز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_155.png,التجمع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_156.png,الخامس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_157.png,باك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_158.png,مارس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_159.png,مركز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_160.png,مصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_161.png,للمعارض,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_162.png,الدولية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_163.png,محور,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_164.png,المشير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_165.png,فيتامين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_166.png,إلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_167.png,القاهرة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_168.png,الرحاب(1),evarest,scene_text,Arabic,Mixed,typed
evarest_dataset/file3/Arabic_words_test/word_169.png,العصرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_170.png,مصطفى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_171.png,الجديدة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_172.png,معاطف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_173.png,خطوط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_174.png,مستقيمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_175.png,واسعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_176.png,مريحة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_177.png,ذات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_178.png,الرابع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_179.png,امتلك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_180.png,الرفاهية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_181.png,للإستثمار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_182.png,برج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_183.png,العقاري,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_184.png,كيان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_185.png,الهنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_186.png,كنتاكى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_187.png,شارع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_188.png,البحر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_189.png,أعلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_190.png,مطعم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_191.png,الدور,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_192.png,قوافل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_193.png,شقتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_194.png,ع,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_195.png,النادي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_196.png,العقارية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_197.png,سنوات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_198.png,محلك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_199.png,شركتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_200.png,الإدارية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_201.png,أقساط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_202.png,الوزارات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_203.png,بالعاصمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_204.png,وسط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_205.png,حتى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_206.png,حى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_207.png,عيادتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_208.png,٢١٤,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_209.png,الكهربائية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_210.png,للأجهزة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_211.png,الآن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_212.png,بمناسبة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_213.png,عيد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_214.png,شهر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_215.png,مارس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_216.png,طول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_217.png,يصل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_218.png,إلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_219.png,خصم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_220.png,سحوبات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_221.png,كفر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_222.png,الزيات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_223.png,فى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_224.png,الأم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_225.png,المصريين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_226.png,الجديدة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_227.png,الجيزة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_228.png,إجبارى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_229.png,القاهرة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_230.png,نفق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_231.png,الاتوستراد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_232.png,السخنة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_233.png,ط,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_234.png,المقطم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_235.png,ط,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_236.png,إجبارى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_237.png,الجولف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_238.png,المعادى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_239.png,علوى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_240.png,كوبرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_241.png,حلوان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_242.png,ش,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_243.png,السويس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_244.png,ط,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_245.png,التسعين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_246.png,الخامس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_247.png,التجمع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_248.png,واجهتين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_249.png,والتوكيلات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_250.png,مخصص,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_251.png,للشركات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_252.png,المحل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_253.png,١١١٩٩٩٥٠٩٥,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_254.png,82م,evarest,scene_text,Arabic,Mixed,typed
evarest_dataset/file3/Arabic_words_test/word_255.png,مساحته,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_256.png,المحل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_257.png,للإيجار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_258.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_259.png,جميع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_260.png,حرارى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_261.png,مجال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_262.png,عمر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_263.png,يابانية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_264.png,اليابانية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_265.png,بوجيهات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_266.png,شرارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_267.png,إشعال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_268.png,مؤكدة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_269.png,الظروف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_270.png,١٠٠%,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_271.png,ذات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_272.png,لجميع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_273.png,السيارات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_274.png,البوجيه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_275.png,الأصلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_276.png,واسع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_277.png,أنواع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_278.png,طويل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_279.png,تحت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_280.png,تعمل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_281.png,السويس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_282.png,ط,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_283.png,المعادى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_284.png,مدينة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_285.png,نصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_286.png,سطحى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_287.png,علوى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_288.png,مطار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_289.png,مساحات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_290.png,العقارية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_291.png,للإستثمار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_292.png,القبطان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_293.png,القبطان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_294.png,سكني,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_295.png,مختلفة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_296.png,تجاري,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_297.png,برج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_298.png,ش.م.م,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_299.png,فيو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_300.png,القبطان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_301.png,قريباً,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_302.png,والتنمية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_303.png,طرائف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_304.png,حيل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_305.png,ألعاب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_306.png,و,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_307.png,و,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_308.png,زهور,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_309.png,عسل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_310.png,الموالح,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_311.png,فارس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_312.png,التجمع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_313.png,عايز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_314.png,للخلف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_315.png,يسلك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_316.png,النفق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_317.png,الدوران,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_318.png,٣,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_319.png,خطوات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_320.png,بسيطة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_321.png,لحمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_322.png,هندى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_323.png,هندى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_324.png,مجانى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_325.png,أصلها,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_326.png,هندى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_327.png,حدوتة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_328.png,التوصيل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_329.png,كل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_330.png,خميس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_331.png,فوووم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_332.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_333.png,غداك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_334.png,حكايتنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_335.png,جديدة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_336.png,مزارعنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_337.png,مزارع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_338.png,بالخضار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_339.png,طاجن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_340.png,وجمعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_341.png,السويس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_342.png,متر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_343.png,الشروق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_344.png,ع,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_345.png,العقارية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_346.png,شقتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_347.png,قوافل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_348.png,النادي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_349.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_350.png,تبرعك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_351.png,محتاج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_352.png,لكل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_353.png,هيوصل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_354.png,مع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_355.png,البنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_356.png,المصرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_357.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_358.png,المصرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_359.png,البنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_360.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_361.png,مصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_362.png,كافة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_363.png,تضمن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_364.png,الذكية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_365.png,الشريحة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_366.png,خلال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_367.png,الابتكار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_368.png,سبل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_369.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_370.png,تكنولوجيا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_371.png,وتعزيز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_372.png,الامان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_373.png,المصرفية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_374.png,تعاملاتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_375.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_376.png,الامان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_377.png,لك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_378.png,يدعوك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_379.png,المصرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_380.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_381.png,البنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_382.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_383.png,إلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_384.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_385.png,بلاتينم),evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_386.png,(الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_387.png,أجلك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_388.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_389.png,خصيصا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_390.png,صممت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_391.png,مصرفية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_392.png,تجربة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_393.png,تجارى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_394.png,مصلحة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_395.png,سجل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_396.png,تجارى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_397.png,رقم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_398.png,-١,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_399.png,أول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_400.png,سجل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_401.png,السجل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_402.png,التجارى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_403.png,دلوقتى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_404.png,بوينتس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_405.png,مع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_406.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_407.png,بكاش,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_408.png,تقدر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_409.png,نقاطك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_410.png,تبدل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_411.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_412.png,٥٥,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_413.png,الى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_414.png,تصل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_415.png,المصرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_416.png,يوم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_417.png,الإنترنت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_418.png,عبر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_419.png,لاآمن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_420.png,والتسوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_421.png,ودوليا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_422.png,محليا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_423.png,النقدي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_424.png,والسحب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_425.png,المشتريات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_426.png,البطاقات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_427.png,باستخدام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_428.png,التمتع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_429.png,البنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_430.png,فقط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_431.png,المشتريات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_432.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_433.png,فترة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_434.png,واطول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_435.png,مميز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_436.png,مدين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_437.png,بالاتى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_438.png,وتمتع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_439.png,المصرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_440.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_441.png,البنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_442.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_443.png,تيتانيوم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_444.png,ماستركارد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_445.png,بطاقة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_446.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_447.png,أحصل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_448.png,البنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_449.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_450.png,المصرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_451.png,سماح,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_452.png,سعر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_453.png,عائد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_454.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_455.png,وخصومات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_456.png,مجانية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_457.png,سحب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_458.png,خدمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_459.png,تسوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_460.png,استخدام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_461.png,ودولي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_462.png,مخرج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_463.png,(فون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_464.png,للخصم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_465.png,المباشر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_466.png,الأهلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_467.png,البنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_468.png,انترنت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_469.png,نصية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_470.png,رسائل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_471.png,بطاقات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_472.png,محلي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_473.png,دفع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_474.png,الفواتير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_475.png,فون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_476.png,كاش,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_477.png,كاش),evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_478.png,المصرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_479.png,نقدي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_480.png,مصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_481.png,لتأمينات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_482.png,يبدأ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_483.png,بكره,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_484.png,النهارده,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_485.png,الحياة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_486.png,مقترحات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_487.png,محافظة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_488.png,المنطقة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_489.png,الصناعية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_490.png,كفرالشيخ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_491.png,المعدية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_492.png,رشيد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_493.png,ميامى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_494.png,دمياط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_495.png,شارع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_496.png,كرير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_497.png,سيدى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_498.png,رشيد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_499.png,الزراعى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_500.png,ط,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_501.png,مطار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_502.png,ابيس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_503.png,إسكندرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_504.png,العرب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_505.png,للخلف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_506.png,برج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_507.png,شركة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_508.png,جابر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_509.png,والتصدير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_510.png,وشركاه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_511.png,موينه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_512.png,للإستيراد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_513.png,القاهرة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_514.png,برج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_515.png,العرب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_516.png,برج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_517.png,فرحك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_518.png,توليب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_519.png,فندق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_520.png,العرب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_521.png,توليب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_522.png,الطلق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_523.png,الهواء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_524.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_525.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_526.png,الصحراوى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_527.png,القاهرة/اسكندرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_528.png,ط.,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_529.png,كم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_530.png,الساحلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_531.png,اسكندرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_532.png,ط.,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_533.png,كم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_534.png,مطروح,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_535.png,الشتاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_536.png,تصفيات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_537.png,كميات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_538.png,كميات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_539.png,تصفيات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_540.png,محدودة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_541.png,الشتاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_542.png,محدودة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_543.png,الضمنية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_544.png,البطاقة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_545.png,شارع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_546.png,المجاورة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_547.png,مسجد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_548.png,الفتح,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_549.png,الأول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_550.png,الرابعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_551.png,الإسلامى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_552.png,شارع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_553.png,الأول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_554.png,سوزان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_555.png,الحى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_556.png,المجاورة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_557.png,الرابعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_558.png,الحى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_559.png,مبارك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_560.png,مدرسة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_561.png,إحترس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_562.png,السرعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_563.png,هدي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_564.png,منطقة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_565.png,مدارس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_566.png,الإنتظار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_567.png,جاردن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_568.png,بالإستغفار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_569.png,دقائق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_570.png,روز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_571.png,إملأها,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_572.png,مستلزمات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_573.png,كمبيوتر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_574.png,التدخين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_575.png,ممنوع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_576.png,مخبوزات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_577.png,المخبوزات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_578.png,قسم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_579.png,مشروعات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_580.png,احدى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_581.png,المحمية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_582.png,الشركة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_583.png,للزراعات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_584.png,الخدمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_585.png,الوطنية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_586.png,غذاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_587.png,صحي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_588.png,امن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_589.png,الوطنية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_590.png,شركات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_591.png,جهاز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_592.png,خليك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_593.png,وخضرواتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_594.png,أزرع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_595.png,بنفسك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_596.png,اعشابك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_597.png,وامنة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_598.png,طازجة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_599.png,اورجنيك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_600.png,دائما,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_601.png,زراعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_602.png,المصري,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_603.png,الطعام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_604.png,بنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_605.png,أساس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_606.png,الطعام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_607.png,الحياة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_608.png,العربى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_609.png,الدولى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_610.png,البنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_611.png,الافريقى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_612.png,للعلوم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_613.png,المصرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_614.png,التكنولوجيا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_615.png,الجامعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_616.png,و,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_617.png,اليابانية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_618.png,-٢,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_619.png,المحلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_620.png,المجتمع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_621.png,الثانى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_622.png,مجاورة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_623.png,-٣,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_624.png,الأول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_625.png,محاورة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_626.png,الحى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_627.png,يعقوب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_628.png,شارع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_629.png,الدكتور,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_630.png,مجدى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_631.png,نجيب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_632.png,محمد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_633.png,الثانى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_634.png,شارع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_635.png,الحى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_636.png,العتيق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_637.png,المسجد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_638.png,الأول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_639.png,الهوارى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_640.png,مهيد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_641.png,شارع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_642.png,الحى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_643.png,الشهيد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_644.png,محور,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_645.png,الأبحاث,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_646.png,البحث,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_647.png,العلمي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_648.png,الهيئة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_649.png,العامة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_650.png,لمدينة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_651.png,وزارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_652.png,العلمية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_653.png,التكنولوجية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_654.png,والتطبيقات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_655.png,الإجتماعات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_656.png,مكاتب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_657.png,عمل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_658.png,مكاتب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_659.png,معامل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_660.png,مخازن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_661.png,دراسة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_662.png,غرف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_663.png,أكاديمية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_664.png,الذكية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_665.png,الإسكندرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_666.png,القرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_667.png,جامعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_668.png,الجامعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_669.png,المصرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_670.png,اليابانية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_671.png,عبد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_672.png,المجاورة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_673.png,الأول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_674.png,الحى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_675.png,الناصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_676.png,محور,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_677.png,التاسعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_678.png,جمال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_679.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_680.png,الأخشاب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_681.png,الأثاث,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_682.png,شهادة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_683.png,منتجات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_684.png,طبقا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_685.png,الشركه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_686.png,فروعنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_687.png,للشروط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_688.png,والاحكام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_689.png,التوصيل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_690.png,مجانا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_691.png,سنين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_692.png,ضمان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_693.png,و,evarest,scene_text,Arabic,Character,typed
evarest_dataset/file3/Arabic_words_test/word_694.png,غرفة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_695.png,صناعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_696.png,يومياً,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_697.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_698.png,تحضر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_699.png,متجرنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_700.png,متجرنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_701.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_702.png,يوميا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_703.png,تحضر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_704.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_705.png,آمنة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_706.png,٢,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_707.png,متر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_708.png,نفسك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_709.png,والآخرين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_710.png,احم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_711.png,مسافة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_712.png,حافظ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_713.png,١٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_714.png,جنيه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_715.png,اجمع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_716.png,تصفيات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_717.png,نقاط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_718.png,فوراً!,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_719.png,الخاصة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_720.png,بك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_721.png,واستبدل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_722.png,تسوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_723.png,استبدل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_724.png,تسوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_725.png,كارفور,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_726.png,١٠٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_727.png,نقطة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_728.png,ملاهى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_729.png,المسجد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_730.png,فجنون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_731.png,الإدارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_732.png,دورة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_733.png,المياة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_734.png,ترفيهية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_735.png,وتقيداً,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_736.png,بشأن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_737.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_738.png,مول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_739.png,أولويتنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_740.png,وسلامة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_741.png,سلامتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_742.png,الكمامة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_743.png,العروبة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_744.png,ممنوع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_745.png,دون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_746.png,يمنع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_747.png,التدخين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_748.png,فى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_749.png,إرتداء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_750.png,منا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_751.png,حرصاً,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_752.png,موظفينا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_753.png,وسلامة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_754.png,سلامتكم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_755.png,الكرام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_756.png,عملائنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_757.png,مول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_758.png,العروبة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_759.png,كورونا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_760.png,مع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_761.png,فيروس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_762.png,دخول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_763.png,أسرتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_764.png,ومنع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_765.png,انتشاره,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_766.png,بتعليمات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_767.png,الدولة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_768.png,التعامل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_769.png,مطار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_770.png,يلزم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_771.png,برج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_772.png,الخدمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_773.png,طريق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_774.png,الجيش,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_775.png,المصرى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_776.png,محور,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_777.png,التعمير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_778.png,الإسكندرية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_779.png,القاهرة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_780.png,العرب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_781.png,الدولى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_782.png,إستاد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_783.png,مدخل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_784.png,الخارجية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_785.png,العيادات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_786.png,تطبع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_787.png,السريعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_788.png,اطبع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_789.png,ستيكر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_790.png,لو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_791.png,لازم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_792.png,مطبوعاتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_793.png,إستلم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_794.png,مش,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_795.png,حتى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_796.png,كرت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_797.png,للطباعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_798.png,برينت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_799.png,منيو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_800.png,اي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_801.png,كمية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_802.png,انت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_803.png,عايزها,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_804.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_805.png,الحال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_806.png,طنطا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_807.png,دهانات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_808.png,ديكورات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_809.png,والديكورات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_810.png,حوائط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_811.png,ارضيات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_812.png,للدهانات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_813.png,والتلوين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_814.png,بالكمبيوتر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_815.png,استنسل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_816.png,حائط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_817.png,ورق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_818.png,الحديثة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_819.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_820.png,صورة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_821.png,بورتريه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_822.png,بالذكاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_823.png,الاصطناعي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_824.png,شحن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_825.png,مع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_826.png,شبكات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_827.png,دعم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_828.png,الخامس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_829.png,حياتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_830.png,خصم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_831.png,الجيل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_832.png,العطارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_833.png,والأعشاب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_834.png,والبقوليات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_835.png,مستلزمات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_836.png,الحلويات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_837.png,والمكسرات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_838.png,توصيل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_839.png,العطارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_840.png,العطارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_841.png,دنيا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_842.png,الطبية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_843.png,العطارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_844.png,الطبية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_845.png,والأعشاب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_846.png,خدمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_847.png,التوصيل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_848.png,للعطارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_849.png,إدارة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_850.png,وأخواتة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_851.png,حمدي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_852.png,إبراهيم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_853.png,والبهارات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_854.png,والزيوت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_855.png,أحلى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_856.png,أنواع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_857.png,لجميع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_858.png,خدمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_859.png,دنيا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_860.png,دنيا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_861.png,أسهل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_862.png,فوري,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_863.png,مكتبة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_864.png,كل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_865.png,شئ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_866.png,وظيفتك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_867.png,مضمونة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_868.png,معانا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_869.png,حرير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_870.png,للرصيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_871.png,الراقية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_872.png,موازي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_873.png,خيط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_874.png,الإنتظار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_875.png,خليك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_876.png,البيت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_877.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_878.png,هذا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_879.png,لكل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_880.png,شخص,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_881.png,تداوي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_882.png,شكراً,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_883.png,لم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_884.png,يشاهد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_885.png,الإعلان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_886.png,بن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_887.png,الجودة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_888.png,خام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_889.png,فائق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_890.png,والتوريدات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_891.png,العامة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_892.png,للمقاولات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_893.png,شركة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_894.png,وانشائية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_895.png,ديكورات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_896.png,وتشطيبات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_897.png,داخلية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_898.png,واعلان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_899.png,دعاية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_900.png,استثمار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_901.png,عقاري,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_902.png,وتسويق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_903.png,معمارية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_904.png,تصميمات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_905.png,وتوريدات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_906.png,عامة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_907.png,مقاولات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_908.png,سمات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_909.png,اللاجتماعى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_910.png,ناصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_911.png,بنك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_912.png,١١٠٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_913.png,٨٥٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_914.png,كرافات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_915.png,بدله,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_916.png,٩٥٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_917.png,ببيون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_918.png,قميص,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_919.png,بدله,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_920.png,تخفيضات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_921.png,قميص,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_922.png,قميص,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_923.png,ببيون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_924.png,عام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_925.png,ديوان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_926.png,الي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_927.png,المحافظة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_928.png,أقل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_929.png,أسعار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_930.png,كبيرة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_931.png,فرحة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_932.png,اكسسوارات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_933.png,توزيع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_934.png,لوحة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_935.png,الكهرباء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_936.png,بنفس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_937.png,نصنع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_938.png,الجودة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_939.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_940.png,العالم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_941.png,أينما,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_942.png,جميع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_943.png,أنحاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_944.png,توصيل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_945.png,النقاط,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_946.png,بلس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_947.png,نفس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_948.png,برنامج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_949.png,اليوم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_950.png,حمل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_951.png,الأبليكيشن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_952.png,سبينيس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_953.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_954.png,موبايلك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_955.png,تسوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_956.png,الآن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_957.png,في,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_958.png,بنزين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_959.png,حديثي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_960.png,اطفال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_961.png,الولاده,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_962.png,رجالي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_963.png,داخلية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_964.png,ملابس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_965.png,داخلية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_966.png,نسائي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_967.png,حمل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_968.png,ملابس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_969.png,ملابس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_970.png,خربش,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_971.png,اشتري,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_972.png,مطمن,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_973.png,لاب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_974.png,دهب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_975.png,كل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_976.png,واكسب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_977.png,جنيهات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_978.png,توب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_979.png,العروض,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_980.png,واكتر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_981.png,عندنا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_982.png,وانت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_983.png,ليو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_984.png,تولستوي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_985.png,تولستوي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_986.png,زكي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_987.png,خورشيد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_988.png,إبراهيم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_989.png,رواية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_990.png,ترجمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_991.png,خورشيد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_992.png,زكي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_993.png,القوازق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_994.png,ليو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_995.png,القوازق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_996.png,إبراهيم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_997.png,ترجمة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_998.png,الثلاجة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_999.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1000.png,كيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1001.png,كيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1002.png,كيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1003.png,الأشجار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1004.png,كيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1005.png,اللسان,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1006.png,يتذوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1007.png,كيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1008.png,كيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1009.png,المثلجات؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1010.png,تصنع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1011.png,كيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1012.png,كيف؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1013.png,الحرباء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1014.png,باردا؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1015.png,الطعام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1016.png,الطعام؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1017.png,ألوانها؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1018.png,تغير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1019.png,أوراق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1020.png,تغير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1021.png,تبتلع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1022.png,لونها؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1023.png,الصغيرة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1024.png,تحافظ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1025.png,المكنسة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1026.png,موسوعتي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1027.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1028.png,توازنهم؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1029.png,كيف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1030.png,تسير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1031.png,القطارات؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1032.png,يحافظ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1033.png,الأطفال,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1034.png,الكهربائية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1035.png,الأتربة؟,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1036.png,دار,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1037.png,مصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1038.png,نهضة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1039.png,كلية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1040.png,الزراعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1041.png,مركز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1042.png,التميز,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1043.png,نقطة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1044.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1045.png,المتجر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1046.png,أونلاين,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1047.png,استلمها,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1048.png,تسوق,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1049.png,الاستلام,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1050.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1051.png,احصل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1052.png,أزياء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1053.png,أحدث,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1054.png,أينما,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1055.png,كنت,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1056.png,ورش,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1057.png,كلية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1058.png,الهندسة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1059.png,تخيل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1060.png,إعلانك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1061.png,مخرج,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1062.png,طوارئ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1063.png,صناعية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1064.png,بدون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1065.png,مواد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1066.png,دانون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1067.png,حافظة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1068.png,طبيعي,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1069.png,مكونات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1070.png,للمراقبة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1071.png,يخضع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1072.png,المحل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1073.png,الإلكترونية,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1074.png,كهرباء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1075.png,خطر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1076.png,مطب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1077.png,احذر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1078.png,صناعى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1079.png,بيلاجيو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1080.png,٦٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_1081.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1082.png,الدارك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1083.png,أو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1084.png,معمول,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1085.png,عوف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1086.png,جنيه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1087.png,بدلا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1088.png,البيضاء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1089.png,اشتري,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1090.png,علبة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1091.png,أبو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1092.png,بالشوكولاتة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1093.png,عوف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1094.png,٢,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_1095.png,٨٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_1096.png,أبو,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1097.png,بـ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1098.png,الجامعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1099.png,بريد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1100.png,مكتب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1101.png,سيدات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1102.png,سنة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1103.png,٨,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_1104.png,١٦,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_1105.png,من,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1106.png,جنيه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1107.png,أولاد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1108.png,٦٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_1109.png,بعمر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1110.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1111.png,قطعة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1112.png,اشترى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1113.png,واحصل,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1114.png,مجانا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1115.png,العالم,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1116.png,الفراشات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1117.png,استكشف,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1118.png,وكمامة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1119.png,اللعب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1120.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1121.png,ورشاشات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1122.png,المياه,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1123.png,ممنوع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1124.png,النجيلة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1125.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1126.png,للحفاظ,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1127.png,ممنوع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1128.png,الخضراء,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1129.png,سلسلة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1130.png,بدون,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1131.png,مخلفات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1132.png,الكلاب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1133.png,ترك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1134.png,المسطحات,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1135.png,ممنوع,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1136.png,سير,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1137.png,٢٠٠,evarest,scene_text,Arabic,Number,typed
evarest_dataset/file3/Arabic_words_test/word_1138.png,بعد,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1139.png,متر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1140.png,على,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1141.png,أمامك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1142.png,تحويلة,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1143.png,اب,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1144.png,مصر,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1145.png,بلازا,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1146.png,سينما,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1147.png,سكى,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1148.png,فوكس,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1149.png,ميك,evarest,scene_text,Arabic,String,typed
evarest_dataset/file3/Arabic_words_test/word_1150.png,فورايفر,evarest,scene_text,Arabic,String,typed
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/0.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/1.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/2.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/3.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/4.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/5.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/6.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/7.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/8.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/9.png,Aceta,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/10.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/11.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/12.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/13.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/14.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/15.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/16.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/17.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/18.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/19.png,Ace,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/20.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/21.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/22.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/23.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/24.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/25.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/26.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/27.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/28.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/29.png,Alatrol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/30.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/31.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/32.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/33.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/34.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/35.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/36.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/37.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/38.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/39.png,Amodis,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/40.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/41.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/42.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/43.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/44.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/45.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/46.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/47.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/48.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/49.png,Atrizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/50.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/51.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/52.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/53.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/54.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/55.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/56.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/57.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/58.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/59.png,Axodin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/60.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/61.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/62.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/63.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/64.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/65.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/66.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/67.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/68.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/69.png,Azithrocin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/70.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/71.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/72.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/73.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/74.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/75.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/76.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/77.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/78.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/79.png,Azyth,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/80.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/81.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/82.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/83.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/84.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/85.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/86.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/87.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/88.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/89.png,Az,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/90.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/91.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/92.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/93.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/94.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/95.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/96.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/97.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/98.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/99.png,Bacaid,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/100.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/101.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/102.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/103.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/104.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/105.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/106.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/107.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/108.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/109.png,Backtone,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/110.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/111.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/112.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/113.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/114.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/115.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/116.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/117.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/118.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/119.png,Baclofen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/120.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/121.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/122.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/123.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/124.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/125.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/126.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/127.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/128.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/129.png,Baclon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/130.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/131.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/132.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/133.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/134.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/135.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/136.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/137.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/138.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/139.png,Bacmax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/140.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/141.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/142.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/143.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/144.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/145.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/146.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/147.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/148.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/149.png,Beklo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/150.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/151.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/152.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/153.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/154.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/155.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/156.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/157.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/158.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/159.png,Bicozin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/160.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/161.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/162.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/163.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/164.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/165.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/166.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/167.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/168.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/169.png,Canazole,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/170.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/171.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/172.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/173.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/174.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/175.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/176.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/177.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/178.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/179.png,Candinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/180.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/181.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/182.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/183.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/184.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/185.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/186.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/187.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/188.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/189.png,Cetisoft,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/190.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/191.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/192.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/193.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/194.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/195.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/196.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/197.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/198.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/199.png,Conaz,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/200.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/201.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/202.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/203.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/204.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/205.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/206.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/207.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/208.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/209.png,Dancel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/210.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/211.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/212.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/213.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/214.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/215.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/216.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/217.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/218.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/219.png,Denixil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/220.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/221.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/222.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/223.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/224.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/225.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/226.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/227.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/228.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/229.png,Diflu,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/230.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/231.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/232.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/233.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/234.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/235.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/236.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/237.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/238.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/239.png,Dinafex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/240.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/241.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/242.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/243.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/244.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/245.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/246.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/247.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/248.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/249.png,Disopan,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/250.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/251.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/252.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/253.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/254.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/255.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/256.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/257.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/258.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/259.png,Esonix,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/260.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/261.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/262.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/263.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/264.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/265.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/266.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/267.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/268.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/269.png,Esoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/270.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/271.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/272.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/273.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/274.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/275.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/276.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/277.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/278.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/279.png,Etizin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/280.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/281.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/282.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/283.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/284.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/285.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/286.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/287.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/288.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/289.png,Exium,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/290.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/291.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/292.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/293.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/294.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/295.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/296.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/297.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/298.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/299.png,Fenadin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/300.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/301.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/302.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/303.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/304.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/305.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/306.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/307.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/308.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/309.png,Fexofast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/310.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/311.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/312.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/313.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/314.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/315.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/316.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/317.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/318.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/319.png,Fexo,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/320.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/321.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/322.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/323.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/324.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/325.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/326.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/327.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/328.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/329.png,Filmet,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/330.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/331.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/332.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/333.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/334.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/335.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/336.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/337.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/338.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/339.png,Fixal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/340.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/341.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/342.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/343.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/344.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/345.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/346.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/347.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/348.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/349.png,Flamyd,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/350.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/351.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/352.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/353.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/354.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/355.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/356.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/357.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/358.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/359.png,Flexibac,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/360.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/361.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/362.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/363.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/364.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/365.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/366.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/367.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/368.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/369.png,Flexilax,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/370.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/371.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/372.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/373.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/374.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/375.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/376.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/377.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/378.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/379.png,Flugal,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/380.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/381.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/382.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/383.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/384.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/385.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/386.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/387.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/388.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/389.png,Ketocon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/390.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/391.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/392.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/393.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/394.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/395.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/396.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/397.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/398.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/399.png,Ketoral,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/400.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/401.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/402.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/403.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/404.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/405.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/406.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/407.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/408.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/409.png,Ketotab,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/410.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/411.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/412.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/413.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/414.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/415.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/416.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/417.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/418.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/419.png,Ketozol,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/420.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/421.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/422.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/423.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/424.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/425.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/426.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/427.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/428.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/429.png,Leptic,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/430.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/431.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/432.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/433.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/434.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/435.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/436.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/437.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/438.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/439.png,Lucan-R,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/440.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/441.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/442.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/443.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/444.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/445.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/446.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/447.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/448.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/449.png,Lumona,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/450.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/451.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/452.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/453.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/454.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/455.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/456.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/457.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/458.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/459.png,M-Kast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/460.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/461.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/462.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/463.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/464.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/465.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/466.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/467.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/468.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/469.png,Maxima,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/470.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/471.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/472.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/473.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/474.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/475.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/476.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/477.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/478.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/479.png,Maxpro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/480.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/481.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/482.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/483.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/484.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/485.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/486.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/487.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/488.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/489.png,Metro,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/490.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/491.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/492.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/493.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/494.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/495.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/496.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/497.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/498.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/499.png,Metsina,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/500.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/501.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/502.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/503.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/504.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/505.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/506.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/507.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/508.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/509.png,Monas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/510.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/511.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/512.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/513.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/514.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/515.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/516.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/517.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/518.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/519.png,Montair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/520.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/521.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/522.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/523.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/524.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/525.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/526.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/527.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/528.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/529.png,Montene,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/530.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/531.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/532.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/533.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/534.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/535.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/536.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/537.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/538.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/539.png,Montex,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/540.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/541.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/542.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/543.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/544.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/545.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/546.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/547.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/548.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/549.png,Napa Extend,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/550.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/551.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/552.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/553.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/554.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/555.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/556.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/557.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/558.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/559.png,Napa,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/560.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/561.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/562.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/563.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/564.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/565.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/566.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/567.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/568.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/569.png,Nexcap,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/570.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/571.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/572.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/573.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/574.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/575.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/576.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/577.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/578.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/579.png,Nexum,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/580.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/581.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/582.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/583.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/584.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/585.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/586.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/587.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/588.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/589.png,Nidazyl,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/590.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/591.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/592.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/593.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/594.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/595.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/596.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/597.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/598.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/599.png,Nizoder,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/600.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/601.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/602.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/603.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/604.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/605.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/606.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/607.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/608.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/609.png,Odmon,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/610.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/611.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/612.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/613.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/614.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/615.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/616.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/617.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/618.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/619.png,Omastin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/620.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/621.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/622.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/623.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/624.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/625.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/626.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/627.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/628.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/629.png,Opton,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/630.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/631.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/632.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/633.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/634.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/635.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/636.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/637.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/638.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/639.png,Progut,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/640.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/641.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/642.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/643.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/644.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/645.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/646.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/647.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/648.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/649.png,Provair,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/650.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/651.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/652.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/653.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/654.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/655.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/656.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/657.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/658.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/659.png,Renova,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/660.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/661.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/662.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/663.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/664.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/665.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/666.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/667.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/668.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/669.png,Rhinil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/670.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/671.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/672.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/673.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/674.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/675.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/676.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/677.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/678.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/679.png,Ritch,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/680.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/681.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/682.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/683.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/684.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/685.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/686.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/687.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/688.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/689.png,Rivotril,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/690.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/691.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/692.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/693.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/694.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/695.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/696.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/697.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/698.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/699.png,Romycin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/700.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/701.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/702.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/703.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/704.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/705.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/706.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/707.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/708.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/709.png,Rozith,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/710.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/711.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/712.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/713.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/714.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/715.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/716.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/717.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/718.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/719.png,Sergel,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/720.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/721.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/722.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/723.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/724.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/725.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/726.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/727.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/728.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/729.png,Tamen,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/730.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/731.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/732.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/733.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/734.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/735.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/736.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/737.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/738.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/739.png,Telfast,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/740.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/741.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/742.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/743.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/744.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/745.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/746.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/747.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/748.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/749.png,Tridosil,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/750.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/751.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/752.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/753.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/754.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/755.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/756.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/757.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/758.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/759.png,Trilock,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/760.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/761.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/762.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/763.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/764.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/765.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/766.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/767.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/768.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/769.png,Vifas,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/770.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/771.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/772.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/773.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/774.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/775.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/776.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/777.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/778.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
Datasets/Text_Detection/doctors-handwritten-prescription-bd-dataset/Doctor’s Handwritten Prescription BD dataset/Testing/testing_words/779.png,Zithrin,Doctors_Handwritten,medical_prescription,English,String,handwritten
isolated_words_per_user/user001/user001_shateerah_032.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_mustadhafeen_022.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_ghazaal_004.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_sakhar_019.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user001/user001_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_ghaleez_011.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_mehras_046.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_azan_004.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_ghazaal_003.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_shateerah_038.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user002/user002_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_abjadiyah_038.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_mustadhafeen_026.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user003/user003_sakhar_019.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_shateerah_034.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user004/user004_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_ghazaal_001.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_mehras_048.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_mustadhafeen_021.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_sakhar_016.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user005/user005_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_qashtah_026.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_azan_009.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user006/user006_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_mehras_043.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_qashtah_027.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_ghazaal_008.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user007/user007_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_ghaleez_017.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_shateerah_032.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_mustadhafeen_029.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user008/user008_abjadiyah_033.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_ghaleez_019.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_azan_004.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_mustadhafeen_022.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_shateerah_035.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user009/user009_sakhar_015.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_sakhar_019.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_azan_004.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_qashtah_030.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_shateerah_039.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_fasayakfeekahum_041.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user010/user010_ghazaal_010.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_ghazaal_007.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_abjadiyah_037.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_azan_007.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_shateerah_033.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_sakhar_019.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user011/user011_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_abjadiyah_038.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_mehras_046.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_shateerah_032.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user012/user012_ghazaal_007.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_mehras_048.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_ghazaal_001.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_mustadhafeen_027.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_abjadiyah_033.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user013/user013_shateerah_036.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_ghazaal_003.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_sakhar_016.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_azan_007.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_mustadhafeen_021.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_abjadiyah_037.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_shateerah_039.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user014/user014_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_ghaleez_012.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_qashtah_028.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_abjadiyah_038.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_shateerah_033.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_ghazaal_010.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user015/user015_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_azan_004.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_ghazaal_001.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_ghaleez_013.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_shateerah_032.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user016/user016_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_mustadhafeen_027.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_qashtah_025.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_abjadiyah_037.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_sakhar_015.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user017/user017_mehras_044.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_azan_007.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_ghazaal_004.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_qashtah_025.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_mustadhafeen_030.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_shateerah_039.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user018/user018_fasayakfeekahum_050.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_abjadiyah_037.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_qashtah_025.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_ghaleez_019.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user019/user019_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_mehras_043.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_azan_009.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_qashtah_027.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user020/user020_ghaleez_019.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_mehras_046.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_shateerah_033.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_fasayakfeekahum_041.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user021/user021_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_ghazaal_003.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_sakhar_015.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_azan_009.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_qashtah_028.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_shateerah_034.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_abjadiyah_037.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user022/user022_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_ghazaal_010.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_mehras_048.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user023/user023_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_ghazaal_001.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_sakhar_019.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_shateerah_034.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_abjadiyah_039.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user024/user024_mehras_046.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_mustadhafeen_021.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_shateerah_035.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_abjadiyah_037.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_fasayakfeekahum_045.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user025/user025_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_mehras_046.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_sakhar_016.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_ghaleez_013.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_abjadiyah_033.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_shateerah_032.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user026/user026_fasayakfeekahum_049.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_shateerah_038.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_qashtah_026.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_fasayakfeekahum_045.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_ghazaal_003.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user027/user027_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_shateerah_038.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_ghaleez_012.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_qashtah_027.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_sakhar_016.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user028/user028_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_azan_010.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_mustadhafeen_021.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_ghaleez_019.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_ghazaal_004.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_fasayakfeekahum_049.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_qashtah_027.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user029/user029_mehras_048.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_sakhar_012.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_mehras_043.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_abjadiyah_033.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_qashtah_026.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user030/user030_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_shateerah_032.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_ghazaal_001.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_ghaleez_011.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_mustadhafeen_022.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user031/user031_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_shateerah_035.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_mehras_048.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_fasayakfeekahum_041.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_abjadiyah_039.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_mustadhafeen_030.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user032/user032_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_abjadiyah_038.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_qashtah_021.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_azan_004.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user033/user033_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_shateerah_034.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_azan_009.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user034/user034_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_shateerah_035.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_mehras_048.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_sakhar_012.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_mustadhafeen_030.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_qashtah_028.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_abjadiyah_040.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user035/user035_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_shateerah_040.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_mustadhafeen_029.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_mehras_044.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_abjadiyah_040.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user036/user036_ghaleez_019.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_shateerah_033.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_qashtah_030.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_ghaleez_011.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_sakhar_012.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user037/user037_abjadiyah_037.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_qashtah_021.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_sakhar_012.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_mehras_049.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_ghazaal_010.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_azan_002.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_shateerah_038.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_mustadhafeen_021.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user038/user038_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_abjadiyah_039.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_sakhar_015.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_qashtah_027.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_mehras_044.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_azan_002.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user039/user039_mustadhafeen_027.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_ghazaal_007.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_shateerah_033.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_qashtah_028.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user040/user040_abjadiyah_040.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_fasayakfeekahum_050.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_azan_002.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_qashtah_030.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_shateerah_039.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_abjadiyah_039.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user041/user041_mehras_043.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_shateerah_034.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_ghazaal_010.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user042/user042_azan_007.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_ghaleez_013.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_fasayakfeekahum_050.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_shateerah_039.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_qashtah_021.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_abjadiyah_040.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user043/user043_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_mehras_049.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_qashtah_028.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user044/user044_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_abjadiyah_040.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_mustadhafeen_026.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_sakhar_016.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user045/user045_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_azan_004.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_shateerah_036.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_mustadhafeen_026.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_ghazaal_008.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_ghaleez_012.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user046/user046_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_ghaleez_017.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_mustadhafeen_029.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_ghazaal_007.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_sakhar_019.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user047/user047_shateerah_038.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_azan_010.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_ghazaal_001.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_qashtah_028.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_shateerah_036.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user048/user048_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_ghaleez_013.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_ghazaal_004.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user049/user049_qashtah_025.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_mehras_049.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_qashtah_028.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_shateerah_036.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_fasayakfeekahum_045.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_abjadiyah_039.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_ghazaal_001.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user050/user050_mustadhafeen_030.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_shateerah_032.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_mustadhafeen_027.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_sakhar_012.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user051/user051_qashtah_028.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_qashtah_030.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_azan_002.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_mustadhafeen_027.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_abjadiyah_039.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_ghazaal_003.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user052/user052_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_shateerah_035.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_abjadiyah_038.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_fasayakfeekahum_049.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_azan_009.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_mustadhafeen_030.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_ghaleez_017.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_sakhar_017.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user053/user053_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_mustadhafeen_022.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_ghazaal_007.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_shateerah_034.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user054/user054_azan_004.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_mehras_046.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_ghaleez_013.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_ghazaal_004.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_abjadiyah_036.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user055/user055_shateerah_032.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_fasayakfeekahum_050.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_mustadhafeen_022.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_sakhar_019.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user056/user056_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_azan_002.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_mustadhafeen_021.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_qashtah_030.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_ghazaal_008.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_mehras_048.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user057/user057_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_ghaleez_014.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_ghazaal_004.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_shateerah_036.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_abjadiyah_033.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user058/user058_qashtah_025.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user059/user059_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user059/user059_qashtah_025.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user059/user059_mehras_049.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user059/user059_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user059/user059_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_azan_010.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_abjadiyah_038.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_ghaleez_017.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_qashtah_030.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_shateerah_033.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_mustadhafeen_021.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user060/user060_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_shateerah_040.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_ghaleez_017.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_qashtah_021.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user061/user061_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_sakhar_012.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_ghazaal_003.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_fasayakfeekahum_049.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_shateerah_033.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user062/user062_abjadiyah_038.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_shateerah_039.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_qashtah_027.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_ghazaal_008.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_azan_005.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user063/user063_sakhar_012.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_abjadiyah_039.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_mustadhafeen_027.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_shateerah_035.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_ghazaal_007.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user064/user064_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_sakhar_012.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_mustadhafeen_028.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_shateerah_038.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user065/user065_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_ghazaal_010.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_ghaleez_013.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_fasayakfeekahum_041.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_sakhar_017.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_qashtah_030.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user066/user066_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_mustadhafeen_026.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_ghaleez_016.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_sakhar_016.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_fasayakfeekahum_050.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user067/user067_shateerah_035.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_shateerah_036.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_ghaleez_019.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user068/user068_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_azan_001.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_mustadhafeen_027.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_qashtah_025.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_ghazaal_003.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_sakhar_016.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_abjadiyah_037.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_shateerah_038.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user069/user069_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_shateerah_036.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_fasayakfeekahum_044.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_sakhar_018.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_ghazaal_002.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_mehras_046.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_azan_002.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user070/user070_ghaleez_011.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_abjadiyah_033.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_mustadhafeen_029.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_ghaleez_011.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_shateerah_033.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_fasayakfeekahum_048.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_azan_008.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_qashtah_026.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user071/user071_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_ghaleez_017.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_qashtah_023.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_fasayakfeekahum_041.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user072/user072_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_azan_004.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_shateerah_036.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_ghaleez_012.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_qashtah_026.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_mustadhafeen_022.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_abjadiyah_033.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user073/user073_ghazaal_001.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_abjadiyah_040.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_shateerah_039.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_azan_009.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_ghaleez_011.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_fasayakfeekahum_042.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_qashtah_024.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_mehras_050.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user074/user074_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_azan_007.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_abjadiyah_032.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_shateerah_040.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_ghazaal_008.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user075/user075_qashtah_022.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_sakhar_013.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_mehras_044.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_abjadiyah_036.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_mustadhafeen_024.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_azan_010.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_shateerah_038.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_qashtah_025.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_fasayakfeekahum_041.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user076/user076_ghaleez_020.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_mustadhafeen_029.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_shateerah_040.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_azan_006.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_ghaleez_015.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_sakhar_015.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_ghazaal_007.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_fasayakfeekahum_041.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_qashtah_026.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_abjadiyah_035.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user077/user077_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_qashtah_021.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_ghazaal_005.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_azan_002.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_abjadiyah_039.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_shateerah_037.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_sakhar_019.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user078/user078_mustadhafeen_021.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_qashtah_027.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_ghazaal_006.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_sakhar_014.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_shateerah_031.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_fasayakfeekahum_046.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_mehras_042.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_azan_010.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_ghaleez_019.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user079/user079_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_mustadhafeen_027.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_shateerah_039.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_ghaleez_017.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_abjadiyah_031.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_fasayakfeekahum_047.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_ghazaal_009.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_mehras_045.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_sakhar_016.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user080/user080_qashtah_030.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_fasayakfeekahum_050.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_ghaleez_013.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_ghazaal_004.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_sakhar_020.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_mustadhafeen_023.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_azan_009.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_mehras_047.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_abjadiyah_033.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user081/user081_shateerah_034.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_ghaleez_018.png,غليظ,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_fasayakfeekahum_043.png,فسيكفيكهم,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_mustadhafeen_025.png,المستضعفين,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_sakhar_011.png,صخر,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_shateerah_035.png,شطيره,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_abjadiyah_034.png,الأبجدية,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_ghazaal_010.png,غزال,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_qashtah_029.png,قشطة,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_azan_003.png,اذن,AHAWP,handwritten,Arabic,String,handwritten
isolated_words_per_user/user082/user082_mehras_041.png,محراث,AHAWP,handwritten,Arabic,String,handwritten
|