├── .gitignore ├── .idea ├── .gitignore ├── ArError_Annotation_Framework.iml ├── csv-plugin.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── aligner ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── ossama_aligner.iml ├── README.md ├── __pycache__ │ ├── align_text_api.cpython-38.pyc │ └── alignment.cpython-38.pyc ├── align ├── align_text.py ├── align_text_api.py ├── alignment.py ├── clean_align.txt ├── clean_text.py ├── fout.basic ├── main.py ├── process_alignment.py ├── requirements.txt ├── sample │ └── .DS_Store └── venv │ ├── bin │ ├── Activate.ps1 │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── easy_install │ ├── easy_install-3.8 │ ├── pip │ ├── pip3 │ ├── pip3.8 │ ├── python │ ├── python3 │ └── python3.8 │ ├── lib │ └── python3.8 │ │ └── site-packages │ │ ├── _distutils_hack │ │ ├── __init__.py │ │ └── override.py │ │ ├── distutils-precedence.pth │ │ ├── docopt-0.6.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE-MIT │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── docopt.py │ │ ├── easy_install.py │ │ ├── editdistance-0.5.3.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── editdistance │ │ ├── __init__.py │ │ ├── _editdistance.h │ │ ├── bycython.cpython-38-darwin.so │ │ └── def.h │ │ ├── pip-20.3.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── command_context.py │ │ │ │ ├── main.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ ├── progress_bars.py │ │ │ │ ├── req_command.py │ │ │ │ ├── spinners.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── cache.py │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── debug.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── collector.py │ │ │ │ └── package_finder.py │ │ │ ├── locations.py │ │ │ ├── main.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── candidate.py │ │ │ │ ├── direct_url.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ ├── link.py │ │ │ │ ├── scheme.py │ │ │ │ ├── search_scope.py │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── target_python.py │ │ │ │ └── wheel.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── lazy_wheel.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── resolver.py │ │ │ │ └── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── candidates.py │ │ │ │ │ ├── factory.py │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ ├── provider.py │ │ │ │ │ ├── reporter.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ └── resolver.py │ │ │ ├── self_outdated_check.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── compatibility_tags.py │ │ │ │ ├── datetime.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── direct_url_helpers.py │ │ │ │ ├── distutils_args.py │ │ │ │ ├── encoding.py │ │ │ │ ├── entrypoints.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── filetypes.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── inject_securetransport.py │ │ │ │ ├── logging.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── packaging.py │ │ │ │ ├── parallel.py │ │ │ │ ├── pkg_resources.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── typing.py │ │ │ │ ├── unpacking.py │ │ │ │ ├── urls.py │ │ │ │ ├── virtualenv.py │ │ │ │ └── wheel.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── contextlib2.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ │ ├── distro.py │ │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── dirtools.py │ │ │ ├── envbuild.py │ │ │ ├── meta.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ │ ├── resolvelib │ │ │ ├── __init__.py │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ │ ├── retrying.py │ │ │ ├── six.py │ │ │ ├── toml │ │ │ ├── __init__.py │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── ordered.py │ │ │ └── tz.py │ │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── _version.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── proxy.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssltransport.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ ├── vendor.txt │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ └── pyparsing.py │ │ └── extern │ │ │ └── __init__.py │ │ ├── setuptools-50.3.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── top_level.txt │ │ └── zip-safe │ │ └── setuptools │ │ ├── __init__.py │ │ ├── _deprecation_warning.py │ │ ├── _distutils │ │ ├── __init__.py │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── bdist.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_msi.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── build_scripts.py │ │ │ ├── check.py │ │ │ ├── clean.py │ │ │ ├── config.py │ │ │ ├── install.py │ │ │ ├── install_data.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_headers.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── py37compat.py │ │ │ ├── register.py │ │ │ ├── sdist.py │ │ │ └── upload.py │ │ ├── config.py │ │ ├── core.py │ │ ├── cygwinccompiler.py │ │ ├── debug.py │ │ ├── dep_util.py │ │ ├── dir_util.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── fancy_getopt.py │ │ ├── file_util.py │ │ ├── filelist.py │ │ ├── log.py │ │ ├── msvc9compiler.py │ │ ├── msvccompiler.py │ │ ├── py35compat.py │ │ ├── py38compat.py │ │ ├── spawn.py │ │ ├── sysconfig.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ └── versionpredicate.py │ │ ├── _imp.py │ │ ├── _vendor │ │ ├── __init__.py │ │ ├── ordered_set.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── pyparsing.py │ │ ├── archive_util.py │ │ ├── build_meta.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli.exe │ │ ├── command │ │ ├── __init__.py │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── dist_info.py │ │ ├── easy_install.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── launcher manifest.xml │ │ ├── py36compat.py │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ │ ├── config.py │ │ ├── dep_util.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── extern │ │ └── __init__.py │ │ ├── glob.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui.exe │ │ ├── installer.py │ │ ├── launch.py │ │ ├── lib2to3_ex.py │ │ ├── monkey.py │ │ ├── msvc.py │ │ ├── namespaces.py │ │ ├── package_index.py │ │ ├── py34compat.py │ │ ├── sandbox.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── ssl_support.py │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── wheel.py │ │ └── windows_support.py │ └── pyvenv.cfg ├── annotate_err_type_ar.py ├── annotate_eval_ar.py ├── charmapping_new_format.csv ├── config.json ├── input └── raw_qalb_test.txt ├── output ├── align_input_ref.tsv ├── align_input_ref_ahmr.tsv ├── align_input_sys.tsv ├── annot_input_ref.tsv ├── annot_input_ref_ahmr.tsv └── annot_input_sys.tsv ├── readme.md ├── requirements.txt ├── results ├── .DS_Store ├── subclasses_results_CLMB-1.tsv └── subclasses_results_sample_sys.tsv ├── sample ├── align.basic ├── ref_sample.txt ├── sample.m2 ├── sample_ahmr.m2 ├── sample_ahmr_sys ├── sample_sys └── sys_sample.txt ├── scripts ├── alignment │ ├── al_adjust_align.py │ ├── al_align_annotate.py │ ├── al_align_input_reference.py │ ├── al_align_input_system.py │ └── al_prepare_input.py ├── annotation │ ├── an_annotate_error_type.py │ ├── an_annote_sys_ref.py │ ├── an_arabic_ops.py │ ├── an_combinations.py │ ├── an_compare_morph.py │ ├── an_map_corr_tag.py │ ├── an_multi_word.py │ └── an_sub_categories_arErrant.py ├── evaluation │ └── eval_functions.py ├── explainability │ ├── ex_core_explainability.py │ ├── ex_explainability.py │ └── ex_get_explanation_raw_correct.py └── utils │ ├── config.json │ └── utils_functions.py └── utilities ├── adjust_align_tool.py ├── generate-m2-reference.py └── generate-m2-source.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/ArError_Annotation_Framework.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/.idea/ArError_Annotation_Framework.iml -------------------------------------------------------------------------------- /.idea/csv-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/.idea/csv-plugin.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/LICENSE -------------------------------------------------------------------------------- /aligner/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /aligner/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /aligner/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/.idea/misc.xml -------------------------------------------------------------------------------- /aligner/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/.idea/modules.xml -------------------------------------------------------------------------------- /aligner/.idea/ossama_aligner.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/.idea/ossama_aligner.iml -------------------------------------------------------------------------------- /aligner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/README.md -------------------------------------------------------------------------------- /aligner/__pycache__/align_text_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/__pycache__/align_text_api.cpython-38.pyc -------------------------------------------------------------------------------- /aligner/__pycache__/alignment.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/__pycache__/alignment.cpython-38.pyc -------------------------------------------------------------------------------- /aligner/align: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/align -------------------------------------------------------------------------------- /aligner/align_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/align_text.py -------------------------------------------------------------------------------- /aligner/align_text_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/align_text_api.py -------------------------------------------------------------------------------- /aligner/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/alignment.py -------------------------------------------------------------------------------- /aligner/clean_align.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/clean_align.txt -------------------------------------------------------------------------------- /aligner/clean_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/clean_text.py -------------------------------------------------------------------------------- /aligner/fout.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/fout.basic -------------------------------------------------------------------------------- /aligner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/main.py -------------------------------------------------------------------------------- /aligner/process_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/process_alignment.py -------------------------------------------------------------------------------- /aligner/requirements.txt: -------------------------------------------------------------------------------- 1 | docopt==0.6.2 2 | editdistance==0.5.3 3 | -------------------------------------------------------------------------------- /aligner/sample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/sample/.DS_Store -------------------------------------------------------------------------------- /aligner/venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /aligner/venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/activate -------------------------------------------------------------------------------- /aligner/venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/activate.csh -------------------------------------------------------------------------------- /aligner/venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/activate.fish -------------------------------------------------------------------------------- /aligner/venv/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/easy_install -------------------------------------------------------------------------------- /aligner/venv/bin/easy_install-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/easy_install-3.8 -------------------------------------------------------------------------------- /aligner/venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/pip -------------------------------------------------------------------------------- /aligner/venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/pip3 -------------------------------------------------------------------------------- /aligner/venv/bin/pip3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/pip3.8 -------------------------------------------------------------------------------- /aligner/venv/bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/python -------------------------------------------------------------------------------- /aligner/venv/bin/python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/python3 -------------------------------------------------------------------------------- /aligner/venv/bin/python3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/bin/python3.8 -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/LICENSE-MIT -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/METADATA -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/RECORD -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/WHEEL -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/docopt.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/easy_install.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/METADATA -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/RECORD -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/WHEEL -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance-0.5.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | editdistance 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/editdistance/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance/_editdistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/editdistance/_editdistance.h -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance/bycython.cpython-38-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/editdistance/bycython.cpython-38-darwin.so -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/editdistance/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/editdistance/def.h -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/METADATA -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/RECORD -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/WHEEL -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/entry_points.txt -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip-20.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/command_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/command_context.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/configuration.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/base.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/installed.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/index/package_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/index/package_finder.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/locations.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/direct_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/direct_url.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/format_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/format_control.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/search_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/search_scope.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/target_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/target_python.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/network/download.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/install/editable_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/install/editable_legacy.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/reporter.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/parallel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/typing.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.11.08" 4 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/contextlib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/contextlib2.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/_typing.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/decoder.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/encoder.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/ordered.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.2" 3 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/proxy.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_typing.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/version.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/_vendor/pyparsing.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/LICENSE -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/METADATA -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/RECORD -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.35.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/dependency_links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/dependency_links.txt -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/entry_points.txt -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/top_level.txt -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools-50.3.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_deprecation_warning.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/_msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/_msvccompiler.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/archive_util.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/bcppcompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/bcppcompiler.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/ccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/ccompiler.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_dumb.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_msi.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_rpm.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_wininst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_wininst.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_clib.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_ext.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_py.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_scripts.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/check.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/clean.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/config.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_data.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_egg_info.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_headers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_lib.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_scripts.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/py37compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/py37compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/register.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/sdist.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/command/upload.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/cygwinccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/cygwinccompiler.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/dep_util.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/dir_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/dir_util.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/extension.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/fancy_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/fancy_getopt.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/file_util.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/filelist.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/msvc9compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/msvc9compiler.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/msvccompiler.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/py35compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/py35compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/py38compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/py38compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/sysconfig.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/text_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/text_file.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/unixccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/unixccompiler.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/version.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/versionpredicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_distutils/versionpredicate.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_typing.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/version.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/bdist_wininst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/bdist_wininst.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/easy_install.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/install_egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/install_egg_info.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/install_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/install_scripts.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/launcher manifest.xml -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/py36compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /aligner/venv/lib/python3.8/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/lib/python3.8/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /aligner/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/aligner/venv/pyvenv.cfg -------------------------------------------------------------------------------- /annotate_err_type_ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/annotate_err_type_ar.py -------------------------------------------------------------------------------- /annotate_eval_ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/annotate_eval_ar.py -------------------------------------------------------------------------------- /charmapping_new_format.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/charmapping_new_format.csv -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/config.json -------------------------------------------------------------------------------- /input/raw_qalb_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/input/raw_qalb_test.txt -------------------------------------------------------------------------------- /output/align_input_ref.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/output/align_input_ref.tsv -------------------------------------------------------------------------------- /output/align_input_ref_ahmr.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/output/align_input_ref_ahmr.tsv -------------------------------------------------------------------------------- /output/align_input_sys.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/output/align_input_sys.tsv -------------------------------------------------------------------------------- /output/annot_input_ref.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/output/annot_input_ref.tsv -------------------------------------------------------------------------------- /output/annot_input_ref_ahmr.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/output/annot_input_ref_ahmr.tsv -------------------------------------------------------------------------------- /output/annot_input_sys.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/output/annot_input_sys.tsv -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/results/.DS_Store -------------------------------------------------------------------------------- /results/subclasses_results_CLMB-1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/results/subclasses_results_CLMB-1.tsv -------------------------------------------------------------------------------- /results/subclasses_results_sample_sys.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/results/subclasses_results_sample_sys.tsv -------------------------------------------------------------------------------- /sample/align.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/sample/align.basic -------------------------------------------------------------------------------- /sample/ref_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/sample/ref_sample.txt -------------------------------------------------------------------------------- /sample/sample.m2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/sample/sample.m2 -------------------------------------------------------------------------------- /sample/sample_ahmr.m2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/sample/sample_ahmr.m2 -------------------------------------------------------------------------------- /sample/sample_ahmr_sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/sample/sample_ahmr_sys -------------------------------------------------------------------------------- /sample/sample_sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/sample/sample_sys -------------------------------------------------------------------------------- /sample/sys_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/sample/sys_sample.txt -------------------------------------------------------------------------------- /scripts/alignment/al_adjust_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/alignment/al_adjust_align.py -------------------------------------------------------------------------------- /scripts/alignment/al_align_annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/alignment/al_align_annotate.py -------------------------------------------------------------------------------- /scripts/alignment/al_align_input_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/alignment/al_align_input_reference.py -------------------------------------------------------------------------------- /scripts/alignment/al_align_input_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/alignment/al_align_input_system.py -------------------------------------------------------------------------------- /scripts/alignment/al_prepare_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/alignment/al_prepare_input.py -------------------------------------------------------------------------------- /scripts/annotation/an_annotate_error_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/annotation/an_annotate_error_type.py -------------------------------------------------------------------------------- /scripts/annotation/an_annote_sys_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/annotation/an_annote_sys_ref.py -------------------------------------------------------------------------------- /scripts/annotation/an_arabic_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/annotation/an_arabic_ops.py -------------------------------------------------------------------------------- /scripts/annotation/an_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/annotation/an_combinations.py -------------------------------------------------------------------------------- /scripts/annotation/an_compare_morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/annotation/an_compare_morph.py -------------------------------------------------------------------------------- /scripts/annotation/an_map_corr_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/annotation/an_map_corr_tag.py -------------------------------------------------------------------------------- /scripts/annotation/an_multi_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/annotation/an_multi_word.py -------------------------------------------------------------------------------- /scripts/annotation/an_sub_categories_arErrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/annotation/an_sub_categories_arErrant.py -------------------------------------------------------------------------------- /scripts/evaluation/eval_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/evaluation/eval_functions.py -------------------------------------------------------------------------------- /scripts/explainability/ex_core_explainability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/explainability/ex_core_explainability.py -------------------------------------------------------------------------------- /scripts/explainability/ex_explainability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/explainability/ex_explainability.py -------------------------------------------------------------------------------- /scripts/explainability/ex_get_explanation_raw_correct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/explainability/ex_get_explanation_raw_correct.py -------------------------------------------------------------------------------- /scripts/utils/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/utils/config.json -------------------------------------------------------------------------------- /scripts/utils/utils_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/scripts/utils/utils_functions.py -------------------------------------------------------------------------------- /utilities/adjust_align_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/utilities/adjust_align_tool.py -------------------------------------------------------------------------------- /utilities/generate-m2-reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/utilities/generate-m2-reference.py -------------------------------------------------------------------------------- /utilities/generate-m2-source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMeL-Lab/arabic_error_type_annotation/HEAD/utilities/generate-m2-source.py --------------------------------------------------------------------------------