pax_global_header00006660000000000000000000000064145077216660014530gustar00rootroot0000000000000052 comment=14c3779b3f12beba7904b4cbe251f4f91b298dbe fingerprints-1.2.3/000077500000000000000000000000001450772166600142455ustar00rootroot00000000000000fingerprints-1.2.3/.bumpversion.cfg000066400000000000000000000001651450772166600173570ustar00rootroot00000000000000[bumpversion] current_version = 1.2.3 tag_name = {new_version} commit = True tag = True [bumpversion:file:setup.py] fingerprints-1.2.3/.github/000077500000000000000000000000001450772166600156055ustar00rootroot00000000000000fingerprints-1.2.3/.github/dependabot.yml000066400000000000000000000003731450772166600204400ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: pip directory: "/" schedule: interval: daily time: "01:00" open-pull-requests-limit: 99 - package-ecosystem: "github-actions" directory: "/" schedule: interval: weekly fingerprints-1.2.3/.github/workflows/000077500000000000000000000000001450772166600176425ustar00rootroot00000000000000fingerprints-1.2.3/.github/workflows/build.yml000066400000000000000000000022031450772166600214610ustar00rootroot00000000000000name: package on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: python: - "3.9" - "3.10" - "3.11" steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - name: Install dependencies run: | sudo apt-get install -y libicu-dev python -m pip install --upgrade pip wheel pip install pyicu pip install -e ".[dev]" - name: Generate data file run: | make generate - name: Type checking run: | make typecheck - name: Test with pytest run: | make test - name: Build a distribution run: | python setup.py sdist bdist_wheel - name: Publish a Python distribution to PyPI if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master with: user: __token__ password: ${{ secrets.pypi_password }} skip_existing: true fingerprints-1.2.3/.gitignore000066400000000000000000000001121450772166600162270ustar00rootroot00000000000000.DS_Store *.egg-info *.pyc *.eggs dist/* build/* .vscode .coverage .~lock*fingerprints-1.2.3/LICENSE000066400000000000000000000021671450772166600152600ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) 2018 Journalism Development Network, Inc. Copyright (c) 2016 Friedrich Lindenberg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. fingerprints-1.2.3/MANIFEST.in000066400000000000000000000000571450772166600160050ustar00rootroot00000000000000include README.md include fingerprints/py.typedfingerprints-1.2.3/Makefile000066400000000000000000000007171450772166600157120ustar00rootroot00000000000000 all: generate clean test generate: python fingerprints/types/check.py python fingerprints/types/compile.py black fingerprints/types/data.py test: pytest --cov=fingerprints --cov-report html --cov-report term typecheck: mypy --strict fingerprints/ clean: rm -rf dist build .eggs .mypy_cache find . -name '*.egg-info' -exec rm -fr {} + find . -name '*.egg' -exec rm -f {} + find . -name '*.pyc' -exec rm -f {} + find . -name '*.pyo' -exec rm -f {} + fingerprints-1.2.3/README.md000066400000000000000000000032771450772166600155350ustar00rootroot00000000000000# fingerprints ![package](https://github.com/alephdata/fingerprints/workflows/package/badge.svg) This library helps with the generation of fingerprints for entity data. A fingerprint in this context is understood as a simplified entity identifier, derived from it's name or address and used for cross-referencing of entity across different datasets. ## Usage ```python import fingerprints fp = fingerprints.generate('Mr. Sherlock Holmes') assert fp == 'holmes sherlock' fp = fingerprints.generate('Siemens Aktiengesellschaft') assert fp == 'ag siemens' fp = fingerprints.generate('New York, New York') assert fp == 'new york' ``` ## Company type names A significant part of what `fingerprints` does it to recognize company legal form names. For example, `fingerprints` will be able to simplify `Общество с ограниченной ответственностью` to `ООО`, or `Aktiengesellschaft` to `AG`. The required database is based on two different sources: * A [Google Spreadsheet](https://docs.google.com/spreadsheets/d/1Cw2xQ3hcZOAgnnzejlY5Sv3OeMxKePTqcRhXQU8rCAw/edit?ts=5e7754cf#gid=0) created by OCCRP. * The ISO 20275: [Entity Legal Forms Code List](https://www.gleif.org/en/about-lei/code-lists/iso-20275-entity-legal-forms-code-list) Wikipedia also maintains an index of [types of business entity](https://en.wikipedia.org/wiki/Types_of_business_entity). ## See also * [Clustering in Depth](https://github.com/OpenRefine/OpenRefine/wiki/Clustering-In-Depth), part of the OpenRefine documentation discussing how to create collisions in data clustering. * [probablepeople](https://github.com/datamade/probablepeople), parser for western names made by the brilliant folks at datamade.us. fingerprints-1.2.3/fingerprints/000077500000000000000000000000001450772166600167575ustar00rootroot00000000000000fingerprints-1.2.3/fingerprints/__init__.py000066400000000000000000000010111450772166600210610ustar00rootroot00000000000000from fingerprints.fingerprint import fingerprint from fingerprints.cleanup import clean_entity_prefix from fingerprints.cleanup import clean_brackets from fingerprints.cleanup import clean_name_light from fingerprints.cleanup import clean_name_ascii from fingerprints.types import remove_types, replace_types generate = fingerprint __all__ = [ "fingerprint", "generate", "clean_entity_prefix", "clean_brackets", "clean_name_light", "clean_name_ascii", "remove_types", "replace_types", ] fingerprints-1.2.3/fingerprints/cleanup.py000066400000000000000000000042241450772166600207620ustar00rootroot00000000000000import re import logging from typing import Optional from functools import lru_cache from normality import collapse_spaces, ascii_text, category_replace from fingerprints.constants import WS, BRACKETED log = logging.getLogger(__name__) CHARACTERS_REMOVE_RE = re.compile(r"[\.\'’]") PREFIXES_RAW_LIST = [ "Mr", "Ms", "Mrs", "Mister", "Miss", "Madam", "Madame", "Monsieur", "Mme", "Mmme", "Herr", "Hr", "Frau", "Fr", "The", "Fräulein", "Senor", "Senorita", "Sheik", "Sheikh", "Shaikh", "Sr", "Sir", "Lady", "The", "de", "of", ] PREFIXES_RAW = "|".join(PREFIXES_RAW_LIST) NAME_PATTERN_ = r"^\W*((%s)\.?\s+)*(?P.*?)([\'’]s)?\W*$" NAME_PATTERN_ = NAME_PATTERN_ % PREFIXES_RAW PREFIXES = re.compile(NAME_PATTERN_, re.I | re.U) def clean_entity_prefix(name: str) -> str: """Remove prefixes like Mr., Mrs., etc.""" match = PREFIXES.match(name) if match is not None: name = match.group("term") return name def clean_brackets(text: str) -> str: """Remove any text in brackets. This is meant to handle names of companies which include the jurisdiction, like: Turtle Management (Seychelles) Ltd.""" return BRACKETED.sub(WS, text) @lru_cache(maxsize=2000) def clean_name_ascii(text: Optional[str]) -> Optional[str]: """Super-hardcore string scrubbing.""" # transliterate to ascii text = ascii_text(text) if text is None: return None # replace punctuation and symbols text = CHARACTERS_REMOVE_RE.sub("", text) text = text.lower() cleaned = category_replace(text) cleaned = collapse_spaces(cleaned) if cleaned is None or len(cleaned) < 2: return None return cleaned @lru_cache(maxsize=2000) def clean_name_light(text: str) -> Optional[str]: """Clean up a name for comparison, but don't convert to ASCII/Latin.""" # replace punctuation and symbols text = CHARACTERS_REMOVE_RE.sub("", text) text = text.lower() cleaned = category_replace(text) cleaned = collapse_spaces(cleaned) if cleaned is None or len(cleaned) < 2: return None return cleaned fingerprints-1.2.3/fingerprints/constants.py000066400000000000000000000001131450772166600213400ustar00rootroot00000000000000import re BRACKETED = re.compile(r"(\([^\(\)]*\)|\[[^\[\]]*\])") WS = " " fingerprints-1.2.3/fingerprints/fingerprint.py000066400000000000000000000021211450772166600216540ustar00rootroot00000000000000import logging from typing import Optional from normality import collapse_spaces, stringify from fingerprints.constants import WS from fingerprints.types import replace_types from fingerprints.cleanup import clean_entity_prefix, clean_name_ascii from fingerprints.cleanup import clean_brackets log = logging.getLogger(__name__) def fingerprint( text: Optional[str], keep_order: bool = False, keep_brackets: bool = False ) -> Optional[str]: text = stringify(text) if text is None: return None # this needs to happen before the replacements text = text.lower() text = clean_entity_prefix(text) if not keep_brackets: text = clean_brackets(text) # Super hard-core string scrubbing text = clean_name_ascii(text) text = replace_types(text) if keep_order: text = collapse_spaces(text) elif text is not None: # final manicure, based on openrefine algo parts = [p for p in text.split(WS) if len(p)] text = WS.join(sorted(set(parts))) if text is None or not len(text): return None return text fingerprints-1.2.3/fingerprints/py.typed000066400000000000000000000000001450772166600204440ustar00rootroot00000000000000fingerprints-1.2.3/fingerprints/types/000077500000000000000000000000001450772166600201235ustar00rootroot00000000000000fingerprints-1.2.3/fingerprints/types/__init__.py000066400000000000000000000013301450772166600222310ustar00rootroot00000000000000from typing import Optional from normality import collapse_spaces from fingerprints.cleanup import clean_name_ascii from fingerprints.types.replacer import get_replacer, NormFunc def replace_types(text: Optional[str]) -> Optional[str]: """Chomp down company types to a more convention form.""" return get_replacer()(text) def remove_types( text: Optional[str], clean: NormFunc = clean_name_ascii ) -> Optional[str]: """Remove company type names from a piece of text. WARNING: This converts to ASCII by default, pass in a different `clean` function if you need a different behaviour.""" text = clean(text) removed = get_replacer(clean, remove=True)(text) return collapse_spaces(removed) fingerprints-1.2.3/fingerprints/types/check.py000066400000000000000000000024011450772166600215470ustar00rootroot00000000000000import yaml from typing import Set from fingerprints.types.common import TYPES_PATH, TypesList def check_types_file() -> None: with open(TYPES_PATH, "r") as fh: data: TypesList = yaml.safe_load(fh) mains: Set[str] = set() forms: Set[str] = set() for type in data["types"]: main = type["main"].lower() type["main"] = type["main"] if main in mains: print("DUPLICATE MAIN", repr(main)) elif main in forms: print("MAIN IS FORM ELSEHWERE", main) mains.add(main) forms.add(main) cur_forms: Set[str] = set() for form in type["forms"]: form = form.lower() if form == main: continue cur_forms.add(form) if form in forms: print("DUPLICATE FORM", form) forms.add(form) type["forms"] = sorted(cur_forms) # print(type) data["types"] = sorted(data["types"], key=lambda t: t["main"]) with open(TYPES_PATH, "wb") as fh: fh.write( yaml.dump( data, allow_unicode=True, encoding="utf-8", sort_keys=False, ) ) if __name__ == "__main__": check_types_file() fingerprints-1.2.3/fingerprints/types/common.py000066400000000000000000000003521450772166600217650ustar00rootroot00000000000000import os from typing import TypedDict, List TYPES_PATH = os.path.join(os.path.dirname(__file__), "types.yml") class TypeEntry(TypedDict): main: str forms: List[str] class TypesList(TypedDict): types: List[TypeEntry] fingerprints-1.2.3/fingerprints/types/compile.py000066400000000000000000000011271450772166600221260ustar00rootroot00000000000000import os import yaml from fingerprints.types.common import TypesList, TYPES_PATH CODE_DIR = os.path.dirname(__file__) def write_python() -> None: with open(TYPES_PATH, "r", encoding="utf-8") as fh: data: TypesList = yaml.safe_load(fh) python_file = os.path.join(CODE_DIR, "data.py") with open(python_file, "w", encoding="utf-8") as pyfh: pyfh.write("# generated file, do not edit.\n") pyfh.write("from fingerprints.types.common import TypesList\n\n") pyfh.write("TYPES: TypesList = %s\n" % repr(data)) if __name__ == "__main__": write_python() fingerprints-1.2.3/fingerprints/types/data.py000066400000000000000000001121011450772166600214020ustar00rootroot00000000000000# generated file, do not edit. from fingerprints.types.common import TypesList TYPES: TypesList = { "types": [ {"main": "3at", "forms": ["закрытае ацыянернае таварыства"]}, { "main": "aat", "forms": [ "adkritaye aktsiyanernaye tavaristva", "adkrytae akcyyanernae tavarystva", "аат", "адкрытае акцыянернае таварыства", ], }, {"main": "ab", "forms": ["abp", "aktiebolag", "publikt aktiebolag"]}, {"main": "abv", "forms": ["aandeelhouder-bestuurde vennootschap"]}, { "main": "ad", "forms": [ "a.d", "a.d.", "akcionarsko društvo", "aktsionerno druzhestvo", "а.д", "ад", "акционарско друштво", "акционерно дружество", ], }, { "main": "adsic", "forms": [ "adsitz", "aktsionerno druzhestvo sas spetsialna investitsionna tsel", "адсиц", "акционерно дружество със специална инвестиционна цел", ], }, {"main": "ae", "forms": ["anónimi etería", "ανώνυμη εταιρεία"]}, { "main": "ag", "forms": [ "aksiyadorlik jamiyati", "aktiengesellschaft", "акциядорлик жамияти", ], }, {"main": "amba", "forms": ["andelsselskab med begrænset ansvar"]}, {"main": "anl", "forms": ["andelslag"]}, {"main": "ano", "forms": ["автономная некоммерческая организация", "ано"]}, {"main": "anpo", "forms": ["autonomous non-profit organization"]}, { "main": "ao", "forms": [ "aktsionernoe obschestvo", "anonim ortaklık", "joint stock company", "joint-stock company", "jsc", "public stock company", "акционерная компания с ограниченной ответственностью", "акционерное общество", "акціонерне товариство", "акціонерного товариства", ], }, {"main": "aps", "forms": ["anpartsselskab"]}, { "main": "as", "forms": [ "akciju sabiedrība", "akciová společnost", "akciová spoločnosť", "aktieselskab", "aktieselskabet", "aktsiaselts", "anonim şirket", ], }, { "main": "asbl", "forms": [ "aisbl", "association internationale sans but lucratif", "association sans but lucratif", ], }, {"main": "asc", "forms": ["açıq səhmdar cəmiyyəti"]}, {"main": "ay", "forms": ["avoin yhtiö"]}, {"main": "bhd", "forms": ["berhad"]}, {"main": "bv", "forms": ["besloten vennootschap"]}, { "main": "bvba", "forms": ["besloten vennootschap met beperkte aansprakelijkheid"], }, {"main": "ca", "forms": ["compañía anónima"]}, {"main": "co", "forms": ["company", "компания"]}, { "main": "co ltd", "forms": ["cia ltda", "co., ltd.", "co.ltd", "compañía limitada"], }, { "main": "coop", "forms": [ "co-op", "cooperation", "cooperative", "coopératif", "coopération", "coopérative", "kooperatsia", "sociedad cooperativa", "spółdzielni", "кооперация", ], }, {"main": "corp", "forms": ["corporation"]}, {"main": "cp", "forms": ["fond commun de placement"]}, {"main": "cs", "forms": ["ህብረት ስራ ማህበራት"]}, {"main": "cty cp", "forms": ["công ty cổ phần"]}, {"main": "cty tnhh", "forms": ["công ty trách nhiệm hữu hạn"]}, { "main": "cty tnhh mtv", "forms": ["công ty trách nhiệm hữu hạn một thành viên"], }, { "main": "cv", "forms": [ "comm. v", "commanditaire vennootschap", "gewone commanditaire vennootschap", ], }, { "main": "cva", "forms": ["comm. va", "commanditaire vennootschap op aandelen"], }, { "main": "cvba", "forms": ["coöperatieve vennootschap met beperkte aansprakelijkheid"], }, { "main": "cvoa", "forms": ["coöperatieve vennootschap met onbeperkte aansprakelijkheid"], }, {"main": "cía", "forms": ["compañía"]}, {"main": "dd", "forms": ["d.d.", "dioničko društvo"]}, {"main": "dis tic ltd", "forms": ["dis.tic.ltd"]}, {"main": "dnnn", "forms": ["doanh nghiệp nhà nước"]}, { "main": "dno", "forms": ["d.n.o.", "društvo s neograničenom solidarnom odgovornošću"], }, {"main": "dntn", "forms": ["doanh nghiệp tư nhân"]}, { "main": "doo", "forms": [ "d.o.o.", "društvo s ograničenom odgovornošću", "društvo sa ograničenom odgovornošću", "д.о.о.", "доо", "друштво са ограниченом одговорношћу", ], }, {"main": "dp", "forms": ["društveno preduzeće", "дп", "друштвено предузеће"]}, {"main": "dtnn", "forms": ["doanh nghiệp có vốn đầu tư nước ngoài"]}, { "main": "dzzd", "forms": [ "druzhestvo uchredeno po zakona za zadalzheniyata i dogovorite", "дззд", "дружество учредено по закона за задълженията и договорите", ], }, { "main": "ead", "forms": [ "ednolichno aktsionerno druzhestvo", "еад", "еднолично акционерно дружество", ], }, { "main": "ebvba", "forms": [ "eenpersoons besloten vennootschap met beperkte aansprakelijkheid" ], }, { "main": "ed", "forms": ["evropeysko druzhestvo", "eвропейско дружество", "ед"], }, { "main": "eeig", "forms": [ "european economic interest grouping", "evropeysko obedinenie po ikonomicheski interesi", "европейско обединение по икономически интереси", "еоии", ], }, {"main": "eg", "forms": ["eingetragene genossenschaft", "genossenschaft"]}, {"main": "ehf", "forms": ["einkahlutafélag"]}, {"main": "ei", "forms": ["entreprise individuelle"]}, { "main": "eireli", "forms": ["empresa individual de responsabilidade limitada"], }, {"main": "eirl", "forms": ["empresa individual de responsabilidad limitada"]}, {"main": "ek. för.", "forms": ["ekonomisk förening"]}, { "main": "ekd", "forms": [ "evropeysko kooperativno druzhestvo", "eвропейско кооперативно дружество", "екд", ], }, {"main": "ent.", "forms": ["enterprise"]}, { "main": "eood", "forms": [ "ednolichno druzhestvo s ogranichena otgovornost", "еднолично дружество с ограничена отговорност", "еоод", ], }, {"main": "ep", "forms": ["empresa pública"]}, {"main": "esv", "forms": ["economisch samenwerkingsverband"]}, {"main": "et", "forms": ["ednolichen targovets", "едноличен търговец", "ет"]}, { "main": "eu", "forms": ["eingetragenes einzelunternehmen", "empresa unipersonal"], }, { "main": "eurl", "forms": ["entreprise unipersonnelle à responsabilité limitée"], }, {"main": "ev", "forms": ["eingetragener verein"]}, {"main": "exp", "forms": ["export"]}, {"main": "exp corp", "forms": ["exp.corp"]}, {"main": "f:ma", "forms": ["enskild näringsidkare"]}, {"main": "fa", "forms": ["firma"]}, {"main": "fie", "forms": ["füüsilisest isikust ettevõtja"]}, {"main": "fmba", "forms": ["forening med begrænset ansvar"]}, {"main": "fze", "forms": ["free zone establishment"]}, {"main": "gbr", "forms": ["gesbr", "gesellschaft des bürgerlichen rechts"]}, {"main": "gie", "forms": ["groupement d'intérêt économique"]}, {"main": "giu", "forms": ["gospodarsko interesno udruženje"]}, {"main": "gk", "forms": ["合同会社"]}, { "main": "gmbh", "forms": [ "g.m.b.h", "gesellschaft mit besch haftung", "gesellschaft mit besch. haftung", "gesellschaft mit beschr haftung", "gesellschaft mit beschr. haftung", "gesellschaft mit beschränkter haftung", "gmbh & co.", "gmbh & co. kg", "gmbh and сo. kg", "gmbh und co. kg", "mit besch haftung", "mit beschr haftung", "mit beschränkter haftung", "гмбх", "гмбх енд ко. кг", ], }, {"main": "gmk", "forms": ["合名会社"]}, { "main": "gnpp", "forms": [ "gosudarstvennoe nauchno proizvodstvennoe predpriyatie", "scientific & production enterprise", "scientific and production enterprise", "государственное научно-производственное предприятие", "державне науково-виробниче підприємство", ], }, {"main": "gp", "forms": ["general partnership"]}, {"main": "gs", "forms": ["gensidigt selskab"]}, {"main": "gsk", "forms": ["合資会社"]}, {"main": "haao", "forms": ["halka açık anonim ortaklık"]}, {"main": "hf", "forms": ["hlutafélag"]}, {"main": "htx", "forms": ["hợp tác xã"]}, {"main": "huf", "forms": ["hindu undivided family"]}, { "main": "ii", "forms": [ "inteprinderea individuala", "interprinderea individuală", "intreprindere individuala", "intreprindere individuală", "intreprinderea ibdividuala", "intreprinderea individuala", "intreprinderea individuală", "intreprinderea indiviuala", "intreprinzator individual", "înterprinderea individuală", "întreprindera individuală", "întreprindere individuală", "întreprinderea individualî", "întreprinderea individuală", "întreprindserea individuală", "întreprinzător individual", "întreprinzătorul individual", ], }, {"main": "ik", "forms": ["individuālais komersants"]}, {"main": "im", "forms": ["întreprinderea municipală"]}, {"main": "imp", "forms": ["import"]}, {"main": "imp and", "forms": ["imp.and"]}, {"main": "inc", "forms": ["incorp", "incorporated", "incorporée"]}, {"main": "ins", "forms": ["insaat"]}, {"main": "ins oto san tic", "forms": ["ins.oto.san.tic"]}, {"main": "intl", "forms": ["international", "internationale", "інтернейшнл"]}, { "main": "is", "forms": [ "interessentskab", "intreprindere de stat alimentatiei publice", "intreprinderea de stat", "întreprinderea de stat", ], }, {"main": "ivs", "forms": ["iværksætterselskab"]}, { "main": "jdoo", "forms": ["j.d.o.o", "jednostavno društvo s ograničenom odgovornošću"], }, {"main": "jp", "forms": ["javno preduzeće", "јавно предузеће", "јп"]}, {"main": "jscb", "forms": ["joint stock commercial bank"]}, {"main": "jtd", "forms": ["j.t.d.", "javno trgovačko društvo"]}, {"main": "ju", "forms": ["(ju)", "jusikhoesa", "㈜", "주식회사"]}, {"main": "jv", "forms": ["joint venture"]}, {"main": "kb", "forms": ["kommanditbolag"]}, { "main": "kd", "forms": [ "k.d.", "komanditno druzhestvo", "komanditno društvo", "к.д", "кд", "командитно дружество", "командитно друштво", ], }, { "main": "kda", "forms": [ "komanditno druzhestvo s aktsii", "кда", "командитно дружество с акции", ], }, {"main": "keg", "forms": ["kommanditerwerbsgesellschaft"]}, { "main": "kft", "forms": [ "korlatolt felelossegu tarsasag", "korlátolt felelősségü társaság, organizační složka", "korlátolt felelősségű társaság", ], }, {"main": "kg", "forms": ["kommanditgesellschaft"]}, {"main": "kk", "forms": ["株式会社"]}, {"main": "koll. şti.", "forms": ["kolektif şirket"]}, {"main": "kom. şti", "forms": ["komandit şirket"]}, {"main": "koop", "forms": ["kooperatif şirket"]}, { "main": "ks", "forms": [ "komanditní společnost", "komandītsabiedrība", "kommanditselskab", ], }, {"main": "ky", "forms": ["kommandiittiyhtiö"]}, { "main": "llc", "forms": [ "limited liability company", "tavaristva z abmezhavanaj adkaznastsiu", "tob", "тзов", "тов", "товариство з обмеженою відповідальністю", ], }, {"main": "llp", "forms": ["limited liability partnership", "有限責任事業組合"]}, {"main": "lo", "forms": ["limited ortaklık"]}, {"main": "loj", "forms": ["lojistik"]}, {"main": "lp", "forms": ["limited partnership", "兩合公司"]}, { "main": "ltd", "forms": [ "lda.", "limitada", "limited", "limited by guarantee", "limited by shares", "limited company", "limitée", "ltd.", "ltd. co.", "ltda", "private company with limited liability", "private limited company", "private limited liability company", "pte ltd.", "sociedada limitada", "sociedade limitada", "компания с ограниченной ответственностью", "лимитед", 'בע"מ', "有限公司", ], }, {"main": "ltd sti", "forms": ["limited şirket", "ltd.sti"]}, { "main": "mchj", "forms": ["mas'uliyati cheklangan jamiyat", "масъулияти чекланган жамият"], }, {"main": "mmc", "forms": ["məhdud məsuliyyətli cəmiyyət"]}, {"main": "mtü", "forms": ["mittetulundusühing"]}, {"main": "na", "forms": ["national association"]}, {"main": "nk", "forms": ["nin'i kumiai", "任意組合"]}, {"main": "nl", "forms": ["no liability"]}, { "main": "np", "forms": ["некоммерческое партнерство", "некоммерческое партнёрство", "нп"], }, {"main": "nv", "forms": ["naamloze vennootschap"]}, { "main": "oaj", "forms": ["ochiq aksiyadorlik jamiyati", "очиқ акциядорлик жамияти"], }, { "main": "oao", "forms": [ "atviroji akcinė bendrovė", "avatud aktsiaselts", "avoin osakeyhtiö", "cuideachta comhstoic oscailte", "offene aktiengesellschaft", "ojsc", "open joint stock company", "openbare aandelenvennootschap", "otkrytoe akcionernoe obshchestvo", "otkrytoe aktsionernoe obshchestvo", "otwarta spółka akcyjna", "sociedad limitada por acciones abierta", "sociedade por ações aberta", "société par actions ouverte", "veřejná akciová společnost", "відкрите акціонерне товариство", "оао", "открытое акционерное общество", ], }, { "main": "od", "forms": ["o.d.", "ortačko društvo", "о.д.", "од", "ортачко друштво"], }, { "main": "odo", "forms": [ "obshchestvo s dopolnitel'noj otvetstvennost'yu", "общество с дополнительной ответственностью", "одо", ], }, {"main": "oeg", "forms": ["offene erwerbsgesellschaft"]}, {"main": "og", "forms": ["offene gesellschaft"]}, {"main": "ok", "forms": ["oilaviy korxona", "оилавий корхона"]}, {"main": "ong", "forms": ["organização não governamental"]}, { "main": "ood", "forms": [ "drujestvo s ogranichena otgovornost", "druzhestvo s ogranichena otgovornost", "дружество с ограничена отговорност", "оод", ], }, { "main": "ooo", "forms": [ "obshchestvo s ogranichennoj otvetstvennost'yu", "oсoo", "ликвидационная комиссия общества с ограниченной ответственностью", "ликвидационная комиссия общество с ограниченной ответственностью", "ликвидационная комиссия ооо", "общество с ограниченной ответственностью", "общество с ограниченной ответственностью строительная компания", "общество с ограниченной ответственностью торговый дом", "общество с ограниченной ответственностью управляющая компания", "общество с ограниченной ответственностью фирма", "общество с ограниченной ответственностью частная охранная организация", "общество с ограниченной ответственностью частное охранное предприятие", "ооо", ], }, {"main": "opg", "forms": ["obiteljsko poljoprivredno gospodarstvo"]}, {"main": "ops", "forms": ["obecně prospěšná společnost"]}, {"main": "os", "forms": ["občanské sdružení."]}, { "main": "oscip", "forms": ["organização da sociedade civil de interesse público"], }, {"main": "osk", "forms": ["osuuskunta"]}, {"main": "owm", "forms": ["onderlinge waarborgmaatschappij"]}, {"main": "oy", "forms": ["osakeyhtiö"]}, {"main": "oyj", "forms": ["julkinen osakeyhtiö"]}, {"main": "oü", "forms": ["osaühing"]}, {"main": "pc", "forms": ["ኮርፖሬሽን"]}, {"main": "pe", "forms": ["የመንግስት ልማት ድርጅቶች"]}, { "main": "peec", "forms": ["public establishment with economic characteristics"], }, { "main": "plc", "forms": ["public limited company", "ሃላፊነቱ የተወሰነ የግል ማህበር", "股份有限公司"], }, {"main": "plt", "forms": []}, {"main": "pp", "forms": ["приватне підприємство"]}, {"main": "pr", "forms": ["preduzetnik", "пр", "предузетник"]}, {"main": "ps", "forms": ["partnerselskab", "pilnsabiedrība"]}, {"main": "pse", "forms": ["public sector enterprise"]}, {"main": "psu", "forms": ["public sector undertaking"]}, {"main": "pt", "forms": ["perseroan terbatas"]}, {"main": "pt tbk", "forms": ["perseroan terbatas terbuka"]}, { "main": "pty", "forms": ["proprietary limited", "proprietary limited company", "pty ltd"], }, {"main": "qk", "forms": ["qo'shma korxona", "қўшма корхона"]}, { "main": "qmj", "forms": ["qo'shimcha ma'suliyatli jamiyat", "қўшимча масъулиятли жамият"], }, { "main": "qsc", "forms": ["qapalı səhmdar cəmiyyəti", "qapalı tipli səhmdar cəmiyyəti"], }, { "main": "rao", "forms": [ "pao", "pjsc", "private joint stock company", "пао", "приватне акціонерне товариство", "публичное акционерное общество", ], }, {"main": "rp", "forms": ["rekisteröity puolue"]}, {"main": "rs", "forms": ["säätiö"]}, {"main": "ry", "forms": ["rekisteröity yhdistys"]}, {"main": "s. en c.", "forms": ["comandita simple"]}, {"main": "s.cra.", "forms": ["sociedad comanditaria"]}, { "main": "sa", "forms": [ "s.a.", "sarf", "sociedad anonima", "sociedad anónima", "sociedad en comandita por acciones", "sociedad por acciones", "sociedada anonima", "sociedade anónima", "sociedade anônima", "sociedá anónima", "societat anònima", "societate pe acțiuni", "societatea pe actiuni", "societatea pe acţiuni", "societateare pe actiuni", "società anonima", "société anonyme", "société par actions de régime fédéral", "société par actions par loi sur les sociétés par actions", "spółka akcyjna", "شركة خفية الإسم", ], }, {"main": "sad", "forms": ["sociedad anónima deportiva"]}, {"main": "sae", "forms": ["sharikat al-mossahamah"]}, {"main": "san", "forms": ["sanayi"]}, {"main": "san as", "forms": ["san.a.s"]}, {"main": "san tic", "forms": ["san.tic"]}, {"main": "san tic ltd", "forms": ["san.tic.ltd."]}, {"main": "san tic ltd sti", "forms": ["san.tic.ltd.sti"]}, {"main": "san ve", "forms": ["san.ve"]}, {"main": "saoc", "forms": ["société anonyme omanaise close"]}, {"main": "saog", "forms": ["société anonyme omanaise générale"]}, {"main": "sapa", "forms": ["società in accomandita per azioni"]}, { "main": "sarl", "forms": [ "société à responsabilité limitée", "شّركة ذات مسؤوليّات محدودة ش.م.م", ], }, { "main": "sas", "forms": [ "sociedades por acciones simplificada", "société par actions simplifiée", ], }, { "main": "sc", "forms": [ "compania comerciala si de productie societatea cu responsabilitate limitata", "sociedad colectiva", "societatea comercială", "አክሲዩን ማህበር", ], }, { "main": "sca", "forms": ["comandita por acciones", "société en commandite par actions"], }, {"main": "scc", "forms": ["société commerciale canadienne"]}, {"main": "sce", "forms": ["societas cooperativa europaea"]}, {"main": "scei", "forms": ["sociedad de capital e industria"]}, {"main": "scop", "forms": ["société coopérative de production"]}, {"main": "scpa", "forms": ["sociedad civil privada"]}, { "main": "scs", "forms": [ "secs", "sociedad en comandita simple", "société en commandite simple", ], }, { "main": "sd", "forms": [ "s-ie", "sabiratelno druzhestvo (sd)/sadruzhie", "sd/s-ie", "с-ие", "сд", "събирателно дружество", "събирателно дружество (сд)/съдружие", ], }, {"main": "sdn bhd", "forms": ["sendirian berhad"]}, {"main": "se", "forms": ["sociedad del estado", "societas europaea"]}, {"main": "sem", "forms": ["société d'économie mixte"]}, {"main": "sep", "forms": ["société en participation"]}, {"main": "sf", "forms": ["sameignarfélag"]}, { "main": "sgr", "forms": [ "sociedad de garantia reciproca", "sociedad de garantía reciproca", ], }, {"main": "sh.a", "forms": ["shoqëri aksionere"]}, {"main": "shpk", "forms": ["sh.p.k", "shoqëri me përgjegjësi të kufizuar"]}, {"main": "sia", "forms": ["sabiedrība ar ierobežotu atbildību", "сиа"]}, {"main": "sicaf", "forms": ["société d'investissement à capital fixe"]}, {"main": "sicav", "forms": ["société d'investissement à capital variable"]}, {"main": "sjsc", "forms": ["дат", "державне акціонерне товариство"]}, {"main": "sll", "forms": ["sociedad limitada laboral"]}, {"main": "slne", "forms": ["s.l.n.e.", "sociedad limitada nueva empresa"]}, {"main": "sm pte ltd.", "forms": ["single member private limited company"]}, {"main": "smba", "forms": ["selskab med begrænset ansvar"]}, {"main": "snc", "forms": ["société en nom collectif"]}, {"main": "snt", "forms": ["садоводческое некоммерческое товарищество"]}, { "main": "sp", "forms": [ "s.p.", "samostalni preduzetnik", "sole proprietorship", "státní podnik", ], }, {"main": "spa", "forms": ["società per azioni"]}, {"main": "spe", "forms": ["societas privata europaea"]}, {"main": "spf", "forms": ["stichting particulier fonds"]}, { "main": "sprl", "forms": [ "société privée à responsabilité limitée", "société privée à responsabilité limitée unipersonnelle", ], }, { "main": "spzoo", "forms": [ "sp zoo", "sp. z o.o.", "sp. z o.o. sp.k", "sp. z oo", "sp. zoo", "spolka z ograniczona odpowiedzialnoscia", "spółka z ograniczoną odpowiedzialnością", ], }, { "main": "srl", "forms": [ "intreprinderea cu responsabilitate limitata", "s.r.l", "s.r.l.", "sicietatea de raspundere limitata", "sociedad de responsabilidad limitada", "societata cu raspundere limitata", "societate cu rasponbilitate limitata", "societate cu raspundere limitata", "societate cu responsabilitate limiiata", "societate cu responsabilitate limitata", "societate cu răspundere limitată", "societate cu răspundre limitată", "societatea cu rasdpundere limitata", "societatea cu rasponsabilitate limitata", "societatea cu raspundere", "societatea cu raspundere limitata", "societatea cu raspundere limitate", "societatea cu responsabilitate limitata", "societatea cu responsabilitatea limitata", "societatea cu respundere limitata", "societatea cu răspundere", "societatea cu răspundere limitată", "societatii cu raspunderea limitata", "societete cu răspundere limitată", "società a responsabilità limitata", "socitate cu responsabilitate limitata", ], }, {"main": "sro", "forms": ["s.r.o", "společnost s ručením omezeným"]}, {"main": "stg", "forms": ["stille gesellschaft"]}, {"main": "sti", "forms": ["sirketi"]}, {"main": "suarl", "forms": ["شّركة فردية ذات مسؤوليّات محدودة"]}, {"main": "t:mi", "forms": ["oiminimi"]}, {"main": "tes", "forms": ["tesisat"]}, {"main": "tes tek dis", "forms": ["tes.tek.dis"]}, {"main": "tic", "forms": ["ticaret"]}, {"main": "tic as", "forms": ["tic.a.s."]}, {"main": "tic ltd sti", "forms": ["tic.ltd.sti"]}, {"main": "tk", "forms": ["tokumei kumiai", "匿名組合"]}, {"main": "too", "forms": ["товарищество с ограниченной ответственностью"]}, { "main": "tpb", "forms": [ "corporația de rachete balistice tactice", "društvo za taktičke projektile", "tactical missile company", "tactical missile corporation", "takticheskoe raketnoe vooruzhenie", "тактическое ракетное вооружение", "тактичне ракетне озброєння", ], }, {"main": "tü", "forms": ["täisühing"]}, { "main": "uab", "forms": ["uždaroji akcinė bendrovė", "uždarosios akcinės bendrovės"], }, {"main": "ud", "forms": ["usaha dagang"]}, {"main": "uk", "forms": ["unitar korxona", "унитар корхона"]}, { "main": "ultd", "forms": [ "unlimited", "unlimited company", "unlimited proprietary", "unltd", "無限公司", ], }, { "main": "up", "forms": [ "consorzio statale", "den føderale statsejede budgetinstitution", "empresa orçamental do estado federal", "empresa unitaria estatal de la", "empresa unitária estatal", "entità statali", "entreprise unitaire d’état", "federal state budgetary enterprise", "federal state budgetary institution", "federal state institution", "federal state unitary enterprise", "federalna budżetowa instytucja", "federalnoe gosudarstvennoe byudzhetnoe uchrezhdenie", "föderales staatseigenes unternehmen", "gosudarstvennoe unitarnoe predpriyatie", "impresa unitaria statale", "staatliches einheitsunternehmen", "staatskonzern", "state concern", "state enterprise", "state unitary enterprise", "state unitary enterprise of the", "státní jednotný podnik", "státní koncern", "unitarnoe predpriyatie", "unіtarnae pradpryemstva", "štátny unitárny podnik", "государственного унитарного предприятия", "государственное унитарное предприятие", "гп", "гуп", "державного унітарного підприємства", "унитарное предприятие", "унітарнае прадпрыемства", "уп", ], }, {"main": "uü", "forms": ["usaldusühing"]}, {"main": "vof", "forms": ["vennootschap onder firma"]}, {"main": "vos", "forms": ["veřejná obchodní společnost"]}, { "main": "vzw", "forms": [ "internationale vereniging zonder winstoogmerk", "ivzw", "vereinigung ohne gewinnerzielungsabsicht", "vereniging zonder winstoogmerk", "vog", ], }, {"main": "xk", "forms": ["xususiy korxona", "хусусий корхона"]}, {"main": "xt", "forms": ["xususiy tadbirkorlik", "хусусий тадбиркорлик"]}, {"main": "yk", "forms": ["有限会社"]}, { "main": "yoaj", "forms": ["yopiq aksiyadorlik jamiyati", "ёпиқ акциядорлик жамияти"], }, {"main": "yu", "forms": ["(yu)", "(유)", "yuhanhoesa", "유한회사"]}, { "main": "zao", "forms": [ "cjsc", "closed joint stock company", "zakrytoe akcionernoe obshchestvo", "zaо", "закрите акціонерне товариство", "закрытое акционерное общество", "зао", ], }, { "main": "zat", "forms": [ "zakritaye aktsiyanernaye tavaristva", "zakrytae akcyyanernae tavarystva", "закрытае акцыянернае таварыства", "зат", ], }, {"main": "zs", "forms": ["z.s.", "zapsaný spolek"]}, {"main": "şb", "forms": ["şube"]}, {"main": "пуп", "forms": ["прыватнае унітарнае прадпрыемства"]}, { "main": "тda", "forms": [ "tavarystva z dadatkovaj adkaznascyu", "таварыства з дадатковай адказнасцю", "тда", ], }, { "main": "таа", "forms": [ "tavarystva z abmezhavanaj adkaznascyu", "таварыства з абмежаванай адказнасцю", ], }, {"main": "тбб", "forms": ["төрийн бус байгууллага"]}, { "main": "тсж", "forms": [ "товарищество собственников жилья", "товарищество собственников недвижимости", ], }, {"main": "хк", "forms": ["хувьцаат компани"]}, {"main": "ххк", "forms": ["хязгаарлагдмал хариуцлагатай компани"]}, ] } fingerprints-1.2.3/fingerprints/types/replacer.py000066400000000000000000000046271450772166600223030ustar00rootroot00000000000000import re import logging from functools import lru_cache from typing import Callable, Optional, Dict, Match from fingerprints.types.data import TYPES from fingerprints.constants import WS from fingerprints.cleanup import clean_name_ascii log = logging.getLogger(__name__) NormFunc = Callable[[Optional[str]], Optional[str]] ReplaceFunc = Callable[[Optional[str]], Optional[str]] class Replacer(object): def __init__(self, replacements: Dict[str, str], remove: bool = False) -> None: self.replacements = replacements self.remove = remove forms = set(self.replacements.keys()) if remove: forms.update(self.replacements.values()) forms_sorted = sorted(forms, key=lambda ct: -1 * len(ct)) forms_regex = "\\b(%s)\\b" % "|".join(forms_sorted) self.matcher = re.compile(forms_regex, re.U) def get_canonical(self, match: Match[str]) -> str: if self.remove: return WS return self.replacements.get(match.group(1), match.group(1)) def __call__(self, text: Optional[str]) -> Optional[str]: if text is None: return None return self.matcher.sub(self.get_canonical, text) def normalize_replacements(norm_func: NormFunc) -> Dict[str, str]: replacements: Dict[str, str] = {} for type in TYPES["types"]: main_norm = norm_func(type["main"]) if main_norm is None: log.warning("Main form is normalized to null: %r", type["main"]) continue for form in type["forms"]: form_norm = norm_func(form) if form_norm is None: log.warning("Form is normalized to null [%r]: %r", type["main"], form) continue if form_norm == main_norm: continue if form_norm in replacements and replacements[form_norm] != main_norm: log.warning( "Form has duplicate mains: %r (%r, %r)", form, replacements[form_norm], main_norm, ) continue replacements[form_norm] = main_norm return replacements @lru_cache(maxsize=None) def get_replacer( clean: NormFunc = clean_name_ascii, remove: bool = False ) -> ReplaceFunc: replacements = normalize_replacements(clean) return Replacer(replacements, remove=remove) if __name__ == "__main__": get_replacer() fingerprints-1.2.3/fingerprints/types/types.yml000066400000000000000000000617221450772166600220220ustar00rootroot00000000000000types: - main: 3at forms: - закрытае ацыянернае таварыства - main: aat forms: - adkritaye aktsiyanernaye tavaristva - adkrytae akcyyanernae tavarystva - аат - адкрытае акцыянернае таварыства - main: ab forms: - abp - aktiebolag - publikt aktiebolag - main: abv forms: - aandeelhouder-bestuurde vennootschap - main: ad forms: - a.d - a.d. - akcionarsko društvo - aktsionerno druzhestvo - а.д - ад - акционарско друштво - акционерно дружество - main: adsic forms: - adsitz - aktsionerno druzhestvo sas spetsialna investitsionna tsel - адсиц - акционерно дружество със специална инвестиционна цел - main: ae forms: - anónimi etería - ανώνυμη εταιρεία - main: ag forms: - aksiyadorlik jamiyati - aktiengesellschaft - акциядорлик жамияти - main: amba forms: - andelsselskab med begrænset ansvar - main: anl forms: - andelslag - main: ano forms: - автономная некоммерческая организация - ано - main: anpo forms: - autonomous non-profit organization - main: ao forms: - aktsionernoe obschestvo - anonim ortaklık - joint stock company - joint-stock company - jsc - public stock company - акционерная компания с ограниченной ответственностью - акционерное общество - акціонерне товариство - акціонерного товариства - main: aps forms: - anpartsselskab - main: as forms: - akciju sabiedrība - akciová společnost - akciová spoločnosť - aktieselskab - aktieselskabet - aktsiaselts - anonim şirket - main: asbl forms: - aisbl - association internationale sans but lucratif - association sans but lucratif - main: asc forms: - açıq səhmdar cəmiyyəti - main: ay forms: - avoin yhtiö - main: bhd forms: - berhad - main: bv forms: - besloten vennootschap - main: bvba forms: - besloten vennootschap met beperkte aansprakelijkheid - main: ca forms: - compañía anónima - main: co forms: - company - компания - main: co ltd forms: - cia ltda - co., ltd. - co.ltd - compañía limitada - main: coop forms: - co-op - cooperation - cooperative - coopératif - coopération - coopérative - kooperatsia - sociedad cooperativa - spółdzielni - кооперация - main: corp forms: - corporation - main: cp forms: - fond commun de placement - main: cs forms: - ህብረት ስራ ማህበራት - main: cty cp forms: - công ty cổ phần - main: cty tnhh forms: - công ty trách nhiệm hữu hạn - main: cty tnhh mtv forms: - công ty trách nhiệm hữu hạn một thành viên - main: cv forms: - comm. v - commanditaire vennootschap - gewone commanditaire vennootschap - main: cva forms: - comm. va - commanditaire vennootschap op aandelen - main: cvba forms: - coöperatieve vennootschap met beperkte aansprakelijkheid - main: cvoa forms: - coöperatieve vennootschap met onbeperkte aansprakelijkheid - main: cía forms: - compañía - main: dd forms: - d.d. - dioničko društvo - main: dis tic ltd forms: - dis.tic.ltd - main: dnnn forms: - doanh nghiệp nhà nước - main: dno forms: - d.n.o. - društvo s neograničenom solidarnom odgovornošću - main: dntn forms: - doanh nghiệp tư nhân - main: doo forms: - d.o.o. - društvo s ograničenom odgovornošću - društvo sa ograničenom odgovornošću - д.о.о. - доо - друштво са ограниченом одговорношћу - main: dp forms: - društveno preduzeće - дп - друштвено предузеће - main: dtnn forms: - doanh nghiệp có vốn đầu tư nước ngoài - main: dzzd forms: - druzhestvo uchredeno po zakona za zadalzheniyata i dogovorite - дззд - дружество учредено по закона за задълженията и договорите - main: ead forms: - ednolichno aktsionerno druzhestvo - еад - еднолично акционерно дружество - main: ebvba forms: - eenpersoons besloten vennootschap met beperkte aansprakelijkheid - main: ed forms: - evropeysko druzhestvo - eвропейско дружество - ед - main: eeig forms: - european economic interest grouping - evropeysko obedinenie po ikonomicheski interesi - европейско обединение по икономически интереси - еоии - main: eg forms: - eingetragene genossenschaft - genossenschaft - main: ehf forms: - einkahlutafélag - main: ei forms: - entreprise individuelle - main: eireli forms: - empresa individual de responsabilidade limitada - main: eirl forms: - empresa individual de responsabilidad limitada - main: ek. för. forms: - ekonomisk förening - main: ekd forms: - evropeysko kooperativno druzhestvo - eвропейско кооперативно дружество - екд - main: ent. forms: - enterprise - main: eood forms: - ednolichno druzhestvo s ogranichena otgovornost - еднолично дружество с ограничена отговорност - еоод - main: ep forms: - empresa pública - main: esv forms: - economisch samenwerkingsverband - main: et forms: - ednolichen targovets - едноличен търговец - ет - main: eu forms: - eingetragenes einzelunternehmen - empresa unipersonal - main: eurl forms: - entreprise unipersonnelle à responsabilité limitée - main: ev forms: - eingetragener verein - main: exp forms: - export - main: exp corp forms: - exp.corp - main: f:ma forms: - enskild näringsidkare - main: fa forms: - firma - main: fie forms: - füüsilisest isikust ettevõtja - main: fmba forms: - forening med begrænset ansvar - main: fze forms: - free zone establishment - main: gbr forms: - gesbr - gesellschaft des bürgerlichen rechts - main: gie forms: - groupement d'intérêt économique - main: giu forms: - gospodarsko interesno udruženje - main: gk forms: - 合同会社 - main: gmbh forms: - g.m.b.h - gesellschaft mit besch haftung - gesellschaft mit besch. haftung - gesellschaft mit beschr haftung - gesellschaft mit beschr. haftung - gesellschaft mit beschränkter haftung - gmbh & co. - gmbh & co. kg - gmbh and сo. kg - gmbh und co. kg - mit besch haftung - mit beschr haftung - mit beschränkter haftung - гмбх - гмбх енд ко. кг - main: gmk forms: - 合名会社 - main: gnpp forms: - gosudarstvennoe nauchno proizvodstvennoe predpriyatie - scientific & production enterprise - scientific and production enterprise - государственное научно-производственное предприятие - державне науково-виробниче підприємство - main: gp forms: - general partnership - main: gs forms: - gensidigt selskab - main: gsk forms: - 合資会社 - main: haao forms: - halka açık anonim ortaklık - main: hf forms: - hlutafélag - main: htx forms: - hợp tác xã - main: huf forms: - hindu undivided family - main: ii forms: - inteprinderea individuala - interprinderea individuală - intreprindere individuala - intreprindere individuală - intreprinderea ibdividuala - intreprinderea individuala - intreprinderea individuală - intreprinderea indiviuala - intreprinzator individual - înterprinderea individuală - întreprindera individuală - întreprindere individuală - întreprinderea individualî - întreprinderea individuală - întreprindserea individuală - întreprinzător individual - întreprinzătorul individual - main: ik forms: - individuālais komersants - main: im forms: - întreprinderea municipală - main: imp forms: - import - main: imp and forms: - imp.and - main: inc forms: - incorp - incorporated - incorporée - main: ins forms: - insaat - main: ins oto san tic forms: - ins.oto.san.tic - main: intl forms: - international - internationale - інтернейшнл - main: is forms: - interessentskab - intreprindere de stat alimentatiei publice - intreprinderea de stat - întreprinderea de stat - main: ivs forms: - iværksætterselskab - main: jdoo forms: - j.d.o.o - jednostavno društvo s ograničenom odgovornošću - main: jp forms: - javno preduzeće - јавно предузеће - јп - main: jscb forms: - joint stock commercial bank - main: jtd forms: - j.t.d. - javno trgovačko društvo - main: ju forms: - (ju) - jusikhoesa - ㈜ - 주식회사 - main: jv forms: - joint venture - main: kb forms: - kommanditbolag - main: kd forms: - k.d. - komanditno druzhestvo - komanditno društvo - к.д - кд - командитно дружество - командитно друштво - main: kda forms: - komanditno druzhestvo s aktsii - кда - командитно дружество с акции - main: keg forms: - kommanditerwerbsgesellschaft - main: kft forms: - korlatolt felelossegu tarsasag - korlátolt felelősségü társaság, organizační složka - korlátolt felelősségű társaság - main: kg forms: - kommanditgesellschaft - main: kk forms: - 株式会社 - main: koll. şti. forms: - kolektif şirket - main: kom. şti forms: - komandit şirket - main: koop forms: - kooperatif şirket - main: ks forms: - komanditní společnost - komandītsabiedrība - kommanditselskab - main: ky forms: - kommandiittiyhtiö - main: llc forms: - limited liability company - tavaristva z abmezhavanaj adkaznastsiu - tob - тзов - тов - товариство з обмеженою відповідальністю - main: llp forms: - limited liability partnership - 有限責任事業組合 - main: lo forms: - limited ortaklık - main: loj forms: - lojistik - main: lp forms: - limited partnership - 兩合公司 - main: ltd forms: - lda. - limitada - limited - limited by guarantee - limited by shares - limited company - limitée - ltd. - ltd. co. - ltda - private company with limited liability - private limited company - private limited liability company - pte ltd. - sociedada limitada - sociedade limitada - компания с ограниченной ответственностью - лимитед - בע"מ - 有限公司 - main: ltd sti forms: - limited şirket - ltd.sti - main: mchj forms: - mas'uliyati cheklangan jamiyat - масъулияти чекланган жамият - main: mmc forms: - məhdud məsuliyyətli cəmiyyət - main: mtü forms: - mittetulundusühing - main: na forms: - national association - main: nk forms: - nin'i kumiai - 任意組合 - main: nl forms: - no liability - main: np forms: - некоммерческое партнерство - некоммерческое партнёрство - нп - main: nv forms: - naamloze vennootschap - main: oaj forms: - ochiq aksiyadorlik jamiyati - очиқ акциядорлик жамияти - main: oao forms: - atviroji akcinė bendrovė - avatud aktsiaselts - avoin osakeyhtiö - cuideachta comhstoic oscailte - offene aktiengesellschaft - ojsc - open joint stock company - openbare aandelenvennootschap - otkrytoe akcionernoe obshchestvo - otkrytoe aktsionernoe obshchestvo - otwarta spółka akcyjna - sociedad limitada por acciones abierta - sociedade por ações aberta - société par actions ouverte - veřejná akciová společnost - відкрите акціонерне товариство - оао - открытое акционерное общество - main: od forms: - o.d. - ortačko društvo - о.д. - од - ортачко друштво - main: odo forms: - obshchestvo s dopolnitel'noj otvetstvennost'yu - общество с дополнительной ответственностью - одо - main: oeg forms: - offene erwerbsgesellschaft - main: og forms: - offene gesellschaft - main: ok forms: - oilaviy korxona - оилавий корхона - main: ong forms: - organização não governamental - main: ood forms: - drujestvo s ogranichena otgovornost - druzhestvo s ogranichena otgovornost - дружество с ограничена отговорност - оод - main: ooo forms: - obshchestvo s ogranichennoj otvetstvennost'yu - oсoo - ликвидационная комиссия общества с ограниченной ответственностью - ликвидационная комиссия общество с ограниченной ответственностью - ликвидационная комиссия ооо - общество с ограниченной ответственностью - общество с ограниченной ответственностью строительная компания - общество с ограниченной ответственностью торговый дом - общество с ограниченной ответственностью управляющая компания - общество с ограниченной ответственностью фирма - общество с ограниченной ответственностью частная охранная организация - общество с ограниченной ответственностью частное охранное предприятие - ооо - main: opg forms: - obiteljsko poljoprivredno gospodarstvo - main: ops forms: - obecně prospěšná společnost - main: os forms: - občanské sdružení. - main: oscip forms: - organização da sociedade civil de interesse público - main: osk forms: - osuuskunta - main: owm forms: - onderlinge waarborgmaatschappij - main: oy forms: - osakeyhtiö - main: oyj forms: - julkinen osakeyhtiö - main: oü forms: - osaühing - main: pc forms: - ኮርፖሬሽን - main: pe forms: - የመንግስት ልማት ድርጅቶች - main: peec forms: - public establishment with economic characteristics - main: plc forms: - public limited company - ሃላፊነቱ የተወሰነ የግል ማህበር - 股份有限公司 - main: plt forms: [] - main: pp forms: - приватне підприємство - main: pr forms: - preduzetnik - пр - предузетник - main: ps forms: - partnerselskab - pilnsabiedrība - main: pse forms: - public sector enterprise - main: psu forms: - public sector undertaking - main: pt forms: - perseroan terbatas - main: pt tbk forms: - perseroan terbatas terbuka - main: pty forms: - proprietary limited - proprietary limited company - pty ltd - main: qk forms: - qo'shma korxona - қўшма корхона - main: qmj forms: - qo'shimcha ma'suliyatli jamiyat - қўшимча масъулиятли жамият - main: qsc forms: - qapalı səhmdar cəmiyyəti - qapalı tipli səhmdar cəmiyyəti - main: rao forms: - pao - pjsc - private joint stock company - пао - приватне акціонерне товариство - публичное акционерное общество - main: rp forms: - rekisteröity puolue - main: rs forms: - säätiö - main: ry forms: - rekisteröity yhdistys - main: s. en c. forms: - comandita simple - main: s.cra. forms: - sociedad comanditaria - main: sa forms: - s.a. - sarf - sociedad anonima - sociedad anónima - sociedad en comandita por acciones - sociedad por acciones - sociedada anonima - sociedade anónima - sociedade anônima - sociedá anónima - societat anònima - societate pe acțiuni - societatea pe actiuni - societatea pe acţiuni - societateare pe actiuni - società anonima - société anonyme - société par actions de régime fédéral - société par actions par loi sur les sociétés par actions - spółka akcyjna - شركة خفية الإسم - main: sad forms: - sociedad anónima deportiva - main: sae forms: - sharikat al-mossahamah - main: san forms: - sanayi - main: san as forms: - san.a.s - main: san tic forms: - san.tic - main: san tic ltd forms: - san.tic.ltd. - main: san tic ltd sti forms: - san.tic.ltd.sti - main: san ve forms: - san.ve - main: saoc forms: - société anonyme omanaise close - main: saog forms: - société anonyme omanaise générale - main: sapa forms: - società in accomandita per azioni - main: sarl forms: - société à responsabilité limitée - شّركة ذات مسؤوليّات محدودة ش.م.م - main: sas forms: - sociedades por acciones simplificada - société par actions simplifiée - main: sc forms: - compania comerciala si de productie societatea cu responsabilitate limitata - sociedad colectiva - societatea comercială - አክሲዩን ማህበር - main: sca forms: - comandita por acciones - société en commandite par actions - main: scc forms: - société commerciale canadienne - main: sce forms: - societas cooperativa europaea - main: scei forms: - sociedad de capital e industria - main: scop forms: - société coopérative de production - main: scpa forms: - sociedad civil privada - main: scs forms: - secs - sociedad en comandita simple - société en commandite simple - main: sd forms: - s-ie - sabiratelno druzhestvo (sd)/sadruzhie - sd/s-ie - с-ие - сд - събирателно дружество - събирателно дружество (сд)/съдружие - main: sdn bhd forms: - sendirian berhad - main: se forms: - sociedad del estado - societas europaea - main: sem forms: - société d'économie mixte - main: sep forms: - société en participation - main: sf forms: - sameignarfélag - main: sgr forms: - sociedad de garantia reciproca - sociedad de garantía reciproca - main: sh.a forms: - shoqëri aksionere - main: shpk forms: - sh.p.k - shoqëri me përgjegjësi të kufizuar - main: sia forms: - sabiedrība ar ierobežotu atbildību - сиа - main: sicaf forms: - société d'investissement à capital fixe - main: sicav forms: - société d'investissement à capital variable - main: sjsc forms: - дат - державне акціонерне товариство - main: sll forms: - sociedad limitada laboral - main: slne forms: - s.l.n.e. - sociedad limitada nueva empresa - main: sm pte ltd. forms: - single member private limited company - main: smba forms: - selskab med begrænset ansvar - main: snc forms: - société en nom collectif - main: snt forms: - садоводческое некоммерческое товарищество - main: sp forms: - s.p. - samostalni preduzetnik - sole proprietorship - státní podnik - main: spa forms: - società per azioni - main: spe forms: - societas privata europaea - main: spf forms: - stichting particulier fonds - main: sprl forms: - société privée à responsabilité limitée - société privée à responsabilité limitée unipersonnelle - main: spzoo forms: - sp zoo - sp. z o.o. - sp. z o.o. sp.k - sp. z oo - sp. zoo - spolka z ograniczona odpowiedzialnoscia - spółka z ograniczoną odpowiedzialnością - main: srl forms: - intreprinderea cu responsabilitate limitata - s.r.l - s.r.l. - sicietatea de raspundere limitata - sociedad de responsabilidad limitada - societata cu raspundere limitata - societate cu rasponbilitate limitata - societate cu raspundere limitata - societate cu responsabilitate limiiata - societate cu responsabilitate limitata - societate cu răspundere limitată - societate cu răspundre limitată - societatea cu rasdpundere limitata - societatea cu rasponsabilitate limitata - societatea cu raspundere - societatea cu raspundere limitata - societatea cu raspundere limitate - societatea cu responsabilitate limitata - societatea cu responsabilitatea limitata - societatea cu respundere limitata - societatea cu răspundere - societatea cu răspundere limitată - societatii cu raspunderea limitata - societete cu răspundere limitată - società a responsabilità limitata - socitate cu responsabilitate limitata - main: sro forms: - s.r.o - společnost s ručením omezeným - main: stg forms: - stille gesellschaft - main: sti forms: - sirketi - main: suarl forms: - شّركة فردية ذات مسؤوليّات محدودة - main: t:mi forms: - oiminimi - main: tes forms: - tesisat - main: tes tek dis forms: - tes.tek.dis - main: tic forms: - ticaret - main: tic as forms: - tic.a.s. - main: tic ltd sti forms: - tic.ltd.sti - main: tk forms: - tokumei kumiai - 匿名組合 - main: too forms: - товарищество с ограниченной ответственностью - main: tpb forms: - corporația de rachete balistice tactice - društvo za taktičke projektile - tactical missile company - tactical missile corporation - takticheskoe raketnoe vooruzhenie - тактическое ракетное вооружение - тактичне ракетне озброєння - main: tü forms: - täisühing - main: uab forms: - uždaroji akcinė bendrovė - uždarosios akcinės bendrovės - main: ud forms: - usaha dagang - main: uk forms: - unitar korxona - унитар корхона - main: ultd forms: - unlimited - unlimited company - unlimited proprietary - unltd - 無限公司 - main: up forms: - consorzio statale - den føderale statsejede budgetinstitution - empresa orçamental do estado federal - empresa unitaria estatal de la - empresa unitária estatal - entità statali - entreprise unitaire d’état - federal state budgetary enterprise - federal state budgetary institution - federal state institution - federal state unitary enterprise - federalna budżetowa instytucja - federalnoe gosudarstvennoe byudzhetnoe uchrezhdenie - föderales staatseigenes unternehmen - gosudarstvennoe unitarnoe predpriyatie - impresa unitaria statale - staatliches einheitsunternehmen - staatskonzern - state concern - state enterprise - state unitary enterprise - state unitary enterprise of the - státní jednotný podnik - státní koncern - unitarnoe predpriyatie - unіtarnae pradpryemstva - štátny unitárny podnik - государственного унитарного предприятия - государственное унитарное предприятие - гп - гуп - державного унітарного підприємства - унитарное предприятие - унітарнае прадпрыемства - уп - main: uü forms: - usaldusühing - main: vof forms: - vennootschap onder firma - main: vos forms: - veřejná obchodní společnost - main: vzw forms: - internationale vereniging zonder winstoogmerk - ivzw - vereinigung ohne gewinnerzielungsabsicht - vereniging zonder winstoogmerk - vog - main: xk forms: - xususiy korxona - хусусий корхона - main: xt forms: - xususiy tadbirkorlik - хусусий тадбиркорлик - main: yk forms: - 有限会社 - main: yoaj forms: - yopiq aksiyadorlik jamiyati - ёпиқ акциядорлик жамияти - main: yu forms: - (yu) - (유) - yuhanhoesa - 유한회사 - main: zao forms: - cjsc - closed joint stock company - zakrytoe akcionernoe obshchestvo - zaо - закрите акціонерне товариство - закрытое акционерное общество - зао - main: zat forms: - zakritaye aktsiyanernaye tavaristva - zakrytae akcyyanernae tavarystva - закрытае акцыянернае таварыства - зат - main: zs forms: - z.s. - zapsaný spolek - main: şb forms: - şube - main: пуп forms: - прыватнае унітарнае прадпрыемства - main: тda forms: - tavarystva z dadatkovaj adkaznascyu - таварыства з дадатковай адказнасцю - тда - main: таа forms: - tavarystva z abmezhavanaj adkaznascyu - таварыства з абмежаванай адказнасцю - main: тбб forms: - төрийн бус байгууллага - main: тсж forms: - товарищество собственников жилья - товарищество собственников недвижимости - main: хк forms: - хувьцаат компани - main: ххк forms: - хязгаарлагдмал хариуцлагатай компани fingerprints-1.2.3/setup.cfg000066400000000000000000000000761450772166600160710ustar00rootroot00000000000000[bdist_wheel] universal=1 [metadata] license_files = LICENSE fingerprints-1.2.3/setup.py000066400000000000000000000024351450772166600157630ustar00rootroot00000000000000from setuptools import setup, find_packages with open("README.md") as f: long_description = f.read() setup( name="fingerprints", version="1.2.3", description="A library to generate entity fingerprints.", long_description=long_description, long_description_content_type="text/markdown", classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", ], keywords="names people companies normalisation iso20275", author="Friedrich Lindenberg", author_email="friedrich@pudo.org", url="http://github.com/alephdata/fingerprints", license="MIT", packages=find_packages(exclude=["tests", "tools"]), namespace_packages=[], package_data={}, include_package_data=True, zip_safe=False, test_suite="nose.collector", install_requires=[ "normality>=2.0.0,<=3.0.0", ], extras_require={ "dev": [ "pytest", "pytest-cov", "mypy", "black", "pyyaml", "types-pyyaml", "bump2version", ], }, ) fingerprints-1.2.3/tests/000077500000000000000000000000001450772166600154075ustar00rootroot00000000000000fingerprints-1.2.3/tests/__init__.py000066400000000000000000000000001450772166600175060ustar00rootroot00000000000000fingerprints-1.2.3/tests/test_cleanup.py000066400000000000000000000007351450772166600204540ustar00rootroot00000000000000from fingerprints import clean_name_ascii, clean_name_light def test_clean_name_ascii(): assert clean_name_ascii("Владимир Путин") == "vladimir putin" assert clean_name_ascii("Владимир Пути'н") == "vladimir putin" def test_clean_name_light(): assert clean_name_light("Vladimir Putin") == "vladimir putin" assert clean_name_light("C.I.A.") == "cia" assert clean_name_light("UN") == "un" assert clean_name_light("U") is None fingerprints-1.2.3/tests/test_fingerprints.py000066400000000000000000000040471450772166600215370ustar00rootroot00000000000000from unittest import TestCase import fingerprints from fingerprints import fingerprint as fp class FingerprintsTest(TestCase): def test_normal_names(self): self.assertEqual(fp("Mr. Boaty McBoatface"), "boaty mcboatface") self.assertEqual(fp("Open S.A.R.L."), "open sarl") self.assertEqual(fp("Johnson's Coffee Shop"), "coffee johnsons shop") self.assertEqual(fp("New York, New York"), "new york") def test_replacers(self): self.assertEqual(fp("Foo Limited"), "foo ltd") self.assertEqual( fp("Foo International bla Limited"), "bla foo intl ltd" ) # noqa self.assertEqual(fp("Foo International Limited"), "foo intl ltd") def test_cyrillic(self): self.assertEqual(fp("РАДИК ІВАН ЛЬВОВИЧ"), "ivan lvovic radik") self.assertEqual( fp("КУШНАРЬОВ ДМИТРО ВІТАЛІЙОВИЧ"), "dmitro kusnarov vitalijovic" ) # noqa self.assertEqual( fp("Порошенко Петро Олексійович"), "oleksijovic petro porosenko" ) # noqa def test_turcic(self): self.assertEqual(fp("FUAD ALIYEV ƏHMƏD OĞLU"), "ahmad aliyev fuad oglu") # noqa def test_german(self): self.assertEqual(fp("Siemens Aktiengesellschaft"), "ag siemens") # noqa self.assertEqual( fp("Software und- Systemgesellschaft mit beschr Haftung"), # noqa "gmbh software systemgesellschaft und", ) # noqa def test_company(self): self.assertEqual(fp('S.R.L. "Magic-Arrow" ICS'), "arrow ics magic srl") # noqa def test_brackets(self): self.assertEqual(fp("Foo (Bar) CORPORATION"), "corp foo") # noqa def test_remove(self): rem = fingerprints.remove_types("Siemens Aktiengesellschaft") self.assertEqual(rem, "siemens") # noqa rem = fingerprints.remove_types("Siemens AG") self.assertEqual(rem, "siemens") # noqa rem = fingerprints.remove_types("Foo Limited") self.assertEqual(rem, "foo") fingerprints-1.2.3/tools/000077500000000000000000000000001450772166600154055ustar00rootroot00000000000000fingerprints-1.2.3/tools/elf-code-list.csv000066400000000000000000026225461450772166600205720ustar00rootroot00000000000000"ELF Code","Country of formation","Country Code (ISO 3166-1)","Jurisdiction of formation","Country sub-division code (ISO 3166-2)","Entity Legal Form name Local name","Language","Language Code (ISO 639-1)","Entity Legal Form name Transliterated name (per ISO 01-140-10)","Abbreviations Local language","Abbreviations transliterated","Date created YYYY-MM-DD (ISO 8601)","ELF Status ACTV/INAC","Modification","Modification date YYYY-MM-DD (ISO 8601)","Reason" "8888","","","","","","","","","","","2017-11-30","ACTV","update reason","2023-09-28","to be used when a new ELF Code (for a legal form not yet on the list) is requested from GLEIF" "9999","","","","","","","","","","","2017-11-30","ACTV","update reason","2023-09-28","to be used for LEIs for entities which have no separate legal form" "CDOV","Antigua and Barbuda","AG","","","International Business Corporation","English","en","International Business Corporation","","","2017-11-30","ACTV","","","" "5AWN","Argentina","AR","","","Sociedad del Estado","Spanish","es","Sociedad del Estado","S.E","","2023-09-28","ACTV","","","" "6M8Y","Argentina","AR","","","Sociedad Colectiva","Spanish","es","Sociedad Colectiva","Soc.Col.","","2023-09-28","ACTV","","","" "D3E0","Argentina","AR","","","Sociedad de Capital e Industria","Spanish","es","Sociedad de Capital e Industria","S.C.e I.","","2023-09-28","ACTV","","","" "F0A6","Argentina","AR","","","Sociedad Anonima","Spanish","es","Sociedad Anonima","S.A.","","2020-11-19","ACTV","","","" "FE8K","Argentina","AR","","","Sociedad Por Acciones Simplificada","Spanish","es","Sociedad Por Acciones Simplificada","S.A.S","","2023-09-28","ACTV","","","" "H70T","Argentina","AR","","","Sociedad en Comandita Simple","Spanish","es","Sociedad en Comandita Simple","S.C.S.","","2023-09-28","ACTV","","","" "HZ6C","Argentina","AR","","","Sociedad Cooperativa","Spanish","es","Sociedad Cooperativa","S. Coop.","","2020-11-19","ACTV","","","" "L4QF","Argentina","AR","","","Organismo Publico","Spanish","es","Organismo Publico","","","2023-09-28","ACTV","","","" "LVJZ","Argentina","AR","","","Fundacion","Spanish","es","Fundacion","","","2023-09-28","ACTV","","","" "O7AL","Argentina","AR","","","Sociedad de Garantía Reciproca","Spanish","es","Sociedad de Garantía Reciproca","SGR","","2023-09-28","ACTV","","","" "PLZ6","Argentina","AR","","","Sociedad en Comandita por Acciones","Spanish","es","Sociedad en Comandita por Acciones","S.C.p.A.","","2023-09-28","ACTV","","","" "RDD3","Argentina","AR","","","Asociacion civil","Spanish","es","Asociacion civil","","","2023-09-28","ACTV","","","" "U82F","Argentina","AR","","","Sociedad De Responsalided Limitada","Spanish","es","Sociedad De Responsalided Limitada","S.R.L","","2023-09-28","ACTV","","","" "WUAZ","Argentina","AR","","","Sociedad Anonima Unipersonal","Spanish","es","Sociedad Anonima Unipersonal","S.A.U.","","2020-11-19","ACTV","","","" "CRL9","Aruba","AW","","","Stichting","Dutch","nl","Stichting","","","2017-11-30","ACTV","","","" "CYW2","Aruba","AW","","","Vennootschap onder firma","Dutch","nl","Vennootschap onder firma","VOF;vof;V.O.F.;v.o.f.","","2017-11-30","ACTV","","","" "GAJN","Aruba","AW","","","Commanditaire vennootschap (1)","Dutch","nl","Commanditaire vennootschap (1)","","","2017-11-30","ACTV","","","" "M27U","Aruba","AW","","","Besloten vennootschap","Dutch","nl","Besloten vennootschap","BV;bv;B.V.;b.v.","","2017-11-30","ACTV","","","" "OLAI","Aruba","AW","","","Vereniging","Dutch","nl","Vereniging","","","2017-11-30","ACTV","","","" "P65N","Aruba","AW","","","Naamloze vennootschap","Dutch","nl","Naamloze vennootschap","NV;nv;N.V.;n.v.","","2017-11-30","ACTV","","","" "PCRJ","Aruba","AW","","","Cooperatieve vereniging","Dutch","nl","Cooperatieve vereniging","","","2017-11-30","ACTV","","","" "PT6C","Aruba","AW","","","Eenmanszaak","Dutch","nl","Eenmanszaak","","","2017-11-30","ACTV","","","" "REUP","Aruba","AW","","","Aruba vrijgestelde vennootschap","Dutch","nl","Aruba vrijgestelde vennootschap","AVV;avv;A.V.V.;a.v.v.","","2017-11-30","ACTV","","","" "T5RL","Aruba","AW","","","Vennootschap buitenlands recht","Dutch","nl","Vennootschap buitenlands recht","","","2017-11-30","INAC","deletion","2023-09-28","foreign entity" "UV8T","Aruba","AW","","","Maatschap","Dutch","nl","Maatschap","","","2017-11-30","ACTV","","","" "V905","Aruba","AW","","","Vennootschap met beperkte aansprakelijkheid","Dutch","nl","Vennootschap met beperkte aansprakelijkheid","VBA;vba;V.B.A.;v.b.a.","","2017-11-30","ACTV","","","" "YCV2","Aruba","AW","","","Commanditaire vennootschap (1+)","Dutch","nl","Commanditaire vennootschap (1+)","","","2017-11-30","ACTV","","","" "6W6X","Australia","AU","","","Co-operative","English","en","Co-operative","Co-operative Limited;Cooperative Limited;Co-op Limited;Coop Limited;Co-operative Ltd.;Cooperative Ltd.;Co-opLtd.;Coop Ltd.;Co-operative;Cooperative;Co-op;Coop","","2017-11-30","ACTV","","","" "7TPC","Australia","AU","","","Trust","English","en","Trust","","","2020-06-10","ACTV","","","" "ADXG","Australia","AU","","","Fund","English","en","Fund","","","2020-06-10","ACTV","","","" "BC38","Australia","AU","","","Incorporated association","English","en","Incorporated association","Inc;inc;Inc.;inc.","","2017-11-30","ACTV","","","" "J4JC","Australia","AU","","","Limited Partnership","English","en","Limited Partnership","A Limited Partnership;An Incorporated Limited Partnership;LP;LP.;Lp.;Lp;I.L.P;ILP","","2017-11-30","ACTV","","","" "LZFR","Australia","AU","","","Public Company limited by guarantee","English","en","Public Company limited by guarantee","Ltd;Ltd.;Limited","","2017-11-30","ACTV","","","" "PQHL","Australia","AU","","","No Liability Company","English","en","No Liability Company","No Liability;NL","","2017-11-30","ACTV","","","" "Q82Q","Australia","AU","","","Unlimited Proprietary Company","English","en","Unlimited Proprietary Company","Proprietary;PTY;PTY.;Pty.;Pty Ltd","","2017-11-30","ACTV","","","" "R4KK","Australia","AU","","","Public Company limited by shares","English","en","Public Company limited by shares","Ltd;Ltd.;Limited","","2017-11-30","ACTV","","","" "TXVC","Australia","AU","","","Limited Proprietary Company","English","en","Limited Proprietary Company","Proprietary Limited;Proprietary Ltd;Pty Limited;PTY LTD;PTY. LTD.;Pty. Ltd.;Pty Ltd;Pty Ltd.","","2017-11-30","ACTV","","","" "XHCV","Australia","AU","","","Indigenous Corporation","English","en","Indigenous Corporation","Indigenous corporation;RNTBC","","2017-11-30","ACTV","","","" "1NOX","Austria","AT","","","Sonstiger Rechtsträger","German","de","Sonstiger Rechtsträger","","","2017-11-30","ACTV","","","" "5WWO","Austria","AT","","","Privatstiftung","German","de","Privatstiftung","","","2017-11-30","ACTV","","","" "69H1","Austria","AT","","","Europäische Genossenschaft (SCE)","German","de","Europäische Genossenschaft (SCE)","SCE","","2017-11-30","ACTV","","","" "8XDW","Austria","AT","","","Genossenschaft","German","de","Genossenschaft","","","2019-07-05","ACTV","","","" "AAL7","Austria","AT","","","Kommandit-Erwerbsgesellschaft","German","de","Kommandit-Erwerbsgesellschaft","KEG","","2017-11-30","ACTV","","","" "AXSB","Austria","AT","","","Gesellschaft mit beschränkter Haftung","German","de","Gesellschaft mit beschränkter Haftung","GmbH;Ges.m.b.H.","","2017-11-30","ACTV","","","" "CAQ1","Austria","AT","","","Versicherungsverein auf Gegenseitigkeit","German","de","Versicherungsverein auf Gegenseitigkeit","","","2017-11-30","ACTV","","","" "DM88","Austria","AT","","","Europäische wirtschaftliche Interessenvereinigung","German","de","Europäische wirtschaftliche Interessenvereinigung","","","2017-11-30","ACTV","","","" "DX6Z","Austria","AT","","","Verein","German","de","Verein","","","2019-07-05","ACTV","","","" "E9OX","Austria","AT","","","Gemeinnützige Stiftung","German","de","Gemeinnützige Stiftung","","","2020-06-10","ACTV","","","" "ECWU","Austria","AT","","","Einzelunternehmer","German","de","Einzelunternehmer","EU","","2017-11-30","ACTV","","","" "EQOV","Austria","AT","","","Aktiengesellschaft","German","de","Aktiengesellschaft","AG","","2017-11-30","ACTV","","","" "G3R6","Austria","AT","","","Einzelkaufmann","German","de","Einzelkaufmann","","","2017-11-30","ACTV","","","" "GVPD","Austria","AT","","","Offene Handelsgesellschaft","German","de","Offene Handelsgesellschaft","OHG","","2017-11-30","ACTV","","","" "JJYT","Austria","AT","","","Körperschaft öffentlichen Rechts","German","de","Körperschaft öffentlichen Rechts","","","2019-07-05","ACTV","","","" "JQOI","Austria","AT","","","Sparkasse","German","de","Sparkasse","","","2017-11-30","ACTV","","","" "JTAV","Austria","AT","","","Offene Gesellschaft","German","de","Offene Gesellschaft","OG","","2017-11-30","ACTV","","","" "JUHG","Austria","AT","","","Offene Erwerbsgesellschaft","German","de","Offene Erwerbsgesellschaft","OEG","","2017-11-30","ACTV","","","" "NIJH","Austria","AT","","","Erwerbs- und Wirtschaftsgenossenschaft","German","de","Erwerbs- und Wirtschaftsgenossenschaft","","","2017-11-30","ACTV","","","" "NNLI","Austria","AT","","","stille Gesellschaft","German","de","stille Gesellschaft","stG","","2019-07-05","ACTV","","","" "O65B","Austria","AT","","","Europäische Gesellschaft (SE)","German","de","Europäische Gesellschaft (SE)","SE","","2017-11-30","ACTV","","","" "ONF1","Austria","AT","","","Kommanditgesellschaft","German","de","Kommanditgesellschaft","KG","","2017-11-30","ACTV","","","" "UI81","Austria","AT","","","Gesellschaft des bürgerlichen Rechts","German","de","Gesellschaft des bürgerlichen Rechts","GesbR","","2019-07-05","ACTV","","","" "52TH","Azerbaijan","AZ","","","Törəmə təsərrüfat cəmiyyəti","Azerbaijani ","az","Törəmə təsərrüfat cəmiyyəti","","","2020-06-10","ACTV","","","" "6JHZ","Azerbaijan","AZ","","","Məhdud məsuliyyətli cəmiyyəti","Azerbaijani ","az","Məhdud məsuliyyətli cəmiyyəti","MMC","","2020-06-10","ACTV","","","" "DWEA","Azerbaijan","AZ","","","Kooperativlər","Azerbaijani ","az","Kooperativlər","","","2020-06-10","ACTV","","","" "HKL3","Azerbaijan","AZ","","","Əlavə məsuliyyətli cəmiyyət","Azerbaijani ","az","Əlavə məsuliyyətli cəmiyyət","","","2020-06-10","ACTV","","","" "K81Q","Azerbaijan","AZ","","","Açıq səhmdar cəmiyyəti","Azerbaijani ","az","Açıq səhmdar cəmiyyəti","ASC","","2020-06-10","ACTV","","","" "M4LU","Azerbaijan","AZ","","","Qapalı səhmdar cəmiyyəti","Azerbaijani ","az","Qapalı səhmdar cəmiyyəti","QSC","","2020-06-10","ACTV","","","" "MEJT","Azerbaijan","AZ","","","Tam ortaqlıq","Azerbaijani ","az","Tam ortaqlıq","","","2020-06-10","ACTV","","","" "PITR","Azerbaijan","AZ","","","Hüquqi şəxslərin ittifaqları","Azerbaijani ","az","Hüquqi şəxslərin ittifaqları","","","2020-06-10","ACTV","","","" "SLXJ","Azerbaijan","AZ","","","Asılı təsərrüfat cəmiyyəti","Azerbaijani ","az","Asılı təsərrüfat cəmiyyəti","","","2020-06-10","ACTV","","","" "TD56","Azerbaijan","AZ","","","Komandit ortaqlıq","Azerbaijani ","az","Komandit ortaqlıq","","","2020-06-10","ACTV","","","" "U0SP","Azerbaijan","AZ","","","İctimai birliklər","Azerbaijani ","az","İctimai birliklər","","","2020-06-10","ACTV","","","" "ZD74","Azerbaijan","AZ","","","Fondlar","Azerbaijani ","az","Fondlar","","","2020-06-10","ACTV","","","" "1W6I","Bahamas","BS","","","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP","","2020-06-10","ACTV","","","" "78QF","Bahamas","BS","","","Partnership","English","en","Partnership","","","2020-06-10","ACTV","","","" "98A8","Bahamas","BS","","","Company Limited by Shares","English","en","Company Limited by Shares","Ltd","","2020-06-10","ACTV","","","" "A9N4","Bahamas","BS","","","International Business Company","English","en","International Business Company","","","2020-06-10","ACTV","","","" "DAEG","Bahamas","BS","","","Unlimited Liability Company","English","en","Unlimited Liability Company","","","2020-06-10","ACTV","","","" "HNSU","Bahamas","BS","","","Public Company Limited by Shares","English","en","Public Company Limited by Shares","Ltd","","2020-06-10","ACTV","","","" "HP0B","Bahamas","BS","","","Company Limited both by Shares and by Guarantee","English","en","Company Limited both by Shares and by Guarantee","Ltd","","2020-06-10","ACTV","","","" "PB7W","Bahamas","BS","","","Company Limited by Guarantee","English","en","Company Limited by Guarantee","Ltd","","2020-06-10","ACTV","","","" "PICJ","Bahamas","BS","","","Non-Profit Company","English","en","Non-Profit Company","","","2020-06-10","ACTV","","","" "SQ8U","Bahamas","BS","","","Exempted Limited Partnership","English","en","Exempted Limited Partnership","","","2020-06-10","ACTV","","","" "VVOW","Bahamas","BS","","","Foundation","English","en","Foundation","","","2020-06-10","ACTV","","","" "XDKS","Bahamas","BS","","","Sole Proprietor","English","en","Sole Proprietor","","","2020-06-10","ACTV","","","" "2MAO","Bahrain","BH","","","الشركة غير هادفة للربح","Arabic","ar","Alsharikat ghayr hadifat lilribih","","","2023-09-28","ACTV","","","" "990B","Bahrain","BH","","","وصية الشراكة من قبل شركة الأسهم (شركة التوصية بالأسهم)","Arabic","ar","Wasiat alshirakat min qibal sharikat al'ashum","","","2023-09-28","ACTV","","","" "JNJI","Bahrain","BH","","","الشركة ذات المسؤولية المحدودة","Arabic","ar","Sharika That Almasuliah Almahduda","ذ.م.م","","2023-09-28","ACTV","","","" "SRQE","Bahrain","BH","","","شركة التوصية البسيطة للشراكة (شركة التوصية البسيطة)","Arabic","ar","Sharikat altawsiat albasitat lilshiraka","","","2023-09-28","ACTV","","","" "SWH1","Bahrain","BH","","","شركة تضامن","Arabic","ar","Sharikat tadamun","","","2023-09-28","ACTV","","","" "2T7B","Barbados","BB","","","society with restricted liability","English","en","society with restricted liability","SRL","","2021-09-23","ACTV","","","" "5IL6","Barbados","BB","","","sole proprietorship","English","en","sole proprietorship","","","2021-09-23","ACTV","","","" "7FCS","Barbados","BB","","","partnership","English","en","partnership","","","2021-09-23","ACTV","","","" "EKJG","Barbados","BB","","","segregated cell company","English","en","segregated cell company","","","2021-09-23","ACTV","","","" "HTBY","Barbados","BB","","","company","English","en","company","ltd.;corp.;inc.","","2021-09-23","ACTV","","","" "KYFD","Barbados","BB","","","non-profit company","English","en","non-profit company","","","2021-09-23","ACTV","","","" "Q9Y1","Barbados","BB","","","international business company","English","en","international business company","","","2021-09-23","ACTV","","","" "T4KB","Barbados","BB","","","association","English","en","association","","","2021-09-23","ACTV","","","" "TEPY","Barbados","BB","","","public company","English","en","public company","ltd.;corp.;inc.","","2021-09-23","ACTV","","","" "X2X1","Barbados","BB","","","limited partnership","English","en","limited partnership","","","2021-09-23","ACTV","","","" "106J","Belarus","BY","","","Закрытае акцыянернае таварыства","Belarusian","be","Zakrytae akcyyanernae tavarystva","ЗАТ","ZAT","2020-06-10","ACTV","","","" "106J","Belarus","BY","","","Закрытое акционерное общество","Russian","ru","Zakrytoe akcionernoe obshchestvo","ЗАО","ZAО","2020-06-10","ACTV","","","" "9X63","Belarus","BY","","","Унітарнае прадпрыемства","Belarusian","be","Unіtarnae pradpryemstva","УП","UP","2020-06-10","ACTV","","","" "9X63","Belarus","BY","","","Унитарное предприятие","Russian","ru","Unitarnoe predpriyatie","УП","UP","2020-06-10","ACTV","","","" "AABD","Belarus","BY","","","Таварыства з абмежаванай адказнасцю","Belarusian","be","Tavarystva z abmezhavanaj adkaznascyu","ТАА","ТАА","2020-06-10","ACTV","","","" "AABD","Belarus","BY","","","Общество с ограниченной ответственностью","Russian","ru","Obshchestvo s ogranichennoj otvetstvennost'yu","ООО","ООО","2020-06-10","ACTV","","","" "JLR3","Belarus","BY","","","Таварыства з дадатковай адказнасцю","Belarusian","be","Tavarystva z dadatkovaj adkaznascyu","ТДА","ТDA","2020-06-10","ACTV","","","" "JLR3","Belarus","BY","","","Общество с дополнительной ответственностью","Russian","ru","Obshchestvo s dopolnitel'noj otvetstvennost'yu","ОДО","ODO","2020-06-10","ACTV","","","" "MR85","Belarus","BY","","","Адкрытае акцыянернае таварыства","Belarusian","be","Adkrytae akcyyanernae tavarystva","ААТ","AAT","2020-06-10","ACTV","","","" "MR85","Belarus","BY","","","Открытое акционерное общество","Russian","ru","Otkrytoe akcionernoe obshchestvo","ОАО","ОАО","2020-06-10","ACTV","","","" "1TX8","Belgium","BE","","","Commanditaire vennootschap op aandelen met een sociaal oogmerk","Dutch","nl","Commanditaire vennootschap op aandelen met een sociaal oogmerk","CVA SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "1TX8","Belgium","BE","","","Société en commandite par actions à finalité sociale","French","fr","Société en commandite par actions à finalité sociale","SCA FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "1TX8","Belgium","BE","","","Kommanditgesellschaft auf Aktien mit sozialer Zielsetzung","German","de","Kommanditgesellschaft auf Aktien mit sozialer Zielsetzung","KGaAmsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "28FE","Belgium","BE","","","Coöperatieve vennootschap","Dutch","nl","Coöperatieve vennootschap","CV","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "28FE","Belgium","BE","","","Société coopérative","French","fr","Société coopérative","SC","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "28FE","Belgium","BE","","","Genossenschaft","German","de","Genossenschaft","Gen.","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "2QSA","Belgium","BE","","","Coöperatieve vennootschap met beperkte aansprakelijkheid met een sociaal oogmerk","Dutch","nl","Coöperatieve vennootschap met beperkte aansprakelijkheid met een sociaal oogmerk","CVBA SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "2QSA","Belgium","BE","","","Société coopérative à responsabilité limitée à finalité sociale","French","fr","Société coopérative à responsabilité limitée à finalité sociale","SCRL FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "2QSA","Belgium","BE","","","Genossenschaft mit beschränkter Haftung mit sozialer Zielsetzung","German","de","Genossenschaft mit beschränkter Haftung mit sozialer Zielsetzung","GbHsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "36KV","Belgium","BE","","","Europese vennootschap (Societas Europaea)","Dutch","nl","Europese vennootschap (Societas Europaea)","SE","","2017-11-30","ACTV","","","" "36KV","Belgium","BE","","","Société européenne (Societas Europaea)","French","fr","Société européenne (Societas Europaea)","SE","","2017-11-30","ACTV","","","" "36KV","Belgium","BE","","","Europäische Gesellschaft (Societas Europaea)","German","de","Europäische Gesellschaft (Societas Europaea)","SE","","2017-11-30","ACTV","","","" "3LMA","Belgium","BE","","","Buitenlandse onderneming","Dutch","nl","Buitenlandse onderneming","BO","","2017-11-30","INAC","deletion","2020-06-10","this is not a Belgian legal form" "3LMA","Belgium","BE","","","Entreprise étrangère","French","fr","Entreprise étrangère","ENT E","","2017-11-30","INAC","deletion","2020-06-10","this is not a Belgian legal form" "3LMA","Belgium","BE","","","Ausländische Gesellschaft","German","de","Ausländische Gesellschaft","AGes.","","2017-11-30","INAC","deletion","2020-06-10","this is not a Belgian legal form" "3N94","Belgium","BE","","","Onderneming-natuurlijk persoon","Dutch","nl","Onderneming-natuurlijk persoon","ONP","","2017-11-30","ACTV","","","" "3N94","Belgium","BE","","","Entreprise personne physique","French","fr","Entreprise personne physique","EPP","","2017-11-30","ACTV","","","" "3N94","Belgium","BE","","","Unternehmen natürliche Person","German","de","Unternehmen natürliche Person","UNP","","2017-11-30","ACTV","","","" "3W7E","Belgium","BE","","","Besloten Vennootschap","Dutch","nl","Besloten Vennootschap","BV","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "3W7E","Belgium","BE","","","Société à responsabilité limitée","French","fr","Société à responsabilité limitée","SRL","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "3W7E","Belgium","BE","","","Gesellschaft mit beschränkter Haftung","German","de","Gesellschaft mit beschränkter Haftung","GmbH","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "4E5P","Belgium","BE","","","Coöperatieve vennootschap met onbeperkte aansprakelijkheid met een sociaal oogmerk","Dutch","nl","Coöperatieve vennootschap met onbeperkte aansprakelijkheid met een sociaal oogmerk","CVOA SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "4E5P","Belgium","BE","","","Société coopérative à responsabilité illimitée à finalité sociale","French","fr","Société coopérative à responsabilité illimitée à finalité sociale","SCRI FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "4E5P","Belgium","BE","","","Genossenschaft mit unbeschränkter Haftung mit sozialer Zielsetzung","German","de","Genossenschaft mit unbeschränkter Haftung mit sozialer Zielsetzung","GuHsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "7SJP","Belgium","BE","","","Europees economisch samenwerkingsverband","Dutch","nl","Europees economisch samenwerkingsverband","EESV","","2017-11-30","ACTV","","","" "7SJP","Belgium","BE","","","Groupement européen d'intérêt économique","French","fr","Groupement européen d'intérêt économique","GEIE","","2017-11-30","ACTV","","","" "7SJP","Belgium","BE","","","Europäische wirtschaftliche Interessenvereinigung","German","de","Europäische wirtschaftliche Interessenvereinigung","EWIV","","2017-11-30","ACTV","","","" "8E2A","Belgium","BE","","","Coöperatieve vennootschap met beperkte aansprakelijkheid","Dutch","nl","Coöperatieve vennootschap met beperkte aansprakelijkheid","CVBA","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "8E2A","Belgium","BE","","","Société coopérative à responsabilité limitée","French","fr","Société coopérative à responsabilité limitée","SCRL","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "8E2A","Belgium","BE","","","Genossenschaft mit beschränkter Haftung","German","de","Genossenschaft mit beschränkter Haftung","Gen.mbH","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "8YLB","Belgium","BE","","","Instelling zonder winstoogmerk","Dutch","nl","Instelling zonder winstoogmerk","IZW","","2017-11-30","ACTV","","","" "8YLB","Belgium","BE","","","Institution sans but lucratif","French","fr","Institution sans but lucratif","ISBL","","2017-11-30","ACTV","","","" "8YLB","Belgium","BE","","","Einrichtung ohne Gewinnerzielungsabsicht","German","de","Einrichtung ohne Gewinnerzielungsabsicht","EoG","","2017-11-30","ACTV","","","" "B910","Belgium","BE","","","Vennootschap onder firma met een sociaal oogmerk","Dutch","nl","Vennootschap onder firma met een sociaal oogmerk","VOF SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "B910","Belgium","BE","","","Société en nom collectif à finalité sociale","French","fr","Société en nom collectif à finalité sociale","SNC FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "B910","Belgium","BE","","","Offene Handelsgesellschaft mit sozialer Zielsetzung","German","de","Offene Handelsgesellschaft mit sozialer Zielsetzung","OHGmsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "C609","Belgium","BE","","","Eenpersoons besloten vennootschap met beperkte aansprakelijkheid","Dutch","nl","Eenpersoons besloten vennootschap met beperkte aansprakelijkheid","EBVBA","","2017-11-30","ACTV","","","" "C609","Belgium","BE","","","Société privée à responsabilité limitée unipersonnelle","French","fr","Société privée à responsabilité limitée unipersonnelle","SPRLU","","2017-11-30","ACTV","","","" "C609","Belgium","BE","","","Privatgesellschaft mit beschränkter Haftung mit einem Alleingesellschafter","German","de","Privatgesellschaft mit beschränkter Haftung mit einem Alleingesellschafter","PGmbHmA","","2017-11-30","ACTV","","","" "CFH5","Belgium","BE","","","Vennootschap of vereniging zonder rechtspersoonlijkheid","Dutch","nl","Vennootschap of vereniging zonder rechtspersoonlijkheid","VVZRL","","2017-11-30","ACTV","","","" "CFH5","Belgium","BE","","","Société ou association sans personnalité juridique","French","fr","Société ou association sans personnalité juridique","SASPJ","","2017-11-30","ACTV","","","" "CFH5","Belgium","BE","","","Gesellschaften oder Vereinigungen ohne Rechtspersönlichkeit","German","de","Gesellschaften oder Vereinigungen ohne Rechtspersönlichkeit","GVoRP","","2017-11-30","ACTV","","","" "EDMK","Belgium","BE","","","Vereniging zonder winstoogmerk van publiek recht","Dutch","nl","Vereniging zonder winstoogmerk van publiek recht","VZW PR","","2017-11-30","ACTV","","","" "EDMK","Belgium","BE","","","Association sans but lucratif de droit public","French","fr","Association sans but lucratif de droit public","ASBL DPU","","2017-11-30","ACTV","","","" "EDMK","Belgium","BE","","","Öffentlich-rechtliche Vereinigung ohne Gewinnerzielungsabsicht","German","de","Öffentlich-rechtliche Vereinigung ohne Gewinnerzielungsabsicht","ÖrVohGza","","2017-11-30","ACTV","","","" "EXY8","Belgium","BE","","","Coöperatieve vennootschap met onbeperkte aansprakelijkheid, bij wijze van deelneming van publiek recht","Dutch","nl","Coöperatieve vennootschap met onbeperkte aansprakelijkheid, bij wijze van deelneming van publiek recht","CVOA CD","","2017-11-30","ACTV","","","" "EXY8","Belgium","BE","","","Coopérative à responsabilité illimitée, coopérative de participation, de droit public","French","fr","Coopérative à responsabilité illimitée, coopérative de participation, de droit public","SCRI CP","","2017-11-30","ACTV","","","" "EXY8","Belgium","BE","","","Öffentlich-rechtliche Genossenschaft mit unbeschränkter Haftung, Genossenschaft auf Beteiligung","German","de","Öffentlich-rechtliche Genossenschaft mit unbeschränkter Haftung, Genossenschaft auf Beteiligung","GmuHGB","","2017-11-30","ACTV","","","" "J5OU","Belgium","BE","","","Economisch samenwerkingsverband","Dutch","nl","Economisch samenwerkingsverband","ESV","","2017-11-30","ACTV","","","" "J5OU","Belgium","BE","","","Groupement d'intérêt économique","French","fr","Groupement d'intérêt économique","GIE","","2017-11-30","ACTV","","","" "J5OU","Belgium","BE","","","Wirtschaftliche Interessenvereinigung","German","de","Wirtschaftliche Interessenvereinigung","WIV","","2017-11-30","ACTV","","","" "JAM3","Belgium","BE","","","Coöperatieve vennootschap van publiek recht","Dutch","nl","Coöperatieve vennootschap van publiek recht","CV PR","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "JAM3","Belgium","BE","","","Société coopérative de droit public","French","fr","Société coopérative de droit public","SC DPU","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "JAM3","Belgium","BE","","","Öffentlich-rechtliche Genossenschaft","German","de","Öffentlich-rechtliche Genossenschaft","ÖrGen.","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "JNAD","Belgium","BE","","","Besloten vennootschap met beperkte aansprakelijkheid met een sociaal oogmerk","Dutch","nl","Besloten vennootschap met beperkte aansprakelijkheid met een sociaal oogmerk","BVBA SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "JNAD","Belgium","BE","","","Société privée à responsabilité limitée à finalité sociale","French","fr","Société privée à responsabilité limitée à finalité sociale","SPRL FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "JNAD","Belgium","BE","","","Privatgesellschaft mit beschränkter Haftung mit sozialer Zielsetzung","German","de","Privatgesellschaft mit beschränkter Haftung mit sozialer Zielsetzung","PmbHsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "KLBO","Belgium","BE","","","Burgerlijke vennootschap onder vorm van commanditaire vennootschap op aandelen","Dutch","nl","Burgerlijke vennootschap onder vorm van commanditaire vennootschap op aandelen","BV CVA","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form U2PN" "KLBO","Belgium","BE","","","Société civile sous forme de société en commandite par actions","French","fr","Société civile sous forme de société en commandite par actions","SC SCA","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form U2PN" "KLBO","Belgium","BE","","","Zivilrechtliche Gesellschaft in der Rechtsform einer Kommanditgesellschaft auf Aktien","German","de","Zivilrechtliche Gesellschaft in der Rechtsform einer Kommanditgesellschaft auf Aktien","ZRG KGaA","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form U2PN" "KM6O","Belgium","BE","","","Maatschap","Dutch","nl","Maatschap","MS","","2017-11-30","ACTV","","","" "KM6O","Belgium","BE","","","Société de droit commun","French","fr","Société de droit commun","SDC","","2017-11-30","ACTV","","","" "KM6O","Belgium","BE","","","Gesellschaft des allgemeinen Rechts","German","de","Gesellschaft des allgemeinen Rechts","GaR","","2017-11-30","ACTV","","","" "L05H","Belgium","BE","","","Besloten Vennootschap van publiek recht","Dutch","nl","Besloten Vennootschap van publiek recht","BV PR","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "L05H","Belgium","BE","","","Société à responsabilité limitée de droit public","French","fr","Société à responsabilité limitée de droit public","SRL DPU","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "L05H","Belgium","BE","","","Öffentlich-rechtliche Gesellschaft mit beschränkter Haftung","German","de","Öffentlich-rechtliche Gesellschaft mit beschränkter Haftung","ÖrGmbH","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "LWHF","Belgium","BE","","","Coöperatieve vennootschap met onbeperkte aansprakelijkheid","Dutch","nl","Coöperatieve vennootschap met onbeperkte aansprakelijkheid","CVOA","","2017-11-30","ACTV","","","" "LWHF","Belgium","BE","","","Société coopérative à responsabilité illimitée","French","fr","Société coopérative à responsabilité illimitée","SCRI","","2017-11-30","ACTV","","","" "LWHF","Belgium","BE","","","Genossenschaft mit unbeschränkter Haftung","German","de","Genossenschaft mit unbeschränkter Haftung","Gen.mubH","","2017-11-30","ACTV","","","" "LWV6","Belgium","BE","","","Gewone commanditaire vennootschap","Dutch","nl","Gewone commanditaire vennootschap","Comm.V","","2017-11-30","ACTV","","","" "LWV6","Belgium","BE","","","Société en commandite simple","French","fr","Société en commandite simple","SCS","","2017-11-30","ACTV","","","" "LWV6","Belgium","BE","","","Einfache Kommanditgesellschaft","German","de","Einfache Kommanditgesellschaft","EKG","","2017-11-30","ACTV","","","" "MQH3","Belgium","BE","","","Commanditaire vennootschap","Dutch","nl","Commanditaire vennootschap","CommV","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "MQH3","Belgium","BE","","","Société en commandite","French","fr","Société en commandite","SComm","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "MQH3","Belgium","BE","","","Kommanditgesellschaft","German","de","Kommanditgesellschaft","KommG","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "N5NT","Belgium","BE","","","Besloten vennootschap met beperkte aansprakelijkheid","Dutch","nl","Besloten vennootschap met beperkte aansprakelijkheid","BVBA","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "N5NT","Belgium","BE","","","Société privée à responsabilité limitée","French","fr","Société privée à responsabilité limitée","SPRL","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "N5NT","Belgium","BE","","","Privatgesellschaft mit beschränkter Haftung","German","de","Privatgesellschaft mit beschränkter Haftung","PGmbH","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "O59C","Belgium","BE","","","Economisch samenwerkingsverband met een sociaal oogmerk","Dutch","nl","Economisch samenwerkingsverband met een sociaal oogmerk","ESV SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "O59C","Belgium","BE","","","Groupement d'intérêt économique à finalité sociale","French","fr","Groupement d'intérêt économique à finalité sociale","GIE FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "O59C","Belgium","BE","","","Wirtschaftliche Interessenvereinigung mit sozialer Zielsetzung","German","de","Wirtschaftliche Interessenvereinigung mit sozialer Zielsetzung","WIVmsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "O5HQ","Belgium","BE","","","Burgerlijke vennootschap onder vorm van coöperatieve vennootschap met beperkte aansprakelijkheid","Dutch","nl","Burgerlijke vennootschap onder vorm van coöperatieve vennootschap met beperkte aansprakelijkheid","BV CVBA","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form 8E2A" "O5HQ","Belgium","BE","","","Société civile sous forme de société coopérative à responsabilité limitée","French","fr","Société civile sous forme de société coopérative à responsabilité limitée","SC SCRL","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form 8E2A" "O5HQ","Belgium","BE","","","Zivilrechtliche Gesellschaft in der Rechtsform einer Genossenschaft mit beschränkter Haftung","German","de","Zivilrechtliche Gesellschaft in der Rechtsform einer Genossenschaft mit beschränkter Haftung","ZvGGbH","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form 8E2A" "PVT3","Belgium","BE","","","Eenpersoons besloten vennootschap met beperkte aansprakelijkheid met een sociaal oogmerk","Dutch","nl","Eenpersoons besloten vennootschap met beperkte aansprakelijkheid met een sociaal oogmerk","EBVBA SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "PVT3","Belgium","BE","","","Société privée à responsabilité limitée unipersonnelle à finalité sociale","French","fr","Société privée à responsabilité limitée unipersonnelle à finalité sociale","SPRLU FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "PVT3","Belgium","BE","","","Privatgesellschaft mit beschränkter Haftung mit sozialer Zielsetzung mit einem Alleingesellschafter","German","de","Privatgesellschaft mit beschränkter Haftung mit sozialer Zielsetzung mit einem Alleingesellschafter","PgbHsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "QZIS","Belgium","BE","","","Openbare instelling","Dutch","nl","Openbare instelling","OI","","2017-11-30","ACTV","","","" "QZIS","Belgium","BE","","","Etablissement public","French","fr","Etablissement public","ETSPUBLI","","2017-11-30","ACTV","","","" "QZIS","Belgium","BE","","","Öffentliche Einrichtung","German","de","Öffentliche Einrichtung","ÖE","","2017-11-30","ACTV","","","" "R85P","Belgium","BE","","","Naamloze vennootschap","Dutch","nl","Naamloze vennootschap","NV","","2017-11-30","ACTV","","","" "R85P","Belgium","BE","","","Société anonyme","French","fr","Société anonyme","SA","","2017-11-30","ACTV","","","" "R85P","Belgium","BE","","","Aktiengesellschaft","German","de","Aktiengesellschaft","AG","","2017-11-30","ACTV","","","" "T922","Belgium","BE","","","Burgerlijke vennootschap onder vorm van gewone commanditaire vennootschap","Dutch","nl","Burgerlijke vennootschap onder vorm van gewone commanditaire vennootschap","BV GCV","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form LWV6" "T922","Belgium","BE","","","Société civile sous forme de société en commandite simple","French","fr","Société civile sous forme de société en commandite simple","SC SCS","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form LWV6" "T922","Belgium","BE","","","Zivilrechtliche Gesellschaft in der Rechtsform einer einfachen Kommanditgesellschaft","German","de","Zivilrechtliche Gesellschaft in der Rechtsform einer einfachen Kommanditgesellschaft","ZRG EKG","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form LWV6" "TPTU","Belgium","BE","","","Naamloze vennootschap van publiek recht","Dutch","nl","Naamloze vennootschap van publiek recht","NV PR","","2017-11-30","ACTV","","","" "TPTU","Belgium","BE","","","Société anonyme de droit public","French","fr","Société anonyme de droit public","SA DPU","","2017-11-30","ACTV","","","" "TPTU","Belgium","BE","","","Öffentlich-rechtliche Aktiengesellschaft","German","de","Öffentlich-rechtliche Aktiengesellschaft","Ö.-r.AG","","2017-11-30","ACTV","","","" "U2PN","Belgium","BE","","","Commanditaire vennootschap op aandelen","Dutch","nl","Commanditaire vennootschap op aandelen","Comm.VA","","2017-11-30","ACTV","","","" "U2PN","Belgium","BE","","","Société en commandite par actions","French","fr","Société en commandite par actions","SCA","","2017-11-30","ACTV","","","" "U2PN","Belgium","BE","","","Kommanditgesellschaft auf Aktien","German","de","Kommanditgesellschaft auf Aktien","KGaA","","2017-11-30","ACTV","","","" "U5KF","Belgium","BE","","","Burgerlijke vennootschap onder vorm van vennootschap onder firma","Dutch","nl","Burgerlijke vennootschap onder vorm van vennootschap onder firma","BV VOF","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form UW1Y" "U5KF","Belgium","BE","","","Société civile sous forme de société en nom collectif","French","fr","Société civile sous forme de société en nom collectif","SC SNC","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form UW1Y" "U5KF","Belgium","BE","","","Zivilrechtliche Gesellschaft in der Rechtsform einer offenen Handelsgesellschaft","German","de","Zivilrechtliche Gesellschaft in der Rechtsform einer offenen Handelsgesellschaft","ZRG OHG","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form UW1Y" "UCT9","Belgium","BE","","","Burgerlijke Vennootschap onder vorm van Landbouwvennootschap (BV LV)","Dutch","nl","Burgerlijke Vennootschap onder vorm van Landbouwvennootschap (BV LV)","BV LV","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form ZOK2" "UCT9","Belgium","BE","","","Société civile sous forme de société agricole","French","fr","Société civile sous forme de société agricole","SC SAGR","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form ZOK2" "UCT9","Belgium","BE","","","Zivilrechtliche Gesellschaft in der Rechtsform einer landwirtschaftlichen Gesellschaft","German","de","Zivilrechtliche Gesellschaft in der Rechtsform einer landwirtschaftlichen Gesellschaft","ZRG LG","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form ZOK2" "UW1Y","Belgium","BE","","","Vennootschap onder firma","Dutch","nl","Vennootschap onder firma","V.O.F.","","2017-11-30","ACTV","","","" "UW1Y","Belgium","BE","","","Société en nom collectif","French","fr","Société en nom collectif","SNC","","2017-11-30","ACTV","","","" "UW1Y","Belgium","BE","","","Offene Handelsgesellschaft","German","de","Offene Handelsgesellschaft","OHG","","2017-11-30","ACTV","","","" "V03J","Belgium","BE","","","Internationale vereniging zonder winstoogmerk","Dutch","nl","Internationale vereniging zonder winstoogmerk","IVZW","","2017-11-30","ACTV","","","" "V03J","Belgium","BE","","","Association internationale sans but lucratif","French","fr","Association internationale sans but lucratif","AISBL","","2017-11-30","ACTV","","","" "V03J","Belgium","BE","","","Internationale Vereinigung ohne Gewinnerzielungsabsicht","German","de","Internationale Vereinigung ohne Gewinnerzielungsabsicht","IVoG","","2017-11-30","ACTV","","","" "V7FT","Belgium","BE","","","Naamloze vennootschap met een sociaal oogmerk","Dutch","nl","Naamloze vennootschap met een sociaal oogmerk","NV SO","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "V7FT","Belgium","BE","","","Société anonyme à finalité sociale","French","fr","Société anonyme à finalité sociale","SA FS","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "V7FT","Belgium","BE","","","Aktiengesellschaft mit sozialer Zielsetzung","German","de","Aktiengesellschaft mit sozialer Zielsetzung","AGmsZ","","2019-07-05","ACTV","","","new legal form per 1 May 2019" "V8L7","Belgium","BE","","","Burgerlijke vennootschap onder vorm van besloten vennootschap met beperkte aansprakelijkheid","Dutch","nl","Burgerlijke vennootschap onder vorm van besloten vennootschap met beperkte aansprakelijkheid","BV BVBA","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form N5NT" "V8L7","Belgium","BE","","","Société civile sous forme de société privée à responsabilité limitée","French","fr","Société civile sous forme de société privée à responsabilité limitée","SC SPRL","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form N5NT" "V8L7","Belgium","BE","","","Zivilrechtliche Gesellschaft in der Rechtsform einer Privatgesellschaft mit beschränkter Haftung","German","de","Zivilrechtliche Gesellschaft in der Rechtsform einer Privatgesellschaft mit beschränkter Haftung","ZvGPgbH","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form N5NT" "W3WH","Belgium","BE","","","Vereniging zonder winstoogmerk","Dutch","nl","Vereniging zonder winstoogmerk","VZW","","2017-11-30","ACTV","","","" "W3WH","Belgium","BE","","","Association sans but lucratif","French","fr","Association sans but lucratif","ASBL","","2017-11-30","ACTV","","","" "W3WH","Belgium","BE","","","Vereinigung ohne Gewinnerzielungsabsicht","German","de","Vereinigung ohne Gewinnerzielungsabsicht","VoG","","2017-11-30","ACTV","","","" "WTLP","Belgium","BE","","","Burgerlijke vennootschap onder vorm van coöperatieve vennootschap met onbeperkte aansprakelijkheid","Dutch","nl","Burgerlijke vennootschap onder vorm van coöperatieve vennootschap met onbeperkte aansprakelijkheid","BV CVOA","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form LWHF" "WTLP","Belgium","BE","","","Société civile sous forme de société coopérative à responsabilité illimitée","French","fr","Société civile sous forme de société coopérative à responsabilité illimitée","SC SCRI","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form LWHF" "WTLP","Belgium","BE","","","Zivilrechtliche Gesellschaft in der Rechtsform einer Genossenschaft mit unbeschränkter Haftung","German","de","Zivilrechtliche Gesellschaft in der Rechtsform einer Genossenschaft mit unbeschränkter Haftung","ZvGGugcH","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form LWHF" "X8ZK","Belgium","BE","","","Coöperatieve vennootschap met beperkte aansprakelijkheid van publiek recht","Dutch","nl","Coöperatieve vennootschap met beperkte aansprakelijkheid van publiek recht","CVBA PR","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "X8ZK","Belgium","BE","","","Société coopérative à responsabilité limitée de droit public","French","fr","Société coopérative à responsabilité limitée de droit public","SCRL DPU","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "X8ZK","Belgium","BE","","","Öffentlich-rechtliche Genossenschaft mit beschränkter Haftung","German","de","Öffentlich-rechtliche Genossenschaft mit beschränkter Haftung","ÖfrGmbH","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "XLEO","Belgium","BE","","","Gewone commanditaire vennootschap met een sociaal oogmerk","Dutch","nl","Gewone commanditaire vennootschap met een sociaal oogmerk","GCW SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "XLEO","Belgium","BE","","","Société en commandite simple à finalité sociale","French","fr","Société en commandite simple à finalité sociale","SCS FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "XLEO","Belgium","BE","","","Einfache Kommanditgesellschaft mit sozialer Zielsetzung","German","de","Einfache Kommanditgesellschaft mit sozialer Zielsetzung","EKGmsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "XQZX","Belgium","BE","","","Burgerlijke vennootschap onder vorm van naamloze vennootschap","Dutch","nl","Burgerlijke vennootschap onder vorm van naamloze vennootschap","BV NV","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form R85P" "XQZX","Belgium","BE","","","Société civile sous forme de société anonyme","French","fr","Société civile sous forme de société anonyme","SC SA","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form R85P" "XQZX","Belgium","BE","","","Zivilrechtliche Gesellschaft in der Rechtsform einer Aktiengesellschaft","German","de","Zivilrechtliche Gesellschaft in der Rechtsform einer Aktiengesellschaft","ZRG AG","","2017-11-30","INAC","legislation change","2018-11-01","per 1 Nov 2018 legal form abolished and automatically transformed into legal form R85P" "Y1Q4","Belgium","BE","","","Private stichting","Dutch","nl","Private stichting","PRIV ST.;PS","","2017-11-30","ACTV","abbreviation changed","2019-07-05","abbreviation changed" "Y1Q4","Belgium","BE","","","Fondation privée","French","fr","Fondation privée","FONDPRIV","","2017-11-30","ACTV","","","" "Y1Q4","Belgium","BE","","","Privatstiftung","German","de","Privatstiftung","PrSt","","2017-11-30","ACTV","","","" "YBHM","Belgium","BE","","","Europese Coöperatieve Vennootschap","Dutch","nl","Europese Coöperatieve Vennootschap","SCE","","2017-11-30","ACTV","","","" "YBHM","Belgium","BE","","","Société coopérative européenne","French","fr","Société coopérative européenne","SCE","","2017-11-30","ACTV","","","" "YBHM","Belgium","BE","","","Europäische Genossenschaft","German","de","Europäische Genossenschaft","OFP","","2017-11-30","ACTV","","","" "ZOK2","Belgium","BE","","","Landbouwvennootschap","Dutch","nl","Landbouwvennootschap","LV","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "ZOK2","Belgium","BE","","","Société agricole","French","fr","Société agricole","S. Agr.","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "ZOK2","Belgium","BE","","","Landwirtschaftliche Gesellschaft","German","de","Landwirtschaftliche Gesellschaft","LG","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "ZSFX","Belgium","BE","","","Naamloze vennootschap met een sociaal oogmerk","Dutch","nl","Naamloze vennootschap met een sociaal oogmerk","NV SO","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "ZSFX","Belgium","BE","","","Société anonyme à finalité sociale","French","fr","Société anonyme à finalité sociale","SA FS","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "ZSFX","Belgium","BE","","","Aktiengesellschaft mit sozialer Zielsetzung","German","de","Aktiengesellschaft mit sozialer Zielsetzung","AGmsZ","","2017-11-30","ACTV","legislation change","2019-07-05","after 1 May 2019, this legal form is no longer used for new entities; it still exists for entities established before that date" "ZUHK","Belgium","BE","","","Stichting van openbaar nut","Dutch","nl","Stichting van openbaar nut","SON","","2017-11-30","ACTV","","","" "ZUHK","Belgium","BE","","","Fondation d'utilité publique","French","fr","Fondation d'utilité publique","FUP","","2017-11-30","ACTV","","","" "ZUHK","Belgium","BE","","","Gemeinnützige Stiftung","German","de","Gemeinnützige Stiftung","gnS","","2017-11-30","ACTV","","","" "6DGX","Belgium","BE","Flemish Region","BE-VLG","Association prestataire de services (Région flamande)","French","fr","Association prestataire de services (Région flamande)","","","2023-09-28","ACTV","","","" "6DGX","Belgium","BE","Flemish Region","BE-VLG","Dienstverlenende vereniging (Vlaams Gewest)","Dutch","nl","Dienstverlenende vereniging (Vlaams Gewest)","","","2023-09-28","ACTV","","","" "6DGX","Belgium","BE","Flemish Region","BE-VLG","Dienstleistungsvereinigung (Flämische Region)","German","de","Dienstleistungsvereinigung (Flämische Region)","","","2023-09-28","ACTV","","","" "MGCM","Belgium","BE","Flemish Region","BE-VLG","Association chargée de mission (Région flamande)","French","fr","Association chargée de mission (Région flamande)","","","2023-09-28","ACTV","","","" "MGCM","Belgium","BE","Flemish Region","BE-VLG","Opdrachthoudende vereniging (Vlaams Gewest)","Dutch","nl","Opdrachthoudende vereniging (Vlaams Gewest)","","","2023-09-28","ACTV","","","" "MGCM","Belgium","BE","Flemish Region","BE-VLG","Beauftragte Vereinigung (Flämische Region)","German","de","Beauftragte Vereinigung (Flämische Region)","","","2023-09-28","ACTV","","","" "84DD","Belize","BZ","","","International Business Company","English","en","International Business Company","","","2020-06-10","ACTV","","","" "AO0O","Belize","BZ","","","Unlimited Company","English","en","Unlimited Company","","","2020-06-10","ACTV","","","" "D1SL","Belize","BZ","","","Partnership","English","en","Partnership","","","2020-06-10","ACTV","","","" "EAD0","Belize","BZ","","","Company Limited by Shares","English","en","Company Limited by Shares","","","2020-06-10","ACTV","","","" "GJKF","Belize","BZ","","","Association","English","en","Association","","","2020-06-10","ACTV","","","" "ZHT0","Belize","BZ","","","Company Limited by Guarantee","English","en","Company Limited by Guarantee","","","2020-06-10","ACTV","","","" "7AS7","Bermuda","BM","","","Exempted Companies Limited by Shares","English","en","Exempted Companies Limited by Shares","","","2020-06-10","ACTV","","","" "7HCE","Bermuda","BM","","","Exempted LLC","English","en","Exempted LLC","","","2020-06-10","ACTV","","","" "7MGJ","Bermuda","BM","","","Exempted Limited Partnership","English","en","Exempted Limited Partnership","","","2020-06-10","ACTV","","","" "9TCY","Bermuda","BM","","","Mutual Company (Part XII)","English","en","Mutual Company (Part XII)","","","2020-06-10","ACTV","","","" "ASR5","Bermuda","BM","","","Exempted Partnership","English","en","Exempted Partnership","","","2020-06-10","ACTV","","","" "CW38","Bermuda","BM","","","Local Company Limited by Guarantee","English","en","Local Company Limited by Guarantee","","","2020-06-10","ACTV","","","" "EURM","Bermuda","BM","","","Local Unlimited Company","English","en","Local Unlimited Company","","","2020-06-10","ACTV","","","" "LC2L","Bermuda","BM","","","Exempted Company Limited by Guarantee","English","en","Exempted Company Limited by Guarantee","","","2020-06-10","ACTV","","","" "MBVS","Bermuda","BM","","","Exempted Unlimited Company","English","en","Exempted Unlimited Company","","","2020-06-10","ACTV","","","" "NAQG","Bermuda","BM","","","Local Company Limited by Shares","English","en","Local Company Limited by Shares","","","2020-06-10","ACTV","","","" "UZWE","Bermuda","BM","","","Local LLC","English","en","Local LLC","","","2020-06-10","ACTV","","","" "VFXJ","Bermuda","BM","","","Mutual Fund Company","English","en","Mutual Fund Company","","","2020-06-10","ACTV","","","" "WF3Q","Bermuda","BM","","","Permit (Overseas) Company","English","en","Permit (Overseas) Company","","","2020-06-10","ACTV","","","" "ZLTD","Bermuda","BM","","","Overseas (Permit) Partnership","English","en","Overseas (Permit) Partnership","","","2020-06-10","ACTV","","","" "38JQ","Bolivia (Plurinational State of)","BO","","","Empresa Unipersonal","Spanish","es","Empresa Unipersonal","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "5T3W","Bolivia (Plurinational State of)","BO","","","Sociedad Anónima","Spanish","es","Sociedad Anónima","S.A.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "70BS","Bolivia (Plurinational State of)","BO","","","Empresa Estatal","Spanish","es","Empresa Estatal","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "DSML","Bolivia (Plurinational State of)","BO","","","Institución Financiera De Desarrollo","Spanish","es","Institución Financiera De Desarrollo","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "JYAN","Bolivia (Plurinational State of)","BO","","","Empresa Estatal Intergubernamental","Spanish","es","Empresa Estatal Intergubernamental","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "LJYQ","Bolivia (Plurinational State of)","BO","","","Sociedad Anónima Mixta","Spanish","es","Sociedad Anónima Mixta","S.A.M.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "LN9O","Bolivia (Plurinational State of)","BO","","","Entidad Financiera De Vivienda","Spanish","es","Entidad Financiera De Vivienda","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MGOU","Bolivia (Plurinational State of)","BO","","","Empresa Mixta","Spanish","es","Empresa Mixta","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "PJ29","Bolivia (Plurinational State of)","BO","","","Sociedad en Comandita por Acciones.","Spanish","es","Sociedad en Comandita por Acciones.","S.C.A.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "PM48","Bolivia (Plurinational State of)","BO","","","Sociedad de Responsabilidad Limitada.","Spanish","es","Sociedad de Responsabilidad Limitada.","S.R.L.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "RXJN","Bolivia (Plurinational State of)","BO","","","Empresa Estatal Mixta","Spanish","es","Empresa Estatal Mixta","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "TNHO","Bolivia (Plurinational State of)","BO","","","Sociedad Colectiva","Spanish","es","Sociedad Colectiva","S.C.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XTCQ","Bolivia (Plurinational State of)","BO","","","Sociedad en Comandita Simple.","Spanish","es","Sociedad en Comandita Simple.","S.C.S.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "1A0A","Bonaire, Sint Eustatius and Saba","BQ","","","Besloten vennootschap","Dutch","nl","Besloten vennootschap","","","2017-11-30","ACTV","","","" "3Y5C","Bonaire, Sint Eustatius and Saba","BQ","","","Besloten vennootschap naar Nederlands recht","Dutch","nl","Besloten vennootschap naar Nederlands recht","","","2017-11-30","ACTV","","","" "4S4Z","Bonaire, Sint Eustatius and Saba","BQ","","","Commanditaire vennootschap met meerdere beherende vennoten","Dutch","nl","Commanditaire vennootschap met meerdere beherende vennoten","","","2017-11-30","ACTV","","","" "4ZBE","Bonaire, Sint Eustatius and Saba","BQ","","","Maatschap","Dutch","nl","Maatschap","","","2017-11-30","ACTV","","","" "51WZ","Bonaire, Sint Eustatius and Saba","BQ","","","Vereniging met beperkte rechtsbevoegdheid","Dutch","nl","Vereniging met beperkte rechtsbevoegdheid","","","2017-11-30","ACTV","","","" "56MU","Bonaire, Sint Eustatius and Saba","BQ","","","Aandeelhouder bestuurde Besloten vennootschap","Dutch","nl","Aandeelhouder bestuurde Besloten vennootschap","","","2017-11-30","ACTV","","","" "92JZ","Bonaire, Sint Eustatius and Saba","BQ","","","Stichting","Dutch","nl","Stichting","","","2017-11-30","ACTV","","","" "AS4W","Bonaire, Sint Eustatius and Saba","BQ","","","Stichting particulier fonds","Dutch","nl","Stichting particulier fonds","","","2017-11-30","ACTV","","","" "B2UK","Bonaire, Sint Eustatius and Saba","BQ","","","Nevenvestiging met hoofdvestiging buiten bonaire","Dutch","nl","Nevenvestiging met hoofdvestiging buiten bonaire","","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "DQMJ","Bonaire, Sint Eustatius and Saba","BQ","","","Naamloze vennootschap","Dutch","nl","Naamloze vennootschap","","","2017-11-30","ACTV","","","" "FCPM","Bonaire, Sint Eustatius and Saba","BQ","","","Vereniging met volledige rechtsbevoegdheid","Dutch","nl","Vereniging met volledige rechtsbevoegdheid","","","2017-11-30","ACTV","","","" "IPTQ","Bonaire, Sint Eustatius and Saba","BQ","","","Eenmanszaak met meerdere eigenaren","Dutch","nl","Eenmanszaak met meerdere eigenaren","","","2017-11-30","ACTV","","","" "JFQ5","Bonaire, Sint Eustatius and Saba","BQ","","","Buitenlandse rechtsvorm hoofdvestiging op Bonaire","Dutch","nl","Buitenlandse rechtsvorm hoofdvestiging op Bonaire","","","2017-11-30","INAC","deletion","2020-06-10","this is not a Bonairian legal form" "KSHL","Bonaire, Sint Eustatius and Saba","BQ","","","Commanditaire vennootschap op aandelen","Dutch","nl","Commanditaire vennootschap op aandelen","","","2017-11-30","ACTV","","","" "NPFB","Bonaire, Sint Eustatius and Saba","BQ","","","Eenmanszaak","Dutch","nl","Eenmanszaak","","","2017-11-30","ACTV","","","" "SNRI","Bonaire, Sint Eustatius and Saba","BQ","","","Vennootschap onder Firma","Dutch","nl","Vennootschap onder Firma","","","2017-11-30","ACTV","","","" "VHIY","Bonaire, Sint Eustatius and Saba","BQ","","","Cooperatie","Dutch","nl","Cooperatie","","","2017-11-30","ACTV","","","" "X088","Bonaire, Sint Eustatius and Saba","BQ","","","Vereniging zonder rechtsbevoegdheid","Dutch","nl","Vereniging zonder rechtsbevoegdheid","","","2017-11-30","ACTV","","","" "XL51","Bonaire, Sint Eustatius and Saba","BQ","","","Commanditaire vennootschap met één beherend vennoot","Dutch","nl","Commanditaire vennootschap met één beherend vennoot","","","2017-11-30","ACTV","","","" "4IXL","Botswana","BW","","","Close Companies ","English","en","Close Companies ","","","2017-11-30","ACTV","","","" "771I","Botswana","BW","","","Private Limited Liability Companies","English","en","Private Limited Liability Companies","","","2017-11-30","ACTV","","","" "QK1F","Botswana","BW","","","Public Limited Liability Companies","English","en","Public Limited Liability Companies","","","2017-11-30","ACTV","","","" "Y2L3","Botswana","BW","","","Companies limited by Guarantee","English","en","Companies limited by Guarantee","","","2017-11-30","ACTV","","","" "4LKN","Brazil","BR","","","Empresa Pública","Portuguese","pt","Empresa Pública","EP","","2020-06-10","ACTV","","","" "529B","Brazil","BR","","","Sociedade em Nome Coletivo","Portuguese","pt","Sociedade em Nome Coletivo","S.N.C.","","2020-06-10","ACTV","","","" "8GEA","Brazil","BR","","","Sociedade Simples","Portuguese","pt","Sociedade Simples","S/S","","2020-06-10","ACTV","","","" "9BIS","Brazil","BR","","","Organização Religiosa","Portuguese","pt","Organização Religiosa","","","2020-06-10","ACTV","","","" "ANHM","Brazil","BR","","","Partido Político","Portuguese","pt","Partido Político","","","2020-06-10","ACTV","","","" "I4T1","Brazil","BR","","","Fundação","Portuguese","pt","Fundação","Fund.","","2020-06-10","ACTV","","","" "J7G9","Brazil","BR","","","Associação","Portuguese","pt","Associação","Assoc.","","2020-06-10","ACTV","","","" "OB5J","Brazil","BR","","","Empresa Individual de Responsabilidade Limitada","Portuguese","pt","Empresa Individual de Responsabilidade Limitada","EIRELI","","2020-06-10","ACTV","","","" "PC5A","Brazil","BR","","","Sociedade Cooperativa","Portuguese","pt","Sociedade Cooperativa","","","2020-06-10","ACTV","","","" "QHW1","Brazil","BR","","","Sociedade Limitada","Portuguese","pt","Sociedade Limitada","LTDA.","","2020-06-10","ACTV","","","" "WBEC","Brazil","BR","","","Sociedade em Comdandita Simples","Portuguese","pt","Sociedade em Comdandita Simples","S.C.S.","","2020-06-10","ACTV","","","" "X0SD","Brazil","BR","","","Sociedade Anônima","Portuguese","pt","Sociedade Anônima","S.A.;S/A","","2020-06-10","ACTV","","","" "X0SD","Brazil","BR","","","Companhia","Portuguese","pt","Companhia","S.A.;S/A","","2020-06-10","ACTV","","","" "X2ZT","Brazil","BR","","","Sociedade em Comandita por Ações","Portuguese","pt","Sociedade em Comandita por Ações","C/A","","2020-06-10","ACTV","","","" "XQRI","Brazil","BR","","","Sociedade em Conta de Participação","Portuguese","pt","Sociedade em Conta de Participação","S.C.P.","","2020-06-10","ACTV","","","" "2DGO","Brunei Darussalam","BN","","","Public Company","English","en","Public Company","Sdn Bhd;Bhd","","2020-06-10","ACTV","correction separation abbreviations","2023-09-28","correction of the separation of the abbreviations" "EULU","Brunei Darussalam","BN","","","Private Limited Company","English","en","Private Limited Company","Sdn Bhd;Bhd","","2020-06-10","ACTV","correction separation abbreviations","2023-09-28","correction of the separation of the abbreviations" "3FUP","Bulgaria","BG","","","Европейско кооперативно дружество с ограничена отговорност","Bulgarian","bg","Evropeysko kooperativno druzhestvo s ogranichena otgovornost","","","2019-07-05","ACTV","","","" "3HLJ","Bulgaria","BG","","","Поделение на eвропейско обединение по икономически интереси","Bulgarian","bg","Podelenie na evropeysko obedinenie po ikonomicheski interesi","","","2019-07-05","INAC","deletion","2020-06-10","new information from Bulgaria has made clear that this is not a separate legal form in Bulgaria" "3SHX","Bulgaria","BG","","","Сдружение в обществена полза","Bulgarian","bg","Sdruzhenie v obshtestvena polza","","","2019-07-05","ACTV","","","" "45D7","Bulgaria","BG","","","Клон на чуждестранен търговец","Bulgarian","bg","Klon na chuzhdestranen targovets","","","2019-07-05","INAC","deletion","2020-06-10","new information from Bulgaria has made clear that this is not a separate legal form in Bulgaria" "946C","Bulgaria","BG","","","Едноличен търговец","Bulgarian","bg","Ednolichen targovets","ЕТ","ET","2017-11-30","ACTV","","","" "9F78","Bulgaria","BG","","","Чуждестранно дружество - физическо лице","Bulgarian","bg","Chuzhdestranno druzhestvo - fizichesko litse","","","2019-07-05","INAC","deletion","2020-06-10","new information from Bulgaria has made clear that this is not a separate legal form in Bulgaria" "CTCH","Bulgaria","BG","","","Кооперация","Bulgarian","bg","Kooperatsia","","Coop","2017-11-30","ACTV","","","" "EJ06","Bulgaria","BG","","","Еднолично акционерно дружество","Bulgarian","bg","Ednolichno aktsionerno druzhestvo","ЕАД","EAD","2017-11-30","ACTV","","","" "FPP2","Bulgaria","BG","","","Събирателно дружество (СД)/Съдружие","Bulgarian","bg","Sabiratelno druzhestvo (SD)/Sadruzhie","С-ие;СД;С-ИЕ","SD/S-ie;SD;S-IE","2017-11-30","ACTV","correction of abbreviations","2019-07-05","abbreviation removed from legal name; abbreviation added" "HN63","Bulgaria","BG","","","Командитно дружество с акции","Bulgarian","bg","Komanditno druzhestvo s aktsii","КДА","KDA","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "LECS","Bulgaria","BG","","","Сдружение в частна полза","Bulgarian","bg","Sdruzhenie v chastna polza","","","2019-07-05","ACTV","","","" "O15N","Bulgaria","BG","","","Чуждестранно дружество - юридическо лице","Bulgarian","bg","Chuzhdestranno druzhestvo - yuridichesko litse","","","2019-07-05","INAC","deletion","2020-06-10","new information from Bulgaria has made clear that this is not a separate legal form in Bulgaria" "PW3Y","Bulgaria","BG","","","Акционерно дружество със специална инвестиционна цел","Bulgarian","bg","Aktsionerno druzhestvo sas spetsialna investitsionna tsel","АДСИЦ","ADSIC","2017-11-30","ACTV","","","" "QZAU","Bulgaria","BG","","","Еднолично aкционерно дружество със специалнa инвестиционна цел","Bulgarian","bg","Ednolichno aktsionerno druzhestvo sas spetsialna investitsionna tsel","","","2019-07-05","ACTV","","","" "RYDY","Bulgaria","BG","","","Европейско обединение по икономически интереси","Bulgarian","bg","Evropeysko obedinenie po ikonomicheski interesi","ЕОИИ","EEIG","2019-07-05","ACTV","","","" "S94S","Bulgaria","BG","","","Командитно дружество","Bulgarian","bg","Komanditno druzhestvo","КД","KD","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "SZW0","Bulgaria","BG","","","Eвропейско дружество","Bulgarian","bg","Evropeysko druzhestvo","ЕД","ED","2017-11-30","ACTV","typo corrected and abbreviation added","2019-07-05","typo corrected and abbreviation added" "TCGV","Bulgaria","BG","","","Дружество учредено по Закона за задълженията и договорите","Bulgarian","bg","Druzhestvo uchredeno po Zakona za zadalzheniyata i dogovorite","ДЗЗД","DZZD","2017-11-30","ACTV","","","" "U8LM","Bulgaria","BG","","","Eвропейско кооперативно дружество","Bulgarian","bg","Evropeysko kooperativno druzhestvo","ЕКД","EKD","2017-11-30","ACTV","typo corrected and abbreviation added","2019-07-05","typo corrected and abbreviation added" "UFG8","Bulgaria","BG","","","Фондация","Bulgarian","bg","Fondatsia","","","2019-07-05","ACTV","","","" "VJ3G","Bulgaria","BG","","","Дружество с ограничена отговорност","Bulgarian","bg","Druzhestvo s ogranichena otgovornost","ООД","OOD","2017-11-30","ACTV","","","" "WTK4","Bulgaria","BG","","","Акционерно дружество","Bulgarian","bg","Aktsionerno druzhestvo","АД","AD","2017-11-30","ACTV","","","" "WVIN","Bulgaria","BG","","","Еднолично дружество с ограничена отговорност","Bulgarian","bg","Ednolichno druzhestvo s ogranichena otgovornost","ЕООД","EOOD","2017-11-30","ACTV","","","" "15BP","Cambodia","KH","","","Private Limited Company","English","en","Private Limited Company","","","2020-06-10","ACTV","","","" "15BP","Cambodia","KH","","","ក្រុមហ៊ុនឯកជនទទួលខុសត្រូវមានកម្រិត","Khmer","km","kromhoun ekachn ttuolkhosatrauv meanokamrit","","","2020-06-10","ACTV","","","" "BQ0P","Cambodia","KH","","","Public Limited Company","English","en","Public Limited Company","","","2020-06-10","ACTV","","","" "BQ0P","Cambodia","KH","","","ក្រុមហ៊ុនមហាជនទទួលខុសត្រូវមានកម្រិត","Khmer","km","kromhoun mhachn ttuolkhosatrauv meanokamrit","","","2020-06-10","ACTV","","","" "D3UY","Cambodia","KH","","","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "D3UY","Cambodia","KH","","","ក្រុមហ៊ុនសហកម្មសិទ្ធិមានកម្រិត","Khmer","km","kromhoun sahakammosetthi meanokamrit","","","2020-06-10","ACTV","","","" "KD84","Cambodia","KH","","","Sole Proprietorship","English","en","Sole Proprietorship","","","2020-06-10","ACTV","","","" "KD84","Cambodia","KH","","","សហគ្រាស​ឯកបុគ្គល","Khmer","km","sahakreasa​ ekbokkol","","","2020-06-10","ACTV","","","" "Z4YC","Cambodia","KH","","","General Partnership","English","en","General Partnership","","","2020-06-10","ACTV","","","" "Z4YC","Cambodia","KH","","","ក្រុមហ៊ុនសហកម្មសិទ្ធិទូទៅ","Khmer","km","kromhoun sahakammosetthi toutow","","","2020-06-10","ACTV","","","" "ZCFU","Cambodia","KH","","","Foreign Company","English","en","Foreign Company","","","2020-06-10","ACTV","","","" "ZCFU","Cambodia","KH","","","ក្រុមហ៊ុនបរទេស","Khmer","km","kromhoun bartes","","","2020-06-10","ACTV","","","" "1EQC","Canada","CA","Alberta","CA-AB","trade name/sole proprietorship","English","en","trade name/sole proprietorship","","","2017-11-30","ACTV","","","" "60MF","Canada","CA","Alberta","CA-AB","Alberta trust corporation","English","en","Alberta trust corporation","","","2017-11-30","ACTV","","","" "8ZH8","Canada","CA","Alberta","CA-AB","Alberta Business Corporation","English","en","Alberta Business Corporation","","","2020-11-19","ACTV","","","" "94UQ","Canada","CA","Alberta","CA-AB","public recreation company","English","en","public recreation company","","","2017-11-30","ACTV","","","" "B69V","Canada","CA","Alberta","CA-AB","Alberta private non-profit company","English","en","Alberta private non-profit company","","","2017-11-30","ACTV","","","" "BASA","Canada","CA","Alberta","CA-AB","Alberta cooperative","English","en","Alberta cooperative","","","2017-11-30","ACTV","","","" "BH5D","Canada","CA","Alberta","CA-AB","rural utility cooperative","English","en","rural utility cooperative","","","2017-11-30","ACTV","","","" "C9KZ","Canada","CA","Alberta","CA-AB","Alberta professional corporation","English","en","Alberta professional corporation","","","2017-11-30","ACTV","","","" "DK7L","Canada","CA","Alberta","CA-AB","Alberta loan corporation","English","en","Alberta loan corporation","","","2017-11-30","ACTV","","","" "G65S","Canada","CA","Alberta","CA-AB","Alberta credit union","English","en","Alberta credit union","","","2017-11-30","ACTV","","","" "J3C5","Canada","CA","Alberta","CA-AB","Alberta unlimited liability corporation","English","en","Alberta unlimited liability corporation","","","2017-11-30","ACTV","","","" "K1QX","Canada","CA","Alberta","CA-AB","Alberta society","English","en","Alberta society","","","2017-11-30","ACTV","","","" "KVC1","Canada","CA","Alberta","CA-AB","general partnership","English","en","general partnership","","","2017-11-30","ACTV","","","" "PXPK","Canada","CA","Alberta","CA-AB","private recreation company","English","en","private recreation company","","","2017-11-30","ACTV","","","" "R0KX","Canada","CA","Alberta","CA-AB","private act corporation","English","en","private act corporation","","","2017-11-30","ACTV","","","" "RHVP","Canada","CA","Alberta","CA-AB","private act non-profit corp","English","en","private act non-profit corp","","","2017-11-30","ACTV","","","" "RN4K","Canada","CA","Alberta","CA-AB","Alberta limited partnership","English","en","Alberta limited partnership","","","2017-11-30","ACTV","","","" "TRO6","Canada","CA","Alberta","CA-AB","agricultural society","English","en","agricultural society","","","2017-11-30","ACTV","","","" "TS9O","Canada","CA","Alberta","CA-AB","religious society","English","en","religious society","","","2017-11-30","ACTV","","","" "U938","Canada","CA","Alberta","CA-AB","Alberta limited liability partnership","English","en","Alberta limited liability partnership","","","2017-11-30","ACTV","","","" "VHXN","Canada","CA","Alberta","CA-AB","public non-profit company","English","en","public non-profit company","","","2017-11-30","ACTV","","","" "1CML","Canada","CA","British Columbia","CA-BC","Sole proprietorship","English","en","Sole proprietorship","LLP;SRL;SENCRL","","2017-11-30","ACTV","","","" "23V9","Canada","CA","British Columbia","CA-BC","Limited partnership","English","en","Limited partnership","LLP;SRL;SENCRL","","2017-11-30","ACTV","","","" "AW80","Canada","CA","British Columbia","CA-BC","Association (includes housing cooperative and community service cooperative)","English","en","Association (includes housing cooperative and community service cooperative)","coop;co-op","","2017-11-30","ACTV","","","" "F9J3","Canada","CA","British Columbia","CA-BC","Limited partnership formed outside of BC","English","en","Limited partnership formed outside of BC","LLP;SRL;SENCRL","","2017-11-30","ACTV","","","" "HLBQ","Canada","CA","British Columbia","CA-BC","Pension fund society","English","en","Pension fund society","","","2017-11-30","ACTV","","","" "LNBY","Canada","CA","British Columbia","CA-BC","Limited liability partnership","English","en","Limited liability partnership","LLP;SRL;SENCRL","","2017-11-30","ACTV","","","" "LRRN","Canada","CA","British Columbia","CA-BC","Mutual fire insurance company","English","en","Mutual fire insurance company","","","2017-11-30","ACTV","","","" "O13B","Canada","CA","British Columbia","CA-BC","General partnership","English","en","General partnership","LLP;SRL;SENCRL","","2017-11-30","ACTV","","","" "OTU7","Canada","CA","British Columbia","CA-BC","Extraprovincial non-share corporation","English","en","Extraprovincial non-share corporation","","","2017-11-30","ACTV","","","" "QODJ","Canada","CA","British Columbia","CA-BC","Extraprovincial limited liability partnership","English","en","Extraprovincial limited liability partnership","LLP;SRL;SENCRL","","2017-11-30","ACTV","","","" "S3K4","Canada","CA","British Columbia","CA-BC","Registered extraprovincial non-share corporation","English","en","Registered extraprovincial non-share corporation","","","2017-11-30","ACTV","","","" "TGLV","Canada","CA","British Columbia","CA-BC","Extraprovincial corporation (registered foreign entity)","English","en","Extraprovincial corporation (registered foreign entity)","Ltd.;Inc.;Corp.","","2017-11-30","ACTV","","","" "WFPH","Canada","CA","British Columbia","CA-BC","Society (includes member-funded society)","English","en","Society (includes member-funded society)","","","2017-11-30","ACTV","","","" "XOYI","Canada","CA","British Columbia","CA-BC","Credit union","English","en","Credit union","","","2017-11-30","ACTV","","","" "YG5M","Canada","CA","British Columbia","CA-BC","Company (includes community contribution company and unlimited liability company)","English","en","Company (includes community contribution company and unlimited liability company)","Ltd.;Inc.;Corp.","","2017-11-30","ACTV","","","" "59T2","Canada","CA","Canada","","board of trade","English","en","board of trade","","","2017-11-30","ACTV","","","" "59T2","Canada","CA","Canada","","chambre de commerce","French","fr","chambre de commerce","","","2017-11-30","ACTV","","","" "6TRA","Canada","CA","Canada","","corporations enacted by an Act of Parliament","English","en","corporations enacted by an Act of Parliament","","","2017-11-30","ACTV","","","" "6TRA","Canada","CA","Canada","","corporation constituée par une loi du Parlement","French","fr","corporation constituée par une loi du Parlement","","","2017-11-30","ACTV","","","" "D90J","Canada","CA","Canada","","corporation without share capital","English","en","corporation without share capital","","","2017-11-30","ACTV","","","" "D90J","Canada","CA","Canada","","organisation sans capital-actions","French","fr","organisation sans capital-actions","","","2017-11-30","ACTV","","","" "M4IF","Canada","CA","Canada","","pension fund society","English","en","pension fund society","","","2017-11-30","ACTV","","","" "M4IF","Canada","CA","Canada","","société de caisse de retraite","French","fr","société de caisse de retraite","","","2017-11-30","ACTV","","","" "MGE0","Canada","CA","Canada","","cooperative","English","en","cooperative","coop;co-op","","2017-11-30","ACTV","","","" "MGE0","Canada","CA","Canada","","coopérative","French","fr","coopérative","coop;co-op","","2017-11-30","ACTV","","","" "UDLA","Canada","CA","Canada","","business corporation","English","en","business corporation","Ltd.;Inc.;Corp.","","2017-11-30","ACTV","","","" "UDLA","Canada","CA","Canada","","société par actions","French","fr","société par actions","Ltée;Inc.;S.A.R.F.","","2017-11-30","ACTV","","","" "5ONY","Canada","CA","Manitoba","CA-MB","Religious Society","English","en","Religious Society","a religious society;communauté religieuse","","2017-11-30","ACTV","","","" "9D1K","Canada","CA","Manitoba","CA-MB","non-share corporations","English","en","non-share corporations","Incorporated;Incorporee;Corporation;Inc.;Corp.","","2017-11-30","ACTV","","","" "FN6X","Canada","CA","Manitoba","CA-MB","Share corporations (including professional corporations)","English","en","Share corporations (including professional corporations)","Limited;Limitee;Incorporated;Incorporee;Corporation;Ltd.;Ltee.;Inc.;Corp.;Ltd","","2017-11-30","ACTV","","","" "G9PJ","Canada","CA","Manitoba","CA-MB","Limited Liability Partnership (Manitoba and Extra-provincial, lawyers and accountants only)","English","en","Limited Liability Partnership (Manitoba and Extra-provincial, lawyers and accountants only)","Limited Liability Partnership;LLP;Société à Responabilité Limitée;s.r.l.","","2017-11-30","ACTV","","","" "GM04","Canada","CA","Manitoba","CA-MB","Cooperative","English","en","Cooperative","Cooperative Limited;Cooperative Ltd.;Cooperative Inc.;Cooperative incorporated;Co-operative Limited;Co-operative Ltd;Co-operative Inc;Co-operative incorporated;Coopérative limitée;Coopérative ltée;Pool Limited;Pool Ltd.;Pool Inc.;Pool incorporated;Co-op Limited;Co-op limitée;Co-op incorporated;Co-op incorporée;Co-op Inc.","","2017-11-30","ACTV","","","" "HBCT","Canada","CA","Manitoba","CA-MB","Ukrainian Catholic Parish","English","en","Ukrainian Catholic Parish","The Ukrainian Catholic Parish of;La Paroisse catholique ukrainienne de","","2017-11-30","ACTV","","","" "LV28","Canada","CA","Manitoba","CA-MB","Condominium Corporation","English","en","Condominium Corporation","Condominium Corporation","","2017-11-30","ACTV","","","" "MXLT","Canada","CA","Manitoba","CA-MB","Sole Proprietorship","English","en","Sole Proprietorship","","","2017-11-30","ACTV","","","" "OPRT","Canada","CA","Manitoba","CA-MB","Limited Partnership","English","en","Limited Partnership","Limited Partnership;LP;SOCIETE EN COMMANDITE;limited partnership","","2017-11-30","ACTV","","","" "RBBY","Canada","CA","Manitoba","CA-MB","Partnership","English","en","Partnership","","","2017-11-30","ACTV","","","" "SS1V","Canada","CA","Manitoba","CA-MB","registration of extra-provincial corporations","English","en","registration of extra-provincial corporations","","","2017-11-30","ACTV","","","" "Y485","Canada","CA","Manitoba","CA-MB","Credit union","English","en","Credit union or Caisse Populaire","credit union Limited;credit union Ltd;caisse populaire limitée;caisee populaire ltée","","2017-11-30","ACTV","","","" "3Q15","Canada","CA","New Brunswick","CA-NB","partnership","English","en","partnership","","","2017-11-30","ACTV","","","" "3Q15","Canada","CA","New Brunswick","CA-NB","société en nom collectif","French","fr","société en nom collectif","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "40JO","Canada","CA","New Brunswick","CA-NB","société en commandite","French","fr","société en commandite","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "44LR","Canada","CA","New Brunswick","CA-NB","corporation professionnelle","French","fr","corporation professionnelle","c.p.","","2017-11-30","ACTV","","","" "44LR","Canada","CA","New Brunswick","CA-NB","professional corporation","English","en","professional corporation","P.C.","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "4M62","Canada","CA","New Brunswick","CA-NB","compagnie de prêt","French","fr","compagnie de prêt","Corporation de prêt;Société de prêt;Compagnie de prêt","","2017-11-30","ACTV","","","" "4M62","Canada","CA","New Brunswick","CA-NB","loan company","English","en","loan company","Loan Corporation;Loan Corp.;Loan Company","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "56KZ","Canada","CA","New Brunswick","CA-NB","agricultural fair association","English","en","agricultural fair association","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "64XG","Canada","CA","New Brunswick","CA-NB","association coopérative","French","fr","association coopérative","limitée;ltée","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "6U2Q","Canada","CA","New Brunswick","CA-NB","condominium corporation","English","en","condominium corporation","","","2017-11-30","ACTV","","","" "6U2Q","Canada","CA","New Brunswick","CA-NB","association condominiale","French","fr","association condominiale","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "7P8Y","Canada","CA","New Brunswick","CA-NB","limited partnership","English","en","limited partnership","LP","","2017-11-30","ACTV","","","" "7P8Y","Canada","CA","New Brunswick","CA-NB","société en commandite","French","fr","société en commandite","LP","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "8MEC","Canada","CA","New Brunswick","CA-NB","société à responsabilité limitée du Nouveau-Brunswick","French","fr","société à responsabilité limitée du Nouveau-Brunswick","","","2017-11-30","ACTV","","","" "8MEC","Canada","CA","New Brunswick","CA-NB","New Brunswick limited liability partnership","English","en","New Brunswick limited liability partnership","LLP","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "AXW3","Canada","CA","New Brunswick","CA-NB","selon la loi de la Législature","French","fr","selon la loi de la Législature","","","2017-11-30","ACTV","","","" "AXW3","Canada","CA","New Brunswick","CA-NB","depends on Act of the Legislature","English","en","depends on Act of the Legislature","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "B3RX","Canada","CA","New Brunswick","CA-NB","corporation","English","en","corporation","Ltd.;Inc.;Corp.","","2017-11-30","ACTV","","","" "B3RX","Canada","CA","New Brunswick","CA-NB","corporation","French","fr","corporation","Ltd.;Inc.;Corp.","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "D8UQ","Canada","CA","New Brunswick","CA-NB","professional corporation","English","en","professional corporation","P.C.","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "DHGI","Canada","CA","New Brunswick","CA-NB","project company","English","en","project company","","","2017-11-30","ACTV","","","" "DHGI","Canada","CA","New Brunswick","CA-NB","gérant de projet","French","fr","gérant de projet","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "EKRT","Canada","CA","New Brunswick","CA-NB","loan company","English","en","loan company","Loan Corporation;Loan Corp.;Loan Company","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "EPFN","Canada","CA","New Brunswick","CA-NB","New Brunswick limited liability partnership","English","en","New Brunswick limited liability partnership","LLP","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "FGSL","Canada","CA","New Brunswick","CA-NB","association condominiale","French","fr","association condominiale","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "GF6X","Canada","CA","New Brunswick","CA-NB","business name - sole proprietor","English","en","business name - sole proprietor","","","2017-11-30","ACTV","","","" "GF6X","Canada","CA","New Brunswick","CA-NB","appellation commerciale - propriétaire unique","French","fr","appellation commerciale - propriétaire unique","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "GLX2","Canada","CA","New Brunswick","CA-NB","agricultural society","English","en","agricultural society","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "GPG0","Canada","CA","New Brunswick","CA-NB","compagnie","French","fr","compagnie","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "IDBS","Canada","CA","New Brunswick","CA-NB","compagnie de fiducie","French","fr","compagnie de fiducie","Corporation de fiducie;Compagnie de fiducie;Corporation fiduciaire;Compagnie fiduciaire;Société fiduciaire","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "IKMB","Canada","CA","New Brunswick","CA-NB","co-operative association","English","en","co-operative association","Ltd.;Ltd;Limited","","2017-11-30","ACTV","","","" "IKMB","Canada","CA","New Brunswick","CA-NB","association coopérative","French","fr","association coopérative","limitée;ltée","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "IKSU","Canada","CA","New Brunswick","CA-NB","société en nom collectif","French","fr","société en nom collectif","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "ILON","Canada","CA","New Brunswick","CA-NB","caisse populaire","French","fr","caisse populaire","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "JBBW","Canada","CA","New Brunswick","CA-NB","company","English","en","company","","","2017-11-30","ACTV","","","" "JBBW","Canada","CA","New Brunswick","CA-NB","compagnie","French","fr","compagnie","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "M53U","Canada","CA","New Brunswick","CA-NB","depends on Act of the Legislature","English","en","depends on Act of the Legislature","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "MY4W","Canada","CA","New Brunswick","CA-NB","credit union","English","en","credit union","","","2017-11-30","ACTV","","","" "MY4W","Canada","CA","New Brunswick","CA-NB","caisse populaire","French","fr","caisse populaire","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "NONB","Canada","CA","New Brunswick","CA-NB","corporation","French","fr","corporation","Ltée;Inc.;Corp.","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "QJ3A","Canada","CA","New Brunswick","CA-NB","gérant de projet","French","fr","gérant de projet","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "QNSC","Canada","CA","New Brunswick","CA-NB","personne morale étrangère résidante","French","fr","personne morale étrangère résidante","C.E.R.","","2017-11-30","ACTV","","","" "QNSC","Canada","CA","New Brunswick","CA-NB","foreign resident corporation","English","en","foreign resident corporation","","","2017-11-30","ACTV","English version added of existing legal form in French","2020-11-19","English version added of existing legal form in French" "TSQ7","Canada","CA","New Brunswick","CA-NB","association de foires agricoles","French","fr","association de foires agricoles","","","2017-11-30","ACTV","","","" "TSQ7","Canada","CA","New Brunswick","CA-NB","agricultural fair association","English","en","agricultural fair association","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "WI0P","Canada","CA","New Brunswick","CA-NB","société agricole","French","fr","société agricole","","","2017-11-30","ACTV","","","" "WI0P","Canada","CA","New Brunswick","CA-NB","agricultural society","English","en","agricultural society","","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "ZACY","Canada","CA","New Brunswick","CA-NB","trust company","English","en","trust company","Trust Corporation;Trust Corp.;Trust Company;Trust Co.;Trustco;Trustee Corporation;Trustee Corp.;Trustee Company","","2017-11-30","ACTV","","","" "ZACY","Canada","CA","New Brunswick","CA-NB","compagnie de fiducie","French","fr","compagnie de fiducie","Corporation de fiducie;Compagnie de fiducie;Corporation fiduciaire;Compagnie fiduciaire;Société fiduciaire","","2017-11-30","ACTV","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "ZY4E","Canada","CA","New Brunswick","CA-NB","appellation commerciale - propriétaire unique","French","fr","appellation commerciale - propriétaire unique","","","2017-11-30","INAC","one ELF code for same legal form in 2 languages","2020-11-19","same legal form in 2 languages brought together to one ELF code" "1E9M","Canada","CA","Newfoundland and Labrador","CA-NL","Limited Partnership","English","en","Limited Partnership","LP;limited partnership;Limited Partnership","","2017-11-30","ACTV","","","" "3Y5V","Canada","CA","Newfoundland and Labrador","CA-NL","co-operatives","English","en","co-operatives","Co-operative;Coopérative","","2017-11-30","ACTV","","","" "ASWX","Canada","CA","Newfoundland and Labrador","CA-NL","share corporations","English","en","share corporations","Limited;Limitee;Incorporated;Incorporee;Corporation;Ltd.;Ltee.;Inc.;Corp.;Ltd","","2017-11-30","ACTV","","","" "EBYQ","Canada","CA","Newfoundland and Labrador","CA-NL","Credit Union","English","en","Credit Union","credit union Limited;credit union Ltd;credit union Ltd.;caisse populaire limitée;caisee populaire ltée","","2017-11-30","ACTV","","","" "ER0H","Canada","CA","Newfoundland and Labrador","CA-NL","registration of extra-provincial corporations","English","en","registration of extra-provincial corporations","Limited;Limitee;Incorporated;Incorporee;Corporation;Ltd.;Ltee.;Inc.;Corp.;Ltd","","2017-11-30","ACTV","","","" "GTBR","Canada","CA","Newfoundland and Labrador","CA-NL","Condominium Corporation","English","en","Condominium Corporation","Condominium Corporation","","2017-11-30","ACTV","","","" "IKGM","Canada","CA","Newfoundland and Labrador","CA-NL","non-share corporations","English","en","non-share corporations","Incorporated;Incorporee;Corporation;Inc.;Corp.","","2017-11-30","ACTV","","","" "SYPT","Canada","CA","Newfoundland and Labrador","CA-NL","Limited Liability Partnership","English","en","Limited Liability Partnership","limited liability partnership;LLP;Limited Liability Partnership","","2017-11-30","ACTV","","","" "1ADH","Canada","CA","Northwest Territories","CA-NT","Extra-Territorial Corporation(for profit and not-for-profit)","English","en","Extra-Territorial Corporation(for profit and not-for-profit)","Ltd.;Ltée.;Inc.;Corp.;Ltd;Limited","","2017-11-30","ACTV","","","" "85EC","Canada","CA","Northwest Territories","CA-NT","Limited Liability partnership","English","en","Limited Liability partnership","","","2017-11-30","ACTV","","","" "CS15","Canada","CA","Northwest Territories","CA-NT","NT society","English","en","NT society","","","2017-11-30","ACTV","","","" "KAM9","Canada","CA","Northwest Territories","CA-NT","co-operative","English","en","co-operative","Ltd.;Ltée.;Inc.;Corp.;Ltd;Limited","","2017-11-30","ACTV","","","" "PIDT","Canada","CA","Northwest Territories","CA-NT","NT corporation","English","en","NT corporation","Ltd.;Ltée.;Inc.;Corp.;Ltd;Limited","","2017-11-30","ACTV","","","" "QN8Y","Canada","CA","Northwest Territories","CA-NT","NT Professional Corporation authorized under the Professional Corporations Act","English","en","NT Professional Corporation authorized under the Professional Corporations Act","Ltd.;Ltée.;Inc.;Corp.;Ltd;Limited","","2017-11-30","ACTV","","","" "QR4F","Canada","CA","Northwest Territories","CA-NT","business name/sole proprietorship","English","en","business name/sole proprietorship","","","2017-11-30","ACTV","","","" "TA98","Canada","CA","Northwest Territories","CA-NT","Limited partnership","English","en","Limited partnership","","","2017-11-30","ACTV","","","" "TPZ2","Canada","CA","Northwest Territories","CA-NT","private act corporation","English","en","private act corporation","","","2017-11-30","ACTV","","","" "VAPN","Canada","CA","Northwest Territories","CA-NT","general partnership","English","en","general partnership","","","2017-11-30","ACTV","","","" "W126","Canada","CA","Northwest Territories","CA-NT","private act not-for-profit corporation","English","en","private act not-for-profit corporation","","","2017-11-30","ACTV","","","" "2FHC","Canada","CA","Nova Scotia","CA-NS","partnerships","English","en","partnerships","","","2017-11-30","ACTV","","","" "3M14","Canada","CA","Nova Scotia","CA-NS","A company formed under the Companies Act may seek designation as a Community Interest Company (a hybrid structure having characteristics of both for profit and non-profit entities)","English","en","A company formed under the Companies Act may seek designation as a Community Interest Company (a hybrid structure having characteristics of both for profit and non-profit entities)","Community Interest Company;société d’intérêt communautaire;C.I.C.;CIC;S.I.C.;SIC","","2017-11-30","ACTV","","","" "42GN","Canada","CA","Nova Scotia","CA-NS","unlimited company","English","en","unlimited company","Unlimited company;Company;Co.;Corporation;Corp.;U.L.C.;ULC","","2017-11-30","ACTV","","","" "876U","Canada","CA","Nova Scotia","CA-NS","Credit Unions","English","en","Credit Unions","credit union;caisse populaire;Limited;Limitée;Ltd.;Ltée","","2017-11-30","ACTV","","","" "8M03","Canada","CA","Nova Scotia","CA-NS","Condominiums","English","en","Condominiums","Condominium Corporation","","2017-11-30","ACTV","","","" "8OZ0","Canada","CA","Nova Scotia","CA-NS","limited liability partnerships","English","en","limited liability partnerships","limited liability partnership;LLP;Limited Liability Partnership","","2017-11-30","ACTV","","","" "9XHE","Canada","CA","Nova Scotia","CA-NS","business names","English","en","business names","","","2017-11-30","ACTV","","","" "FQJ9","Canada","CA","Nova Scotia","CA-NS","for profit and not-for profit co-operatives","English","en","for profit and not-for profit co-operatives","Co-operative and Limited;Ltd.;Co-opérative and Limitée;Ltée","","2017-11-30","ACTV","","","" "GG0S","Canada","CA","Nova Scotia","CA-NS","company limited by guarantee","English","en","company limited by guarantee","limited company and limited by guarantee;Limited;Limitée;Ltd.;Ltée;Incorporated;Inc.;Ltd","","2017-11-30","ACTV","","","" "T0CV","Canada","CA","Nova Scotia","CA-NS","limited partnerships formed in NS","English","en","limited partnerships formed in NS","Limited Partnership","","2017-11-30","ACTV","","","" "TY0S","Canada","CA","Nova Scotia","CA-NS","A company formed under the Companies Act may seek designation as a Private Investment Holding Company","English","en","A company formed under the Companies Act may seek designation as a Private Investment Holding Company","Limited;Limitée;Ltd.;Ltée;Incorporated;Inc.;Ltd","","2017-11-30","ACTV","","","" "ULJ1","Canada","CA","Nova Scotia","CA-NS","company limited by shares (limited company)","English","en","company limited by shares (limited company)","limited company;limited by guarantee;Limited;Limitée;Ltd.;Ltée;Incorporated;Inc.;Ltd","","2017-11-30","ACTV","","","" "W8XG","Canada","CA","Nova Scotia","CA-NS","sole proprietors","English","en","sole proprietors","","","2017-11-30","ACTV","","","" "Y80K","Canada","CA","Nova Scotia","CA-NS","Non-profit Corporations","English","en","Non-profit Corporations","Society;Association","","2017-11-30","ACTV","","","" "1JGX","Canada","CA","Ontario","CA-ON","Limited Partnership","English","en","Limited Partnership","","","2017-11-30","ACTV","","","" "456Q","Canada","CA","Ontario","CA-ON","business name/sole proprietorship","English","en","business name/sole proprietorship","","","2017-11-30","ACTV","","","" "7VKC","Canada","CA","Ontario","CA-ON","Condominium Corporation","English","en","Condominium Corporation","","","2017-11-30","ACTV","","","" "BOYK","Canada","CA","Ontario","CA-ON","Corporations formed by an Act of the Ontario Legislative Assembly","English","en","Corporations formed by an Act of the Ontario Legislative Assembly","","","2017-11-30","ACTV","","","" "CMB6","Canada","CA","Ontario","CA-ON","Not-For-Profit corporations","English","en","Not-For-Profit corporations","","","2017-11-30","ACTV","","","" "EIDL","Canada","CA","Ontario","CA-ON","Insurance Corporations incorporated under Part V of the Corporations Act","English","en","Insurance Corporations incorporated under Part V of the Corporations Act","","","2017-11-30","ACTV","","","" "ESVK","Canada","CA","Ontario","CA-ON","Credit Union","English","en","Credit Union","","","2017-11-30","ACTV","","","" "FBQL","Canada","CA","Ontario","CA-ON","Co-operative Corporation","English","en","Co-operative Corporation","","","2017-11-30","ACTV","","","" "HQKE","Canada","CA","Ontario","CA-ON","general partnership","English","en","general partnership","","","2017-11-30","ACTV","","","" "O90R","Canada","CA","Ontario","CA-ON","Business corporations (which includes professional corporations)","English","en","Business corporations (which includes professional corporations)","","","2017-11-30","ACTV","","","" "PCO0","Canada","CA","Ontario","CA-ON","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2017-11-30","ACTV","","","" "487P","Canada","CA","Prince Edward Island","CA-PE","corporation created by an Act of the Legislature","English","en","corporation created by an Act of the Legislature","","","2021-09-23","ACTV","","","" "5SGE","Canada","CA","Prince Edward Island","CA-PE","condominium corporation","English","en","condominium corporation","","","2021-09-23","ACTV","","","" "790T","Canada","CA","Prince Edward Island","CA-PE","non-profit company","English","en","non-profit company","Ltd.;Inc.;Corp.;Ltée","","2021-09-23","ACTV","","","" "CUQF","Canada","CA","Prince Edward Island","CA-PE","public unlimited liability corporation","English","en","public unlimited liability corporation","ULC","","2021-09-23","ACTV","","","" "E281","Canada","CA","Prince Edward Island","CA-PE","limited partnership","English","en","limited partnership","","","2021-09-23","ACTV","","","" "HK03","Canada","CA","Prince Edward Island","CA-PE","public limited corporation","English","en","public limited corporation","Ltd.;Inc.;Corp.;Ltée","","2021-09-23","ACTV","","","" "I5NO","Canada","CA","Prince Edward Island","CA-PE","sole proprietorship","English","en","sole proprietorship","","","2021-09-23","ACTV","","","" "JOGO","Canada","CA","Prince Edward Island","CA-PE","credit union","English","en","credit union","Ltd.;Ltée","","2021-09-23","ACTV","","","" "LT1Y","Canada","CA","Prince Edward Island","CA-PE","professional corporation","English","en","professional corporation","Ltd.;Inc.;Corp.;Ltée","","2021-09-23","ACTV","","","" "N745","Canada","CA","Prince Edward Island","CA-PE","public company","English","en","public company","Ltd.;Inc.;Corp.;Ltée","","2021-09-23","ACTV","","","all existing such companies have to be transformed into limited corporations or unlimited corporations under the Business Corporations Act by 3 May 2022 latest" "PFPW","Canada","CA","Prince Edward Island","CA-PE","private limited corporation","English","en","private limited corporation","Ltd.;Inc.;Corp.;Ltée","","2021-09-23","ACTV","","","" "QZMH","Canada","CA","Prince Edward Island","CA-PE","private unlimited liability corporation","English","en","private unlimited liability corporation","ULC","","2021-09-23","ACTV","","","" "W4DB","Canada","CA","Prince Edward Island","CA-PE","private company","English","en","private company","Ltd.;Inc.;Corp.;Ltée","","2021-09-23","ACTV","","","all existing such companies have to be transformed into limited corporations or unlimited corporations under the Business Corporations Act by 3 May 2022 latest" "X6N9","Canada","CA","Prince Edward Island","CA-PE","co-operative association","English","en","co-operative association","Co-operative Ltd;Coopérative Ltée","","2021-09-23","ACTV","","","" "Y33B","Canada","CA","Prince Edward Island","CA-PE","partnership","English","en","partnership","","","2021-09-23","ACTV","","","" "10UR","Canada","CA","Quebec","CA-QC","Syndicat coopératif","French","fr","Syndicat coopératif","","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "16GH","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les cercles agricoles","French","fr","Personne morale sans but lucratif par Loi sur les cercles agricoles","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "16RL","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la mise en marché des produits agricoles","French","fr","Personne morale sans but lucratif par Loi sur la mise en marché des produits agricoles","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "1VTA","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les évêques catholiques romains","French","fr","Personne morale sans but lucratif par Loi sur les évêques catholiques romains","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "27WJ","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les cités et villes","French","fr","Personne morale sans but lucratif par Loi sur les cités et villes","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "2ODA","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les sociétés agricoles et laitières","French","fr","Personne morale sans but lucratif par Loi sur les sociétés agricoles et laitières","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "2U3G","Canada","CA","Quebec","CA-QC","Société en nom collectif à responsabilité limitée","French","fr","Société en nom collectif à responsabilité limitée","S.E.N.C.R.L.","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "30IT","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les compagnies minières","French","fr","Société par actions constitué par Loi sur les compagnies minières","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "3C5P","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la probation et sur les établissements de détention","French","fr","Personne morale sans but lucratif par Loi sur la probation et sur les établissements de détention","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "3FP6","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les corporations de fonds de sécurité","French","fr","Personne morale sans but lucratif par Loi sur les corporations de fonds de sécurité","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "4B4B","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les sociétés de patrons de fabriques de producteurs laitiers","French","fr","Société par actions constitué par Loi sur les sociétés de patrons de fabriques de producteurs laitiers","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "50Z9","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les assurances","French","fr","Société par actions constitué par Loi sur les assurances","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "52CK","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les villes minières","French","fr","Personne morale sans but lucratif par Loi sur les villes minières","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "6ZCO","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la formation et la qualification professionnelles de la main-d’œuvre","French","fr","Personne morale sans but lucratif par Loi sur la formation et la qualification professionnelles de la main-d’œuvre","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "702U","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les Chevaliers de Colomb de la province de Québec","French","fr","Personne morale sans but lucratif par Loi sur les Chevaliers de Colomb de la province de Québec","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "814Y","Canada","CA","Quebec","CA-QC","Société en participation","French","fr","Société en participation","","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "87OW","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les collèges d'enseignement général et professionnel","French","fr","Personne morale sans but lucratif par Loi sur les collèges d'enseignement général et professionnel","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "95EN","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les services de santé et les services sociaux pour les autochtones cris","French","fr","Personne morale sans but lucratif par Loi sur les services de santé et les services sociaux pour les autochtones cris","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "9CB2","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les syndicats d'élevage","French","fr","Société par actions constitué par Loi sur les syndicats d'élevage","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "9CEN","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les sociétés d'exploration minière","French","fr","Société par actions constitué par Loi sur les sociétés d'exploration minière","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "9IF2","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les associations coopératives","French","fr","Personne morale sans but lucratif par Loi sur les associations coopératives","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "A7KA","Canada","CA","Quebec","CA-QC","Selon la loi par Loi spéciale du Québec à caractère public","French","fr","Selon la loi par Loi spéciale du Québec à caractère public","","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "AS7L","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les compagnies de gaz, d’eau et d’électricité","French","fr","Société par actions constitué par Loi sur les compagnies de gaz, d’eau et d’électricité","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "CG81","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la Société d’habitation du Québec","French","fr","Personne morale sans but lucratif par Loi sur la Société d’habitation du Québec","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "CT3J","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les compagnies (Partie II et Partie III), Code des professions, Loi concernant le regroupement et la gestion des commissions scolaires , Loi sur l’aménagement et l’urbanisme, Loi sur l’instruction publique, Loi sur l’organisation municipale de certains territoires, Loi sur la conservation de la faune, Loi sur la conservation et la mise en valeur de la faune, Loi sur la constitution de certaines Églises, Loi sur la Fédération des guides catholiques du Québec , Loi sur la Fédération des scouts catholiques du Québec , Loi sur la formation et la qualification professionnelles de la main-d’œuvre, Loi sur la mise en marché des produits agricoles, alimentaires et de la pêche, Loi sur la mise en marché des produits agricoles, Loi sur la probation et sur les établissements de détention, Loi sur la santé et la sécurité du travail, Loi sur la Société d’habitation du Québec, Loi sur la société Saint-Jean-Baptiste de Trois-Rivières, Loi sur la société Saint-Jean-Baptiste du Québec, Loi sur les associations coopératives, Loi sur les assurances, Loi sur les cercles agricoles, Loi sur les Chevaliers de Colomb de la province de Québec, Loi sur les cités et villes, Loi sur les clubs de chasse et de pêche, Loi sur les clubs de récréation, Loi sur les collèges d'enseignement général et professionnel, Loi sur les compagnies de cimetière, Loi sur les compagnies de cimetières catholiques romains, Loi sur les corporations de fonds de sécurité, Loi sur les corporations religieuses, Loi sur les décrets de convention collective, Loi sur les évêques catholiques romains, Loi sur les fabriques, Loi sur les services correctionnels, Loi sur les services de santé et les services sociaux pour les autochtones cris, Loi sur les services de santé et les services sociaux, Loi sur les sociétés agricoles et laitières, Loi sur les sociétés d'agriculture, Loi sur les sociétés d'horticulture, Loi sur les sociétés nationales de bienfaisance, Loi sur les syndicats professionnels, Loi sur les villages miniers, Loi sur les villages nordiques et l’Administration régionale Kativik, Loi sur les villes minières, Loi sur l'organisation territoriale municipale, Loi sur les sociétés préventives de cruauté envers les animaux","French","fr","Personne morale sans but lucratif par Loi sur les compagnies (Partie II et Partie III), Code des professions, Loi concernant le regroupement et la gestion des commissions scolaires , Loi sur l’aménagement et l’urbanisme, Loi sur l’instruction publique, Loi sur l’organisation municipale de certains territoires, Loi sur la conservation de la faune, Loi sur la conservation et la mise en valeur de la faune, Loi sur la constitution de certaines Églises, Loi sur la Fédération des guides catholiques du Québec , Loi sur la Fédération des scouts catholiques du Québec , Loi sur la formation et la qualification professionnelles de la main-d’œuvre, Loi sur la mise en marché des produits agricoles, alimentaires et de la pêche, Loi sur la mise en marché des produits agricoles, Loi sur la probation et sur les établissements de détention, Loi sur la santé et la sécurité du travail, Loi sur la Société d’habitation du Québec, Loi sur la société Saint-Jean-Baptiste de Trois-Rivières, Loi sur la société Saint-Jean-Baptiste du Québec, Loi sur les associations coopératives, Loi sur les assurances, Loi sur les cercles agricoles, Loi sur les Chevaliers de Colomb de la province de Québec, Loi sur les cités et villes, Loi sur les clubs de chasse et de pêche, Loi sur les clubs de récréation, Loi sur les collèges d'enseignement général et professionnel, Loi sur les compagnies de cimetière, Loi sur les compagnies de cimetières catholiques romains, Loi sur les corporations de fonds de sécurité, Loi sur les corporations religieuses, Loi sur les décrets de convention collective, Loi sur les évêques catholiques romains, Loi sur les fabriques, Loi sur les services correctionnels, Loi sur les services de santé et les services sociaux pour les autochtones cris, Loi sur les services de santé et les services sociaux, Loi sur les sociétés agricoles et laitières, Loi sur les sociétés d'agriculture, Loi sur les sociétés d'horticulture, Loi sur les sociétés nationales de bienfaisance, Loi sur les syndicats professionnels, Loi sur les villages miniers, Loi sur les villages nordiques et l’Administration régionale Kativik, Loi sur les villes minières, Loi sur l'organisation territoriale municipale, Loi sur les sociétés préventives de cruauté envers les animaux","","","2017-11-30","INAC","jurisdiction name change","2020-06-10","correction of country subdivision name to align with name in ISO 3166 standard in English" "D2T8","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les compagnies (Partie II et Partie III)","French","fr","Personne morale sans but lucratif par Loi sur les compagnies (Partie II et Partie III)","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "F9CT","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur l’instruction publique","French","fr","Personne morale sans but lucratif par Loi sur l’instruction publique","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "GAMO","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les sociétés nationales de bienfaisance","French","fr","Personne morale sans but lucratif par Loi sur les sociétés nationales de bienfaisance","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "HVWR","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la constitution de certaines Églises","French","fr","Personne morale sans but lucratif par Loi sur la constitution de certaines Églises","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "I3UX","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les services de santé et les services sociaux","French","fr","Personne morale sans but lucratif par Loi sur les services de santé et les services sociaux","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "J5SC","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la conservation et la mise en valeur de la faune","French","fr","Personne morale sans but lucratif par Loi sur la conservation et la mise en valeur de la faune","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "JBU2","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les clubs de chasse et de pêche","French","fr","Personne morale sans but lucratif par Loi sur les clubs de chasse et de pêche","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "JI4V","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la mise en marché des produits agricoles, alimentaires et de la pêche","French","fr","Personne morale sans but lucratif par Loi sur la mise en marché des produits agricoles, alimentaires et de la pêche","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "JLE0","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la conservation de la faune","French","fr","Personne morale sans but lucratif par Loi sur la conservation de la faune","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "JLZW","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les compagnies de fidéicommis","French","fr","Société par actions constitué par Loi sur les compagnies de fidéicommis","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "JQNA","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les sociétés préventives de cruauté envers les animaux","French","fr","Personne morale sans but lucratif par Loi sur les sociétés préventives de cruauté envers les animaux","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "JVMD","Canada","CA","Quebec","CA-QC","Société par actions par Fonds mutuel constitué par acte de fiducie, Loi sur les assurances, Loi sur les compagnies de fidéicommis, Loi sur les compagnies de flottage, Loi sur les compagnies de gaz, d’eau et d’électricité, Loi sur les compagnies de télégraphe et de téléphone, Loi sur les compagnies minières, Loi sur les sociétés de construction, Loi sur les sociétés de développement de l'entreprise québécoise, Loi sur les sociétés de fiducie et les sociétés d'épargne, Loi sur les sociétés de patrons de fabriques de producteurs laitiers, Loi sur les sociétés d'entraide économique, Loi sur les sociétés d'exploration minière, Loi sur les syndicats d'élevage","French","fr","Société par actions par Fonds mutuel constitué par acte de fiducie, Loi sur les assurances, Loi sur les compagnies de fidéicommis, Loi sur les compagnies de flottage, Loi sur les compagnies de gaz, d’eau et d’électricité, Loi sur les compagnies de télégraphe et de téléphone, Loi sur les compagnies minières, Loi sur les sociétés de construction, Loi sur les sociétés de développement de l'entreprise québécoise, Loi sur les sociétés de fiducie et les sociétés d'épargne, Loi sur les sociétés de patrons de fabriques de producteurs laitiers, Loi sur les sociétés d'entraide économique, Loi sur les sociétés d'exploration minière, Loi sur les syndicats d'élevage","","","2017-11-30","INAC","jurisdiction name change","2020-06-10","correction of country subdivision name to align with name in ISO 3166 standard in English" "JXO5","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les sociétés de fiducie et les sociétés d'épargne","French","fr","Société par actions constitué par Loi sur les sociétés de fiducie et les sociétés d'épargne","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "K08P","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les compagnies de cimetière","French","fr","Personne morale sans but lucratif par Loi sur les compagnies de cimetière","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "L26C","Canada","CA","Quebec","CA-QC","Société par actions par Fonds mutuel constitué par acte de fiducie","French","fr","Société par actions par Fonds mutuel constitué par acte de fiducie","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "L3XH","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les sociétés d'horticulture","French","fr","Personne morale sans but lucratif par Loi sur les sociétés d'horticulture","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "LN3N","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les villages miniers","French","fr","Personne morale sans but lucratif par Loi sur les villages miniers","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "MCY8","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les sociétés d'agriculture","French","fr","Personne morale sans but lucratif par Loi sur les sociétés d'agriculture","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "MK1I","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les sociétés d'entraide économique","French","fr","Société par actions constitué par Loi sur les sociétés d'entraide économique","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "MQT7","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la santé et la sécurité du travail","French","fr","Personne morale sans but lucratif par Loi sur la santé et la sécurité du travail","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "MR95","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les décrets de convention collective","French","fr","Personne morale sans but lucratif par Loi sur les décrets de convention collective","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "NVXN","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur l'organisation territoriale municipale","French","fr","Personne morale sans but lucratif par Loi sur l'organisation territoriale municipale","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "OMUP","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les clubs de récréation","French","fr","Personne morale sans but lucratif par Loi sur les clubs de récréation","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "Q8NY","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les syndicats professionnels","French","fr","Personne morale sans but lucratif par Loi sur les syndicats professionnels","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "QB2W","Canada","CA","Quebec","CA-QC","Coopérative","French","fr","Coopérative","coopérative;coopératif;coopération;coop","cooperative;cooperation;coop","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "RC3D","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les villages nordiques et l’Administration régionale Kativik","French","fr","Personne morale sans but lucratif par Loi sur les villages nordiques et l’Administration régionale Kativik","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "RPGT","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les compagnies de télégraphe et de téléphone","French","fr","Société par actions constitué par Loi sur les compagnies de télégraphe et de téléphone","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "RQIC","Canada","CA","Quebec","CA-QC","Société en commandite","French","fr","Société en commandite","S.E.C.","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "S72N","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la Fédération des scouts catholiques du Québec","French","fr","Personne morale sans but lucratif par Loi sur la Fédération des scouts catholiques du Québec","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "T1LR","Canada","CA","Quebec","CA-QC","Syndicat de copropriété","French","fr","Syndicat de copropriété","","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "TA7J","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les compagnies de flottage","French","fr","Société par actions constitué par Loi sur les compagnies de flottage","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "TKAB","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les sociétés de développement de l'entreprise québécoise","French","fr","Société par actions constitué par Loi sur les sociétés de développement de l'entreprise québécoise","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "TWLR","Canada","CA","Quebec","CA-QC","Association","French","fr","Association","","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "UG3Z","Canada","CA","Quebec","CA-QC","Société par actions par Loi sur les sociétés par actions","French","fr","Société par actions par Loi sur les sociétés par actions","s.a.;ltée;inc.","corp.;ltd;inc.","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "UR1O","Canada","CA","Quebec","CA-QC","entreprise individuelle","French","fr","entreprise individuelle","","","2023-09-28","ACTV","","","" "UVCG","Canada","CA","Quebec","CA-QC","Société par actions constitué par Loi sur les sociétés de construction","French","fr","Société par actions constitué par Loi sur les sociétés de construction","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "V5IH","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur l’aménagement et l’urbanisme","French","fr","Personne morale sans but lucratif par Loi sur l’aménagement et l’urbanisme","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "V9GU","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la société Saint-Jean-Baptiste de Trois-Rivières","French","fr","Personne morale sans but lucratif par Loi sur la société Saint-Jean-Baptiste de Trois-Rivières","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "VGP6","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les fabriques","French","fr","Personne morale sans but lucratif par Loi sur les fabriques","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "VRVJ","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Code des professions","French","fr","Personne morale sans but lucratif par Code des professions","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "WGEA","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur l’organisation municipale de certains territoires","French","fr","Personne morale sans but lucratif par Loi sur l’organisation municipale de certains territoires","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "XS49","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi concernant le regroupement et la gestion des commissions scolaires","French","fr","Personne morale sans but lucratif par Loi concernant le regroupement et la gestion des commissions scolaires","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "XW5K","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la Fédération des guides catholiques du Québec","French","fr","Personne morale sans but lucratif par Loi sur la Fédération des guides catholiques du Québec","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "YBMJ","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les assurances","French","fr","Personne morale sans but lucratif par Loi sur les assurances","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "YIIS","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les corporations religieuses","French","fr","Personne morale sans but lucratif par Loi sur les corporations religieuses","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "YRUJ","Canada","CA","Quebec","CA-QC","Société en nom collectif","French","fr","Société en nom collectif","S.E.N.C.","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "Z6MF","Canada","CA","Quebec","CA-QC","Selon la loi par Loi spéciale du Québec à caractère privé","French","fr","Selon la loi par Loi spéciale du Québec à caractère privé","","","2017-11-30","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "ZGEX","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les services correctionnels","French","fr","Personne morale sans but lucratif par Loi sur les services correctionnels","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "ZQQU","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur la société Saint-Jean-Baptiste du Québec","French","fr","Personne morale sans but lucratif par Loi sur la société Saint-Jean-Baptiste du Québec","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "ZX1F","Canada","CA","Quebec","CA-QC","Personne morale sans but lucratif par Loi sur les compagnies de cimetières catholiques romains","French","fr","Personne morale sans but lucratif par Loi sur les compagnies de cimetières catholiques romains","","","2020-06-10","ACTV","jurisdiction name change","2023-09-28","correction of country subdivision name to align with name in ISO 3166 standard in English" "3OVJ","Canada","CA","Saskatchewan","CA-SK","Non-profit Corporations","English","en","Non-profit Corporations","Inc.;Corp.","","2017-11-30","ACTV","","","" "5D9I","Canada","CA","Saskatchewan","CA-SK","Limited Liabilty Partnerships","English","en","Limited Liabilty Partnerships","","","2017-11-30","ACTV","","","" "5EEA","Canada","CA","Saskatchewan","CA-SK","Corporations formed by an Act of the Saskatchewan legislature","English","en","Corporations formed by an Act of the Saskatchewan legislature","","","2017-11-30","ACTV","","","" "7IKZ","Canada","CA","Saskatchewan","CA-SK","Limited Partnership","English","en","Limited Partnership","","","2017-11-30","ACTV","","","" "7XZL","Canada","CA","Saskatchewan","CA-SK","New Generation Co-operatives","English","en","New Generation Co-operatives","co-op. ltd.","","2017-11-30","ACTV","","","" "8KL5","Canada","CA","Saskatchewan","CA-SK","Condominium Corporations","English","en","Condominium Corporations","","","2017-11-30","ACTV","","","" "FYYY","Canada","CA","Saskatchewan","CA-SK","Credit Unions","English","en","Credit Unions","","","2017-11-30","ACTV","","","" "I8VP","Canada","CA","Saskatchewan","CA-SK","Sole Proprietors","English","en","Sole Proprietors","","","2017-11-30","ACTV","","","" "JNCJ","Canada","CA","Saskatchewan","CA-SK","Co-operatives","English","en","Co-operatives","co-op;ltd.","","2017-11-30","ACTV","","","" "KZDW","Canada","CA","Saskatchewan","CA-SK","Syndicates","English","en","Syndicates","","","2017-11-30","ACTV","","","" "L2NN","Canada","CA","Saskatchewan","CA-SK","Joint Ventures","English","en","Joint Ventures","","","2017-11-30","ACTV","","","" "LMSY","Canada","CA","Saskatchewan","CA-SK","Partnership","English","en","Partnership","","","2017-11-30","ACTV","","","" "UWMY","Canada","CA","Saskatchewan","CA-SK","Business Corporations","English","en","Business Corporations","Ltd.;Inc.;Corp.","","2017-11-30","ACTV","","","" "4XP8","Cayman Islands","KY","","","company limited by guarantee","English","en","company limited by guarantee","Ltd","","2020-06-10","ACTV","","","" "6XB7","Cayman Islands","KY","","","exempted limited partnership","English","en","exempted limited partnership","ELP","","2020-06-10","ACTV","","","" "8HR7","Cayman Islands","KY","","","unlimited company","English","en","unlimited company","","","2020-06-10","ACTV","","","" "JDX6","Cayman Islands","KY","","","special economic zone company","English","en","special economic zone company","SEZC","","2020-06-10","ACTV","","","" "K575","Cayman Islands","KY","","","foundation company","English","en","foundation company","","","2020-06-10","ACTV","","","" "MP7S","Cayman Islands","KY","","","segregated portfolio company","English","en","segregated portfolio company","SPC","","2020-06-10","ACTV","","","" "MPUG","Cayman Islands","KY","","","limited liability company","English","en","limited liability company","LLC","","2020-06-10","ACTV","","","" "OSBR","Cayman Islands","KY","","","company limited by shares","English","en","company limited by shares","Ltd","","2020-06-10","ACTV","","","" "SNUK","Cayman Islands","KY","","","association","English","en","association","","","2020-06-10","ACTV","","","" "T5UM","Cayman Islands","KY","","","exempted limited duration company","English","en","exempted limited duration company","LDC","","2020-06-10","ACTV","","","" "XAQA","Cayman Islands","KY","","","limited partnership","English","en","limited partnership","LP","","2020-06-10","ACTV","","","" "2UZP","Chile","CL","","","Sociedad Colectiva Civil","Spanish","es","Sociedad Colectiva Civil","","","2021-09-23","ACTV","","","" "78VN","Chile","CL","","","Asociación","Spanish","es","Asociación","","","2021-09-23","ACTV","","","" "7T6S","Chile","CL","","","Sociedad Legal Minera","Spanish","es","Sociedad Legal Minera","SLM","","2021-09-23","ACTV","","","" "7ZMX","Chile","CL","","","Asociación Gremial","Spanish","es","Asociación Gremial","A.G.","","2021-09-23","ACTV","","","" "B8OI","Chile","CL","","","Entidad religiosa","Spanish","es","Entidad religiosa","","","2021-09-23","ACTV","","","" "C6AH","Chile","CL","","","Cooperativa","Spanish","es","Cooperativa","","","2021-09-23","ACTV","","","" "CVDP","Chile","CL","","","Sociedad de Responsabilidad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada","SRL","","2021-09-23","ACTV","","","" "CZCE","Chile","CL","","","Sociedad Colectiva Comercial","Spanish","es","Sociedad Colectiva Comercial","","","2021-09-23","ACTV","","","" "EE3W","Chile","CL","","","Sociedad en Comandita Comercial","Spanish","es","Sociedad en Comandita Comercial","","","2021-09-23","ACTV","","","" "KUUZ","Chile","CL","","","Sociedad por Acciones","Spanish","es","Sociedad por Acciones","SpA","","2021-09-23","ACTV","","","" "OA6N","Chile","CL","","","Sociedad Anónima","Spanish","es","Sociedad Anónima","S.A.","","2021-09-23","ACTV","","","" "Q1J0","Chile","CL","","","Sociedad Contractual Minera","Spanish","es","Sociedad Contractual Minera","SCM","","2021-09-23","ACTV","","","" "QFYC","Chile","CL","","","Empresa Individual de Responsabilidad Limitada","Spanish","es","Empresa Individual de Responsabilidad Limitada","E.I.R.L","","2021-09-23","ACTV","","","" "RNQ0","Chile","CL","","","Organización Comunitaria","Spanish","es","Organización Comunitaria","","","2021-09-23","ACTV","","","" "VZ3G","Chile","CL","","","Sociedad en Comandita Civil","Spanish","es","Sociedad en Comandita Civil","","","2021-09-23","ACTV","","","" "Y8F1","Chile","CL","","","Organización Deportiva","Spanish","es","Organización Deportiva","","","2021-09-23","ACTV","","","" "YDNQ","Chile","CL","","","Fundación","Spanish","es","Fundación","","","2021-09-23","ACTV","","","" "ZHHH","Chile","CL","","","Comunidad o Asociación Indígena","Spanish","es","Comunidad o Asociación Indígena","","","2021-09-23","ACTV","","","" "1IWK","China","CN","","","外国常驻新闻机构","Chinese","zh","wai guo chang zhu xin wen ji gou","","","2019-07-05","ACTV","","","" "2M6Y","China","CN","","","基金会","Chinese","zh","ji jin hui","","","2019-07-05","ACTV","","","" "5A9K","China","CN","","","军队事业单位","Chinese","zh","jun dui shi ye dan wei","","","2019-07-05","ACTV","","","" "5GXA","China","CN","","","村级集体经济组织","Chinese","zh","cun ji ji ti jing ji zu zhi","","","2019-07-05","ACTV","","","" "6KC0","China","CN","","","宗教院校","Chinese","zh","zong jiao yuan xiao","","","2019-07-05","ACTV","","","" "6NSC","China","CN","","","律师执业机构","Chinese","zh","lv shi zhi ye ji gou","","","2019-07-05","ACTV","","","" "8XAW","China","CN","","","外国在华文化中心","Chinese","zh","wai guo zai hua wen hua zhong xin","","","2019-07-05","ACTV","","","" "B5UZ","China","CN","","","事业单位","Chinese","zh","shi ye dan wei","","","2019-07-05","ACTV","","","" "BDTI","China","CN","","","编办直接管理机构编制的群众团体","Chinese","zh","bian ban zhi jie guan li ji gou bian zhi de qun zhong tuan ti","","","2019-07-05","ACTV","","","" "C38B","China","CN","","","其他(外交)","Chinese","zh","qi ta( wai jiao )","","","2019-07-05","ACTV","","","" "CYV6","China","CN","","","其他(中央军委改革和编制办公室)","Chinese","zh","qi ta( zhong yang jun wei gai ge he bian zhi ban gong shi )","","","2019-07-05","ACTV","","","" "DLEK","China","CN","","","乡镇级集体经济组织","Chinese","zh","xiang zhen ji ji ti jing ji zu zhi","","","2019-07-05","ACTV","","","" "E4FG","China","CN","","","民办非企业单位","Chinese","zh","min ban fei qi ye dan wei","","","2019-07-05","ACTV","","","" "E4YV","China","CN","","","港澳台地区旅游部门常驻内地(大陆)代表机构","Chinese","zh","gang ao tai di qu lv you bu men chang zhu nei di ( da lu ) dai biao ji gou","","","2019-07-05","ACTV","","","" "E88S","China","CN","","","公证处","Chinese","zh","gong zheng chu","","","2019-07-05","ACTV","","","" "ECAK","China","CN","","","企业","Chinese","zh","qi ye","","","2019-07-05","ACTV","","","" "ESZ8","China","CN","","","其他(农业)","Chinese","zh","qi ta( nong ye )","","","2019-07-05","ACTV","","","" "GGZ5","China","CN","","","社会团体","Chinese","zh","she hui tuan ti","","","2019-07-05","ACTV","","","" "GPHT","China","CN","","","其他(文化)","Chinese","zh","qi ta( wen hua )","","","2019-07-05","ACTV","","","" "I39S","China","CN","","","机关","Chinese","zh","ji guan","","","2019-07-05","ACTV","","","" "IBEM","China","CN","","","基层法律服务所","Chinese","zh","ji ceng fa lv fu wu suo","","","2019-07-05","ACTV","","","" "LURL","China","CN","","","其他(适用于无登记机构的的情况)","Chinese","zh","qi ta( shi yong yu wu deng ji ji gou de de qing kuang )","","","2019-07-05","ACTV","","","" "NWJX","China","CN","","","其他(司法行政)","Chinese","zh","qi ta( si fa xing zheng )","","","2019-07-05","ACTV","","","" "OH9O","China","CN","","","基层工会","Chinese","zh","ji ceng gong hui","","","2019-07-05","ACTV","","","" "OMUD","China","CN","","","其他(旅游)","Chinese","zh","qi ta( lv you )","","","2019-07-05","ACTV","","","" "R3O0","China","CN","","","其他(工会)","Chinese","zh","qi ta( gong hui )","","","2019-07-05","ACTV","","","" "RV48","China","CN","","","个体工商户","Chinese","zh","ge ti gong shang hu","","","2019-07-05","ACTV","","","" "S9UH","China","CN","","","司法鉴定机构","Chinese","zh","si fa jian ding ji gou","","","2019-07-05","ACTV","","","" "SH05","China","CN","","","其他(机构编制)","Chinese","zh","qi ta( ji gou bian zhi )","","","2019-07-05","ACTV","","","" "T0KK","China","CN","","","其他(宗教)","Chinese","zh","qi ta( zong jiao )","","","2019-07-05","ACTV","","","" "TBG2","China","CN","","","外国旅游部门常驻代表机构","Chinese","zh","wai guo lv you bu men chang zhu dai biao ji gou","","","2019-07-05","ACTV","","","" "UMCR","China","CN","","","农民专业合作社","Chinese","zh","nong min zhuan ye he zuo she","","","2019-07-05","ACTV","","","" "V251","China","CN","","","仲裁委员会","Chinese","zh","zhong cai wei yuan hui","","","2019-07-05","ACTV","","","" "V816","China","CN","","","组级集体经济组织","Chinese","zh","zu ji ji ti jing ji zu zhi","","","2019-07-05","ACTV","","","" "WEUX","China","CN","","","其他(民政)","Chinese","zh","qi ta( min zheng )","","","2019-07-05","ACTV","","","" "YXJ5","China","CN","","","宗教活动场所","Chinese","zh","zong jiao huo dong chang suo","","","2019-07-05","ACTV","","","" "1PAD","Colombia","CO","","","Empresa Unipersonal","Spanish","es","Empresa Unipersonal","E.U.","","2020-06-10","ACTV","","","" "3RHN","Colombia","CO","","","Sociedad Anónima","Spanish","es","Sociedad Anónima","S.A.","","2020-06-10","ACTV","","","" "4OYE","Colombia","CO","","","Persona natural comerciante","Spanish","es","Persona natural comerciante","","","2020-06-10","ACTV","","","" "6Z8B","Colombia","CO","","","Sucursal de Sociedad Extranjera","Spanish","es","Sucursal de Sociedad Extranjera","","","2020-06-10","ACTV","","","" "D2T3","Colombia","CO","","","Empresa Asociativa de Trabajo","Spanish","es","Empresa Asociativa de Trabajo","","","2020-06-10","ACTV","","","" "DEJ0","Colombia","CO","","","Sociedad Colectiva","Spanish","es","Sociedad Colectiva","","","2020-06-10","ACTV","","","" "IUIY","Colombia","CO","","","Sociedad en comandita simple","Spanish","es","Sociedad en comandita simple","Cía S. en C.","","2020-06-10","ACTV","","","" "KC51","Colombia","CO","","","Sociedad de Economía Mixta","Spanish","es","Sociedad de Economía Mixta","","","2020-06-10","ACTV","","","" "KYVO","Colombia","CO","","","Sociedad por Acciones Simplificada","Spanish","es","Sociedad por Acciones Simplificada","S.A.S","","2020-06-10","ACTV","","","" "N1TE","Colombia","CO","","","Sociedad en comandita por acciones","Spanish","es","Sociedad en comandita por acciones","Cía SCA.","","2020-06-10","ACTV","","","" "SJB8","Colombia","CO","","","Sociedades Agrarias de Transformación","Spanish","es","Sociedades Agrarias de Transformación","SAT","","2020-06-10","ACTV","","","" "WX45","Colombia","CO","","","Sociedad de Responsabilidad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada","Ltda.","","2020-06-10","ACTV","","","" "70NZ","Cook Islands","CK","","","International Company","English","en","International Company","","","2020-06-10","ACTV","","","" "A7G6","Cook Islands","CK","","","Limited Liability Company","English","en","Limited Liability Company","","","2020-06-10","ACTV","","","" "KNIC","Cook Islands","CK","","","International Partnership","English","en","International Partnership","","","2020-06-10","ACTV","","","" "N00R","Cook Islands","CK","","","Foundation","English","en","Foundation","","","2020-06-10","ACTV","","","" "YCQM","Cook Islands","CK","","","International Trust","English","en","International Trust","","","2020-06-10","ACTV","","","" "Z3Y2","Cook Islands","CK","","","Foreign Company","English","en","Foreign Company","","","2020-06-10","ACTV","","","" "4SFS","Costa Rica","CR","","","Institución Autónoma","Spanish","es","Institución Autónoma","","","2020-06-10","ACTV","","","" "4Y4D","Costa Rica","CR","","","Entidad Creada por Ley Especial","Spanish","es","Entidad Creada por Ley Especial","","","2020-06-10","ACTV","","","" "72BT","Costa Rica","CR","","","Organismo Internacional","Spanish","es","Organismo Internacional","","","2020-06-10","ACTV","","","" "DUXT","Costa Rica","CR","","","Junta de Educación y Junta Administrativa de Patronatos Escolares","Spanish","es","Junta de Educación y Junta Administrativa de Patronatos Escolares","","","2020-06-10","ACTV","","","" "E26K","Costa Rica","CR","","","Sociedad Profesional","Spanish","es","Sociedad Profesional","","","2020-06-10","ACTV","","","" "EFE3","Costa Rica","CR","","","Municipalidad","Spanish","es","Municipalidad","","","2020-06-10","ACTV","","","" "G5RR","Costa Rica","CR","","","Fundación","Spanish","es","Fundación","","","2020-06-10","ACTV","","","" "H2BW","Costa Rica","CR","","","Sociedad civil","Spanish","es","Sociedad civil","A.C.","","2020-06-10","ACTV","","","" "HSX9","Costa Rica","CR","","","Temporalidad de la Iglesia","Spanish","es","Temporalidad de la Iglesia","","","2020-06-10","ACTV","","","" "KZMF","Costa Rica","CR","","","Sociedad de usuarios de aguas","Spanish","es","Sociedad de usuarios de aguas","","","2020-06-10","ACTV","","","" "LQVG","Costa Rica","CR","","","Sucesión Indivisa","Spanish","es","Sucesión Indivisa","","","2020-06-10","ACTV","","","" "M0X8","Costa Rica","CR","","","Condominio","Spanish","es","Condominio","","","2020-06-10","ACTV","","","" "O4X3","Costa Rica","CR","","","Asociación civil, Asociación deportiva, Federación","Spanish","es","Asociación civil, Asociación deportiva, Federación","","","2020-06-10","ACTV","","","" "P864","Costa Rica","CR","","","Sociedad de Responsabilidad Limitada o Sociedad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada o Sociedad Limitada","S.R.L.;S.L.","","2020-06-10","ACTV","","","" "Q4J1","Costa Rica","CR","","","Mutual de Ahorro y Préstamo","Spanish","es","Mutual de Ahorro y Préstamo","","","2020-06-10","ACTV","","","" "SBQF","Costa Rica","CR","","","Sociedad colectiva","Spanish","es","Sociedad colectiva","S.C.","","2020-06-10","ACTV","","","" "SMWM","Costa Rica","CR","","","Sindicato y su Federación","Spanish","es","Sindicato y su Federación","","","2020-06-10","ACTV","","","" "YFZL","Costa Rica","CR","","","Fideicomiso de Partidos Políticos","Spanish","es","Fideicomiso de Partidos Políticos","","","2020-06-10","ACTV","","","" "YOIW","Costa Rica","CR","","","Sociedad Anónima","Spanish","es","Sociedad Anónima","S.A.","","2020-06-10","ACTV","","","" "YP63","Costa Rica","CR","","","Sociedad en comandita","Spanish","es","Sociedad en comandita","S. en C.","","2020-06-10","ACTV","","","" "YW6W","Costa Rica","CR","","","Empresa Individual de Responsabilidad Limitada","Spanish","es","Empresa Individual de Responsabilidad Limitada","E.I.R.L.","","2020-06-10","ACTV","","","" "YYZO","Costa Rica","CR","","","Asociación Cooperativa","Spanish","es","Asociación Cooperativa","","","2020-06-10","ACTV","","","" "24EG","Croatia","HR","","","Kreditna unija","Croatian","hr","Kreditna unija","","","2017-11-30","ACTV","","","" "274G","Croatia","HR","","","Udruga","Croatian","hr","Udruga","","","2019-07-05","ACTV","","","" "28RA","Croatia","HR","","","Fond","Croatian","hr","Fond","","","2019-07-05","ACTV","","","" "2FED","Croatia","HR","","","Gospodarsko interesno udruženje","Croatian","hr","Gospodarsko interesno udruženje","GIU","","2017-11-30","ACTV","","","" "3OW3","Croatia","HR","","","Europsko gospodarsko interesno udruženje (skraćeno EGIU)","Croatian","hr","Europsko gospodarsko interesno udruženje (skraćeno EGIU)","EGIU","","2017-11-30","ACTV","","","" "6Q6D","Croatia","HR","","","Pravna osoba Katoličke Crkve","Croatian","hr","Pravna osoba Katoličke Crkve","","","2019-07-05","ACTV","","","" "6RD2","Croatia","HR","","","Agencije I druge samostalne pravne osobe s javnim ovlastima","Croatian","hr","Agencije I druge samostalne pravne osobe s javnim ovlastima","","","2019-07-05","ACTV","","","" "8VRU","Croatia","HR","","","Europska zadruga (Societas Cooperativa Europaea, skraćeno SCE)","Croatian","hr","Europska zadruga (Societas Cooperativa Europaea, skraćeno SCE)","SCE","","2017-11-30","ACTV","","","" "9D9U","Croatia","HR","","","Trgovac pojedinac","Croatian","hr","Trgovac pojedinac","t.p.","","2017-11-30","ACTV","","","" "9PZC","Croatia","HR","","","Fundacija","Croatian","hr","Fundacija","","","2019-07-05","ACTV","","","" "E9CM","Croatia","HR","","","Europsko društvo (Societas Europaea, skraćeno SE)","Croatian","hr","Europsko društvo (Societas Europaea, skraćeno SE)","SE","","2017-11-30","ACTV","","","" "EYKU","Croatia","HR","","","Stečajna masa","Croatian","hr","Stečajna masa","","","2017-11-30","ACTV","","","" "G5RH","Croatia","HR","","","Zadruge","Croatian","hr","Zadruge","","","2017-11-30","ACTV","","","" "IVVD","Croatia","HR","","","Savez zadruga","Croatian","hr","Savez zadruga","","","2017-11-30","ACTV","","","" "KP34","Croatia","HR","","","Javno trgovačko društvo","Croatian","hr","Javno trgovačko društvo","j.t.d.","","2017-11-30","ACTV","","","" "LUMA","Croatia","HR","","","Dioničko društvo","Croatian","hr","Dioničko društvo","d.d.","","2017-11-30","ACTV","","","" "MF7P","Croatia","HR","","","Komanditno društvo","Croatian","hr","Komanditno društvo","k.d.","","2017-11-30","ACTV","","","" "NRTG","Croatia","HR","","","Podružnica","Croatian","hr","Podružnica","","","2017-11-30","ACTV","","","" "OQWO","Croatia","HR","","","Društvo s ograničenom odgovornošću (jednostavno društvo s ograničenom odgovornošću)","Croatian","hr","Društvo s ograničenom odgovornošću (jednostavno društvo s ograničenom odgovornošću)","d.o.o.;j.d.o.o","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "SPJ7","Croatia","HR","","","Vjerska zajednica","Croatian","hr","Vjerska zajednica","","","2019-07-05","ACTV","","","" "TSA0","Croatia","HR","","","Tijelo državne uprave","Croatian","hr","Tijelo državne uprave","","","2019-07-05","ACTV","","","" "XQLW","Croatia","HR","","","Jedinica lokalne ili područne (regionalne) samouprave","Croatian","hr","Jedinica lokalne ili područne (regionalne) samouprave","","","2019-07-05","ACTV","","","" "YA9S","Croatia","HR","","","Zajednica ustanova","Croatian","hr","Zajednica ustanova","","","2017-11-30","ACTV","","","" "ZFQS","Croatia","HR","","","Ustanova","Croatian","hr","Ustanova","","","2017-11-30","ACTV","","","" "ZMY8","Croatia","HR","","","Zaklada","Croatian","hr","Zaklada","","","2019-07-05","ACTV","","","" "1SVL","Curaçao","CW","","","Stille vennootschap","Dutch","nl","Stille vennootschap","","","2017-11-30","ACTV","","","" "1T06","Curaçao","CW","","","Stichting","Dutch","nl","Stichting","","","2017-11-30","ACTV","","","" "2J66","Curaçao","CW","","","Stichting Particulier Fonds","Dutch","nl","Stichting Particulier Fonds","","","2017-11-30","ACTV","","","" "36AO","Curaçao","CW","","","Naamloze Vennootschap","Dutch","nl","Naamloze Vennootschap","","","2017-11-30","ACTV","","","" "5OZV","Curaçao","CW","","","Eenmanszaak","Dutch","nl","Eenmanszaak","","","2017-11-30","ACTV","","","" "9E0Q","Curaçao","CW","","","Commanditaire vennootschap","Dutch","nl","Commanditaire vennootschap","","","2017-11-30","ACTV","","","" "ADF8","Curaçao","CW","","","Coöperatie","Dutch","nl","Coöperatie","","","2017-11-30","ACTV","","","" "IHD0","Curaçao","CW","","","Rederij","Dutch","nl","Rederij","","","2017-11-30","ACTV","","","" "KM1T","Curaçao","CW","","","Openbare vennootschap","Dutch","nl","Openbare vennootschap","","","2017-11-30","ACTV","","","" "MZB1","Curaçao","CW","","","Besloten Vennootschap","Dutch","nl","Besloten Vennootschap","","","2017-11-30","ACTV","","","" "SS3A","Curaçao","CW","","","Onderlinge waarborgmaatschappij","Dutch","nl","Onderlinge waarborgmaatschappij","","","2017-11-30","ACTV","","","" "WV3I","Curaçao","CW","","","Vereniging","Dutch","nl","Vereniging","","","2017-11-30","ACTV","","","" "ZKTC","Curaçao","CW","","","Trust","Dutch","nl","Trust","","","2017-11-30","ACTV","","","" "1MBR","Cyprus","CY","","","Άλλη νομική μορφή","Greek","el","Alli nomiki morfi","","","2017-11-30","INAC","deletion","2023-09-28","not a real separate legal form" "233U","Cyprus","CY","","","Συνεταιρισμός","Greek","el","Synetairismos","","","2017-11-30","ACTV","","","" "8BL9","Cyprus","CY","","","Ευρωπαϊκή Δημόσια Εταιρεία Περιορισμένης Ευθύνης","Greek","el","Evropaiki Dimosia Etaireia Periorismenis Efthynis","","","2017-11-30","ACTV","","","" "8VZ0","Cyprus","CY","","","Trust","English","en","Trust","","","2020-06-10","ACTV","","","" "BCF5","Cyprus","CY","","","Δημόσια Εταιρεία Περιορισμένης Ευθύνης με μετοχές","Greek","el","Dimosia Etaireia Periorismenis Efthynis me metoches","","","2017-11-30","ACTV","","","" "FV0K","Cyprus","CY","","","Eμπορική Επωνυμία","Greek","el","Emporiki Eponymia","","","2017-11-30","INAC","deletion","2023-09-28","not a real separate legal form; trade name" "GLCH","Cyprus","CY","","","Σωματεία και Ιδρυμάτα","Greek","el","Somateia kai Idrymata","","","2017-11-30","ACTV","","","" "HIL6","Cyprus","CY","","","Αλλοδαπή Εταιρεία","Greek","el","Allodapi Etaireia","","","2017-11-30","INAC","deletion","2023-09-28","foreign entity" "I8RE","Cyprus","CY","","","Αυτοτελώς εργαζόμενος","Greek","el","Aftotelos ergazomenos","","","2017-11-30","ACTV","","","" "INTY","Cyprus","CY","","","Εταιρεία Περιορισμένης Ευθύνης με εγγύηση, και που έχει μετοχικό κεφάλαιο","Greek","el","Etaireia Periorismenis Efthynis me engyisi, kai pou echei metochiko kefalaio","","","2017-11-30","ACTV","","","" "K9L6","Cyprus","CY","","","Ιδιωτική Εταιρεία Περιορισμένης Ευθύνης με μετοχές","Greek","el","Idiotiki Etaireia Periorismenis Efthynis me metoches","","","2017-11-30","ACTV","","","" "MYKG","Cyprus","CY","","","Δημόσια Εταιρεία","Greek","el","Dimosia Etaireia","","","2017-11-30","ACTV","","","" "P12B","Cyprus","CY","","","Ταμεία Προνοίας/ Συντάξεως","Greek","el","Tameia Pronoias/ Syntaxeos","","","2017-11-30","ACTV","","","" "P5JT","Cyprus","CY","","","Ευρωπαϊκός Όμιλος Οικονομικού Σκοπού","Greek","el","Ευρωπαϊκός Όμιλος Οικονομικού Σκοπού","ΕΟΟΣ","","2021-09-23","ACTV","","","" "RCPI","Cyprus","CY","","","Ιδιωτική Εταιρεία","Greek","el","Idiotiki Etaireia","","","2017-11-30","ACTV","","","" "T1JS","Cyprus","CY","","","Οντότητες που διέπονται από το δημόσιο δίκαιο","Greek","el","Ontotites pou diepontai apo to dimosio dikaio","","","2017-11-30","ACTV","","","" "U24X","Cyprus","CY","","","Συνεργατικά Πιστωτικά Ιδρύματα","Greek","el","Synergatika Pistotika Idrymata","","","2017-11-30","ACTV","","","" "W86L","Cyprus","CY","","","Εταιρεία Περιορισμένης Ευθύνης με εγγύηση, χωρίς μετοχικό κεφάλαιο","Greek","el","Etaireia Periorismenis Efthynis me engyisi, choris metochiko kefalaio","","","2017-11-30","ACTV","","","" "1JK6","Czechia","CZ","","","Svépomocné zemědělské družstvo","Czech","cs","Svépomocné zemědělské družstvo","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "2DK3","Czechia","CZ","","","Podnik nebo hospodářské zařízení politické strany","Czech","cs","Podnik nebo hospodářské zařízení politické strany","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "2N9X","Czechia","CZ","","","Česká konsolidační agentura","Czech","cs","Česká konsolidační agentura","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3BX3","Czechia","CZ","","","Evropské seskupení pro územní spolupráci","Czech","cs","Evropské seskupení pro územní spolupráci","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3G3D","Czechia","CZ","","","Nadace","Czech","cs","Nadace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3RMA","Czechia","CZ","","","Státní fond ze zákona","Czech","cs","Státní fond ze zákona","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4A26","Czechia","CZ","","","Zájmová organizace družstev","Czech","cs","Zájmová organizace družstev","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4OTK","Czechia","CZ","","","Regionální rada regionu soudržnosti","Czech","cs","Regionální rada regionu soudržnosti","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4UB2","Czechia","CZ","","","Garanční fond obchodníků s cennými papíry","Czech","cs","Garanční fond obchodníků s cennými papíry","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4YAK","Czechia","CZ","","","Stálý rozhodčí soud","Czech","cs","Stálý rozhodčí soud","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "5AP3","Czechia","CZ","","","Pobočná mezinárodní organizace zaměstnavatelů","Czech","cs","Pobočná mezinárodní organizace zaměstnavatelů","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "5KU5","Czechia","CZ","","","Veřejná obchodní společnost","Czech","cs","Veřejná obchodní společnost","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "6CQN","Czechia","CZ","","","Akciová společnost","Czech","cs","Akciová společnost","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "6D9L","Czechia","CZ","","","Svěřenský fond","Czech","cs","Svěřenský fond","","","2021-09-23","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "6FAI","Czechia","CZ","","","Státní podnik","Czech","cs","Státní podnik","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "6OMW","Czechia","CZ","","","Organizační jednotka občanského sdružení","Czech","cs","Organizační jednotka občanského sdružení","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "747U","Czechia","CZ","","","Společnost komanditní na akcie","Czech","cs","Společnost komanditní na akcie","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "74W6","Czechia","CZ","","","Státní příspěvková organizace ostatní","Czech","cs","Státní příspěvková organizace ostatní","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "7OZQ","Czechia","CZ","","","Zájmové sdružení","Czech","cs","Zájmové sdružení","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "84J8","Czechia","CZ","","","Státní hospodářská organizace řízená okresním úřadem","Czech","cs","Státní hospodářská organizace řízená okresním úřadem","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8K5T","Czechia","CZ","","","Spotřební družstvo","Czech","cs","Spotřební družstvo","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "917C","Czechia","CZ","","","Česká tisková kancelář","Czech","cs","Česká tisková kancelář","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "95G8","Czechia","CZ","","","Podnikající fyzická osoba tuzemská","Czech","cs","Podnikající fyzická osoba tuzemská","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "971Y","Czechia","CZ","","","Podnik nebo hospodářské zařízení sdružení","Czech","cs","Podnik nebo hospodářské zařízení sdružení","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "9HLU","Czechia","CZ","","","Společnost s ručením omezeným","Czech","cs","Společnost s ručením omezeným","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "9RVC","Czechia","CZ","","","Družstvo","Czech","cs","Družstvo","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "9XDB","Czechia","CZ","","","Občanské sdružení","Czech","cs","Občanské sdružení","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "AM3T","Czechia","CZ","","","Státní fond ze zákona nezapisující se do obchodního rejstříku","Czech","cs","Státní fond ze zákona nezapisující se do obchodního rejstříku","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "APEN","Czechia","CZ","","","Správa železniční dopravní cesty, státní organizace","Czech","cs","Správa železniční dopravní cesty, státní organizace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "BL4B","Czechia","CZ","","","Obecně prospěšná společnost","Czech","cs","Obecně prospěšná společnost","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "C4Q2","Czechia","CZ","","","Všeobecná zdravotní pojišťovna","Czech","cs","Všeobecná zdravotní pojišťovna","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "C5FE","Czechia","CZ","","","Samostatná drobná provozovna (obecního úřadu)","Czech","cs","Samostatná drobná provozovna (obecního úřadu)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "C7GZ","Czechia","CZ","","","Výrobní družstvo","Czech","cs","Výrobní družstvo","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CATU","Czechia","CZ","","","Spolek","Czech","cs","Spolek","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CD28","Czechia","CZ","","","Společnost komanditní","Czech","cs","Společnost komanditní","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CHJR","Czechia","CZ","","","Podnik se zahraniční majetkovou účastí","Czech","cs","Podnik se zahraniční majetkovou účastí","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CIO8","Czechia","CZ","","","Veřejná výzkumná instituce","Czech","cs","Veřejná výzkumná instituce","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CUKQ","Czechia","CZ","","","Mezinárodní organizace zaměstnavatelů","Czech","cs","Mezinárodní organizace zaměstnavatelů","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CZUA","Czechia","CZ","","","Zahraniční fyzická osoba","Czech","cs","Zahraniční fyzická osoba","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "D1VK","Czechia","CZ","","","Školská právnická osoba","Czech","cs","Školská právnická osoba","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "D35X","Czechia","CZ","","","Zahraniční spolek","Czech","cs","Zahraniční spolek","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ET6Z","Czechia","CZ","","","Svazy církví a náboženských společností","Czech","cs","Svazy církví a náboženských společností","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "FIPS","Czechia","CZ","","","Banka-státní peněžní ústav","Czech","cs","Banka-státní peněžní ústav","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "FY1B","Czechia","CZ","","","Církve a náboženské společnosti","Czech","cs","Církve a náboženské společnosti","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "G2I3","Czechia","CZ","","","Pobočný spolek","Czech","cs","Pobočný spolek","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "H4XQ","Czechia","CZ","","","Veřejné neziskové ústavní zdravotnické zařízení","Czech","cs","Veřejné neziskové ústavní zdravotnické zařízení","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "H6WW","Czechia","CZ","","","Státní příspěvková organizace","Czech","cs","Státní příspěvková organizace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "HQPK","Czechia","CZ","","","Komora (hospodářská, agrární)","Czech","cs","Komora (hospodářská, agrární)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "HS5W","Czechia","CZ","","","Vnitřní organizační jednotka organizační složky státu","Czech","cs","Vnitřní organizační jednotka organizační složky státu","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "HSNC","Czechia","CZ","","","Podnik zahraničního obchodu","Czech","cs","Podnik zahraničního obchodu","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "HY6K","Czechia","CZ","","","Organizační složka zahraničního nadačního fondu","Czech","cs","Organizační složka zahraničního nadačního fondu","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "I32F","Czechia","CZ","","","Sdružení mezinárodního obchodu","Czech","cs","Sdružení mezinárodního obchodu","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "I68R","Czechia","CZ","","","Organizační jednotka zvláštní organizace pro zastoupení českých zájmů v mezinárodních nevládních organizacích","Czech","cs","Organizační jednotka zvláštní organizace pro zastoupení českých zájmů v mezinárodních nevládních organizacích","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "IQ9O","Czechia","CZ","","","Společenství vlastníků jednotek","Czech","cs","Společenství vlastníků jednotek","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "J8PB","Czechia","CZ","","","Obec","Czech","cs","Obec","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "JCAD","Czechia","CZ","","","Evidované církevní právnické osoby","Czech","cs","Evidované církevní právnické osoby","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "JJYB","Czechia","CZ","","","Zahraniční pobočný spolek","Czech","cs","Zahraniční pobočný spolek","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "KM6Z","Czechia","CZ","","","Státní banka československá","Czech","cs","Státní banka československá","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "LEDI","Czechia","CZ","","","Honební společenstvo","Czech","cs","Honební společenstvo","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "LJ92","Czechia","CZ","","","Československé státní dráhy-státní organizace","Czech","cs","Československé státní dráhy-státní organizace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "LJL0","Czechia","CZ","","","Organizační složka státu","Czech","cs","Organizační složka státu","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "LPCQ","Czechia","CZ","","","Mezinárodní odborová organizace","Czech","cs","Mezinárodní odborová organizace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MAVU","Czechia","CZ","","","Dobrovolný svazek obcí","Czech","cs","Dobrovolný svazek obcí","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MBUU","Czechia","CZ","","","Příspěvková organizace zřízená územním samosprávným celkem","Czech","cs","Příspěvková organizace zřízená územním samosprávným celkem","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "NI3I","Czechia","CZ","","","Veřejnoprávní instituce","Czech","cs","Veřejnoprávní instituce","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "NJ87","Czechia","CZ","","","Společný podnik (s více zakladateli)","Czech","cs","Společný podnik (s více zakladateli)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "NPH3","Czechia","CZ","","","Česká národní banka","Czech","cs","Česká národní banka","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "NQHQ","Czechia","CZ","","","Komoditní burza","Czech","cs","Komoditní burza","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "O9PW","Czechia","CZ","","","Samosprávná stavovská organizace (profesní komora)","Czech","cs","Samosprávná stavovská organizace (profesní komora)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "OVKW","Czechia","CZ","","","Vysoká škola (veřejná, státní)","Czech","cs","Vysoká škola (veřejná, státní)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "P3YF","Czechia","CZ","","","Pobočná odborová organizace a organizace zaměstnavatelů","Czech","cs","Pobočná odborová organizace a organizace zaměstnavatelů","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "PFE5","Czechia","CZ","","","Městská část, městský obvod","Czech","cs","Městská část, městský obvod","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "PQJE","Czechia","CZ","","","Mezinárodní nevládní organizace","Czech","cs","Mezinárodní nevládní organizace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Q25I","Czechia","CZ","","","Odborová organizace a organizace zaměstnavatelů","Czech","cs","Odborová organizace a organizace zaměstnavatelů","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QIEL","Czechia","CZ","","","Kraj","Czech","cs","Kraj","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QJ0F","Czechia","CZ","","","Ústav","Czech","cs","Ústav","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QJWK","Czechia","CZ","","","Rada pro veřejný dohled nad auditem","Czech","cs","Rada pro veřejný dohled nad auditem","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QQ49","Czechia","CZ","","","Zdravotní pojišťovna (mimo VZP)","Czech","cs","Zdravotní pojišťovna (mimo VZP)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QS6A","Czechia","CZ","","","Nadační fond","Czech","cs","Nadační fond","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "R2XE","Czechia","CZ","","","Organizační jednotka mezinárodní nevládní organizace","Czech","cs","Organizační jednotka mezinárodní nevládní organizace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "RBGQ","Czechia","CZ","","","Evropské hospodářské zájmové sdružení","Czech","cs","Evropské hospodářské zájmové sdružení","EHZS","","2017-11-30","ACTV","change of country name","2021-09-23","correction of country name to align with name in ISO 3166 standard in English" "RHFQ","Czechia","CZ","","","Družstevní podnik (s 1 zakladatelem)","Czech","cs","Družstevní podnik (s 1 zakladatelem)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "RP0E","Czechia","CZ","","","Obecní podnik","Czech","cs","Obecní podnik","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "SNWJ","Czechia","CZ","","","Podílový, penzijní fond","Czech","cs","Podílový, penzijní fond","","","2021-09-23","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "T1FT","Czechia","CZ","","","Evropská družstevní společnost","Czech","cs","Evropská družstevní společnost","SCE","","2017-11-30","ACTV","change of country name","2021-09-23","correction of country name to align with name in ISO 3166 standard in English" "T3Q1","Czechia","CZ","","","Bytové družstvo","Czech","cs","Bytové družstvo","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "TNBA","Czechia","CZ","","","Odštěpný závod zahraniční právnické osoby","Czech","cs","Odštěpný závod zahraniční právnické osoby","","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "U95A","Czechia","CZ","","","Odštěpný závod zahraniční fyzické osoby","Czech","cs","Odštěpný závod zahraniční fyzické osoby","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "UFDA","Czechia","CZ","","","Národní podnik","Czech","cs","Národní podnik","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "V6YH","Czechia","CZ","","","Společná zájmová organizace družstev","Czech","cs","Společná zájmová organizace družstev","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VIE3","Czechia","CZ","","","Zájmové sdružení právnických osob","Czech","cs","Zájmové sdružení právnických osob","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VQU7","Czechia","CZ","","","Organizační složka zahraniční nadace","Czech","cs","Organizační složka zahraniční nadace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WJ30","Czechia","CZ","","","Družstevní podnik zemědělský","Czech","cs","Družstevní podnik zemědělský","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WL83","Czechia","CZ","","","Zvláštní organizace pro zastoupení českých zájmů v mezinárodních nevládních organizacích","Czech","cs","Zvláštní organizace pro zastoupení českých zájmů v mezinárodních nevládních organizacích","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WO0T","Czechia","CZ","","","Pobočná mezinárodní odborová organizace","Czech","cs","Pobočná mezinárodní odborová organizace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WUFK","Czechia","CZ","","","Odštěpný závod","Czech","cs","Odštěpný závod","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WVZF","Czechia","CZ","","","Účelová zahraničně obchodní organizace","Czech","cs","Účelová zahraničně obchodní organizace","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XG70","Czechia","CZ","","","Právnikcá osoba zřízená zvláštním zákonem zapisovaná do veřejného rejstříku","Czech","cs","Právnikcá osoba zřízená zvláštním zákonem zapisovaná do veřejného rejstříku","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XRK7","Czechia","CZ","","","Politická strana, politické hnutí","Czech","cs","Politická strana, politické hnutí","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Y18E","Czechia","CZ","","","Společný podnik","Czech","cs","Společný podnik","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Z3BF","Czechia","CZ","","","Zemědělské družstvo","Czech","cs","Zemědělské družstvo","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ZQO8","Czechia","CZ","","","Evropská společnost","Czech","cs","Evropská společnost","SE","","2017-11-30","ACTV","change of country name","2021-09-23","correction of country name to align with name in ISO 3166 standard in English" "ZU32","Czechia","CZ","","","Jiné družstvo","Czech","cs","Jiné družstvo","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "1MWR","Denmark","DK","","","Fond","Danish","da","Fond","","","2019-07-05","ACTV","","","" "37UT","Denmark","DK","","","Region","Danish","da","Region","","","2021-09-23","ACTV","","","" "40R4","Denmark","DK","","","Forening","Danish","da","Forening","","","2021-09-23","ACTV","","","" "599X","Denmark","DK","","","Fonde og andre selvejende institutioner","Danish","da","Fonde og andre selvejende institutioner","","","2021-09-23","ACTV","","","" "5QS7","Denmark","DK","","","Iværksætterselskab","Danish","da","Iværksætterselskab","IVS","","2017-11-30","ACTV","comments corrected","2021-09-23","since 15 April 2019, it is not possible to create a new iværksætterselskab; all organisations with this legal form have to convert into an anpartsselskab (ELF Code H8VP) before 15 October 2021" "7WRN","Denmark","DK","","","Interessentskab","Danish","da","Interessentskab","I/S","","2017-11-30","ACTV","","","" "9KSX","Denmark","DK","","","Partnerselskab","Danish","da","Partnerselskab","P/S","","2017-11-30","ACTV","","","" "D4PU","Denmark","DK","","","Frivillig forening","Danish","da","Frivillig forening","","","2021-09-23","ACTV","","","" "F7JY","Denmark","DK","","","Særlig Finansiel virksomhed","Danish","da","Særlig Finansiel virksomhed","","","2021-09-23","ACTV","","","" "FUKI","Denmark","DK","","","Enkeltmandsvirksomhed","Danish","da","Enkeltmandsvirksomhed","","","2017-11-30","ACTV","","","" "FW7S","Denmark","DK","","","Europæisk andelsselskab","Danish","da","Europæisk andelsselskab","SCE-selskab","","2017-11-30","ACTV","","","" "GFXN","Denmark","DK","","","Primærkommune","Danish","da","Primærkommune","","","2021-09-23","ACTV","","","" "GULL","Denmark","DK","","","Selskab med begrænset ansvar","Danish","da","Selskab med begrænset ansvar","SMBA","","2017-11-30","ACTV","","","" "H8VP","Denmark","DK","","","Anpartsselskab","Danish","da","Anpartsselskab","ApS","","2017-11-30","ACTV","","","" "LWOD","Denmark","DK","","","Medarbejderinvesteringsselskab","Danish","da","Medarbejderinvesteringsselskab","","","2017-11-30","ACTV","","","" "NUL8","Denmark","DK","","","Kommanditselskab","Danish","da","Kommanditselskab","K/S","","2017-11-30","ACTV","","","" "PIOI","Denmark","DK","","","Erhvervsdrivende fond","Danish","da","Erhvervsdrivende fond","","","2021-09-23","ACTV","","","" "PMJW","Denmark","DK","","","Andelsselskab","Danish","da","Andelsselskab","","","2021-09-23","ACTV","","","" "PZ6Y","Denmark","DK","","","Andelsselskab med begrænset ansvar","Danish","da","Andelsselskab med begrænset ansvar","AMBA","","2017-11-30","ACTV","","","" "TB2C","Denmark","DK","","","Europæisk økonomisk firmagruppe","Danish","da","Europæisk økonomisk firmagruppe","EØFG","","2017-11-30","ACTV","","","" "UA1O","Denmark","DK","","","Europæisk selskab","Danish","da","Europæisk selskab","SE-selskab","","2017-11-30","ACTV","","","" "WU7R","Denmark","DK","","","Forening med begrænset ansvar","Danish","da","Forening med begrænset ansvar","FMBA","","2017-11-30","ACTV","","","" "ZRPO","Denmark","DK","","","Aktieselskab","Danish","da","Aktieselskab","A/S","","2017-11-30","ACTV","","","" "3ZBR","Dominican Republic","DO","","","Sociedad Anónima","Spanish","es","Sociedad Anónima","S. A.","","2020-06-10","ACTV","","","" "8WQ9","Dominican Republic","DO","","","Sociedad en Comandita Simple","Spanish","es","Sociedad en Comandita Simple","S. en C.","","2020-06-10","ACTV","","","" "B35X","Dominican Republic","DO","","","Sociedad en Participación(sin personalidad jurídica)","Spanish","es","Sociedad en Participación(sin personalidad jurídica)","","","2020-06-10","ACTV","","","" "DQAU","Dominican Republic","DO","","","Sociedad Anónima Simplificada","Spanish","es","Sociedad Anónima Simplificada","SAS","","2020-06-10","ACTV","","","" "K4CD","Dominican Republic","DO","","","Empresa Individual de Responsabilidad Limitada ","Spanish","es","Empresa Individual de Responsabilidad Limitada ","EIRL","","2020-06-10","ACTV","","","" "LSWY","Dominican Republic","DO","","","Sociedad en Nombre Colectivo","Spanish","es","Sociedad en Nombre Colectivo","","","2020-06-10","ACTV","","","" "SWO8","Dominican Republic","DO","","","Sociedad de Responsaibilidad Limitada","Spanish","es","Sociedad de Responsaibilidad Limitada","S. R. L.","","2020-06-10","ACTV","","","" "T4LC","Dominican Republic","DO","","","Sociedad en Comandita por Acciones","Spanish","es","Sociedad en Comandita por Acciones","","","2020-06-10","ACTV","","","" "6TPE","Ecuador","EC","","","Compañía en nombre colectivo","Spanish","es","Compañía en nombre colectivo","CNCOL","","2020-06-10","ACTV","","","" "FKVG","Ecuador","EC","","","Compañía en Comandita Simple y dividida por acciones","Spanish","es","Compañía en Comandita Simple y dividida por acciones","CCSDA","","2020-06-10","ACTV","","","" "J3T2","Ecuador","EC","","","Compañía Anónima","Spanish","es","Compañía Anónima","SA","","2020-06-10","ACTV","","","" "N9QH","Ecuador","EC","","","Compañía de Economía Mixta","Spanish","es","Compañía de Economía Mixta","CEMIX","","2020-06-10","ACTV","","","" "XOAD","Ecuador","EC","","","Compañía de Responsabilidad Limitada","Spanish","es","Compañía de Responsabilidad Limitada","CIA LTDA","","2020-06-10","ACTV","","","" "1NKP","Estonia","EE","","","Sihtasutus","Estonian","et","Sihtasutus","SA","","2017-11-30","ACTV","","","" "3UPJ","Estonia","EE","","","Füüsilisest isikust ettevõtja","Estonian","et","Füüsilisest isikust ettevõtja","FIE","","2017-11-30","ACTV","","","" "6I0P","Estonia","EE","","","Hooneühistu","Estonian","et","Hooneühistu","HÜ","","2017-11-30","ACTV","","","" "752Q","Estonia","EE","","","Euroopa äriühing","Estonian","et","Euroopa äriühing","SE","","2017-11-30","ACTV","","","" "8ZQE","Estonia","EE","","","Korteriühistu","Estonian","et","Korteriühistu","KÜ","","2017-11-30","ACTV","","","" "9LJA","Estonia","EE","","","Aktsiaselts","Estonian","et","Aktsiaselts","AS","","2017-11-30","ACTV","","","" "BE56","Estonia","EE","","","Avalik-õiguslik juriidiline isik","Estonian","et","Avalik-õiguslik juriidiline isik","","","2023-09-28","ACTV","","","" "CKOS","Estonia","EE","","","Usuline ühendus","Estonian","et","Usuline ühendus","","","2017-11-30","ACTV","","","" "GA3A","Estonia","EE","","","Erakond","Estonian","et","Erakond","","","2017-11-30","ACTV","","","" "I1UP","Estonia","EE","","","Täisühing","Estonian","et","Täisühing","TÜ","","2017-11-30","ACTV","","","" "J34T","Estonia","EE","","","Ametiühing","Estonian","et","Ametiühing","AÜ","","2017-11-30","ACTV","","","" "JC0Y","Estonia","EE","","","Osaühing","Estonian","et","Osaühing","OÜ","","2017-11-30","ACTV","","","" "LA47","Estonia","EE","","","Euroopa majandushuviühing","Estonian","et","Euroopa majandushuviühing","EMHÜ","","2017-11-30","ACTV","","","" "LVEQ","Estonia","EE","","","Usaldusühing","Estonian","et","Usaldusühing","UÜ","","2017-11-30","ACTV","","","" "PMOF","Estonia","EE","","","Loomeliit","Estonian","et","Loomeliit","","","2017-11-30","ACTV","","","" "PRTB","Estonia","EE","","","Mittetulundusühing","Estonian","et","Mittetulundusühing","MTÜ","","2017-11-30","ACTV","","","" "RXTT","Estonia","EE","","","Euroopa ühistu","Estonian","et","Euroopa ühistu","SCE","","2017-11-30","ACTV","","","" "VSEV","Estonia","EE","","","Tulundusühistu","Estonian","et","Tulundusühistu","TÜH","","2017-11-30","ACTV","","","" "1AFG","Finland","FI","","","Muu yhtiö","Finnish","fi","Muu yhtiö","","","2019-07-05","ACTV","","","" "1AFG","Finland","FI","","","Annat bolag","Swedish","sv","Annat bolag","","","2019-07-05","ACTV","","","" "1YIR","Finland","FI","","","Metsänhoitoyhdistys","Finnish","fi","Metsänhoitoyhdistys","","","2019-07-05","ACTV","","","" "1YIR","Finland","FI","","","Skogsvårdsförening","Swedish","sv","Skogsvårdsförening","","","2019-07-05","ACTV","","","" "2RK5","Finland","FI","","","Kunta","Finnish","fi","Kunta","","","2019-07-05","ACTV","","","" "2RK5","Finland","FI","","","Kommun","Swedish","sv","Kommun","","","2019-07-05","ACTV","","","" "37GR","Finland","FI","","","Elinkeinoyhtymä","Finnish","fi","Elinkeinoyhtymä","","","2019-07-05","ACTV","","","" "37GR","Finland","FI","","","Näringssammanslutning","Swedish","sv","Näringssammanslutning","","","2019-07-05","ACTV","","","" "4H61","Finland","FI","","","Keskinäinen vakuutusyhtiö","Finnish","fi","Keskinäinen vakuutusyhtiö","","","2019-07-05","ACTV","","","" "4H61","Finland","FI","","","Ömsesidigt försäkringsbolag","Swedish","sv","Ömsesidigt försäkringsbolag","","","2019-07-05","ACTV","","","" "5WI2","Finland","FI","","","Eläkesäätiö","Finnish","fi","Eläkesäätiö","","","2019-07-05","ACTV","","","" "5WI2","Finland","FI","","","Pensionsstiftelse","Swedish","sv","Pensionsstiftelse","","","2019-07-05","ACTV","","","" "6PEQ","Finland","FI","","","Paikallisyhteisö","Finnish","fi","Paikallisyhteisö","","","2020-06-10","ACTV","","","" "6PEQ","Finland","FI","","","Lokalsamfund","Swedish","sv","Lokalsamfund","","","2020-06-10","ACTV","","","" "760X","Finland","FI","","","Muu yhdistys","Finnish","fi","Muu yhdistys","","","2019-07-05","ACTV","","","" "760X","Finland","FI","","","Annan förening","Swedish","sv","Annan förening","","","2019-07-05","ACTV","","","" "883O","Finland","FI","","","Sivuliike","Finnish","fi","Sivuliike","","","2019-07-05","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "883O","Finland","FI","","","Filial","Swedish","sv","Filial","","","2019-07-05","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "8HGS","Finland","FI","","","Erityislainsäädäntöön perustuva yhdistys","Finnish","fi","Erityislainsäädäntöön perustuva yhdistys","","","2019-07-05","ACTV","","","" "8HGS","Finland","FI","","","Förening som grundar sig på speciallagstiftning","Swedish","sv","Förening som grundar sig på speciallagstiftning","","","2019-07-05","ACTV","","","" "8WJ7","Finland","FI","","","Keskinäinen kiinteistöosakeyhtiö","Finnish","fi","Keskinäinen kiinteistöosakeyhtiö","","","2019-07-05","ACTV","","","" "8WJ7","Finland","FI","","","Ömsesidigt fastighetsaktiebolag","Swedish","sv","Ömsesidigt fastighetsaktiebolag","","","2019-07-05","ACTV","","","" "97PB","Finland","FI","","","Vakuutuskassa","Finnish","fi","Vakuutuskassa","","","2019-07-05","ACTV","","","" "97PB","Finland","FI","","","Försäkringskassa","Swedish","sv","Försäkringskassa","","","2019-07-05","ACTV","","","" "9AUC","Finland","FI","","","Vakuutusyhdistys","Finnish","fi","Vakuutusyhdistys","","","2019-07-05","ACTV","","","" "9AUC","Finland","FI","","","Försäkringsförening","Swedish","sv","Försäkringsförening","","","2019-07-05","ACTV","","","" "AUPV","Finland","FI","","","Muu kiinteistöosakeyhtiö","Finnish","fi","Muu kiinteistöosakeyhtiö","","","2019-07-05","ACTV","","","" "AUPV","Finland","FI","","","Annat fastighetsaktiebolag","Swedish","sv","Annat fastighetsaktiebolag","","","2019-07-05","ACTV","","","" "BKQO","Finland","FI","","","Valtio ja sen laitokset","Finnish","fi","Valtio ja sen laitokset","","","2019-07-05","ACTV","","","" "BKQO","Finland","FI","","","Staten och dess inrättningar","Swedish","sv","Staten och dess inrättningar","","","2019-07-05","ACTV","","","" "BKVI","Finland","FI","","","Hypoteekkiyhdistys","Finnish","fi","Hypoteekkiyhdistys","","","2019-07-05","ACTV","","","" "BKVI","Finland","FI","","","Hypoteksförening","Swedish","sv","Hypoteksförening","","","2019-07-05","ACTV","","","" "BQ19","Finland","FI","","","Laivanisännistöyhtiö","Finnish","fi","Laivanisännistöyhtiö","","","2019-07-05","ACTV","","","" "BQ19","Finland","FI","","","Rederibolag","Swedish","sv","Rederibolag","","","2019-07-05","ACTV","","","" "C51L","Finland","FI","","","Eurooppalainen taloudellinen etuyhtymä sivutoimipaikka","Finnish","fi","Eurooppalainen taloudellinen etuyhtymä sivutoimipaikka","","","2019-07-05","ACTV","","","" "C51L","Finland","FI","","","Filial för en europeisk ekonomisk intressegrupp","Swedish","sv","Filial för en europeisk ekonomisk intressegrupp","","","2019-07-05","ACTV","","","" "DAFV","Finland","FI","","","Vakuutusosakeyhtiö","Finnish","fi","Vakuutusosakeyhtiö","","","2019-07-05","ACTV","","","" "DAFV","Finland","FI","","","Försäkringsaktiebolag","Swedish","sv","Försäkringsaktiebolag","","","2019-07-05","ACTV","","","" "DKUW","Finland","FI","","","Osakeyhtiö","Finnish","fi","Osakeyhtiö","oy","","2019-07-05","ACTV","","","" "DKUW","Finland","FI","","","Aktiebolag","Swedish","sv","Aktiebolag","ab","","2019-07-05","ACTV","","","" "DL9Z","Finland","FI","","","Ulkomainen yhteisö","Finnish","fi","Ulkomainen yhteisö","","","2019-07-05","ACTV","","","" "DL9Z","Finland","FI","","","Utländskt samfund","Swedish","sv","Utländskt samfund","","","2019-07-05","ACTV","","","" "DMT8","Finland","FI","","","Työeläkekassa","Finnish","fi","Työeläkekassa","","","2019-07-05","ACTV","","","" "DMT8","Finland","FI","","","Arbetspensionskassa","Swedish","sv","Arbetspensionskassa","","","2019-07-05","ACTV","","","" "EDN7","Finland","FI","","","Taloudellinen yhdistys","Finnish","fi","Taloudellinen yhdistys","","","2019-07-05","ACTV","","","" "EDN7","Finland","FI","","","Ekonomisk förening","Swedish","sv","Ekonomisk förening","","","2019-07-05","ACTV","","","" "EDZP","Finland","FI","","","Ylioppilaskunta tai osakunta","Finnish","fi","Ylioppilaskunta tai osakunta","","","2019-07-05","ACTV","","","" "EDZP","Finland","FI","","","Studentkår eller studentnation","Swedish","sv","Studentkår eller studentnation","","","2019-07-05","ACTV","","","" "EE90","Finland","FI","","","Osuuskunta","Finnish","fi","Osuuskunta","osk","","2019-07-05","ACTV","","","" "EE90","Finland","FI","","","Andelslag","Swedish","sv","Andelslag","anl","","2019-07-05","ACTV","","","" "EMC8","Finland","FI","","","Muu taloudellinen yhdistys","Finnish","fi","Muu taloudellinen yhdistys","","","2019-07-05","ACTV","","","" "EMC8","Finland","FI","","","Annan ekonomisk förening","Swedish","sv","Annan ekonomisk förening","","","2019-07-05","ACTV","","","" "HBR3","Finland","FI","","","Julkinen keskinäinen vakuutusyhtiö","Finnish","fi","Julkinen keskinäinen vakuutusyhtiö","","","2019-07-05","ACTV","","","" "HBR3","Finland","FI","","","Publikt ömsesidigt försäkringsaktiebolag","Swedish","sv","Publikt ömsesidigt försäkringsaktiebolag","","","2019-07-05","ACTV","","","" "HEOB","Finland","FI","","","Kommandiittiyhtiö","Finnish","fi","Kommandiittiyhtiö","ky","","2019-07-05","ACTV","","","" "HEOB","Finland","FI","","","Kommanditbolag","Swedish","sv","Kommanditbolag","kb","","2019-07-05","ACTV","","","" "HNWB","Finland","FI","","","Eurooppalainen taloudellinen etuyhtymä","Finnish","fi","Eurooppalainen taloudellinen etuyhtymä","ETEY","","2019-07-05","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "HNWB","Finland","FI","","","Europeisk ekonomisk intresseguppering","Swedish","sv","Europeisk ekonomisk intresseguppering","EEIG","","2019-07-05","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "HTT9","Finland","FI","","","Erillishallinnollinen valtion laitos","Finnish","fi","Erillishallinnollinen valtion laitos","","","2019-07-05","ACTV","","","" "HTT9","Finland","FI","","","Statlig inrättning med separat förvaltning","Swedish","sv","Statlig inrättning med separat förvaltning","","","2019-07-05","ACTV","","","" "IX7U","Finland","FI","","","Asukashallintoalue","Finnish","fi","Asukashallintoalue","","","2019-07-05","ACTV","","","" "IX7U","Finland","FI","","","Boendeförvaltningsområde","Swedish","sv","Boendeförvaltningsområde","","","2019-07-05","ACTV","","","" "IYF9","Finland","FI","","","Evankelis-luterilainen kirkko","Finnish","fi","Evankelis-luterilainen kirkko","","","2019-07-05","ACTV","","","" "IYF9","Finland","FI","","","Ev.luth. kyrkan","Swedish","sv","Ev.luth. kyrkan","","","2019-07-05","ACTV","","","" "JI3A","Finland","FI","","","Keskinäinen vahinkovakuutusyhdistys","Finnish","fi","Keskinäinen vahinkovakuutusyhdistys","","","2019-07-05","ACTV","","","" "JI3A","Finland","FI","","","Ömsesidigt skadeförsäkringsförening","Swedish","sv","Ömsesidigt skadeförsäkringsförening","","","2019-07-05","ACTV","","","" "K09E","Finland","FI","","","Yksityinen elinkeinonharjoittaja","Finnish","fi","Yksityinen elinkeinonharjoittaja","","","2019-07-05","ACTV","","","" "K09E","Finland","FI","","","Enskild näringsidkare","Swedish","sv","Enskild näringsidkare","","","2019-07-05","ACTV","","","" "K2G8","Finland","FI","","","Muut oikeushenkilöt","Finnish","fi","Muut oikeushenkilöt","","","2019-07-05","INAC","deletion","2023-09-28","not a real separate legal form" "K2G8","Finland","FI","","","Övriga juridiska personer","Swedish","sv","Övriga juridiska personer","","","2019-07-05","INAC","deletion","2023-09-28","not a real separate legal form" "K6VE","Finland","FI","","","Julkinen osakeyhtiö","Finnish","fi","Julkinen osakeyhtiö","oyj","","2019-07-05","ACTV","","","" "K6VE","Finland","FI","","","Publikt aktiebolag","Swedish","sv","Publikt aktiebolag","abp","","2019-07-05","ACTV","","","" "KHI5","Finland","FI","","","Julkinen vakuutusosakeyhtiö","Finnish","fi","Julkinen vakuutusosakeyhtiö","","","2019-07-05","ACTV","","","" "KHI5","Finland","FI","","","Publikt försäkringsaktiebolag","Swedish","sv","Publikt försäkringsaktiebolag","","","2019-07-05","ACTV","","","" "L7XJ","Finland","FI","","","Paliskunta","Finnish","fi","Paliskunta","","","2019-07-05","ACTV","","","" "L7XJ","Finland","FI","","","Renbeteslag","Swedish","sv","Renbeteslag","","","2019-07-05","ACTV","","","" "LBQS","Finland","FI","","","Muu yhteisvastuullinen pidätysvelvollinen","Finnish","fi","Muu yhteisvastuullinen pidätysvelvollinen","","","2019-07-05","ACTV","","","" "LBQS","Finland","FI","","","Annan solidariskt ansvarig innehållningspliktig","Swedish","sv","Annan solidariskt ansvarig innehållningspliktig","","","2019-07-05","ACTV","","","" "MBPY","Finland","FI","","","Asumisoikeusyhdistys","Finnish","fi","Asumisoikeusyhdistys","","","2019-07-05","ACTV","","","" "MBPY","Finland","FI","","","Boenderättsförening","Swedish","sv","Boenderättsförening","","","2019-07-05","ACTV","","","" "MRW9","Finland","FI","","","Muu julkisoikeudellinen oikeushenkilö","Finnish","fi","Muu julkisoikeudellinen oikeushenkilö","","","2019-07-05","ACTV","","","" "MRW9","Finland","FI","","","Annan offentligrättslig juridisk person","Swedish","sv","Annan offentligrättslig juridisk person","","","2019-07-05","ACTV","","","" "N3LC","Finland","FI","","","Rekisteröity uskonnollinen yhdyskunta","Finnish","fi","Rekisteröity uskonnollinen yhdyskunta","","","2019-07-05","ACTV","","","" "N3LC","Finland","FI","","","Registrerat religiöst samfund","Swedish","sv","Registrerat religiöst samfund","","","2019-07-05","ACTV","","","" "NV7C","Finland","FI","","","Muu säätiö","Finnish","fi","Muu säätiö","","","2019-07-05","ACTV","","","" "NV7C","Finland","FI","","","Annan stiftelse","Swedish","sv","Annan stiftelse","","","2019-07-05","ACTV","","","" "OXLO","Finland","FI","","","Valtion liikelaitos","Finnish","fi","Valtion liikelaitos","","","2019-07-05","ACTV","","","" "OXLO","Finland","FI","","","Statlig affärsinrättning","Swedish","sv","Statlig affärsinrättning","","","2019-07-05","ACTV","","","" "PPMX","Finland","FI","","","Avoin yhtiö","Finnish","fi","Avoin yhtiö","","","2019-07-05","ACTV","","","" "PPMX","Finland","FI","","","Öppet bolag","Swedish","sv","Öppet bolag","","","2019-07-05","ACTV","","","" "R39F","Finland","FI","","","Kauppakamari","Finnish","fi","Kauppakamari","","","2020-06-10","ACTV","","","" "R39F","Finland","FI","","","Handelskammare","Swedish","sv","Handelskammare","","","2020-06-10","ACTV","","","" "R5ZC","Finland","FI","","","Eurooppaosuuskunnan kiinteä toimipaikka","Finnish","fi","Eurooppaosuuskunnan kiinteä toimipaikka","","","2019-07-05","ACTV","","","" "R5ZC","Finland","FI","","","Fast driftställe för europeisk kooperativ förening","Swedish","sv","Fast driftställe för europeisk kooperativ förening","","","2019-07-05","ACTV","","","" "R6UB","Finland","FI","","","Verotusyhtymä","Finnish","fi","Verotusyhtymä","","","2019-07-05","ACTV","","","" "R6UB","Finland","FI","","","Beskattningssammanslutning","Swedish","sv","Beskattningssammanslutning","","","2019-07-05","ACTV","","","" "SDPE","Finland","FI","","","Työttömyyskassa","Finnish","fi","Työttömyyskassa","","","2019-07-05","ACTV","","","" "SDPE","Finland","FI","","","Arbetslöshetskassa","Swedish","sv","Arbetslöshetskassa","","","2019-07-05","ACTV","","","" "SJL9","Finland","FI","","","Osuuspankki","Finnish","fi","Osuuspankki","","","2019-07-05","ACTV","","","" "SJL9","Finland","FI","","","Andelsbank","Swedish","sv","Andelsbank","","","2019-07-05","ACTV","","","" "SKGX","Finland","FI","","","Yhteisetuudet","Finnish","fi","Yhteisetuudet","","","2019-07-05","ACTV","","","" "SKGX","Finland","FI","","","Samfällda förmåner","Swedish","sv","Samfällda förmåner","","","2019-07-05","ACTV","","","" "SQS1","Finland","FI","","","Ahvenanmaan maakunta ja sen virastot","Finnish","fi","Ahvenanmaan maakunta ja sen virastot","","","2019-07-05","ACTV","","","" "SQS1","Finland","FI","","","Lanskapet Åland och dess ämbetsverk","Swedish","sv","Lanskapet Åland och dess ämbetsverk","","","2019-07-05","ACTV","","","" "SUHV","Finland","FI","","","Muu verotuksen yksikkö","Finnish","fi","Muu verotuksen yksikkö","","","2019-07-05","ACTV","","","" "SUHV","Finland","FI","","","Annan enhet inom beskattningen","Swedish","sv","Annan enhet inom beskattningen","","","2019-07-05","ACTV","","","" "T31U","Finland","FI","","","Kuntainliiton liikelaitos","Finnish","fi","Kuntainliiton liikelaitos","","","2019-07-05","ACTV","","","" "T31U","Finland","FI","","","Kommunförbundets affärsinrättning","Swedish","sv","Kommunförbundets affärsinrättning","","","2019-07-05","ACTV","","","" "T3K4","Finland","FI","","","Yhteismetsä","Finnish","fi","Yhteismetsä","","","2019-07-05","ACTV","","","" "T3K4","Finland","FI","","","Samfälld skog","Swedish","sv","Samfälld skog","","","2019-07-05","ACTV","","","" "TZ1U","Finland","FI","","","Kunnallinen liikelaitos","Finnish","fi","Kunnallinen liikelaitos","","","2019-07-05","ACTV","","","" "TZ1U","Finland","FI","","","Kommunal affärsinrättning","Swedish","sv","Kommunal affärsinrättning","","","2019-07-05","ACTV","","","" "UAV1","Finland","FI","","","Eurooppaosuuskunta","Finnish","fi","Eurooppaosuuskunta","SCE","","2019-07-05","ACTV","","","" "UAV1","Finland","FI","","","Europaandelslag","Swedish","sv","Europaandelslag","SCE","","2019-07-05","ACTV","","","" "UMF0","Finland","FI","","","Konkurssipesä","Finnish","fi","Konkurssipesä","","","2019-07-05","ACTV","","","" "UMF0","Finland","FI","","","Konkursbo","Swedish","sv","Konkursbo","","","2019-07-05","ACTV","","","" "UXEW","Finland","FI","","","Aatteellinen yhdistys","Finnish","fi","Aatteellinen yhdistys","","","2019-07-05","ACTV","","","" "UXEW","Finland","FI","","","Ideell förening","Swedish","sv","Ideell förening","","","2019-07-05","ACTV","","","" "V0TJ","Finland","FI","","","Asunto-osakeyhtiö","Finnish","fi","Asunto-osakeyhtiö","","","2019-07-05","ACTV","","","" "V0TJ","Finland","FI","","","Bostadsaktiebolag","Swedish","sv","Bostadsaktiebolag","","","2019-07-05","ACTV","","","" "V42B","Finland","FI","","","Ortodoksinen kirkko","Finnish","fi","Ortodoksinen kirkko","","","2019-07-05","ACTV","","","" "V42B","Finland","FI","","","Ortodoxa kyrkan","Swedish","sv","Ortodoxa kyrkan","","","2019-07-05","ACTV","","","" "VKKN","Finland","FI","","","Eurooppaosuuspankki","Finnish","fi","Eurooppaosuuspankki","","","2019-07-05","ACTV","","","" "VKKN","Finland","FI","","","Europaandelsbank","Swedish","sv","Europaandelsbank","","","2019-07-05","ACTV","","","" "VOTI","Finland","FI","","","Kuntayhtymä","Finnish","fi","Kuntayhtymä","","","2019-07-05","ACTV","","","" "VOTI","Finland","FI","","","Samkommun","Swedish","sv","Samkommun","","","2019-07-05","ACTV","","","" "XGKW","Finland","FI","","","Ahvenanmaan liikelaitos","Finnish","fi","Ahvenanmaan liikelaitos","","","2019-07-05","ACTV","","","" "XGKW","Finland","FI","","","Ålands affärsverk","Swedish","sv","Ålands affärsverk","","","2019-07-05","ACTV","","","" "XJH3","Finland","FI","","","Eurooppayhtiö","Finnish","fi","Eurooppayhtiö","SE","","2019-07-05","ACTV","","","" "XJH3","Finland","FI","","","Europabolag","Swedish","sv","Europabolag","SE","","2019-07-05","ACTV","","","" "YK5G","Finland","FI","","","Säätiö","Finnish","fi","Säätiö","sr","","2019-07-05","ACTV","","","" "YK5G","Finland","FI","","","Stiftelse","Swedish","sv","Stiftelse","sr","","2019-07-05","ACTV","","","" "Z38E","Finland","FI","","","Säästöpankki","Finnish","fi","Säästöpankki","","","2019-07-05","ACTV","","","" "Z38E","Finland","FI","","","Sparbank","Swedish","sv","Sparbank","","","2019-07-05","ACTV","","","" "ZMTL","Finland","FI","","","Kuolinpesä","Finnish","fi","Kuolinpesä","","","2019-07-05","ACTV","","","" "ZMTL","Finland","FI","","","Dödsbo","Swedish","sv","Dödsbo","","","2019-07-05","ACTV","","","" "157O","France","FR","","","Régie d'une collectivité locale à caractère administratif","French","fr","Régie d'une collectivité locale à caractère administratif","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "1B88","France","FR","","","SCP de médecins","French","fr","SCP de médecins","","","2017-11-30","ACTV","","","" "1GNM","France","FR","","","Syndicat de salariés","French","fr","Syndicat de salariés","","","2017-11-30","ACTV","","","" "1L24","France","FR","","","Autre société civile","French","fr","Autre société civile","","","2017-11-30","ACTV","","","" "1NF1","France","FR","","","SA nationale à conseil d'administration","French","fr","SA nationale à conseil d'administration","","","2017-11-30","ACTV","","","" "1Q16","France","FR","","","Société créée de fait entre personnes physiques","French","fr","Société créée de fait entre personnes physiques","","","2017-11-30","ACTV","","","" "1Y0C","France","FR","","","SARL d'attribution","French","fr","SARL d'attribution","","","2017-11-30","ACTV","","","" "211B","France","FR","","","Société coopérative agricole","French","fr","Société coopérative agricole","","","2017-11-30","ACTV","","","" "29FA","France","FR","","","Institution interrégionale ou entente","French","fr","Institution interrégionale ou entente","","","2017-11-30","ACTV","","","" "2N4L","France","FR","","","(Autre) Collectivité territoriale","French","fr","(Autre) Collectivité territoriale","","","2017-11-30","ACTV","","","" "2NL6","France","FR","","","État, collectivité ou établissement public étranger","French","fr","État, collectivité ou établissement public étranger","","","2017-11-30","INAC","deletion","2023-09-28","not a French legal form" "2ONM","France","FR","","","SA d'attribution à directoire","French","fr","SA d'attribution à directoire","","","2017-11-30","ACTV","","","" "2WMP","France","FR","","","Autre personne morale de droit administratif","French","fr","Autre personne morale de droit administratif","","","2017-11-30","ACTV","","","" "2XIK","France","FR","","","Mutuelle","French","fr","Mutuelle","","","2017-11-30","ACTV","","","" "34QS","France","FR","","","Autre personne morale de droit privé","French","fr","Autre personne morale de droit privé","","","2017-11-30","ACTV","","","" "3AZY","France","FR","","","Coopérative d'utilisation de matériel agricole en commun (CUMA)","French","fr","Coopérative d'utilisation de matériel agricole en commun (CUMA)","","","2017-11-30","ACTV","","","" "3FCU","France","FR","","","Société d'exercice libéral par action simplifiée","French","fr","Société d'exercice libéral par action simplifiée","","","2017-11-30","ACTV","","","" "3NJL","France","FR","","","Autre personne de droit privé inscrite au registre du commerce et des sociétés","French","fr","Autre personne de droit privé inscrite au registre du commerce et des sociétés","","","2017-11-30","ACTV","","","" "3OK3","France","FR","","","SCP de notaires","French","fr","SCP de notaires","","","2017-11-30","ACTV","","","" "3S6E","France","FR","","","Service départemental d'incendie et de secours (SDIS)","French","fr","Service départemental d'incendie et de secours (SDIS)","","","2017-11-30","ACTV","","","" "3XTE","France","FR","","","SARL coopérative de consommation","French","fr","SARL coopérative de consommation","","","2017-11-30","ACTV","","","" "487E","France","FR","","","Établissement public local d'enseignement","French","fr","Établissement public local d'enseignement","","","2017-11-30","ACTV","","","" "491H","France","FR","","","Association non déclarée","French","fr","Association non déclarée","","","2017-11-30","ACTV","","","" "4DZU","France","FR","","","Autre SARL coopérative","French","fr","Autre SARL coopérative","","","2017-11-30","ACTV","","","" "4H0F","France","FR","","","Autre établissement public local de coopération non spécialisé ou entente","French","fr","Autre établissement public local de coopération non spécialisé ou entente","","","2017-11-30","ACTV","","","" "4JS0","France","FR","","","Association syndicale autorisée","French","fr","Association syndicale autorisée","","","2017-11-30","ACTV","","","" "4RT7","France","FR","","","SA de HLM à conseil d'administration","French","fr","SA de HLM à conseil d'administration","","","2017-11-30","ACTV","","","" "4TNX","France","FR","","","Profession libérale","French","fr","Profession libérale","","","2017-11-30","INAC","legislation change","2018-11-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "4VD7","France","FR","","","Pôle d'équilibre territorial et rural (PETR)","French","fr","Pôle d'équilibre territorial et rural (PETR)","","","2017-11-30","ACTV","","","" "59F9","France","FR","","","Groupement foncier agricole","French","fr","Groupement foncier agricole","","","2017-11-30","ACTV","","","" "5AJO","France","FR","","","Caisse d'Épargne et de Prévoyance","French","fr","Caisse d'Épargne et de Prévoyance","","","2017-11-30","ACTV","","","" "5H68","France","FR","","","Commerçant","French","fr","Commerçant","","","2017-11-30","INAC","legislation change","2018-07-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "5K0Q","France","FR","","","Établissement public local social et médico-social","French","fr","Établissement public local social et médico-social","","","2017-11-30","ACTV","","","" "5VCF","France","FR","","","SA à directoire (s.a.i.)","French","fr","SA à directoire (s.a.i.)","","","2017-11-30","ACTV","","","" "61WE","France","FR","","","Institution de retraite supplémentaire","French","fr","Institution de retraite supplémentaire","","","2017-11-30","ACTV","","","" "66JQ","France","FR","","","Syndicat de copropriété","French","fr","Syndicat de copropriété","","","2017-11-30","ACTV","","","" "6CHY","France","FR","","","société par actions simplifiée","French","fr","société par actions simplifiée","SAS","","2017-11-30","ACTV","split name and abbreviation","2023-09-28","splitting the name of the legal form and the abbreviation" "6CJJ","France","FR","","","SCP de géomètres experts","French","fr","SCP de géomètres experts","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "6DYI","France","FR","","","Société de Participations Financières de Profession Libérale Société à responsabilité limitée (SPFPL SARL)","French","fr","Société de Participations Financières de Profession Libérale Société à responsabilité limitée (SPFPL SARL)","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "6IIE","France","FR","","","SA coopérative (d'intérêt) maritime à conseil d'administration","French","fr","SA coopérative (d'intérêt) maritime à conseil d'administration","","","2017-11-30","ACTV","","","" "6KWU","France","FR","","","Société d'exercice libéral en commandite par actions","French","fr","Société d'exercice libéral en commandite par actions","","","2017-11-30","ACTV","","","" "6RUE","France","FR","","","Groupement européen d'intérêt économique (GEIE)","French","fr","Groupement européen d'intérêt économique (GEIE)","GEIE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "6SYJ","France","FR","","","SA de HLM à directoire","French","fr","SA de HLM à directoire","","","2017-11-30","ACTV","","","" "6YHU","France","FR","","","SA d'intérêt collectif agricole (SICA) à conseil d'administration","French","fr","SA d'intérêt collectif agricole (SICA) à conseil d'administration","","","2017-11-30","ACTV","","","" "74HH","France","FR","","","SCP de vétérinaires","French","fr","SCP de vétérinaires","","","2017-11-30","ACTV","","","" "7O94","France","FR","","","Groupement forestier","French","fr","Groupement forestier","","","2017-11-30","ACTV","","","" "7SZH","France","FR","","","Autre groupement de droit privé non doté de la personnalité morale","French","fr","Autre groupement de droit privé non doté de la personnalité morale","","","2017-11-30","INAC","deletion","2023-09-28","not a real separate legal form; entity without legal personality" "7UHA","France","FR","","","Collectivité et territoire d'Outre Mer","French","fr","Collectivité et territoire d'Outre Mer","","","2017-11-30","ACTV","","","" "82QO","France","FR","","","Service déconcentré de l'État à compétence (inter) départementale","French","fr","Service déconcentré de l'État à compétence (inter) départementale","","","2017-11-30","ACTV","","","" "87VO","France","FR","","","Safer anonyme à directoire","French","fr","Safer anonyme à directoire","","","2017-11-30","ACTV","","","" "8FZW","France","FR","","","SCP de conseils juridiques","French","fr","SCP de conseils juridiques","","","2017-11-30","ACTV","","","" "8G07","France","FR","","","(Autre) Personne physique","French","fr","(Autre) Personne physique","","","2017-11-30","INAC","legislation change","2018-07-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "8GTU","France","FR","","","(Autre) Service déconcentré de l'État à compétence territoriale","French","fr","(Autre) Service déconcentré de l'État à compétence territoriale","","","2017-11-30","ACTV","","","" "8II5","France","FR","","","Autre SA coopérative à conseil d'administration","French","fr","Autre SA coopérative à conseil d'administration","","","2017-11-30","ACTV","","","" "8IWA","France","FR","","","Commune associée et commune déléguée","French","fr","Commune associée et commune déléguée","","","2017-11-30","ACTV","","","" "8LX5","France","FR","","","Autre régime de prévoyance sociale","French","fr","Autre régime de prévoyance sociale","","","2017-11-30","ACTV","","","" "8OKM","France","FR","","","Service déconcentré à compétence nationale d'un ministère (hors Défense)","French","fr","Service déconcentré à compétence nationale d'un ministère (hors Défense)","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "8R2G","France","FR","","","Société civile immobilière de construction-vente","French","fr","Société civile immobilière de construction-vente","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "8TYA","France","FR","","","Autre SA coopérative à directoire","French","fr","Autre SA coopérative à directoire","","","2017-11-30","ACTV","","","" "8VDW","France","FR","","","Société d'assurance à forme mutuelle","French","fr","Société d'assurance à forme mutuelle","","","2017-11-30","ACTV","","","" "8VWR","France","FR","","","SA d'économie mixte à conseil d'administration","French","fr","SA d'économie mixte à conseil d'administration","","","2017-11-30","ACTV","","","" "8WH8","France","FR","","","Autre personne morale de droit étranger","French","fr","Autre personne morale de droit étranger","","","2017-11-30","INAC","deletion","2023-09-28","not a French legal form" "8XDK","France","FR","","","SA d'aménagement foncier et d'équipement rural (SAFER) à conseil d'administration","French","fr","SA d'aménagement foncier et d'équipement rural (SAFER) à conseil d'administration","","","2017-11-30","ACTV","","","" "94WO","France","FR","","","District urbain","French","fr","District urbain","","","2017-11-30","ACTV","","","" "97PZ","France","FR","","","SARL coopérative d'intérêt maritime","French","fr","SARL coopérative d'intérêt maritime","","","2017-11-30","ACTV","","","" "9HC8","France","FR","","","Société en participation entre personnes physiques","French","fr","Société en participation entre personnes physiques","","","2017-11-30","ACTV","","","" "9KU7","France","FR","","","Union de sociétés coopératives agricoles","French","fr","Union de sociétés coopératives agricoles","","","2017-11-30","ACTV","","","" "9N1F","France","FR","","","SA d'intérêt collectif agricole (SICA)","French","fr","SA d'intérêt collectif agricole (SICA)","","","2017-11-30","ACTV","","","" "9O0S","France","FR","","","Association fonciére urbaine","French","fr","Association fonciére urbaine","","","2017-11-30","ACTV","","","" "9T5S","France","FR","","","Fondation","French","fr","Fondation","","","2017-11-30","ACTV","","","" "A0VZ","France","FR","","","SCP d'architectes","French","fr","SCP d'architectes","","","2017-11-30","ACTV","","","" "AHBR","France","FR","","","SA à participation ouvrière à directoire","French","fr","SA à participation ouvrière à directoire","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "AMFI","France","FR","","","Autorité constitutionnelle","French","fr","Autorité constitutionnelle","","","2017-11-30","ACTV","","","" "B645","France","FR","","","SA d'attribution à conseil d'administration","French","fr","SA d'attribution à conseil d'administration","","","2017-11-30","ACTV","","","" "B7I7","France","FR","","","SA coopérative artisanale à conseil d'administration","French","fr","SA coopérative artisanale à conseil d'administration","","","2017-11-30","ACTV","","","" "BAK2","France","FR","","","Exploitation agricole à responsabilité limitée","French","fr","Exploitation agricole à responsabilité limitée","","","2017-11-30","ACTV","","","" "BAUQ","France","FR","","","SA de crédit immobilier à conseil d'administration","French","fr","SA de crédit immobilier à conseil d'administration","","","2017-11-30","ACTV","","","" "BDDP","France","FR","","","SCP d'infirmiers","French","fr","SCP d'infirmiers","","","2017-11-30","ACTV","","","" "BEWI","France","FR","","","Association déclarée","French","fr","Association déclarée","","","2017-11-30","ACTV","","","" "BRGA","France","FR","","","SA immobilière d'investissement à conseil d'administration","French","fr","SA immobilière d'investissement à conseil d'administration","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "BYZF","France","FR","","","Paroisse hors zone concordataire","French","fr","Paroisse hors zone concordataire","","","2017-11-30","ACTV","","","" "C42J","France","FR","","","SARL immobilière de gestion","French","fr","SARL immobilière de gestion","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "C4D7","France","FR","","","Ensemble urbain","French","fr","Ensemble urbain","","","2017-11-30","ACTV","","","" "CAX5","France","FR","","","Régime général de la Sécurité Sociale","French","fr","Régime général de la Sécurité Sociale","","","2017-11-30","ACTV","","","" "CBO2","France","FR","","","Service du ministère de la Défense","French","fr","Service du ministère de la Défense","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "CF56","France","FR","","","Mutualité sociale agricole","French","fr","Mutualité sociale agricole","","","2017-11-30","ACTV","","","" "CNSS","France","FR","","","Société en participation de professions libérales","French","fr","Société en participation de professions libérales","","","2017-11-30","ACTV","","","" "CNXL","France","FR","","","Artisan-commerçant","French","fr","Artisan-commerçant","","","2017-11-30","INAC","legislation change","2018-07-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "CQJI","France","FR","","","Région","French","fr","Région","","","2017-11-30","ACTV","","","" "CVH6","France","FR","","","SARL d'aménagement foncier et d'équipement rural (SAFER)","French","fr","SARL d'aménagement foncier et d'équipement rural (SAFER)","","","2017-11-30","ACTV","","","" "D2I2","France","FR","","","Syndicat intercommunal à vocation multiple (SIVOM)","French","fr","Syndicat intercommunal à vocation multiple (SIVOM)","","","2017-11-30","ACTV","","","" "DEG4","France","FR","","","Société en commandite par actions","French","fr","Société en commandite par actions","","","2017-11-30","ACTV","","","" "DRQM","France","FR","","","SA coopérative de construction à conseil d'administration","French","fr","SA coopérative de construction à conseil d'administration","","","2017-11-30","ACTV","","","" "DTAX","France","FR","","","Autre organisme mutualiste","French","fr","Autre organisme mutualiste","","","2017-11-30","ACTV","","","" "DWYD","France","FR","","","Association déclarée d'insertion par l'économique","French","fr","Association déclarée d'insertion par l'économique","","","2017-11-30","ACTV","","","" "DXQH","France","FR","","","Société civile foncière","French","fr","Société civile foncière","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "E0YF","France","FR","","","SA coopérative d'intérêt maritime à directoire","French","fr","SA coopérative d'intérêt maritime à directoire","","","2017-11-30","ACTV","","","" "E6YB","France","FR","","","Caisse (fédérale) de crédit mutuel","French","fr","Caisse (fédérale) de crédit mutuel","","","2017-11-30","ACTV","","","" "EABD","France","FR","","","Société civile coopérative entre médecins","French","fr","Société civile coopérative entre médecins","","","2017-11-30","ACTV","","","" "EAC8","France","FR","","","Société coopérative de production de HLM anonyme à directoire","French","fr","Société coopérative de production de HLM anonyme à directoire","","","2017-11-30","ACTV","","","" "ECUL","France","FR","","","Secteur de commune","French","fr","Secteur de commune","","","2017-11-30","ACTV","","","" "EVYY","France","FR","","","Caisse de crédit maritime mutuel","French","fr","Caisse de crédit maritime mutuel","","","2017-11-30","ACTV","","","" "EYRI","France","FR","","","Centre technique industriel ou comité professionnel du développement économique","French","fr","Centre technique industriel ou comité professionnel du développement économique","","","2017-11-30","ACTV","","","" "F0B6","France","FR","","","Société en commandite simple coopérative","French","fr","Société en commandite simple coopérative","","","2017-11-30","ACTV","","","" "F6SZ","France","FR","","","SA coopérative de production (SCOP) à directoire","French","fr","SA coopérative de production (SCOP) à directoire","","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","adjustment of name of legal form" "F72Z","France","FR","","","Établissement public national à caractére industriel ou commercial doté d'un comptable public","French","fr","Établissement public national à caractére industriel ou commercial doté d'un comptable public","","","2017-11-30","ACTV","","","" "F8UD","France","FR","","","SCP d'avoués d'appel","French","fr","SCP d'avoués d'appel","","","2017-11-30","ACTV","","","" "F93F","France","FR","","","SA immobilière pour le commerce et l'industrie (SICOMI) à conseil d'administration","French","fr","SA immobilière pour le commerce et l'industrie (SICOMI) à conseil d'administration","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "FBYB","France","FR","","","Représentation ou agence commerciale d'état ou organisme public étranger immatriculé au RCS","French","fr","Représentation ou agence commerciale d'état ou organisme public étranger immatriculé au RCS","","","2017-11-30","INAC","deletion","2023-09-28","not a French legal form" "FEEA","France","FR","","","Établissement public national ayant fonction d'administration centrale","French","fr","Établissement public national ayant fonction d'administration centrale","","","2017-11-30","ACTV","","","" "FFQL","France","FR","","","Commune et commune nouvelle","French","fr","Commune et commune nouvelle","","","2017-11-30","ACTV","","","" "FKG2","France","FR","","","Organisation internationale","French","fr","Organisation internationale","","","2017-11-30","ACTV","","","" "FOUY","France","FR","","","SCP de commissaires aux comptes","French","fr","SCP de commissaires aux comptes","","","2017-11-30","ACTV","","","" "FY0F","France","FR","","","Société civile immobilière","French","fr","Société civile immobilière","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "FYBN","France","FR","","","SARL mixte d'intérêt agricole (SMIA)","French","fr","SARL mixte d'intérêt agricole (SMIA)","","","2017-11-30","ACTV","","","" "G7Z2","France","FR","","","SARL coopérative de construction","French","fr","SARL coopérative de construction","","","2017-11-30","ACTV","","","" "G8LP","France","FR","","","Sociétés Interprofessionnelles de Soins Ambulatoires ","French","fr","Sociétés Interprofessionnelles de Soins Ambulatoires ","","","2017-11-30","ACTV","","","" "G98S","France","FR","","","Ordre professionnel ou assimilé","French","fr","Ordre professionnel ou assimilé","","","2017-11-30","ACTV","","","" "GFN6","France","FR","","","SA coopérative de commerçants-détaillants à conseil d'administration","French","fr","SA coopérative de commerçants-détaillants à conseil d'administration","","","2017-11-30","ACTV","","","" "GJJJ","France","FR","","","Société d'exercice libéral à responsabilité limitée à associé unique","French","fr","Société d'exercice libéral à responsabilité limitée à associé unique","","","2019-07-05","ACTV","","","" "GLN8","France","FR","","","Centre Intercommunal d'action sociale (CIAS)","French","fr","Centre Intercommunal d'action sociale (CIAS)","","","2017-11-30","ACTV","","","" "GQV4","France","FR","","","SA immobilière pour le commerce et l'industrie (SICOMI) à directoire","French","fr","SA immobilière pour le commerce et l'industrie (SICOMI) à directoire","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "GXL6","France","FR","","","Autre établissement public national d'enseignement","French","fr","Autre établissement public national d'enseignement","","","2017-11-30","ACTV","","","" "GZCQ","France","FR","","","SCP de greffiers de tribunal de commerce","French","fr","SCP de greffiers de tribunal de commerce","","","2017-11-30","ACTV","","","" "H1U2","France","FR","","","Société en nom collectif","French","fr","Société en nom collectif","","","2017-11-30","ACTV","","","" "H3Z4","France","FR","","","SA coopérative de transport à directoire","French","fr","SA coopérative de transport à directoire","","","2017-11-30","ACTV","","","" "H3ZD","France","FR","","","SARL d'intérêt collectif agricole (SICA)","French","fr","SARL d'intérêt collectif agricole (SICA)","","","2017-11-30","ACTV","","","" "H4VR","France","FR","","","Société civile coopérative de consommation","French","fr","Société civile coopérative de consommation","","","2017-11-30","ACTV","","","" "HA3N","France","FR","","","Caisse de crédit municipal","French","fr","Caisse de crédit municipal","","","2017-11-30","ACTV","","","" "HATI","France","FR","","","Association intermédiaire","French","fr","Association intermédiaire","","","2017-11-30","ACTV","","","" "HC8N","France","FR","","","SARL union de sociétés coopératives","French","fr","SARL union de sociétés coopératives","","","2017-11-30","ACTV","","","" "HF2L","France","FR","","","Association de droit local (Bas-Rhin, Haut-Rhin et Moselle)","French","fr","Association de droit local (Bas-Rhin, Haut-Rhin et Moselle)","","","2017-11-30","ACTV","","","" "HMEI","France","FR","","","Autre société civile coopérative","French","fr","Autre société civile coopérative","","","2017-11-30","ACTV","","","" "HSYZ","France","FR","","","Autre société civile professionnelle","French","fr","Autre société civile professionnelle","","","2017-11-30","ACTV","","","" "I0MH","France","FR","","","Société civile coopérative de construction","French","fr","Société civile coopérative de construction","","","2017-11-30","ACTV","","","" "I8TE","France","FR","","","SA mixte d'intérêt agricole (SMIA)","French","fr","SA mixte d'intérêt agricole (SMIA)","","","2017-11-30","ACTV","","","" "IAP3","France","FR","","","Syndicat intercommunal à vocation unique (SIVU)","French","fr","Syndicat intercommunal à vocation unique (SIVU)","","","2017-11-30","ACTV","","","" "IC8G","France","FR","","","SCP d'avocats aux conseils","French","fr","SCP d'avocats aux conseils","","","2017-11-30","ACTV","","","" "IC98","France","FR","","","SCP de commissaires-priseurs","French","fr","SCP de commissaires-priseurs","","","2017-11-30","ACTV","","","" "IF7H","France","FR","","","SA coopérative de consommation à conseil d'administration","French","fr","SA coopérative de consommation à conseil d'administration","","","2017-11-30","ACTV","","","" "IGSV","France","FR","","","Société civile laitière","French","fr","Société civile laitière","","","2017-11-30","INAC","text corrected, deletion","2020-07-01","wrong spelling of text, legal form ended" "IQR2","France","FR","","","Société civile d'intérêt collectif agricole (SICA)","French","fr","Société civile d'intérêt collectif agricole (SICA)","","","2017-11-30","ACTV","","","" "J9OZ","France","FR","","","Société d'exercice libéral à responsabilité limitée","French","fr","Société d'exercice libéral à responsabilité limitée","","","2017-11-30","ACTV","","","" "JBIQ","France","FR","","","Institution de prévoyance","French","fr","Institution de prévoyance","","","2017-11-30","ACTV","","","" "JFET","France","FR","","","Société de Participations Financières de Profession Libérale Société anonyme à Directoire (SPFPL SA à directoire)","French","fr","Société de Participations Financières de Profession Libérale Société anonyme à Directoire (SPFPL SA à directoire)","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "JIYK","France","FR","","","Syndicat inter hospitalier","French","fr","Syndicat inter hospitalier","","","2017-11-30","ACTV","","","" "JM1W","France","FR","","","SCP de dentistes","French","fr","SCP de dentistes","","","2017-11-30","ACTV","","","" "JMO0","France","FR","","","Commission syndicale pour la gestion des biens indivis des communes","French","fr","Commission syndicale pour la gestion des biens indivis des communes","","","2017-11-30","ACTV","","","" "JN2P","France","FR","","","SARL unipersonnelle","French","fr","SARL unipersonnelle","","","2017-11-30","INAC","deletion","2020-06-10","legal form ended" "JR7T","France","FR","","","SARL nationale","French","fr","SARL nationale","","","2017-11-30","ACTV","","","" "JU82","France","FR","","","Ministére","French","fr","Ministére","","","2017-11-30","ACTV","","","" "K39X","France","FR","","","SA union de sociétés coopératives à conseil d'administration","French","fr","SA union de sociétés coopératives à conseil d'administration","","","2017-11-30","ACTV","","","" "K5KA","France","FR","","","Régie d'une collectivité locale à caractère industriel ou commercial","French","fr","Régie d'une collectivité locale à caractère industriel ou commercial","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "K65D","France","FR","","","SA à conseil d'administration (s.a.i.)","French","fr","SA à conseil d'administration (s.a.i.)","","","2017-11-30","ACTV","","","" "K69X","France","FR","","","SA de crédit immobilier à directoire","French","fr","SA de crédit immobilier à directoire","","","2017-11-30","ACTV","","","" "K7XQ","France","FR","","","Établissement public national à caractére scientifique culturel et professionnel","French","fr","Établissement public national à caractére scientifique culturel et professionnel","","","2017-11-30","ACTV","","","" "K99N","France","FR","","","Comité social économique d’établissement","French","fr","Comité social économique d’établissement","","","2017-11-30","ACTV","name change","2020-07-01","change of name of legal form" "KBEQ","France","FR","","","Société civile immobilière d' accession progressive à la propriété","French","fr","Société civile immobilière d' accession progressive à la propriété","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "KCN5","France","FR","","","Etablissement public administratif, cercle et foyer dans les armées","French","fr","Etablissement public administratif, cercle et foyer dans les armées","","","2017-11-30","ACTV","","","" "KFR1","France","FR","","","Artisan","French","fr","Artisan","","","2017-11-30","INAC","legislation change","2018-07-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "KMPN","France","FR","","","Établissement public national à caractére administratif","French","fr","Établissement public national à caractére administratif","","","2017-11-30","ACTV","","","" "KQH7","France","FR","","","Société civile d'attribution","French","fr","Société civile d'attribution","","","2017-11-30","ACTV","","","" "KS9B","France","FR","","","Syndicat patronal","French","fr","Syndicat patronal","","","2017-11-30","ACTV","","","" "KWI4","France","FR","","","SCP de masseurs-kinésithérapeutes","French","fr","SCP de masseurs-kinésithérapeutes","","","2017-11-30","ACTV","","","" "L25Z","France","FR","","","Société anonyme mixte d'intérêt agricole (SMIA) à conseil d'administration","French","fr","Société anonyme mixte d'intérêt agricole (SMIA) à conseil d'administration","","","2017-11-30","ACTV","","","" "L6QO","France","FR","","","Régime spécial de Sécurité Sociale","French","fr","Régime spécial de Sécurité Sociale","","","2017-11-30","ACTV","","","" "LARO","France","FR","","","Société par actions simplifiée à associé unique ou société par actions simplifiée unipersonnelle","French","fr","Société par actions simplifiée à associé unique ou société par actions simplifiée unipersonnelle","","","2017-11-30","INAC","deletion","2020-06-10","legal form ended" "LGME","France","FR","","","SA à participation ouvrière à conseil d'administration","French","fr","SA à participation ouvrière à conseil d'administration","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "LU8S","France","FR","","","Associé gérant de Société","French","fr","Associé gérant de Société","","","2017-11-30","INAC","legislation change","2018-07-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "LUIN","France","FR","","","SARL immobilière pour le commerce et l'industrie (SICOMI)","French","fr","SARL immobilière pour le commerce et l'industrie (SICOMI)","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "M1BJ","France","FR","","","Société civile de moyens","French","fr","Société civile de moyens","","","2017-11-30","ACTV","","","" "M673","France","FR","","","Société civile d'exploitation agricole","French","fr","Société civile d'exploitation agricole","","","2017-11-30","ACTV","","","" "MG2O","France","FR","","","Institution interdépartementale ou entente","French","fr","Institution interdépartementale ou entente","","","2017-11-30","ACTV","","","" "MMA4","France","FR","","","SA union de sociétés coopératives à directoire","French","fr","SA union de sociétés coopératives à directoire","","","2017-11-30","ACTV","","","" "MOUL","France","FR","","","Assurance mutuelle agricole","French","fr","Assurance mutuelle agricole","","","2017-11-30","ACTV","","","" "MQPZ","France","FR","","","Caisse d'épargne et de prévoyance à forme coopérative","French","fr","Caisse d'épargne et de prévoyance à forme coopérative","","","2017-11-30","ACTV","","","" "MQU9","France","FR","","","Organisme de placement collectif en valeurs mobilières sans personnalité morale","French","fr","Organisme de placement collectif en valeurs mobilières sans personnalité morale","","","2019-07-05","ACTV","name change","2020-07-01","change of name of legal form" "MX8J","France","FR","","","SA coopérative de commerçants-détaillants à directoire","French","fr","SA coopérative de commerçants-détaillants à directoire","","","2017-11-30","ACTV","","","" "NBA8","France","FR","","","Autre établissement public national administratif à compétence territoriale limitée","French","fr","Autre établissement public national administratif à compétence territoriale limitée","","","2017-11-30","ACTV","","","" "NFCV","France","FR","","","Association coopérative inscrite (droit local Alsace Moselle)","French","fr","Association coopérative inscrite (droit local Alsace Moselle)","","","2017-11-30","ACTV","","","" "NM07","France","FR","","","SA immobilière d'investissement à directoire","French","fr","SA immobilière d'investissement à directoire","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "NOI8","France","FR","","","Communauté d'agglomération","French","fr","Communauté d'agglomération","","","2017-11-30","ACTV","","","" "NQCT","France","FR","","","(Autre) Établissement public administratif local","French","fr","(Autre) Établissement public administratif local","","","2017-11-30","ACTV","","","" "NUMY","France","FR","","","SA coopérative artisanale à directoire","French","fr","SA coopérative artisanale à directoire","","","2017-11-30","ACTV","","","" "OAGA","France","FR","","","Régime vieillesse ne dépendant pas du régime général de la Sécurité Sociale","French","fr","Régime vieillesse ne dépendant pas du régime général de la Sécurité Sociale","","","2017-11-30","ACTV","","","" "OIQA","France","FR","","","Autre organisme professionnel","French","fr","Autre organisme professionnel","","","2017-11-30","ACTV","","","" "OLJ1","France","FR","","","Syndicat mixte fermé","French","fr","Syndicat mixte fermé","","","2017-11-30","ACTV","","","" "OSLZ","France","FR","","","Société coopérative de banque populaire","French","fr","Société coopérative de banque populaire","","","2017-11-30","ACTV","","","" "OWUN","France","FR","","","Communauté de communes","French","fr","Communauté de communes","","","2017-11-30","ACTV","","","" "P3J5","France","FR","","","Centre communal d'action sociale","French","fr","Centre communal d'action sociale","","","2017-11-30","ACTV","","","" "P714","France","FR","","","Association fonciére de remembrement","French","fr","Association fonciére de remembrement","","","2017-11-30","ACTV","","","" "PESN","France","FR","","","Indivision avec personne morale","French","fr","Indivision avec personne morale","","","2017-11-30","ACTV","","","" "PL6V","France","FR","","","Établissement public local culturel","French","fr","Établissement public local culturel","","","2017-11-30","ACTV","","","" "PWKL","France","FR","","","Congrégation","French","fr","Congrégation","","","2017-11-30","ACTV","","","" "PZLG","France","FR","","","Métropole","French","fr","Métropole","","","2017-11-30","ACTV","","","" "Q2A1","France","FR","","","Société commerciale étrangère immatriculée au RCS","French","fr","Société commerciale étrangère immatriculée au RCS","","","2017-11-30","INAC","deletion","2023-09-28","not a French legal form" "Q634","France","FR","","","Indivision entre personnes physiques","French","fr","Indivision entre personnes physiques","","","2017-11-30","ACTV","","","" "Q8E2","France","FR","","","Société en nom collectif coopérative","French","fr","Société en nom collectif coopérative","","","2017-11-30","ACTV","","","" "QCWO","France","FR","","","Groupement agricole d'exploitation en commun (GAEC)","French","fr","Groupement agricole d'exploitation en commun (GAEC)","","","2017-11-30","ACTV","","","" "QU3G","France","FR","","","SA coopérative de production de HLM à conseil d'administration","French","fr","SA coopérative de production de HLM à conseil d'administration","","","2017-11-30","ACTV","","","" "QUB4","France","FR","","","Organisme consulaire","French","fr","Organisme consulaire","","","2017-11-30","ACTV","","","" "QV2O","France","FR","","","Société d'exercice libéral à forme anonyme à directoire","French","fr","Société d'exercice libéral à forme anonyme à directoire","","","2017-11-30","ACTV","","","" "QVPB","France","FR","","","Société anonyme","French","fr","Société anonyme","SA","","2019-07-05","ACTV","","","" "R0B6","France","FR","","","Groupement d'intérêt économique (GIE)","French","fr","Groupement d'intérêt économique (GIE)","","","2017-11-30","ACTV","","","" "R1JO","France","FR","","","Communauté urbaine","French","fr","Communauté urbaine","","","2017-11-30","ACTV","","","" "R59A","France","FR","","","Société en commandite par actions coopérative","French","fr","Société en commandite par actions coopérative","","","2017-11-30","ACTV","","","" "R6WQ","France","FR","","","Groupement de coopération sanitaire à gestion publique","French","fr","Groupement de coopération sanitaire à gestion publique","","","2017-11-30","ACTV","","","" "RD0Z","France","FR","","","Fiducie","French","fr","Fiducie","","","2017-11-30","ACTV","","","" "RFWH","France","FR","","","Groupement foncier et rural","French","fr","Groupement foncier et rural","","","2017-11-30","ACTV","","","" "RNJZ","France","FR","","","Société de Participations Financières de Profession Libérale Société en commandite par actions (SPFPL SCA)","French","fr","Société de Participations Financières de Profession Libérale Société en commandite par actions (SPFPL SCA)","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "RNSB","France","FR","","","Société étrangère non immatriculée au RCS","French","fr","Société étrangère non immatriculée au RCS","","","2017-11-30","INAC","deletion","2023-09-28","not a French legal form" "RT39","France","FR","","","Société créée de fait avec personne morale","French","fr","Société créée de fait avec personne morale","","","2017-11-30","ACTV","","","" "RT6Y","France","FR","","","Agent commercial","French","fr","Agent commercial","","","2017-11-30","INAC","legislation change","2018-07-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "RWMC","France","FR","","","Communauté de villes","French","fr","Communauté de villes","","","2017-11-30","ACTV","","","" "S0X8","France","FR","","","Caisse de crédit agricole mutuel","French","fr","Caisse de crédit agricole mutuel","","","2017-11-30","ACTV","","","" "S82R","France","FR","","","Société de Participations Financières de Profession Libérale Société par actions simplifiée (SPFPL SAS)","French","fr","Société de Participations Financières de Profession Libérale Société par actions simplifiée (SPFPL SAS)","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "SMZ6","France","FR","","","Société de Participations Financières de Profession Libérale Société anonyme à conseil d'administration (SPFPL SA à conseil d'administration)","French","fr","Société de Participations Financières de Profession Libérale Société anonyme à conseil d'administration (SPFPL SA à conseil d'administration)","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "SOXQ","France","FR","","","Société en libre partenariat","French","fr","Société en libre partenariat","SLP","","2020-07-01","ACTV","","","" "SSHN","France","FR","","","Régime d'assurance chômage","French","fr","Régime d'assurance chômage","","","2017-11-30","ACTV","","","" "SWPX","France","FR","","","SA coopérative de transport à conseil d'administration","French","fr","SA coopérative de transport à conseil d'administration","","","2017-11-30","ACTV","","","" "SZ63","France","FR","","","Service déconcentré de l'État à compétence (inter) régionale","French","fr","Service déconcentré de l'État à compétence (inter) régionale","","","2017-11-30","ACTV","","","" "T25Y","France","FR","","","SCP d'avocats","French","fr","SCP d'avocats","","","2017-11-30","ACTV","","","" "TGRE","France","FR","","","Caisse des écoles","French","fr","Caisse des écoles","","","2017-11-30","ACTV","","","" "TNPO","France","FR","","","Exploitant agricole","French","fr","Exploitant agricole","","","2017-11-30","INAC","legislation change","2018-07-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "TOL2","France","FR","","","SA nationale à directoire","French","fr","SA nationale à directoire","","","2017-11-30","ACTV","","","" "TPNT","France","FR","","","Société européenne","French","fr","Société européenne","SE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "TUE5","France","FR","","","Office public d'habitation à loyer modéré (OPHLM)","French","fr","Office public d'habitation à loyer modéré (OPHLM)","","","2017-11-30","ACTV","","","" "UFM7","France","FR","","","SA coopérative de construction à directoire","French","fr","SA coopérative de construction à directoire","","","2017-11-30","ACTV","","","" "UHKH","France","FR","","","Société de caution mutuelle","French","fr","Société de caution mutuelle","","","2017-11-30","ACTV","","","" "UQRY","France","FR","","","Ecole nationale non dotée de la personnalité morale","French","fr","Ecole nationale non dotée de la personnalité morale","","","2017-11-30","ACTV","","","" "UUT8","France","FR","","","SCP de directeurs de laboratoire d'analyse médicale","French","fr","SCP de directeurs de laboratoire d'analyse médicale","","","2017-11-30","ACTV","","","" "UV02","France","FR","","","Service central d'un ministère","French","fr","Service central d'un ministère","","","2017-11-30","ACTV","typo corrected","2020-06-10","wrong spelling of text" "UZY3","France","FR","","","Établissement d'hospitalisation","French","fr","Établissement d'hospitalisation","","","2017-11-30","ACTV","","","" "V1Z5","France","FR","","","SARL coopérative de production (SCOP)","French","fr","SARL coopérative de production (SCOP)","","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","adjustment of name of legal form" "V5SV","France","FR","","","Société civile coopérative d'intérêt maritime","French","fr","Société civile coopérative d'intérêt maritime","","","2017-11-30","ACTV","","","" "V6G1","France","FR","","","Régime maladie des non-salariés non agricoles","French","fr","Régime maladie des non-salariés non agricoles","","","2017-11-30","ACTV","","","" "V9QP","France","FR","","","Société à responsabilité limitée (sans autre indication)","French","fr","Société à responsabilité limitée (sans autre indication)","","","2017-11-30","ACTV","","","" "VBC7","France","FR","","","Institution Banque de France","French","fr","Institution Banque de France","","","2017-11-30","ACTV","","","" "VBQP","France","FR","","","Fonds à forme sociétale à directoire","French","fr","Fonds à forme sociétale à directoire","","","2017-11-30","ACTV","correction of name of legal form","2019-07-05","name of legal form corrected" "VD7Z","France","FR","","","Société en commandite simple","French","fr","Société en commandite simple","","","2017-11-30","ACTV","","","" "VJV5","France","FR","","","SARL d'économie mixte","French","fr","SARL d'économie mixte","","","2017-11-30","ACTV","","","" "VO18","France","FR","","","Établissement public local à caractére industriel ou commercial","French","fr","Établissement public local à caractére industriel ou commercial","","","2017-11-30","ACTV","","","" "VTFS","France","FR","","","SARL coopérative artisanale","French","fr","SARL coopérative artisanale","","","2017-11-30","ACTV","","","" "W3LD","France","FR","","","Groupement agricole foncier","French","fr","Groupement agricole foncier","","","2017-11-30","ACTV","","","" "W4G1","France","FR","","","SARL coopérative de transport","French","fr","SARL coopérative de transport","","","2017-11-30","ACTV","","","" "WGCY","France","FR","","","Groupement d'employeurs","French","fr","Groupement d'employeurs","","","2017-11-30","ACTV","","","" "WXNU","France","FR","","","SCP d'huissiers","French","fr","SCP d'huissiers","","","2017-11-30","ACTV","","","" "X78I","France","FR","","","Fonds à forme sociétale à conseil d'administration","French","fr","Fonds à forme sociétale à conseil d'administration","","","2017-11-30","ACTV","correction of name of legal form","2019-07-05","name of legal form corrected based on name change in France in April 2017" "XH8C","France","FR","","","Association déclarée, reconnue d'utilité publique","French","fr","Association déclarée, reconnue d'utilité publique","","","2017-11-30","ACTV","","","" "XK4T","France","FR","","","Comité social économique d’entreprise","French","fr","Comité social économique d’entreprise","","","2017-11-30","ACTV","name change","2020-07-01","change of name of legal form" "XPX6","France","FR","","","SA coopérative de production (SCOP) à conseil d'administration","French","fr","SA coopérative de production (SCOP) à conseil d'administration","","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","adjustment of name of legal form" "XQBA","France","FR","","","Société en participation avec personne morale","French","fr","Société en participation avec personne morale","","","2017-11-30","ACTV","","","" "Y1W1","France","FR","","","Section de commune","French","fr","Section de commune","","","2017-11-30","ACTV","","","" "Y4VA","France","FR","","","Département","French","fr","Département","","","2017-11-30","ACTV","","","" "Y7G8","France","FR","","","Caisse locale de crédit mutuel","French","fr","Caisse locale de crédit mutuel","","","2017-11-30","ACTV","","","" "Y8WC","France","FR","","","Groupement de coopération sanitaire à gestion privée","French","fr","Groupement de coopération sanitaire à gestion privée","","","2017-11-30","ACTV","","","" "YADL","France","FR","","","Autorité administrative ou publique indépendante","French","fr","Autorité administrative ou publique indépendante","","","2017-11-30","ACTV","correction of name of legal form","2019-07-05","name of legal form corrected based on name change in France in April 2017" "YHI5","France","FR","","","Pôle métropolitain","French","fr","Pôle métropolitain","","","2017-11-30","ACTV","","","" "YJM5","France","FR","","","Officier public ou ministériel","French","fr","Officier public ou ministériel","","","2017-11-30","INAC","legislation change","2018-11-01","due to a change in French legislation, this legal form has changed into the new code ZY9X" "YUCL","France","FR","","","Institution de retraite complémentaire","French","fr","Institution de retraite complémentaire","","","2017-11-30","ACTV","","","" "YX4E","France","FR","","","Société civile de placement collectif immobilier (SCPI)","French","fr","Société civile de placement collectif immobilier (SCPI)","","","2017-11-30","ACTV","","","" "Z0JP","France","FR","","","Établissement public national à caractére industriel ou commercial non doté d'un comptable public","French","fr","Établissement public national à caractére industriel ou commercial non doté d'un comptable public","","","2017-11-30","ACTV","","","" "Z2FQ","France","FR","","","Groupement d'intérêt public (GIP)","French","fr","Groupement d'intérêt public (GIP)","","","2017-11-30","ACTV","","","" "Z5WG","France","FR","","","Groupement pastoral","French","fr","Groupement pastoral","","","2017-11-30","ACTV","","","" "Z9K8","France","FR","","","Association d'avocats à responsabilité professionnelle individuelle","French","fr","Association d'avocats à responsabilité professionnelle individuelle","","","2017-11-30","ACTV","","","" "ZECH","France","FR","","","Syndicat mixte ouvert","French","fr","Syndicat mixte ouvert","","","2017-11-30","ACTV","","","" "ZM5P","France","FR","","","SA d'économie mixte à directoire","French","fr","SA d'économie mixte à directoire","","","2017-11-30","ACTV","","","" "ZPEZ","France","FR","","","Association syndicale libre","French","fr","Association syndicale libre","","","2017-11-30","ACTV","","","" "ZQ9B","France","FR","","","Exploitant public","French","fr","Exploitant public","","","2017-11-30","ACTV","","","" "ZQIT","France","FR","","","SA coopérative de consommation à directoire","French","fr","SA coopérative de consommation à directoire","","","2017-11-30","ACTV","","","" "ZXHJ","France","FR","","","Société d'exercice libéral à forme anonyme à conseil d'administration","French","fr","Société d'exercice libéral à forme anonyme à conseil d'administration","","","2017-11-30","ACTV","","","" "ZY9X","France","FR","","","Entrepreneur individuel","French","fr","Entrepreneur individuel","","","2019-07-05","ACTV","","","" "ZZ0X","France","FR","","","Établissement public des cultes d'Alsace-Lorraine","French","fr","Établissement public des cultes d'Alsace-Lorraine","","","2017-11-30","ACTV","","","" "13AV","Germany","DE","","","Versicherungsverein auf Gegenseitigkeit","German","de","Versicherungsverein auf Gegenseitigkeit","VVaG","","2017-11-30","ACTV","","","" "2HBR","Germany","DE","","","Gesellschaft mit beschränkter Haftung","German","de","Gesellschaft mit beschränkter Haftung","GmbH","","2017-11-30","ACTV","","","" "2YZO","Germany","DE","","","Partnerschaftsgesellschaft mit beschränkter Berufshaftung","German","de","Partnerschaftsgesellschaft mit beschränkter Berufshaftung","PartG mbB","","2017-11-30","ACTV","","","" "40DB","Germany","DE","","","Offene Handelsgesellschaft","German","de","Offene Handelsgesellschaft","OHG;OHG mbH;GmbH & Co. OHG;AG & Co. OHG","","2017-11-30","ACTV","abbreviations added","2019-07-05","abbreviations added" "63KS","Germany","DE","","","Unternehmergesellschaft","German","de","Unternehmergesellschaft","GmbH UG;UG (haftungsbeschränkt)","","2017-11-30","ACTV","abbreviations added","2019-07-05","abbreviations added" "6QQB","Germany","DE","","","Aktiengesellschaft","German","de","Aktiengesellschaft","AG","","2017-11-30","ACTV","","","" "79H0","Germany","DE","","","Nicht eingetragener Verein","German","de","Nicht eingetragener Verein","","","2019-07-05","ACTV","","","" "7J3S","Germany","DE","","","Wirtschaftlicher Verein","German","de","Wirtschaftlicher Verein","","","2019-07-05","ACTV","","","" "8CM0","Germany","DE","","","Partnerschaftsgesellschaft","German","de","Partnerschaftsgesellschaft","PartG","","2017-11-30","ACTV","","","" "8Z6G","Germany","DE","","","Kommanditgesellschaft","German","de","Kommanditgesellschaft","KG;GmbH & Co. KG;UG (haftungsbeschränkt) & Co. KG AG & Co. KG;KGaA & Co. KG;Stiftung & Co. KG","","2017-11-30","ACTV","abbreviations added","2019-07-05","abbreviations added" "9JGX","Germany","DE","","","Landesinnungsverband","German","de","Landesinnungsverband","","","2019-07-05","ACTV","","","" "AMKW","Germany","DE","","","REIT-Aktiengesellschaft","German","de","REIT-Aktiengesellschaft","REIT-AG","","2019-07-05","ACTV","","","" "AZFE","Germany","DE","","","Eingetragene Genossenschaft","German","de","Eingetragene Genossenschaft","eG","","2019-07-05","ACTV","","","" "D40E","Germany","DE","","","Verein alten Rechts","German","de","Verein alten Rechts","","","2019-07-05","ACTV","","","A Verein that already existed before the introductin of the German BGB (Civil Code) as per 1 Jan 1900" "FEBD","Germany","DE","","","Stiftung des öffentlichen Rechts","German","de","Stiftung des öffentlichen Rechts","","","2023-09-28","ACTV","","","" "FR3V","Germany","DE","","","Gesellschaft bürgerlichen Rechts","German","de","Gesellschaft bürgerlichen Rechts","GbR","","2019-07-05","ACTV","","","" "JMVF","Germany","DE","","","Investmentaktiengesellschaft","German","de","Investmentaktiengesellschaft","InvAG","","2019-07-05","ACTV","","","" "JNDX","Germany","DE","","","Europäische wirtschaftliche Interessenvereinigung","German","de","Europäische wirtschaftliche Interessenvereinigung","EWIV","","2017-11-30","ACTV","","","" "OL20","Germany","DE","","","Einzelunternehmen, eingetragener Kaufmann, eingetragene Kauffrau","German","de","Einzelunternehmen, eingetragener Kaufmann, eingetragene Kauffrau","e. K.;eK;e. Kfm.;e. Kffr","","2017-11-30","ACTV","legal names and abbreviations added","2019-07-05","legal names and abbreviations added" "QZ3L","Germany","DE","","","eingetragener Verein","German","de","eingetragener Verein","e.V.;eV","","2017-11-30","ACTV","","","" "SCE1","Germany","DE","","","Gemeinnützige Gesellschaft mit beschränkter Haftung","German","de","Gemeinnützige Gesellschaft mit beschränkter Haftung","gGmbH","","2019-07-05","ACTV","","","" "SGST","Germany","DE","","","Europäische Aktiengesellschaft","German","de","Europäische Aktiengesellschaft","SE","","2017-11-30","ACTV","","","" "SQKS","Germany","DE","","","Körperschaft des öffentlichen Rechts","German","de","Körperschaft des öffentlichen Rechts","","","2019-07-05","ACTV","","","" "SUA1","Germany","DE","","","Europäische Genossenschaft","German","de","Europäische Genossenschaft","SCE","","2017-11-30","ACTV","","","" "T0YJ","Germany","DE","","","Kommanditgesellschaft auf Aktien","German","de","Kommanditgesellschaft auf Aktien","KGaA;GmbH & Co. KGaA;AG & Co. KGaA;Stiftung & Co. KGaA","","2017-11-30","ACTV","abbreviations added","2019-07-05","abbreviations added" "US8E","Germany","DE","","","Genossenschaft","German","de","Genossenschaft","","","2017-11-30","ACTV","","","" "V2YH","Germany","DE","","","Stiftung des privaten Rechts","German","de","Stiftung des privaten Rechts","","","2019-07-05","ACTV","","","" "XLWA","Germany","DE","","","Anstalt des öffentlichen Rechts","German","de","Anstalt des öffentlichen Rechts","","","2019-07-05","ACTV","","","" "YA01","Germany","DE","","","Gemeinnützige Aktiengesellschaft","German","de","Gemeinnützige Aktiengesellschaft","gAG","","2019-07-05","ACTV","","","" "YJ4C","Germany","DE","","","Kirchliche Stiftung des öffentlichen Rechts","German","de","Kirchliche Stiftung des öffentlichen Rechts","","","2020-11-19","ACTV","","","" "4HD1","Ghana","GH","","","Sole Proprietorship","English","en","Sole Proprietorship","","","2017-11-30","ACTV","","","" "56NA","Ghana","GH","","","Private Limited By Share","English","en","Private Limited By Share","","","2017-11-30","ACTV","","","" "I0X7","Ghana","GH","","","Private Unlimited By Share","English","en","Private Unlimited By Share","","","2017-11-30","ACTV","","","" "J5RC","Ghana","GH","","","Private Limited By Guarantee","English","en","Private Limited By Guarantee","","","2017-11-30","ACTV","","","" "PH5T","Ghana","GH","","","Public Unlimited Company","English","en","Public Unlimited Company","","","2017-11-30","ACTV","","","" "T69Z","Ghana","GH","","","External Company","English","en","External Company","","","2017-11-30","ACTV","","","" "VBJW","Ghana","GH","","","Public Limited Company","English","en","Public Limited Company","","","2017-11-30","ACTV","","","" "W9ZD","Ghana","GH","","","Public Limited By Guarantee","English","en","Public Limited By Guarantee","","","2017-11-30","ACTV","","","" "WP5I","Ghana","GH","","","Partnership","English","en","Partnership","","","2017-11-30","ACTV","","","" "XWPT","Ghana","GH","","","Subsidiary Business Name","English","en","Subsidiary Business Name","","","2017-11-30","ACTV","","","" "7U4R","Gibraltar","GI","","","European Economic Interest Groupings","English","en","European Economic Interest Groupings","E.E.I.G","","2017-11-30","ACTV","","","" "CB98","Gibraltar","GI","","","Foundations","English","en","Foundations","","","2017-11-30","ACTV","","","" "GCCT","Gibraltar","GI","","","Limited Liability Partnerships","English","en","Limited Liability Partnerships","LLP","","2017-11-30","ACTV","","","" "M4TI","Gibraltar","GI","","","Societe Europeas","English","en","Societe Europeas","SE","","2017-11-30","ACTV","","","" "QFLH","Gibraltar","GI","","","Private Limited by Guarantee","English","en","Private Limited by Guarantee","Limited;Ltd;Ltd.","","2017-11-30","ACTV","","","" "TKPE","Gibraltar","GI","","","Private Trust Company","English","en","Private Trust Company","PTC","","2017-11-30","ACTV","","","" "UUYB","Gibraltar","GI","","","Public Limited Company ","English","en","Public Limited Company ","PLC","","2017-11-30","ACTV","","","" "VJRL","Gibraltar","GI","","","Private Unlimited Company","English","en","Private Unlimited Company","","","2017-11-30","ACTV","","","" "WBKH","Gibraltar","GI","","","Private Limited Company","English","en","Private Limited Company","Limited;Ltd;Ltd.","","2017-11-30","ACTV","","","" "Y8CL","Gibraltar","GI","","","Limited Partnerships","English","en","Limited Partnerships","LP;limited partnership;Limited Partnership","","2017-11-30","ACTV","","","" "3RHO","Greece","GR","","","Ναυτική εταιρία","Greek","el","Naftiki eteria","SC","","2017-11-30","ACTV","","","" "54AL","Greece","GR","","","Ετερόρρυθμη Εταιρία","Greek","el","Eterórithmi Etería","EE","","2017-11-30","ACTV","","","" "CQ5X","Greece","GR","","","Ευρωπαϊκή Εταιρεία","Greek","el","Εvropaiki Εtaireia","SE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "H6OR","Greece","GR","","","Εταιρία Περιορισμένης Ευθύνης","Greek","el","Etería Periorisménis Euthínis","EPE","","2017-11-30","ACTV","","","" "HKVP","Greece","GR","","","Αστική (Προσωπική) Εταιρία","Greek","el","Astiki (Proswpiki) Eteria","SP","","2017-11-30","ACTV","","","" "J3VJ","Greece","GR","","","Συνεταιρισμός","Greek","el","Sinetairismos","COOP","","2017-11-30","ACTV","","","" "JYKN","Greece","GR","","","Λοιπά","Greek","el","Lipa","","","2017-11-30","INAC","deletion","2023-09-28","not a real separate legal form" "L6IY","Greece","GR","","","Νομικά Πρόσωπα Δημοσίου Δικαίου","Greek","el","Nomika Prosopa Dimosiou Dikeou","PL","","2017-11-30","ACTV","","","" "L8D6","Greece","GR","","","Αφανής Εταιρία","Greek","el","Afanis Eteria","SLP","","2017-11-30","ACTV","","","" "MCWR","Greece","GR","","","Κοινοπραξία","Greek","el","Kinopraxia","JV","","2017-11-30","ACTV","","","" "QCA0","Greece","GR","","","Ιδιωτική Κεφαλαιουχική Εταιρία","Greek","el","Idiotiki kefaleouhiki Eteria","IKE","","2017-11-30","ACTV","","","" "QNWW","Greece","GR","","","Ευρωπαϊκός Όμιλος Οικονομικού Σκοπού","Greek","el","Evropaikos Ómilos Oikonomikou Skopou","ΕΟΟΣ","EOOS","2021-09-23","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "QSYQ","Greece","GR","","","Σωματεία - Ιδρύματα","Greek","el","Somatia - Idrimata","CLF","","2017-11-30","ACTV","","","" "TIZ2","Greece","GR","","","Ομόρρυθμη Εταιρία","Greek","el","Omórithmi Etería","OE","","2017-11-30","ACTV","","","" "UCU5","Greece","GR","","","Ετερόρρυθμη κατά μετοχές εταιρεία","Greek","el","Εterorrythmi kata metoches etaireia","","","2017-11-30","ACTV","","","" "VKSR","Greece","GR","","","Συμπλοιοκτησία","Greek","el","Simplioktisia","JSO","","2017-11-30","ACTV","","","" "W2NK","Greece","GR","","","Ανώνυμη Εταιρία","Greek","el","Anónimi Etería","SA","","2017-11-30","ACTV","","","" "5I7B","Guam","GU","","","limited liability company","English","en","limited liability company","","","2021-09-23","ACTV","","","" "GNYB","Guam","GU","","","sole proprietorship","English","en","sole proprietorship","","","2021-09-23","ACTV","","","" "KJ1Y","Guam","GU","","","corporation","English","en","corporation","","","2021-09-23","ACTV","","","" "TMK1","Guam","GU","","","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "U5RF","Guam","GU","","","partnership","English","en","partnership","","","2021-09-23","ACTV","","","" "YB1Q","Guam","GU","","","limited liability partnership","English","en","limited liability partnership","","","2021-09-23","ACTV","","","" "YNEH","Guam","GU","","","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "F0IC","Guatemala","GT","","","Sociedad en Comandita por Acciones","Spanish","es","Sociedad en Comandita por Acciones","Cía., S.C.A.","","2020-06-10","ACTV","","","" "GY0L","Guatemala","GT","","","Sociedad Colectiva","Spanish","es","Sociedad Colectiva","","","2020-06-10","ACTV","","","" "RK88","Guatemala","GT","","","Sociedad de Responsabilidad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada","Ltda;Cía. Ltda.","","2020-06-10","ACTV","","","" "W9T7","Guatemala","GT","","","Sociedad en Comandita Simple","Spanish","es","Sociedad en Comandita Simple","Cía. S. en C.","","2020-06-10","ACTV","","","" "XH5R","Guatemala","GT","","","Sociedad Anónima","Spanish","es","Sociedad Anónima","S.A.","","2020-06-10","ACTV","","","" "BVOE","Guernsey","GG","","","Limited Company","English","en","Limited Company","Ltd;Ltd.;Limited","","2017-11-30","INAC","deletion","2021-09-23","this ELF code is replaced by multiple new ELF codes for several specific types of limited companies" "UO3D","Guernsey","GG","","","Limited Partnership","English","en","Limited Partnership","LP;limited partnership;Limited Partnership","","2017-11-30","INAC","deletion","2021-09-23","this ELF code is replaced by two new ELF codes for two specific types of limited partnerships" "1Q2B","Guernsey","GG","Alderney","","company limited by guarantee","English","en","company limited by guarantee","","","2021-09-23","ACTV","","","" "NDC3","Guernsey","GG","Alderney","","private company","English","en","private company","","","2021-09-23","ACTV","","","" "UY66","Guernsey","GG","Alderney","","public company","English","en","public company","","","2021-09-23","ACTV","","","" "2AUN","Guernsey","GG","Guernsey","","incorporated cell","English","en","incorporated cell","ICC","","2021-09-23","ACTV","","","" "4C0J","Guernsey","GG","Guernsey","","protected cell company","English","en","protected cell company","PCC","","2021-09-23","ACTV","","","" "75XK","Guernsey","GG","Guernsey","","limited partnership (without separate legal personality)","English","en","limited partnership (without separate legal personality)","","","2021-09-23","ACTV","","","" "9XFK","Guernsey","GG","Guernsey","","Foundation","English","en","Foundation","FDN.;Fdn.","","2017-11-30","ACTV","jurisdiction added","2021-09-23","jurisdiction added" "E6J3","Guernsey","GG","Guernsey","","company limited by shares","English","en","company limited by shares","Ltd","","2021-09-23","ACTV","","","" "MCQP","Guernsey","GG","Guernsey","","limited partnership (with separate legal personality)","English","en","limited partnership (with separate legal personality)","","","2021-09-23","ACTV","","","" "NGR5","Guernsey","GG","Guernsey","","mixed liability company","English","en","mixed liability company","ML","","2021-09-23","ACTV","","","" "OT3Y","Guernsey","GG","Guernsey","","company limited by guarantee","English","en","company limited by guarantee","LBG","","2021-09-23","ACTV","","","" "Q49K","Guernsey","GG","Guernsey","","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP","","2017-11-30","ACTV","jurisdiction added and abbreviation adjusted","2021-09-23","jurisdiction added; abbreviations adjusted" "QJBA","Guernsey","GG","Guernsey","","incorporated cell company","English","en","incorporated cell company","ICC","","2021-09-23","ACTV","","","" "YVZD","Guernsey","GG","Guernsey","","unlimited liability company","English","en","unlimited liability company","","","2021-09-23","ACTV","","","" "12F9","Honduras","HN","","","Sociedades de Capital Variable","Spanish","es","Sociedades de Capital Variable","de C. V.","","2020-06-10","ACTV","","","" "6ETM","Honduras","HN","","","Sociedad en Comandita por Acciones.","Spanish","es","Sociedad en Comandita por Acciones","S. en C.","","2020-06-10","ACTV","","","" "E7JZ","Honduras","HN","","","Comerciante Individual","Spanish","es","Comerciante Individual","","","2020-06-10","ACTV","","","" "JUDZ","Honduras","HN","","","Sociedad Anónima","Spanish","es","Sociedad Anónima","S.A.","","2020-06-10","ACTV","","","" "O2M6","Honduras","HN","","","Sociedad Colectiva","Spanish","es","Sociedad Colectiva","","","2020-06-10","ACTV","","","" "RF41","Honduras","HN","","","Sociedad en Comandita Simple","Spanish","es","Sociedad en Comandita Simple","S. en C.","","2020-06-10","ACTV","","","" "XE7O","Honduras","HN","","","Sociedad de Responsabilidad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada","S. De R. L.","","2020-06-10","ACTV","","","" "254M","Hong Kong","HK","","","私人股份有限公司","Chinese","zh","Si ren gu fen you xian gong si","有限公司","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "254M","Hong Kong","HK","","","Private company limited by shares","English","en","Private company limited by shares","Ltd;Ltd.;Limited","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "2QMJ","Hong Kong","HK","","","Trust","English","en","Trust","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "85VD","Hong Kong","HK","","","註冊受託人","Chinese","zh","zhu ce shou tuo ren","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "85VD","Hong Kong","HK","","","Registered trustee","English","en","Registered trustee","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "E1SE","Hong Kong","HK","","","根據法例成立的實體","Chinese","zh","gen ju fa li cheng li de shi ti","","","2017-11-30","ACTV","change of country name","2019-07-05","correction of country name to align with name in ISO 3166 standard in English" "E1SE","Hong Kong","HK","","","Entity established by Ordinance","English","en","Entity established by Ordinance","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "EPG7","Hong Kong","HK","","","公眾股份有限公司","Chinese","zh","Gong zhong gu fen you xian gong si","有限公司","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "EPG7","Hong Kong","HK","","","Public company limited by shares","English","en","Public company limited by shares","Ltd;Ltd.;Limited","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "KSUS","Hong Kong","HK","","","非香港公司","Chinese","zh","fei xiang gang gong si","","","2017-11-30","INAC","deletion","2023-09-28","foreign entity" "KSUS","Hong Kong","HK","","","Non-Hong Kong company","English","en","Non-Hong Kong company","","","2017-11-30","INAC","deletion","2023-09-28","foreign entity" "N3VO","Hong Kong","HK","","","有股本的公眾無限公司","Chinese","zh","You gu ben de gong zhong wu xian gong si","無限公司","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "N3VO","Hong Kong","HK","","","Public unlimited company with a share capital","English","en","Public unlimited company with a share capital","Unltd;Ultd","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "S2E3","Hong Kong","HK","","","擔保有限公司","Chinese","zh","Dan bao you xian gong si","有限公司","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "S2E3","Hong Kong","HK","","","Company limited by guarantee","English","en","Company limited by guarantee","Ltd;Ltd.;Limited","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "UDG6","Hong Kong","HK","","","有股本的私人無限公司","Chinese","zh","You gu ben de si ren wu xian gong si","無限公司","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "UDG6","Hong Kong","HK","","","Private unlimited company with a share capital","English","en","Private unlimited company with a share capital","Unltd;Ultd","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XPE5","Hong Kong","HK","","","有限責任合夥","Chinese","zh","you xian ze ren he huo","LP;limited partnership;Limited Partnership","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XPE5","Hong Kong","HK","","","Limited partnership","English","en","Limited partnership","LP;limited partnership;Limited Partnership","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "2A44","Hungary","HU","","","Egyéni cég","Hungarian","hu","Egyéni cég","","","2021-09-23","ACTV","","","" "2LB5","Hungary","HU","","","Munkavállalói Résztulajdonosi Program szervezet","Hungarian","hu","Munkavállalói Résztulajdonosi Program szervezet","","","2021-09-23","ACTV","","","" "4C5L","Hungary","HU","","","Ügyvédi Iroda","Hungarian","hu","Ügyvédi Iroda","","","2021-09-23","ACTV","","","" "4QRE","Hungary","HU","","","Önkormányzat","Hungarian","hu","Önkormányzat","","","2021-09-23","ACTV","","","" "4WV7","Hungary","HU","","","Egyéb köztestület","Hungarian","hu","Egyéb köztestület","","","2017-11-30","ACTV","","","" "876R","Hungary","HU","","","Egyéb egyesület","Hungarian","hu","Egyéb egyesület","","","2017-11-30","ACTV","","","" "8UEG","Hungary","HU","","","Nyilvánosan működő részvénytársaság","Hungarian","hu","Nyilvánosan működő részvénytársaság","Nyrt.","","2017-11-30","ACTV","typo corrected","2021-09-23","typo corrected" "8UMK","Hungary","HU","","","Európai gazdasági egyesülés","Hungarian","hu","Európai gazdasági egyesülés","EGE","","2021-09-23","ACTV","","","" "8VH3","Hungary","HU","","","Befektetési alap","Hungarian","hu","Befektetési alap","","","2017-11-30","ACTV","","","" "995K","Hungary","HU","","","Magánnyugdíjpénztár","Hungarian","hu","Magánnyugdíjpénztár","","","2017-11-30","ACTV","","","" "BJ8Q","Hungary","HU","","","Egyéni vállalkozás","Hungarian","hu","Egyéni vállalkozás","","","2021-09-23","ACTV","","","" "BKUX","Hungary","HU","","","Zártkörűen működő részvénytársaság","Hungarian","hu","Zártkörűen működő részvénytársaság","Zrt.","","2017-11-30","ACTV","typo corrected","2021-09-23","typo corrected" "BMYJ","Hungary","HU","","","Egyéb alapítvány","Hungarian","hu","Egyéb alapítvány","","","2017-11-30","ACTV","","","" "BSK1","Hungary","HU","","","Oktatási intézmények","Hungarian","hu","Oktatási intézmények","","","2021-09-23","ACTV","","","" "DN6F","Hungary","HU","","","Kölcsönös biztosító egyesület","Hungarian","hu","Kölcsönös biztosító egyesület","","","2017-11-30","ACTV","","","" "DPY1","Hungary","HU","","","Egyéb szövetkezet","Hungarian","hu","Egyéb szövetkezet","","","2017-11-30","ACTV","","","" "EO9F","Hungary","HU","","","Részvénytársaság","Hungarian","hu","Részvénytársaság","Rt.","","2017-11-30","ACTV","","","" "ESTU","Hungary","HU","","","Társasház","Hungarian","hu","Társasház","","","2021-09-23","ACTV","","","" "HTJD","Hungary","HU","","","Közhasznú társaság","Hungarian","hu","Közhasznú társaság","Kht.","","2017-11-30","ACTV","","","" "J6MO","Hungary","HU","","","Közkereseti társaság","Hungarian","hu","Közkereseti társaság","Kkt.","","2017-11-30","ACTV","","","" "LNY0","Hungary","HU","","","Egyházi szervezetek","Hungarian","hu","Egyházi szervezetek","","","2021-09-23","ACTV","","","" "M1DW","Hungary","HU","","","Önkéntes kölcsönös biztosítópénztár","Hungarian","hu","Önkéntes kölcsönös biztosítópénztár","","","2017-11-30","ACTV","","","" "NZAI","Hungary","HU","","","Külföldi székhelyű vállalkozás kereskedelmi képviselete","Hungarian","hu","Külföldi székhelyű vállalkozás kereskedelmi képviselete","","","2017-11-30","INAC","deletion","2023-09-28","not a Hungarian legal form" "OII5","Hungary","HU","","","Egyéni ügyvéd","Hungarian","hu","Egyéni ügyvéd","","","2021-09-23","ACTV","","","" "P9F2","Hungary","HU","","","Korlátolt felelősségű társaság","Hungarian","hu","Korlátolt felelősségű társaság","Kft.","","2017-11-30","ACTV","","","" "QYV5","Hungary","HU","","","Költségvetési szerv","Hungarian","hu","Költségvetési szerv","","","2021-09-23","ACTV","","","" "S3DA","Hungary","HU","","","Betéti társaság","Hungarian","hu","Betéti társaság","Bt.","","2017-11-30","ACTV","","","" "TQ3O","Hungary","HU","","","Egyéb, máshova nem sorolt jogi személyiségű vállalkozás","Hungarian","hu","Egyéb, máshova nem sorolt jogi személyiségű vállalkozás","","","2017-11-30","INAC","deletion","2023-09-28","not a real separate legal form" "TSVO","Hungary","HU","","","Szövetség (kivéve sportszövetség)","Hungarian","hu","Szövetség (kivéve sportszövetség)","kbe","","2017-11-30","ACTV","","","" "UD8K","Hungary","HU","","","Külföldi székhelyű vállalkozás fióktelepe","Hungarian","hu","Külföldi székhelyű vállalkozás fióktelepe","","","2017-11-30","INAC","deletion","2023-09-28","not a Hungarian legal form" "V3LT","Hungary","HU","","","Erdőbirtokossági Társulat","Hungarian","hu","Erdőbirtokossági Társulat","","","2021-09-23","ACTV","","","" "X0SX","Hungary","HU","","","Takarék- és hitelszövetkezet","Hungarian","hu","Takarék- és hitelszövetkezet","tksz,;hsz.","","2017-11-30","ACTV","","","" "XW5U","Hungary","HU","","","Európai részvénytársaság","Hungarian","hu","Európai részvénytársaság","SE","","2017-11-30","ACTV","typo corrected","2021-09-23","typo corrected" "Y64R","Hungary","HU","","","Országos betétbiztosítási alap","Hungarian","hu","Országos betétbiztosítási alap","OBA","","2017-11-30","ACTV","","","" "ZQAQ","Hungary","HU","","","Közjegyzői iroda","Hungarian","hu","Közjegyzői iroda","","","2021-09-23","ACTV","","","" "2OJP","Iceland","IS","","","Samlagshlutafélag","Icelandic","is","Samlagshlutafélag","slhf.","","2017-11-30","ACTV","","","" "8T79","Iceland","IS","","","Samlagsfélag","Icelandic","is","Samlagsfélag","slf.","","2017-11-30","ACTV","","","" "CMHQ","Iceland","IS","","","Evrópufélag","Icelandic","is","Evrópufélag","SE","","2017-11-30","ACTV","","","" "E4KB","Iceland","IS","","","Hlutafélag","Icelandic","is","Hlutafélag","hf.","","2017-11-30","ACTV","","","" "M8SS","Iceland","IS","","","Einkahlutafélag","Icelandic","is","Einkahlutafélag","ehf.","","2017-11-30","ACTV","","","" "180P","India","IN","","","Stand Alone Primary Dealer","English","en","Stand Alone Primary Dealer","","","2019-07-05","ACTV","","","" "2DVA","India","IN","","","Cooperative Society","English","en","Cooperative Society","","","2019-07-05","ACTV","","","" "2Y95","India","IN","","","Special Purpose Vehicle - Company","English","en","Special Purpose Vehicle - Company","","","2019-07-05","ACTV","","","" "36YD","India","IN","","","Unlimited Company","English","en","Unlimited Company","","","2019-07-05","ACTV","","","" "3VSP","India","IN","","","Public Financial Institutions","English","en","Public Financial Institutions","","","2019-07-05","ACTV","","","" "4QIE","India","IN","","","Sole Proprietorship","English","en","Sole Proprietorship","","","2019-07-05","ACTV","","","" "70GJ","India","IN","","","Government Organization","English","en","Government Organization","","","2019-07-05","ACTV","","","" "8ZLF","India","IN","","","Special Purpose Vehicle - Trust","English","en","Special Purpose Vehicle - Trust","","","2019-07-05","ACTV","","","" "9ME5","India","IN","","","Non profit company","English","en","Non profit company","","","2019-07-05","ACTV","","","" "A0PS","India","IN","","","Partnership Firm","English","en","Partnership Firm","","","2019-07-05","ACTV","","","" "DDKQ","India","IN","","","Public Limited Company","English","en","Public Limited Company","Ltd;Ltd.;LTD","","2019-07-05","ACTV","","","" "DW2W","India","IN","","","Company Limited by Guarantee","English","en","Company Limited by Guarantee","","","2019-07-05","ACTV","","","" "EX8U","India","IN","","","Alternative Investment Fund","English","en","Alternative Investment Fund","","","2019-07-05","ACTV","","","" "FC7L","India","IN","","","Housing Finance Company","English","en","Housing Finance Company","","","2019-07-05","ACTV","","","" "FPZK","India","IN","","","Banking Company - Scheduled Urban Cooperative Bank","English","en","Banking Company - Scheduled Urban Cooperative Bank","","","2019-07-05","ACTV","","","" "HBQK","India","IN","","","Alternate Investment Fund - Sub scheme","English","en","Alternate Investment Fund - Sub scheme","","","2019-07-05","ACTV","text corrected","2020-06-10","name of legal form written in full" "I47Z","India","IN","","","One Person Company","English","en","One Person Company","","","2019-07-05","ACTV","","","" "JKJX","India","IN","","","Provident fund / Superannuation fund / Gratuity fund / Insurance Fund","English","en","Provident fund / Superannuation fund / Gratuity fund / Insurance Fund","","","2020-06-10","ACTV","","","" "K361","India","IN","","","Special Purpose Vehicle-Coop / Multistate Coop Society","English","en","Special Purpose Vehicle-Coop / Multistate Coop Society","","","2019-07-05","ACTV","","","" "K4OX","India","IN","","","Special Purpose Vehicle - Partnership Firm","English","en","Special Purpose Vehicle - Partnership Firm","","","2019-07-05","ACTV","","","" "KJ0B","India","IN","","","Insurance Company","English","en","Insurance Company","","","2019-07-05","ACTV","","","" "NBCI","India","IN","","","Banking Company - Others","English","en","Banking Company - Others","","","2019-07-05","ACTV","","","" "NFPC","India","IN","","","Non-Banking Finance Company","English","en","Non-Banking Finance Company","","","2019-07-05","ACTV","","","" "OYDA","India","IN","","","Pension Fund","English","en","Pension Fund","","","2020-06-10","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "QCSO","India","IN","","","Multistate Cooperative Society","English","en","Multistate Cooperative Society","","","2019-07-05","ACTV","","","" "U5S6","India","IN","","","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP","","2019-07-05","ACTV","","","" "U8NM","India","IN","","","Mutual Fund","English","en","Mutual Fund","","","2019-07-05","ACTV","","","" "VX5J","India","IN","","","Mutual Fund-Sub Scheme","English","en","Mutual Fund-Sub Scheme","","","2019-07-05","ACTV","","","" "W0G7","India","IN","","","Pension Fund Sub Scheme","English","en","Pension Fund Sub Scheme","","","2020-06-10","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "W9FI","India","IN","","","Trust","English","en","Trust","","","2019-07-05","ACTV","","","" "X4IT","India","IN","","","Government Company","English","en","Government Company","","","2019-07-05","ACTV","","","" "XTZG","India","IN","","","Banking Company - Nationalised Bank","English","en","Banking Company - Nationalised Bank","","","2019-07-05","ACTV","","","" "YSP9","India","IN","","","Private Limited Company","English","en","Private Limited Company","Pvt Ltd;Pvt. Ltd.;PVT LTD","","2019-07-05","ACTV","","","" "2ZB3","Indonesia","ID","","","Perseroan Publik","Indonesian","id","Perseroan Publik","","","2023-09-28","ACTV","","","" "72I6","Indonesia","ID","","","Koperasi","Indonesian","id","Koperasi","","","2021-09-23","ACTV","","","" "AEZW","Indonesia","ID","","","Perseroan Terbuka","Indonesian","id","Perseroan Terbuka","Tbk","Tbk","2023-09-28","ACTV","","","" "B8VT","Indonesia","ID","","","Commanditaire Vennootschap","Indonesian","id","Commanditaire Vennootschap","CV","","2021-09-23","ACTV","","","" "BJT3","Indonesia","ID","","","Firma","Indonesian","id","Firma","Fa","","2021-09-23","ACTV","","","" "BUSK","Indonesia","ID","","","Perusahaan Umum","Indonesian","id","Perusahaan Umum","Perum","Perum","2023-09-28","ACTV","","","" "F77L","Indonesia","ID","","","Perusahaan Perseroan","Indonesian","id","Perusahaan Perseroan","Persero","Persero","2023-09-28","ACTV","","","" "HELT","Indonesia","ID","","","Yayasan","Indonesian","id","Yayasan","","","2021-09-23","ACTV","","","" "JAJS","Indonesia","ID","","","Perseroan Terbatas Penanaman Modal Asing","Indonesian","id","Perseroan Terbatas Penanaman Modal Asing","PT PMA","","2021-09-23","ACTV","","","" "UD1V","Indonesia","ID","","","Perseroan Terbatas Penanaman Modal Dalam Negeri","Indonesian","id","Perseroan Terbatas Penanaman Modal Dalam Negeri","PT;PT PMDN","","2021-09-23","ACTV","updated transliterated name","2023-09-28","updated the transliterated name" "V05A","Indonesia","ID","","","Persekutuan Perdata","Indonesian","id","Persekutuan Perdata","","","2021-09-23","ACTV","","","" "XFHP","Indonesia","ID","","","Usaha Dagang","Indonesian","id","Usaha Dagang","","","2021-09-23","ACTV","","","" "2GV9","Ireland","IE","","","Irish Collective Asset-management Vehicle","English","en","Irish Collective Asset-management Vehicle","ICAV","","2017-11-30","ACTV","","","" "363J","Ireland","IE","","","European Economic Interest Grouping","English","en","European Economic Interest Grouping","EEIG","","2017-11-30","ACTV","","","" "363J","Ireland","IE","","","Grupail Eorpach um Leas Eacnamaioch","Irish","ga","Grupail Eorpach um Leas Eacnamaioch","GELE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "54SK","Ireland","IE","","","Friendly Society","English","en","Friendly Society","","","2017-11-30","ACTV","","","" "5AX8","Ireland","IE","","","Designated Activity Company Limited by Guarantee","English","en","Designated Activity Company Limited by Guarantee","DAC – (limited by guarantee)","","2017-11-30","ACTV","correction of name of legal form","2019-07-05","name of legal form in Irish deleted; name of legal form in English also changed; see other entry of this same ELF code" "5AX8","Ireland","IE","","","Cuideachta Ghníomhaíochta Ainmnithe","Irish","ga","Cuideachta Ghníomhaíochta Ainmnithe","cga","","2017-11-30","ACTV","","","" "9BPE","Ireland","IE","","","Credit Union","English","en","Credit Union","","","2017-11-30","ACTV","","","" "C58S","Ireland","IE","","","Company Limited by Guarantee","English","en","Company Limited by Guarantee","CLG","","2017-11-30","ACTV","","","" "C58S","Ireland","IE","","","Cuideachta faoi Theorainn Ráthaíochta","Irish","ga","Cuideachta faoi Theorainn Ráthaíochta","ctr","","2017-11-30","ACTV","","","" "DWS3","Ireland","IE","","","General Partnership","English","en","General Partnership","","","2017-11-30","ACTV","","","" "FF1D","Ireland","IE","","","Public Unlimited Company that has no share capital","English","en","Public Unlimited Company that has no share capital","PULC / uc","","2017-11-30","ACTV","","","" "FF1D","Ireland","IE","","","Cuideachta Neamhtheoranta","Irish","ga","Cuideachta Neamhtheoranta","cn","","2017-11-30","ACTV","","","" "HNJK","Ireland","IE","","","Limited Partnership","English","en","Limited Partnership","","","2017-11-30","ACTV","","","" "JXDX","Ireland","IE","","","Societas Europaea","English","en","Societas Europaea","SE","","2017-11-30","ACTV","","","" "KMFX","Ireland","IE","","","Private Unlimited Company","English","en","Private Unlimited Company","ULC / uc","","2017-11-30","ACTV","","","" "KMFX","Ireland","IE","","","Cuideachta Neamhtheoranta","Irish","ga","Cuideachta Neamhtheoranta","cn","","2017-11-30","ACTV","","","" "LGWG","Ireland","IE","","","Designated Activity Company","English","en","Designated Activity Company","DAC – (limited by shares)","","2017-11-30","ACTV","correction of name of legal form","2019-07-05","name of legal form in Irish deleted; name of legal form in English unchanged" "LGWG","Ireland","IE","","","Cuideachta Ghníomhaíochta Ainmnithe","Irish","ga","Cuideachta Ghníomhaíochta Ainmnithe","cga","","2017-11-30","ACTV","","","" "LMIM","Ireland","IE","","","Limited company","English","en","Limited company","Ltd;Ltd.;Limited","","2017-11-30","INAC","generic term removed","2019-07-05","this is a generic term for 3 legal forms which need to be specified: MNQ7, VYAX and C58S" "LMIM","Ireland","IE","","","Teoranta","Irish","ga","Teoranta","teo","","2017-11-30","INAC","generic term removed","2019-07-05","this is a generic term for 3 legal forms which need to be specified: MNQ7, VYAX and C58S" "LZIC","Ireland","IE","","","Investment Limited Partnership","English","en","Investment Limited Partnership","ilp","","2017-11-30","ACTV","","","" "LZIC","Ireland","IE","","","comhpháirtíocht theoranta infheistíochta","Irish","ga","comhpháirtíocht theoranta infheistíochta","cti","","2017-11-30","ACTV","","","" "MNQ7","Ireland","IE","","","Private Company Limited by Shares","English","en","Private Company Limited by Shares","Ltd;Ltd.;Limited","","2017-11-30","ACTV","correction of name of legal form","2019-07-05","name of legal form changed: abbreviation deleted from legal name" "MNQ7","Ireland","IE","","","Teoranta","Irish","ga","Teoranta","teo","","2017-11-30","ACTV","","","" "URQH","Ireland","IE","","","Public Unlimited Company","English","en","Public Unlimited Company","PUC / uc","","2017-11-30","ACTV","","","" "URQH","Ireland","IE","","","Cuideachta Neamhtheoranta","Irish","ga","Cuideachta Neamhtheoranta","cn","","2017-11-30","ACTV","","","" "VYAX","Ireland","IE","","","Public Limited Company","English","en","Public Limited Company","PLC","","2017-11-30","ACTV","","","" "VYAX","Ireland","IE","","","Cuideachta Phoiblí Theoranta","Irish","ga","Cuideachta Phoiblí Theoranta","cpt","","2017-11-30","ACTV","","","" "ZJS8","Ireland","IE","","","Industrial and Provident Society","English","en","Industrial and Provident Society","I&PS","","2017-11-30","ACTV","","","" "1G26","Isle of Man","IM","","","Public Limited by Guarantee and not having a Share Capital (1931 Act)","English","en","Public Limited by Guarantee and not having a Share Capital (1931 Act)","","","2017-11-30","ACTV","","","" "5ABK","Isle of Man","IM","","","Unlimited with Shares (2006 Act)","English","en","Unlimited with Shares (2006 Act)","","","2017-11-30","ACTV","","","" "CDXK","Isle of Man","IM","","","Limited Liability Company","English","en","Limited Liability Company","","","2017-11-30","ACTV","","","" "EMLA","Isle of Man","IM","","","Limited Partnership - without Legal Personality","English","en","Limited Partnership - without Legal Personality","","","2017-11-30","ACTV","","","" "FI4M","Isle of Man","IM","","","Industrial and Building Society","English","en","Industrial and Building Society","","","2017-11-30","ACTV","","","" "FMPL","Isle of Man","IM","","","Private Limited by Guarantee and not having a Share Capital (1931 Act)","English","en","Private Limited by Guarantee and not having a Share Capital (1931 Act)","","","2017-11-30","ACTV","","","" "G4V6","Isle of Man","IM","","","Public Unlimited and having a Share Capital (1931 Act)","English","en","Public Unlimited and having a Share Capital (1931 Act)","","","2017-11-30","ACTV","","","" "JHC4","Isle of Man","IM","","","Foundation","English","en","Foundation","","","2017-11-30","ACTV","","","" "M44Y","Isle of Man","IM","","","Limited by Shares and by Guarantee (2006 Act)","English","en","Limited by Shares and by Guarantee (2006 Act)","","","2017-11-30","ACTV","","","" "OESH","Isle of Man","IM","","","Public Limited by Guarantee and having a Share Capital (1931 Act)","English","en","Public Limited by Guarantee and having a Share Capital (1931 Act)","","","2017-11-30","ACTV","","","" "QZTT","Isle of Man","IM","","","Private Limited by shares (1931 Act)","English","en","Private Limited by shares (1931 Act)","","","2017-11-30","ACTV","","","" "SAI8","Isle of Man","IM","","","Private Unlimited and having a Share Capital (1931 Act)","English","en","Private Unlimited and having a Share Capital (1931 Act)","","","2017-11-30","ACTV","","","" "SP9F","Isle of Man","IM","","","Limited by Guarantee (2006 Act)","English","en","Limited by Guarantee (2006 Act)","","","2017-11-30","ACTV","","","" "TE79","Isle of Man","IM","","","Limited Partnership - with Legal Personality","English","en","Limited Partnership - with Legal Personality","","","2017-11-30","ACTV","","","" "TQ3Z","Isle of Man","IM","","","Limited by Shares (2006 Act)","English","en","Limited by Shares (2006 Act)","","","2017-11-30","ACTV","","","" "TV5P","Isle of Man","IM","","","Unlimited without Shares (2006 Act)","English","en","Unlimited without Shares (2006 Act)","","","2017-11-30","ACTV","","","" "VC3E","Isle of Man","IM","","","Private Limited by Guarantee and having a Share Capital (1931 Act)","English","en","Private Limited by Guarantee and having a Share Capital (1931 Act)","","","2017-11-30","ACTV","","","" "ZGPY","Isle of Man","IM","","","Public Limited by Shares (1931 Act)","English","en","Public Limited by Shares (1931 Act)","","","2017-11-30","ACTV","","","" "135L","Italy","IT","","","Società Costituita In Base A Leggi Di Altro Stato","Italian","it","Societa' Costituita In Base A Leggi Di Altro Stato","","","2017-11-30","INAC","deletion","2023-09-28","not an Italian legal form" "1RI9","Italy","IT","","","Ente Ecclesiastico Civilmente Riconosciuto","Italian","it","Ente Ecclesiastico Civilmente Riconosciuto","","","2019-07-05","ACTV","","","" "1TON","Italy","IT","","","Associazione","Italian","it","Associazione","","","2019-07-05","ACTV","","","" "2HC6","Italy","IT","","","pubblica amministrazione","Italian","it","pubblica amministrazione","","","2023-09-28","ACTV","","","" "2J7Z","Italy","IT","","","Consorzio con attività Esterna","Italian","it","Consorzio con attività Esterna","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "2SZI","Italy","IT","","","Ente Sociale","Italian","it","Ente Sociale","","","2017-11-30","ACTV","","","" "2XXH","Italy","IT","","","Società Semplice","Italian","it","Società Semplice","SS;S.S.","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "5ODO","Italy","IT","","","Ente Diritto Pubblico","Italian","it","Ente Diritto Pubblico","","","2017-11-30","ACTV","","","" "634M","Italy","IT","","","Gruppo Europeo Di Interesse Economico","Italian","it","Gruppo Europeo Di Interesse Economico","GEIE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "70X0","Italy","IT","","","Fondazione Impresa","Italian","it","Fondazione Impresa","","","2017-11-30","ACTV","","","" "75WC","Italy","IT","","","Fondazione","Italian","it","Fondazione","","","2019-07-05","ACTV","","","" "8AXV","Italy","IT","","","Società Consortile Cooperativa a Responsabilità Limitata","Italian","it","Società Consortile Cooperativa a Responsabilità Limitata","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "8GU1","Italy","IT","","","Società A Responsabilità Limitata Semplificata","Italian","it","Società A Responsabilità Limitata Semplificata","S.R.L.S.;S.R.L. semplificata","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "9KGS","Italy","IT","","","Società Cooperativa Europea","Italian","it","Società Cooperativa Europea","SCE","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "ADAZ","Italy","IT","","","Istituto Religioso","Italian","it","Istituto Religioso","","","2019-07-05","ACTV","","","" "ARJF","Italy","IT","","","Ente Morale","Italian","it","Ente Morale","","","2019-07-05","ACTV","","","" "B5TO","Italy","IT","","","Società a Responsabilità Limitata con Unico Socio","Italian","it","Società a Responsabilità Limitata con Unico Socio","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "BL52","Italy","IT","","","Società Consortile A Responsabilità Limitata","Italian","it","Società Consortile A Responsabilità Limitata","S.C.A.R.L.;S.C.R.L.","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "C1IC","Italy","IT","","","Società Cooperativa Consortile","Italian","it","Società Cooperativa Consortile","gruppo consortile;societa' cooperativa;società cooperativa","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "CGSO","Italy","IT","","","Società in Accomandita Semplice","Italian","it","Società in Accomandita Semplice","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "CTNS","Italy","IT","","","Società Cooperativa a Responsabilità Limitata","Italian","it","Società Cooperativa a Responsabilità Limitata","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "DCRK","Italy","IT","","","Consorzio Fidi","Italian","it","Consorzio Fidi","","","2017-11-30","ACTV","","","" "DLS4","Italy","IT","","","Società in Accomandita per Azioni","Italian","it","Società in Accomandita per Azioni","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "DSSD","Italy","IT","","","Azienda Autonoma Statale","Italian","it","Azienda Autonoma Statale","","","2017-11-30","ACTV","","","" "H7D4","Italy","IT","","","Soggetto Estero","Italian","it","Soggetto Estero","","","2019-07-05","INAC","deletion","2023-09-28","not an Italian legal form" "HN75","Italy","IT","","","Consorzio","Italian","it","Consorzio","societa' cooperativa;società cooperativa","","2017-11-30","ACTV","abbreviations added","2019-07-05","abbreviations added" "IMHA","Italy","IT","","","Ente Ecclesiastico","Italian","it","Ente Ecclesiastico","","","2019-07-05","ACTV","","","" "K021","Italy","IT","","","Contratto Di Rete Dotato Di Soggettivita' Giuridica","Italian","it","Contratto Di Rete Dotato Di Soggettivita' Giuridica","","","2017-11-30","ACTV","","","" "K26L","Italy","IT","","","Ente","Italian","it","Ente","","","2019-07-05","ACTV","","","" "KCHO","Italy","IT","","","Azienda Speciale Di Cui Al Dlgs 267/2000","Italian","it","Azienda Speciale Di Cui Al Dlgs 267/2000","","","2017-11-30","ACTV","","","" "KCSG","Italy","IT","","","Ente Impresa","Italian","it","Ente Impresa","consorzio","","2017-11-30","ACTV","abbreviations added","2019-07-05","abbreviations added" "KXZT","Italy","IT","","","Azienda Speciale","Italian","it","Azienda Speciale","","","2019-07-05","ACTV","","","" "L1ZJ","Italy","IT","","","Azienda Municipale","Italian","it","Azienda Municipale","","","2019-07-05","ACTV","","","" "LHBB","Italy","IT","","","Impresa Individuale","Italian","it","Impresa Individuale","","","2017-11-30","ACTV","","","" "LZZD","Italy","IT","","","Società Consortile Per Azioni","Italian","it","Società Consortile Per Azioni","","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "NDEW","Italy","IT","","","Società Consortile Cooperativa","Italian","it","Società Consortile Cooperativa","","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "OQ8C","Italy","IT","","","Fondo Pensione","Italian","it","Fondo Pensione","","","2020-06-10","ACTV","","","" "OV32","Italy","IT","","","Società A Responsabilità Limitata","Italian","it","Società A Responsabilità Limitata","SRL;S.R.L.","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "P418","Italy","IT","","","Società Per Azioni","Italian","it","Società Per Azioni","SPA;S.P.A.","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "PHMS","Italy","IT","","","Cooperativa Sociale","Italian","it","Cooperativa Sociale","","","2019-07-05","ACTV","","","" "QRZJ","Italy","IT","","","Società Cooperativa","Italian","it","Società Cooperativa","S.C.;soc. coop.","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "RWZD","Italy","IT","","","Altre Forme","Italian","it","Altre Forme","","","2019-07-05","INAC","deletion","2023-09-28","not a real separate legal form" "SBQN","Italy","IT","","","Consorzio senza Attività Esterna","Italian","it","Consorzio senza Attività Esterna","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "SSP9","Italy","IT","","","Azienda Speciale Rea","Italian","it","Azienda Speciale Rea","","","2019-07-05","ACTV","","","" "T2X1","Italy","IT","","","Società In Nome Collettivo","Italian","it","Società In Nome Collettivo","SNC;S.N.C.","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "VA1V","Italy","IT","","","Società Di Mutuo Soccorso","Italian","it","Società Di Mutuo Soccorso","","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "VDRB","Italy","IT","","","Consorzio Municipale","Italian","it","Consorzio Municipale","","","2017-11-30","ACTV","","","" "VUPE","Italy","IT","","","Società Europea","Italian","it","Società Europea","SE","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "W2PE","Italy","IT","","","Società non prevista dalla Legislazione Italiana","Italian","it","Società non prevista dalla Legislazione Italiana","","","2019-07-05","INAC","deletion","2023-09-28","not an Italian legal form" "W9SC","Italy","IT","","","Mutua Assicurazione","Italian","it","Mutua Assicurazione","","","2017-11-30","ACTV","","","" "WPED","Italy","IT","","","Associazione Impresa","Italian","it","Associazione Impresa","","","2019-07-05","ACTV","","","" "WRU2","Italy","IT","","","Società Consortile in Accomandita Semplice","Italian","it","Società Consortile in Accomandita Semplice","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "X32V","Italy","IT","","","Società per Azioni con Socio Unico","Italian","it","Società per Azioni con Socio Unico","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "X62Z","Italy","IT","","","Consorzio Di Cui Alla Dlgs 267/2000","Italian","it","Consorzio Di Cui Alla Dlgs 267/2000","","","2017-11-30","ACTV","","","" "ZG6S","Italy","IT","","","Ente Pubblico Economico","Italian","it","Ente Pubblico Economico","","","2017-11-30","ACTV","","","" "ZU9S","Italy","IT","","","Piccola Società Cooperativa a Responsabilità Limitata","Italian","it","Piccola Società Cooperativa a Responsabilità Limitata","","","2019-07-05","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "ZZOG","Italy","IT","","","Società Tra Professionisti","Italian","it","Società Tra Professionisti","","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "7ZU4","Jamaica","JM","","","collective investment scheme company","English","en","collective investment scheme company","","","2021-09-23","ACTV","","","" "EBRQ","Jamaica","JM","","","unlimited company","English","en","unlimited company","","","2021-09-23","ACTV","","","" "HCBE","Jamaica","JM","","","company limited by shares","English","en","company limited by shares","","","2021-09-23","ACTV","","","" "N97C","Jamaica","JM","","","company limited by guarantee","English","en","company limited by guarantee","","","2021-09-23","ACTV","","","" "PFY0","Jamaica","JM","","","partnership","English","en","partnership","","","2021-09-23","ACTV","","","" "TLCB","Jamaica","JM","","","non profit company","English","en","non profit company","","","2021-09-23","ACTV","","","" "WVQN","Jamaica","JM","","","sole trader","English","en","sole trader","","","2021-09-23","ACTV","","","" "2NRQ","Japan","JP","","","地方公共団体","Japanese","ja","chihokokyoudantai","","","2020-06-10","ACTV","","","" "5MVV","Japan","JP","","","合資会社","Japanese","ja","gousigaisya","資","","2020-06-10","ACTV","","","" "7QQ0","Japan","JP","","","合同会社","Japanese","ja","goudougaisya","合","","2020-06-10","ACTV","","","" "DYQK","Japan","JP","","","有限会社","Japanese","ja","yugengaisya","有","","2020-06-10","ACTV","","","" "IUVI","Japan","JP","","","合名会社","Japanese","ja","goumeigaisya","名","","2020-06-10","ACTV","","","" "MXMH","Japan","JP","","","外国会社等","Japanese","ja","gaikokugaisyatou","外","","2020-06-10","ACTV","","","" "N3JU","Japan","JP","","","その他の設立登記法人","Japanese","ja","sonotaseturitutoukihouzin","","","2020-06-10","ACTV","","","" "R4LR","Japan","JP","","","国の機関","Japanese","ja","kuninokikan","","","2020-06-10","ACTV","","","" "T417","Japan","JP","","","株式会社","Japanese","ja","kabusikigaisya","株","","2020-06-10","ACTV","","","" "VQLD","Japan","JP","","","その他","Japanese","ja","sonota","そ","","2020-06-10","ACTV","","","" "21F4","Jersey","JE","","","Separate Limited Partnerships","English","en","Separate Limited Partnerships","S.L.P.;SLP;Separate Limited Partnership;separate limited partnership;Separate Limited Partnerships;separate limited partnerships","","2017-11-30","ACTV","","","" "33IP","Jersey","JE","","","Incorporated Limited Partnerships","English","en","Incorporated Limited Partnerships","I.L.P.;ILP;Inc.;L. P.;Inc;LP.;Incorporated Limited Partnerships;incorporated limited partnership","","2017-11-30","ACTV","","","" "40A7","Jersey","JE","","","Foundation","English","en","Foundation","","","2017-11-30","ACTV","","","" "7RZH","Jersey","JE","","","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP;L.L.P.;limited liability partnership;Limited Liability Partnership","","2017-11-30","ACTV","","","" "JOX1","Jersey","JE","","","Public Limited Company","English","en","Public Limited Company","LTD;PLC;Limited","","2017-11-30","ACTV","","","" "LO9A","Jersey","JE","","","Private Limited by Guarantee","English","en","Private Limited by Guarantee","Ltd;Ltd.;Limited","","2017-11-30","ACTV","","","" "SQXV","Jersey","JE","","","Private Limited Company","English","en","Private Limited Company","LTD;A.R.L;Limited","","2017-11-30","ACTV","","","" "UBWU","Jersey","JE","","","Limited Partnership","English","en","Limited Partnership","L.P.;LP;limited partnership;Limited Partnership","","2017-11-30","ACTV","","","" "2R82","Jordan","JO","","","شركة رأس المال المغامر","Arabic","ar","sharikat raas almal almughamir","","","2020-11-19","ACTV","","","" "6B39","Jordan","JO","","","الشركة ذات المسؤولية المحدودة","Arabic","ar","alsharika zat almasuwliat almahduda","ذ.م.م","","2020-11-19","ACTV","","","" "6KSC","Jordan","JO","","","شركة التوصية البسيطة","Arabic","ar","sharikat altawsia albasita","توصية بسيطة","","2020-11-19","ACTV","","","" "9NBN","Jordan","JO","","","شركة التضامن","Arabic","ar","sharikat altadamun","","","2020-11-19","ACTV","","","" "BL60","Jordan","JO","","","الشركة المساهمة العامة","Arabic","ar","alsharika almusahama aleama","ش.م.ع","","2020-11-19","ACTV","","","" "FZAC","Jordan","JO","","","الشركة المساهمة الخاصة","Arabic","ar","alsharika almusahama alkhasa","ش.م.خ","","2020-11-19","ACTV","","","" "IXQK","Jordan","JO","","","شركة التوصية بالأسهم","Arabic","ar","sharikat altawsia bial'ashum","","","2020-11-19","ACTV","","","" "SAST","Jordan","JO","","","الشركة التي لا تهدف لتحقيق الربح","Arabic","ar","alsharika alty la tahdof litahqiq alribh","لا تهدف لتحقيق الربح","","2020-11-19","ACTV","","","" "12KO","Korea (Republic of)","KR","","","회사형 펀드","Korean","kr","HoeSaHyeong fund","","","2020-06-10","ACTV","change of country name","2021-09-23","correction of country name to align with name in ISO 3166 standard in English" "5RCH","Korea (Republic of)","KR","","","주식회사","Korean","kr","JuSikHoeSa","㈜","(Ju)","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "AHJG","Korea (Republic of)","KR","","","조합형 펀드","Korean","kr","JoHabHyeong fund","","","2020-06-10","ACTV","change of country name","2021-09-23","correction of country name to align with name in ISO 3166 standard in English" "AKF5","Korea (Republic of)","KR","","","재단법인","Korean","kr","JaeDanBeobIn","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "AXEQ","Korea (Republic of)","KR","","","합명회사","Korean","kr","HabMyeongHoeSa","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "BW92","Korea (Republic of)","KR","","","합자회사","Korean","kr","HabJaHoeSa","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "EO0G","Korea (Republic of)","KR","","","변액보험","Korean","kr","ByeonAcBoHeom","","","2021-09-23","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "GF7G","Korea (Republic of)","KR","","","개인사업자","Korean","kr","GaeInSaEopJa","","","2021-09-23","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "J3U5","Korea (Republic of)","KR","","","유한회사","Korean","kr","YuHanHoeSa","(유)","(Yu)","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "P2B9","Korea (Republic of)","KR","","","일반 법인 재단","Korean","kr","Ilban beobin jaedan","","","2023-09-28","ACTV","","","" "QU16","Korea (Republic of)","KR","","","국가(정부)","Korean","kr","GukGa(JeoungBu)","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "S1IS","Korea (Republic of)","KR","","","일반 법인 협회","Korean","kr","Ilban beobin hyeophoe","","","2023-09-28","ACTV","","","" "UDJG","Korea (Republic of)","KR","","","유한책임회사","Korean","kr","YuHanChaekImHoeSa","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "UGVB","Korea (Republic of)","KR","","","신탁형 펀드","Korean","kr","SinTakHyeong fund","","","2020-06-10","ACTV","change of country name","2021-09-23","correction of country name to align with name in ISO 3166 standard in English" "VTH4","Korea (Republic of)","KR","","","비영리 사단법인","Korean","kr","BiYeongRi SaDanBeobIn","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "W61J","Korea (Republic of)","KR","","","기타 법인","Korean","kr","Gita beobin","","","2023-09-28","ACTV","","","" "WUJC","Korea (Republic of)","KR","","","공공단체","Korean","kr","GongGongDanChe","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3YUD","Kosovo","XK","","","Ndërmarrjet shoqërore nën administrimin e Agjencisë Kosovare të Privatizimit","Albanian","sq","Ndërmarrjet shoqërore nën administrimin e Agjencisë Kosovare të Privatizimit","NSH","","2019-07-05","ACTV","","","" "B56A","Kosovo","XK","","","Zyra e Përfaqësisë së Shoqërisë së Huaj Tregtare në Kosovë","Albanian","sq","Zyra e Përfaqësisë së Shoqërisë së Huaj Tregtare në Kosovë","","","2019-07-05","ACTV","","","" "CRX3","Kosovo","XK","","","Kooperativa Bujqësore","Albanian","sq","Kooperativa Bujqësore","KB","","2019-07-05","ACTV","","","" "D37H","Kosovo","XK","","","Shoqëri me Përgjegjësi të Kufizuar","Albanian","sq","Shoqëri me Përgjegjësi të Kufizuar","SHPK","","2019-07-05","ACTV","","","" "OZDY","Kosovo","XK","","","Dega e Shoqërisë së Huaj Tregtare në Kosovë","Albanian","sq","Dega e Shoqërisë së Huaj Tregtare në Kosovë","Kompani e Huaj","","2019-07-05","ACTV","","","" "Q22D","Kosovo","XK","","","Shoqëri aksionare","Albanian","sq","Shoqëri aksionare","SHA","","2019-07-05","ACTV","","","" "QZEN","Kosovo","XK","","","Biznes Individual","Albanian","sq","Biznes Individual","BI","","2019-07-05","ACTV","","","" "T2X0","Kosovo","XK","","","Ortakëri e Përgjithshme","Albanian","sq","Ortakëri e Përgjithshme","OP","","2019-07-05","ACTV","","","" "W5H8","Kosovo","XK","","","Ndërmarrjet publike sipas ligjit në fuqi për ndërmarrjet publike","Albanian","sq","Ndërmarrjet publike sipas ligjit në fuqi për ndërmarrjet publike","NP","","2019-07-05","ACTV","","","" "W7KV","Kosovo","XK","","","Ortakëri e Kufizuar","Albanian","sq","Ortakëri e Kufizuar","OK","","2019-07-05","ACTV","","","" "3GQ5","Kuwait","KW","","","ملكية فردية ( شركة الشخص الواحد)","Arabic","ar","Milkiat fardia","","","2023-09-28","ACTV","","","" "5OKA","Kuwait","KW","","","شركة المساھمة المقفلة","Arabic","ar","Sharikat almusaھmat almuqfala","","","2023-09-28","ACTV","","","" "7CAL","Kuwait","KW","","","شركة المساهمة العامة","Arabic","ar","Sharikat musahima","","","2023-09-28","ACTV","","","" "8CIC","Kuwait","KW","","","الشركات غیر الھادفة للربح.","Arabic","ar","Alsharikat ghayr alھadifat lilrabhi.","","","2023-09-28","ACTV","","","" "93LG","Kuwait","KW","","","شركة التوصية البسيطة","Arabic","ar","Sharikat altawsiat albasitat lilshiraka","","","2023-09-28","ACTV","","","" "JLNM","Kuwait","KW","","","شركة تضامن","Arabic","ar","Sharikat tadamun","","","2023-09-28","ACTV","","","" "PZCW","Kuwait","KW","","","شركة التوصية بالأسهم","Arabic","ar","Wasiat alshirakat min qibal sharikat al'ashum","","","2023-09-28","ACTV","","","" "QZCG","Kuwait","KW","","","الشركة ذات المسؤولية المحدودة","Arabic","ar","Sharika That Almasuliah Almahduda","ذ.م.م","","2023-09-28","ACTV","","","" "W9RU","Kuwait","KW","","","الشركة المھنیة","Arabic","ar","Alsharikat almuھnay","","","2023-09-28","ACTV","","","" "1IPK","Latvia","LV","","","Komandītsabiedrība","Latvian","lv","Komandītsabiedrība","KS","","2017-11-30","ACTV","","","" "3LCY","Latvia","LV","","","Pilnsabiedrība","Latvian","lv","Pilnsabiedrība","PS","","2017-11-30","ACTV","","","" "5ULL","Latvia","LV","","","Eiropas Ekonomisko interešu grupa","Latvian","lv","Eiropas Ekonomisko interešu grupa","EEIG","","2021-09-23","ACTV","","","" "AZTM","Latvia","LV","","","Eiropas komercsabiedrība","Latvian","lv","Eiropas komercsabiedrība","SE","","2017-11-30","ACTV","","","" "BS22","Latvia","LV","","","Individuālais komersants","Latvian","lv","Individuālais komersants","IK","","2017-11-30","ACTV","","","" "ES2D","Latvia","LV","","","Sabiedrība ar ierobežotu atbildību","Latvian","lv","Sabiedrība ar ierobežotu atbildību","SIA","","2017-11-30","ACTV","","","" "VJBO","Latvia","LV","","","Akciju sabiedrība","Latvian","lv","Akciju sabiedrība","AS","","2017-11-30","ACTV","","","" "CD8F","Lesotho","LS","","","Non-profit Company","English","en","Non-profit Company","","","2020-06-10","ACTV","","","" "K6G7","Lesotho","LS","","","Public Company","English","en","Public Company","","","2020-06-10","ACTV","","","" "S02Y","Lesotho","LS","","","External Company","English","en","External Company","","","2020-06-10","ACTV","","","" "S779","Lesotho","LS","","","Private Company","English","en","Private Company","","","2020-06-10","ACTV","","","" "12MV","Liechtenstein","LI","","","Kommanditaktiengesellschaft","German","de","Kommanditaktiengesellschaft","","","2023-09-28","ACTV","","","" "1DGT","Liechtenstein","LI","","","Treuunternehmen","German","de","Treuunternehmen","Trust reg.","","2017-11-30","ACTV","","","" "1SOY","Liechtenstein","LI","","","Europäische Genossenschaft","German","de","Europäische Genossenschaft","SCE","","2017-11-30","ACTV","","","" "32HC","Liechtenstein","LI","","","Verein","German","de","Verein","e.V.","","2017-11-30","ACTV","","","" "4RPP","Liechtenstein","LI","","","Kollektivgesellschaft mit beschränkter Haftung","German","de","Kollektivgesellschaft mit beschränkter Haftung","","","2023-09-28","ACTV","","","" "53QF","Liechtenstein","LI","","","Treuhänderschaft","German","de","Treuhänderschaft","","","2020-06-10","ACTV","","","" "7RRP","Liechtenstein","LI","","","Aktiengesellschaft","German","de","Aktiengesellschaft","AG","","2017-11-30","ACTV","","","" "ANSR","Liechtenstein","LI","","","Kommanditgesellschaft","German","de","Kommanditgesellschaft","KG","","2017-11-30","ACTV","","","" "BBB8","Liechtenstein","LI","","","Kommanditärengesellschaft","German","de","Kommanditärengesellschaft","","","2023-09-28","ACTV","","","" "BSZ8","Liechtenstein","LI","","","Stiftung","German","de","Stiftung","","","2017-11-30","ACTV","","","" "EV7F","Liechtenstein","LI","","","Einzelfirma","German","de","Einzelfirma","","","2023-09-28","ACTV","","","" "IF49","Liechtenstein","LI","","","Genossenschaft","German","de","Genossenschaft","eG;e.G.;e.Gen.","","2017-11-30","ACTV","","","" "K98U","Liechtenstein","LI","","","Europäische Wirtschaftliche Interessenvereinigung","German","de","Europäische Wirtschaftliche Interessenvereinigung","EWIV","","2017-11-30","ACTV","","","" "NDID","Liechtenstein","LI","","","Kollektivgesellschaft","German","de","Kollektivgesellschaft","","","2017-11-30","ACTV","","","" "PZV3","Liechtenstein","LI","","","Gemeinderschaft","German","de","Gemeinderschaft","","","2023-09-28","ACTV","","","" "TMU1","Liechtenstein","LI","","","Anstalt","German","de","Anstalt","","","2017-11-30","ACTV","","","" "TV8Y","Liechtenstein","LI","","","Kollektivtreuhänderschaft","German","de","Kollektivtreuhänderschaft","","","2020-06-10","ACTV","","","" "W6JC","Liechtenstein","LI","","","Personengesellschaft","German","de","Personengesellschaft","","","2023-09-28","ACTV","","","" "WAK8","Liechtenstein","LI","","","Europäische Gesellschaft","German","de","Europäische Gesellschaft","SE","","2017-11-30","ACTV","","","" "Y8LH","Liechtenstein","LI","","","Gesellschaft mit beschränkter Haftung","German","de","Gesellschaft mit beschränkter Haftung","GmbH;Ges.m.b.H.","","2017-11-30","ACTV","","","" "13T9","Lithuania","LT","","","Europos bendrovės","Lithuanian","lt","Europos bendrovės","EB","","2017-11-30","ACTV","","","" "4ZF3","Lithuania","LT","","","Valstybės įmonės","Lithuanian","lt","Valstybės įmonės","VI","","2017-11-30","ACTV","","","" "5BY2","Lithuania","LT","","","Europos kooperatinės bendrovės","Lithuanian","lt","Europos kooperatinės bendrovės","EKB","","2017-11-30","ACTV","","","" "5CIE","Lithuania","LT","","","Advokatų profesinės bendrijos","Lithuanian","lt","Advokatų profesinės bendrijos","APB","","2017-11-30","ACTV","","","" "5TA8","Lithuania","LT","","","Šeimynos","Lithuanian","lt","Šeimynos","S","","2017-11-30","ACTV","","","" "6JDN","Lithuania","LT","","","Profesinės sąjungos ir jų susivienijimai","Lithuanian","lt","Profesinės sąjungos ir jų susivienijimai","PS","","2017-11-30","ACTV","","","" "81KA","Lithuania","LT","","","Akcinės bendrovės","Lithuanian","lt","Akcinės bendrovės","AB","","2017-11-30","ACTV","","","" "A2GC","Lithuania","LT","","","Religines bendruomenes, bendrijos ir centrai","Lithuanian","lt","Religines bendruomenes, bendrijos ir centrai","RB","","2017-11-30","ACTV","","","" "A338","Lithuania","LT","","","Individualios įmonės","Lithuanian","lt","Individualios įmonės","II","","2017-11-30","ACTV","","","" "BGPJ","Lithuania","LT","","","Europos ekonominių interesų grupės","Lithuanian","lt","Europos ekonominių interesų grupės","EEIG","","2017-11-30","ACTV","","","" "BPLS","Lithuania","LT","","","Uždarosios akcinės bendrovės","Lithuanian","lt","Uždarosios akcinės bendrovės","UAB","","2017-11-30","ACTV","","","" "DLCX","Lithuania","LT","","","Tikrosios ūkinės bendrijos","Lithuanian","lt","Tikrosios ūkinės bendrijos","TUB","","2017-11-30","ACTV","","","" "E4HU","Lithuania","LT","","","Lietuvos prekybos, pramonės ir amatų rūmų asociacija","Lithuanian","lt","Lietuvos prekybos, pramonės ir amatų rūmų asociacija","LPRA","","2017-11-30","ACTV","","","" "F2TQ","Lithuania","LT","","","Tradicinės religinės bendruomenės ar bendrijos","Lithuanian","lt","Tradicinės religinės bendruomenės ar bendrijos","TR","","2017-11-30","ACTV","","","" "F2ZF","Lithuania","LT","","","Asociacijos","Lithuanian","lt","Asociacijos","A","","2017-11-30","ACTV","","","" "HGMH","Lithuania","LT","","","Labdaros ir paramos fondai","Lithuanian","lt","Labdaros ir paramos fondai","LF","","2017-11-30","ACTV","","","" "HJ1Y","Lithuania","LT","","","Bendrijos","Lithuanian","lt","Bendrijos","BN","","2017-11-30","ACTV","","","" "K4GR","Lithuania","LT","","","Biudžetinės įstaigos","Lithuanian","lt","Biudžetinės įstaigos","BI","","2017-11-30","ACTV","","","" "KWBA","Lithuania","LT","","","Viešosios įstaigos","Lithuanian","lt","Viešosios įstaigos","VS","","2017-11-30","ACTV","","","" "LUGM","Lithuania","LT","","","Kooperatinės bendrovės (kooperatyvai)","Lithuanian","lt","Kooperatinės bendrovės (kooperatyvai)","KO","","2017-11-30","ACTV","","","" "LUOA","Lithuania","LT","","","Komanditinės ūkinės bendrijos","Lithuanian","lt","Komanditinės ūkinės bendrijos","KB","","2017-11-30","ACTV","","","" "NVPY","Lithuania","LT","","","Privačių detektyvų bendrijos","Lithuanian","lt","Privačių detektyvų bendrijos","PDB","","2017-11-30","ACTV","","","" "Q4A3","Lithuania","LT","","","Prekybos, pramonės ir amatų rūmai","Lithuanian","lt","Prekybos, pramonės ir amatų rūmai","PER","","2017-11-30","ACTV","","","" "Q8UI","Lithuania","LT","","","Nuolatinės arbitražo institucijos","Lithuanian","lt","Nuolatinės arbitražo institucijos","NA","","2017-11-30","ACTV","","","" "QG9Y","Lithuania","LT","","","Sodininkų bendrijos","Lithuanian","lt","Sodininkų bendrijos","SD","","2017-11-30","ACTV","","","" "QRXD","Lithuania","LT","","","Europos teritorinio bendradarbiavimo grupės","Lithuanian","lt","Europos teritorinio bendradarbiavimo grupės","ETBG","","2017-11-30","ACTV","","","" "SFK9","Lithuania","LT","","","Bendras valdymo ir pranešimų centras","Lithuanian","lt","Bendras valdymo ir pranešimų centras","CRC","","2017-11-30","ACTV","","","" "SFYA","Lithuania","LT","","","Mažosios bendrijos","Lithuanian","lt","Mažosios bendrijos","MB","","2017-11-30","ACTV","","","" "UHNL","Lithuania","LT","","","Žemės ūkio bendrovės","Lithuanian","lt","Žemės ūkio bendrovės","ZUB","","2017-11-30","ACTV","","","" "WQRG","Lithuania","LT","","","Centrinis bankas","Lithuanian","lt","Centrinis bankas","CB","","2017-11-30","ACTV","","","" "X8J8","Lithuania","LT","","","Politinės partijos","Lithuanian","lt","Politinės partijos","PP","","2017-11-30","ACTV","","","" "YRXK","Lithuania","LT","","","Savivaldybių įmonės","Lithuanian","lt","Savivaldybių įmonės","SI","","2017-11-30","ACTV","","","" "2IGL","Luxembourg","LU","","","Entreprise individuelle","French","fr","Entreprise individuelle","EI","","2017-11-30","ACTV","","","" "2JEI","Luxembourg","LU","","","Association sans but lucratif","French","fr","Association sans but lucratif","ASBL","","2017-11-30","ACTV","","","" "2S2U","Luxembourg","LU","","","Association d'épargne pension","French","fr","Association d'épargne pension","ASSEP","","2017-11-30","ACTV","","","" "5DWL","Luxembourg","LU","","","Association momentanée","French","fr","Association momentanée","AM","","2017-11-30","INAC","deletion","2021-09-23","not a separate legal entity form" "5GGB","Luxembourg","LU","","","Société anonyme","French","fr","Société anonyme","SA ","","2017-11-30","ACTV","","","" "63P9","Luxembourg","LU","","","Société en commandite simple","French","fr","Société en commandite simple","SECS","","2017-11-30","ACTV","","","" "68J6","Luxembourg","LU","","","Association agricole","French","fr","Association agricole","AA","","2017-11-30","ACTV","","","" "7SIZ","Luxembourg","LU","","","Mutuelle","French","fr","Mutuelle","","","2021-09-23","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "81G5","Luxembourg","LU","","","Société en commandite par actions","French","fr","Société en commandite par actions","SECA","","2017-11-30","ACTV","","","" "9C91","Luxembourg","LU","","","Société d’épargne-pension à capital variable","French","fr","Société d’épargne-pension à capital variable","SEPCAV","","2017-11-30","ACTV","","","" "AIR5","Luxembourg","LU","","","Fond commun de placement","French","fr","Fond commun de placement","FCP","","2021-09-23","ACTV","add abbreviation","2023-09-28","addition of abbreviation" "ATQY","Luxembourg","LU","","","Société en nom collectif","French","fr","Société en nom collectif","SENC","","2017-11-30","ACTV","","","" "BEAN","Luxembourg","LU","","","Société d'investissement à capital fixe","French","fr","Société d'investissement à capital fixe","SICAF","","2017-11-30","ACTV","","","" "BKAB","Luxembourg","LU","","","Association d'assurances mutuelles","French","fr","Association d'assurances mutuelles","AAM","","2017-11-30","ACTV","","","" "DVXS","Luxembourg","LU","","","Société à responsabilité limitée","French","fr","Société à responsabilité limitée","SARL ","","2017-11-30","ACTV","","","" "EUT4","Luxembourg","LU","","","Société à responsabilité limitée simplifiée","French","fr","société à responsabilité limitée simplifiée","S.à r.l.-S","","2021-09-23","ACTV","","","" "FG84","Luxembourg","LU","","","Societas Cooperativa Europaea","French","fr","Societas Cooperativa Europaea","SCE","","2019-07-05","ACTV","","","" "HHR4","Luxembourg","LU","","","Société par actions simplifiée","French","fr","Société par actions simplifiée","S.A.S.","","2019-07-05","ACTV","","","" "JIWD","Luxembourg","LU","","","Autres personnes morales dont l'immatriculation est prévue par l'article 1 de la loi modifiée du 19 décembre 2002 concernant le registre de commerce et des sociétés ainsi que la comptabilité et les comptes annuels des entreprises","French","fr","Autres personnes morales dont l'immatriculation est prévue par l'article 1 de la loi modifiée du 19 décembre 2002 concernant le registre de commerce et des sociétés ainsi que la comptabilité et les comptes annuels des entreprises","OTH","","2017-11-30","ACTV","correction of name of legal form","2019-07-05","name of legal form corrected" "LCR0","Luxembourg","LU","","","Groupement d'intérêt économique","French","fr","Groupement d'intérêt économique","GIE","","2017-11-30","ACTV","","","" "SQ1A","Luxembourg","LU","","","Société civile","French","fr","Société civile","SCI","","2017-11-30","ACTV","","","" "STBC","Luxembourg","LU","","","Société coopérative organisée sous forme de société anonyme","French","fr","Société coopérative organisée sous forme de société anonyme","","","2019-07-05","ACTV","","","" "U8KA","Luxembourg","LU","","","Société en commandite spéciale","French","fr","Société en commandite spéciale","SECSP","","2017-11-30","ACTV","","","" "UDY2","Luxembourg","LU","","","Société d'investissement à capital variable","French","fr","Société d'investissement à capital variable","SICAV","","2017-11-30","ACTV","","","" "V19Y","Luxembourg","LU","","","Fondation","French","fr","Fondation","FON","","2017-11-30","ACTV","","","" "V5OS","Luxembourg","LU","","","Société coopérative","French","fr","Société coopérative","SC","","2017-11-30","ACTV","","","" "V7QY","Luxembourg","LU","","","Groupement européen d’intérêt économique","French","fr","Groupement européen d’intérêt économique","GEIE","","2021-09-23","ACTV","","","" "WCEP","Luxembourg","LU","","","Société Européenne","French","fr","société européenne","SE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "ZFFA","Luxembourg","LU","","","Etablissement public","French","fr","Etablissement public","EP","","2017-11-30","ACTV","","","" "7OYN","Malaysia","MY","","","Public Company","English","en","Public Company","Bhd;Ltd","","2020-06-10","ACTV","","","" "7OYN","Malaysia","MY","","","Berhad","Malay","ms","Berhad","Bhd;Ltd","","2020-06-10","ACTV","","","" "SP51","Malaysia","MY","","","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP","","2020-06-10","ACTV","","","" "SV3F","Malaysia","MY","","","Business","English","en","Business","","","2020-06-10","ACTV","","","" "XEOV","Malaysia","MY","","","Private Company","English","en","Private Company","Sdn Bhd;Pte. Ltd","","2020-06-10","ACTV","","","" "XEOV","Malaysia","MY","","","Sendirian Berhad","Malay","ms","Sendirian Berhad","Sdn Bhd;Pte. Ltd","","2020-06-10","ACTV","","","" "2SPI","Malaysia","MY","Labuan","MY-15","Labuan Islamic Limited Partnership","English","en","Labuan Islamic Limited Partnership","","","2020-06-10","ACTV","","","" "6HT0","Malaysia","MY","Labuan","MY-15","Labuan Limited Partnership","English","en","Labuan Limited Partnership","","","2020-06-10","ACTV","","","" "95AW","Malaysia","MY","Labuan","MY-15","Labuan Islamic Charitable Trust","English","en","Labuan Islamic Charitable Trust","","","2020-06-10","ACTV","","","" "JH78","Malaysia","MY","Labuan","MY-15","Labuan Company (Limited By Guarantee)","English","en","Labuan Company (Limited By Guarantee)","","","2020-06-10","ACTV","","","" "LA66","Malaysia","MY","Labuan","MY-15","Labuan Islamic Other Trust","English","en","Labuan Islamic Other Trust","","","2020-06-10","ACTV","","","" "MEHL","Malaysia","MY","Labuan","MY-15","Labuan Islamic Recognized Limited Liability Partnership","English","en","Labuan Islamic Recognized Limited Liability Partnership","","","2020-06-10","ACTV","","","" "NO8C","Malaysia","MY","Labuan","MY-15","Labuan Foreign Company","English","en","Labuan Foreign Company","","","2020-06-10","ACTV","","","" "NY3P","Malaysia","MY","Labuan","MY-15","Labuan Islamic Special Trust","English","en","Labuan Islamic Special Trust","","","2020-06-10","ACTV","","","" "OO14","Malaysia","MY","Labuan","MY-15","Labuan Islamic Limited Liability Partnership","English","en","Labuan Islamic Limited Liability Partnership","","","2020-06-10","ACTV","","","" "P0LR","Malaysia","MY","Labuan","MY-15","Labuan Company (Unlimited)","English","en","Labuan Company (Unlimited)","","","2020-06-10","ACTV","","","" "P0TZ","Malaysia","MY","Labuan","MY-15","Labuan Limited Liability Partnerships","English","en","Labuan Limited Liability Partnerships","","","2020-06-10","ACTV","","","" "PBQH","Malaysia","MY","Labuan","MY-15","Labuan Trust","English","en","Labuan Trust","","","2020-06-10","ACTV","","","" "PWX8","Malaysia","MY","Labuan","MY-15","Labuan Islamic Foundation","English","en","Labuan Islamic Foundation","","","2020-06-10","ACTV","","","" "QOO6","Malaysia","MY","Labuan","MY-15","Labuan Protected Cell Company","English","en","Labuan Protected Cell Company","","","2020-06-10","ACTV","","","" "S7R4","Malaysia","MY","Labuan","MY-15","Labuan Pre-Incorporated Company","English","en","Labuan Pre-Incorporated Company","","","2020-06-10","ACTV","","","" "SP0A","Malaysia","MY","Labuan","MY-15","Labuan Foundation","English","en","Labuan Foundation","","","2020-06-10","ACTV","","","" "T5HS","Malaysia","MY","Labuan","MY-15","Labuan Isalmic Trust","English","en","Labuan Isalmic Trust","","","2020-06-10","ACTV","","","" "T635","Malaysia","MY","Labuan","MY-15","Labuan Islamic Spendthrift/Protective Trust","English","en","Labuan Islamic Spendthrift/Protective Trust","","","2020-06-10","ACTV","","","" "TGWE","Malaysia","MY","Labuan","MY-15","Labuan Islamic Purpose Trust","English","en","Labuan Islamic Purpose Trust","","","2020-06-10","ACTV","","","" "TXCW","Malaysia","MY","Labuan","MY-15","Labuan Recognized Limited Liability Partnership","English","en","Labuan Recognized Limited Liability Partnership","","","2020-06-10","ACTV","","","" "ZWYK","Malaysia","MY","Labuan","MY-15","Labuan Company (Limited By Share)","English","en","Labuan Company (Limited By Share)","","","2020-06-10","ACTV","","","" "3U3Y","Malta","MT","","","foundation","English","en","foundation","","","2020-06-10","ACTV","","","" "9QHJ","Malta","MT","","","government entity","English","en","government entity","","","2020-06-10","ACTV","","","" "BVJ0","Malta","MT","","","Partnership en commendite or limited partnership","English","en","Partnership en commendite or limited partnership","LP;limited partnership;Limited Partnership;L.P.","","2017-11-30","ACTV","","","" "BVJ0","Malta","MT","","","Soċjetà in akkomandita jew soċjetà limitata","Maltese","mt","Soċjetà in akkomandita jew soċjetà limitata","Limited Partnership;LP;L.P.","","2017-11-30","ACTV","","","" "C061","Malta","MT","","","Public Limited Liability Company","English","en","Public Limited Liability Company","PLC;P.L.C;plc;p.l.c.","","2017-11-30","ACTV","","","" "C061","Malta","MT","","","kumpanija pubblika","Maltese","mt","kumpanija pubblika","PLC;P.L.C;plc;p.l.c.","","2017-11-30","ACTV","","","" "CR7N","Malta","MT","","","European Company","English","en","European Company","SE","","2017-11-30","ACTV","","","" "CR7N","Malta","MT","","","Societas Europaea","Maltese","mt","Societas Europaea","SE","","2017-11-30","ACTV","","","" "DJ2D","Malta","MT","","","sole trader","English","en","sole trader","","","2020-06-10","ACTV","","","" "F5X7","Malta","MT","","","cooperative","English","en","cooperative","","","2020-06-10","ACTV","","","" "J4S1","Malta","MT","","","association","English","en","association","","","2020-06-10","ACTV","","","" "JOZN","Malta","MT","","","Partnership en nom collectif","English","en","Partnership en nom collectif","","","2017-11-30","ACTV","","","" "JOZN","Malta","MT","","","soċjetà f’isem kollettiv","Maltese","mt","soċjetà f’isem kollettiv","","","2017-11-30","ACTV","","","" "V89C","Malta","MT","","","Private Limited Liability Company","English","en","Private Limited Liability Company","Ltd;Ltd.;Limited","","2017-11-30","ACTV","","","" "V89C","Malta","MT","","","kumpanija privata","Maltese","mt","kumpanija privata","Ltd;Ltd.;Limited","","2017-11-30","ACTV","","","" "YB0U","Malta","MT","","","European Economic Interest Grouping","English","en","European Economic Interest Grouping","EEIG","","2017-11-30","ACTV","","","" "DSII","Marshall Islands","MH","","","Corporation","English","en","Corporation","","","2020-06-10","ACTV","","","" "EZL8","Marshall Islands","MH","","","Limited Liability Company","English","en","Limited Liability Company","","","2020-06-10","ACTV","","","" "S69C","Marshall Islands","MH","","","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "UW1C","Marshall Islands","MH","","","Partnership","English","en","Partnership","","","2020-06-10","ACTV","","","" "4AJY","Mauritius","MU","","","Business","English","en","Business","","","2017-11-30","ACTV","","","" "6M6Z","Mauritius","MU","","","Public Company Limited By Guarantee","English","en","Public Company Limited By Guarantee","PC;PLC;LTD;LTEE","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","legal form name changed to singular" "AOS4","Mauritius","MU","","","Private Company Limited By Guarantee","English","en","Private Company Limited By Guarantee","PT;PLC;LTD;LTEE","","2017-11-30","ACTV","typo corrected","2023-09-28","typo in name and transliterated name corrected" "B0LD","Mauritius","MU","","","Ministries And Parastal Bodies","English","en","Ministries And Parastal Bodies","","","2017-11-30","ACTV","","","" "BVPF","Mauritius","MU","","","Cooperative","English","en","Cooperative","COOP","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","legal form name changed to singular" "G7H0","Mauritius","MU","","","Private Company","English","en","Private Company","PT;PLC;LTD;LTEE","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "J76S","Mauritius","MU","","","Limited Partnership","English","en","Limited Partnership","Limited Partnership;LP;L.P.","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","legal form name changed to singular" "JWWT","Mauritius","MU","","","Foundation","English","en","Foundation","F","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","legal form name changed to singular" "O786","Mauritius","MU","","","Société","French","fr","Société","SOCIETE;STE","","2017-11-30","ACTV","","","" "RJYT","Mauritius","MU","","","Trade Union","English","en","Trade Union","TU","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","legal form name changed to singular" "RTVE","Mauritius","MU","","","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP;L.L.P.;limited liability partnership;Limited Liability Partnership","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","legal form name changed to singular" "S2J1","Mauritius","MU","","","Others","English","en","Others","","","2017-11-30","INAC","deletion","2023-09-28","not a real separate legal form" "XXCZ","Mauritius","MU","","","Public company limited by shares","English","en","Public company limited by shares","PC;PLC;LTD;LTEE","","2017-11-30","ACTV","updated transliterated name","2023-09-28","transliterated text corrected" "ZTUI","Mauritius","MU","","","Association","English","en","Association","","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","legal form name changed to singular" "23XJ","Mexico","MX","","","Sociedad anónima de capital variable, sociedad de información crediticia","Spanish","es","Sociedad anónima de capital variable, sociedad de información crediticia","","","2020-06-10","ACTV","","","" "2LNV","Mexico","MX","","","Sociedad anónima de capital variable, institución de seguros","Spanish","es","Sociedad anónima de capital variable, institución de seguros","","","2020-06-10","ACTV","","","" "2NAI","Mexico","MX","","","Comunidad","Spanish","es","Comunidad","","","2020-06-10","ACTV","","","" "2RVP","Mexico","MX","","","Sociedad anónima promotora de inversión de capital variable, sociedad financiera de objeto múltiple, entidad no regulada","Spanish","es","Sociedad anónima promotora de inversión de capital variable, sociedad financiera de objeto múltiple, entidad no regulada","S.A.P.I. DE C.V., SOFOM E.N.R.","","2020-11-19","ACTV","","","" "31N9","Mexico","MX","","","Partido político","Spanish","es","Partido político","","","2020-06-10","ACTV","","","" "3WVI","Mexico","MX","","","Sociedad de Responsabilidad Limitada Microindustrial","Spanish","es","Sociedad de Responsabilidad Limitada Microindustrial","S. DE R.L. MI","","2020-06-10","ACTV","change of country name","2023-09-28","adjusted spelling of the country name" "449I","Mexico","MX","","","Sociedad de responsabilidad limitada","Spanish","es","Sociedad de responsabilidad limitada","S. de R. L.","","2020-06-10","ACTV","","","" "4HBI","Mexico","MX","","","Sociedad cooperativa de ahorro y préstamo de capital variable","Spanish","es","Sociedad cooperativa de ahorro y préstamo de capital variable","S.C. de A. P. de C. V.","","2020-06-10","ACTV","","","" "5AWU","Mexico","MX","","","Asociación civil","Spanish","es","Asociación civil","A. C.","","2020-06-10","ACTV","","","" "5K70","Mexico","MX","","","Sociedad anónima bursátil de capital variable, casa de bolsa","Spanish","es","Sociedad anónima bursátil de capital variable, casa de bolsa","","","2020-06-10","ACTV","change of name of legal form","2020-11-19","change of name of legal form" "6EYT","Mexico","MX","","","Sociedad por acciones simplificada de capital variable","Spanish","es","Sociedad por acciones simplificada de capital variable","S. A. S. de C. V.","","2020-06-10","ACTV","","","" "761Z","Mexico","MX","","","Sociedad de producción rural de responsabilidad limitada de capital variable","Spanish","es","Sociedad de producción rural de responsabilidad limitada de capital variable","S.P.R. DE R.L. DE C.V.","","2020-11-19","ACTV","","","" "776G","Mexico","MX","","","Sociedad de producción rural de responsabilidad ilimitada","Spanish","es","Sociedad de producción rural de responsabilidad ilimitada","","","2020-06-10","ACTV","","","" "784B","Mexico","MX","","","Sociedad anónima de capital variable, sociedad controladora","Spanish","es","Sociedad anónima de capital variable, sociedad controladora","","","2020-06-10","ACTV","","","" "7G15","Mexico","MX","","","Sociedad Nacional de Crédito","Spanish","es","Sociedad Nacional de Crédito","S.N.C.","","2020-06-10","ACTV","change of country name","2023-09-28","adjusted spelling of the country name" "7H63","Mexico","MX","","","Sociedad civil","Spanish","es","Sociedad civil","S. C.","","2020-06-10","ACTV","","","" "7L83","Mexico","MX","","","Unión ganadera regional especializada","Spanish","es","Unión ganadera regional especializada","","","2020-06-10","ACTV","","","" "7PKK","Mexico","MX","","","Sociedad en comandita simple de capital variable","Spanish","es","Sociedad en comandita simple de capital variable","S. en C. de C. V.","","2020-06-10","ACTV","","","" "8AGD","Mexico","MX","","","Unión ganadera regional general","Spanish","es","Unión ganadera regional general","","","2020-06-10","ACTV","","","" "8M3D","Mexico","MX","","","Sociedad cooperativa de productores de bienes y/o servicios de capital variable","Spanish","es","Sociedad cooperativa de productores de bienes y/o servicios de capital variable","","","2020-06-10","ACTV","","","" "8MY7","Mexico","MX","","","Sociedad anónima de capital variable, valuadora de acciones de fondos de inversión","Spanish","es","Sociedad anónima de capital variable, valuadora de acciones de fondos de inversión","","","2020-06-10","ACTV","","","" "8QZA","Mexico","MX","","","Sociedad cooperativa de responsabilidad limitada de capital variable","Spanish","es","Sociedad cooperativa de responsabilidad limitada de capital variable","S.C. DE R.L. DE C.V.","","2020-11-19","ACTV","","","" "8RRB","Mexico","MX","","","Sociedad cooperativa de ahorro y préstamo","Spanish","es","Sociedad cooperativa de ahorro y préstamo","S.C. de A. P.","","2020-06-10","ACTV","","","" "8ZUV","Mexico","MX","","","Sociedad anónima, sociedad financiera de objeto múltiple, entidad regulada","Spanish","es","Sociedad anónima, sociedad financiera de objeto múltiple, entidad regulada","S.A., SOFOM E.R.","","2020-06-10","ACTV","","","" "96OC","Mexico","MX","","","Sociedad cooperativa","Spanish","es","Sociedad cooperativa","","","2020-06-10","ACTV","","","" "A2A8","Mexico","MX","","","Sociedad en comandita por acciones","Spanish","es","Sociedad en comandita por acciones","S. en C. por A.","","2020-06-10","ACTV","","","" "ANXC","Mexico","MX","","","Federación de sindicatos","Spanish","es","Federación de sindicatos","","","2020-06-10","ACTV","","","" "AOKU","Mexico","MX","","","Unión de ejidos","Spanish","es","Unión de ejidos","","","2020-06-10","ACTV","","","" "B3WQ","Mexico","MX","","","Sociedad anónima de capital variable, unión de crédito","Spanish","es","Sociedad anónima de capital variable, unión de crédito","","","2020-06-10","ACTV","","","" "B8CE","Mexico","MX","","","Sociedad anónima","Spanish","es","Sociedad anónima","S. A.","","2020-06-10","ACTV","","","" "BFIV","Mexico","MX","","","Sociedad anónima, casa de cambio","Spanish","es","Sociedad anónima, casa de cambio","","","2020-06-10","ACTV","","","" "BOF1","Mexico","MX","","","Sociedad en nombre colectivo","Spanish","es","Sociedad en nombre colectivo","","","2020-06-10","ACTV","","","" "C4Z4","Mexico","MX","","","Asociación rural de interés colectivo","Spanish","es","Asociación rural de interés colectivo","","","2020-06-10","ACTV","","","" "CAF9","Mexico","MX","","","Sociedad anónima, centro cambiario","Spanish","es","Sociedad anónima, centro cambiario","","","2020-06-10","ACTV","","","" "COVJ","Mexico","MX","","","Organismo de integración financiera rural","Spanish","es","Organismo de integración financiera rural","","","2020-06-10","ACTV","","","" "CU5R","Mexico","MX","","","Asociación ganadera local general","Spanish","es","Asociación ganadera local general","","","2020-06-10","ACTV","","","" "CU68","Mexico","MX","","","Sociedad cooperativa limitada de capital variable","Spanish","es","Sociedad cooperativa limitada de capital variable","S.C.L. de C.V.","","2020-11-19","ACTV","","","" "DBU3","Mexico","MX","","","Sociedad anónima de capital variable, financiera comunitaria","Spanish","es","Sociedad anónima de capital variable, financiera comunitaria","","","2020-06-10","ACTV","","","" "DHY2","Mexico","MX","","","Sociedad anónima financiera comunitaria","Spanish","es","Sociedad anónima financiera comunitaria","","","2020-06-10","ACTV","","","" "DNF1","Mexico","MX","","","Sociedad anónima, sociedad financiera de objeto múltiple, entidad no regulada","Spanish","es","Sociedad anónima, sociedad financiera de objeto múltiple, entidad no regulada","S.A., SOFOM E.N.R.","","2020-06-10","ACTV","","","" "DU8H","Mexico","MX","","","Sociedad cooperativa de consumidores de bienes y/o servicios de capital variable","Spanish","es","Sociedad cooperativa de consumidores de bienes y/o servicios de capital variable","","","2020-06-10","ACTV","","","" "E0YZ","Mexico","MX","","","Sociedad de producción rural de responsabilidad suplementada","Spanish","es","Sociedad de producción rural de responsabilidad suplementada","","","2020-06-10","ACTV","","","" "EHWD","Mexico","MX","","","Sociedad anónima de capital variable, de inversión especializada de fondos para el retiro","Spanish","es","Sociedad anónima de capital variable, de inversión especializada de fondos para el retiro","S. A. de C.V., Siefore","","2020-06-10","ACTV","","","" "F3L5","Mexico","MX","","","Fondos de Aseguramiento Agropecuario y Rural","Spanish","es","Fondos de Aseguramiento Agropecuario y Rural","","","2020-06-10","ACTV","change of country name","2023-09-28","adjusted spelling of the country name" "FVTS","Mexico","MX","","","Unión de sociedades de producción rural","Spanish","es","Unión de sociedades de producción rural","","","2020-06-10","ACTV","","","" "G3JV","Mexico","MX","","","Sociedad anónima de capital variable, operadora de fondos de inversión","Spanish","es","Sociedad anónima de capital variable, operadora de fondos de inversión","","","2020-06-10","ACTV","","","" "G522","Mexico","MX","","","Sociedad cooperativa de consumidores de bienes y/o servicios","Spanish","es","Sociedad cooperativa de consumidores de bienes y/o servicios","","","2020-06-10","ACTV","","","" "G73Q","Mexico","MX","","","Sociedad anónima de capital variable, contraparte central de valores","Spanish","es","Sociedad anónima de capital variable, contraparte central de valores","","","2020-06-10","ACTV","","","" "GNNT","Mexico","MX","","","Sociedad anónima de capital variable, administradora de fondos para el retiro","Spanish","es","Sociedad anónima de capital variable, administradora de fondos para el retiro","S. A. de C.V., Afore","","2020-06-10","ACTV","","","" "GW1T","Mexico","MX","","","Sociedad anónima bursátil","Spanish","es","Sociedad anónima bursátil","S.A.B.","","2020-06-10","ACTV","","","" "GXBE","Mexico","MX","","","Sociedad anónima promotora de inversión de capital variable, sociedad financiera de objeto múltiple, entidad regulada","Spanish","es","Sociedad anónima promotora de inversión de capital variable, sociedad financiera de objeto múltiple, entidad regulada","S.A. P.I. de C.V. , SOFOM E.R.","","2020-06-10","ACTV","change of name of legal form","2020-11-19","change of name of legal form" "H725","Mexico","MX","","","Sociedad anónima de capital variable, fondo de inversión de objeto limitado","Spanish","es","Sociedad anónima de capital variable, fondo de inversión de objeto limitado","S. A. de C. V., F. I. de O. L.","","2020-06-10","ACTV","","","" "HKWO","Mexico","MX","","","Sociedad anónima de capital variable, sociedad financiera de objeto múltiple, entidad no regulada","Spanish","es","Sociedad anónima de capital variable, sociedad financiera de objeto múltiple, entidad no regulada","S.A. de C.V., SOFOM E.N.R.","","2020-06-10","ACTV","","","" "ICXT","Mexico","MX","","","Sociedad anónima de capital variable, institución para el depósito de valores","Spanish","es","Sociedad anónima de capital variable, institución para el depósito de valores","","","2020-06-10","ACTV","","","" "IWNQ","Mexico","MX","","","Sociedad anónima de capital variable, institución de financiamiento colectivo","Spanish","es","Sociedad anónima de capital variable, institución de financiamiento colectivo","","","2020-06-10","ACTV","","","" "JGV1","Mexico","MX","","","Sociedad anónima de capital variable","Spanish","es","Sociedad anónima de capital variable","S. A. de C. V.","","2020-06-10","ACTV","","","" "JN6Y","Mexico","MX","","","Sociedad cooperativa de capital variable","Spanish","es","Sociedad cooperativa de capital variable","","","2020-06-10","ACTV","","","" "JRAQ","Mexico","MX","","","Agrupaciones financieras","Spanish","es","Agrupaciones financieras","A.F.","","2020-11-19","ACTV","","","" "JSTL","Mexico","MX","","","Sociedad de solidaridad social","Spanish","es","Sociedad de solidaridad social","S. de S. S.","","2020-06-10","ACTV","","","" "JZ1I","Mexico","MX","","","Sindicato","Spanish","es","Sindicato","","","2020-06-10","ACTV","","","" "L2MQ","Mexico","MX","","","Sociedad de responsabilidad limitada de interés público de capital variable","Spanish","es","Sociedad de responsabilidad limitada de interés público de capital variable","S. de R. L. de I. P. de C. V.","","2020-06-10","ACTV","","","" "L9JC","Mexico","MX","","","Sociedad anónima bursátil de capital variable","Spanish","es","Sociedad anónima bursátil de capital variable","S.A.B. de C.V.","","2020-06-10","ACTV","change of name of legal form","2020-11-19","change of name of legal form" "LBPW","Mexico","MX","","","Sociedad anónima de capital variable, financiera popular","Spanish","es","Sociedad anónima de capital variable, financiera popular","","","2020-06-10","ACTV","","","" "LJTR","Mexico","MX","","","Sociedad por acciones simplificada","Spanish","es","Sociedad por acciones simplificada","S. A. S.","","2020-06-10","ACTV","","","" "LOB9","Mexico","MX","","","Sociedad propietaria de tierras agrícolas, ganaderas o forestales","Spanish","es","Sociedad propietaria de tierras agrícolas, ganaderas o forestales","","","2020-06-10","ACTV","","","" "LVRX","Mexico","MX","","","Sociedad anónima, almacén general de depósito, organización auxiliar del crédito","Spanish","es","Sociedad anónima, almacén general de depósito, organización auxiliar del crédito","","","2020-06-10","ACTV","","","" "M0SL","Mexico","MX","","","Municipio","Spanish","es","Municipio","Mpo.","","2020-06-10","ACTV","","","" "M44Q","Mexico","MX","","","Sociedad anónima de capital variable, centro cambiario","Spanish","es","Sociedad anónima de capital variable, centro cambiario","","","2020-06-10","ACTV","","","" "MAM6","Mexico","MX","","","Institución de asistencia privada","Spanish","es","Institución de asistencia privada","I.A.P.","","2020-11-19","ACTV","","","" "MB35","Mexico","MX","","","Ejido","Spanish","es","Ejido","","","2020-06-10","ACTV","","","" "N0JF","Mexico","MX","","","Sociedad anónima, bolsa de valores","Spanish","es","Sociedad anónima, bolsa de valores","","","2020-06-10","ACTV","","","" "N124","Mexico","MX","","","Sociedad anónima de capital variable, institución de fondos de pago electrónico","Spanish","es","Sociedad anónima de capital variable, institución de fondos de pago electrónico","","","2020-06-10","ACTV","","","" "NA09","Mexico","MX","","","Asociación religiosa","Spanish","es","Asociación religiosa","","","2020-06-10","ACTV","","","" "NHBK","Mexico","MX","","","Sociedad anónima de capital variable, fondo de inversión de capitales","Spanish","es","Sociedad anónima de capital variable, fondo de inversión de capitales","S. A. de C. V., F. I. de C.","","2020-06-10","ACTV","","","" "NSZI","Mexico","MX","","","Unidad agrícola industrial de la mujer","Spanish","es","Unidad agrícola industrial de la mujer","UAIM","","2020-06-10","ACTV","","","" "O15R","Mexico","MX","","","Sociedad anónima de capital variable, casa de cambio","Spanish","es","Sociedad anónima de capital variable, casa de cambio","","","2020-06-10","ACTV","","","" "OZ3O","Mexico","MX","","","Sociedad anónima promotora de inversión bursátil","Spanish","es","Sociedad anónima promotora de inversión bursátil","S.A. P.I. B.","","2020-06-10","ACTV","","","" "P28E","Mexico","MX","","","Sociedad anónima de capital variable, sociedad financiera de objeto múltiple, entidad regulada","Spanish","es","Sociedad anónima de capital variable, sociedad financiera de objeto múltiple, entidad regulada","S.A. de C.V., SOFOM E.R.","","2020-06-10","ACTV","","","" "P7VS","Mexico","MX","","","Sociedad anónima institución de fianzas","Spanish","es","Sociedad anónima institución de fianzas","","","2020-06-10","ACTV","","","" "P8D7","Mexico","MX","","","Sociedad anónima institución de banca múltiple","Spanish","es","Sociedad anónima institución de banca múltiple","","","2020-06-10","ACTV","","","" "PG49","Mexico","MX","","","Confederación de sindicatos","Spanish","es","Confederación de sindicatos","","","2020-06-10","ACTV","","","" "Q7WY","Mexico","MX","","","Sociedad anónima de capital variable, almacén general de depósito, organización auxiliar del crédito","Spanish","es","Sociedad anónima de capital variable, almacén general de depósito, organización auxiliar del crédito","","","2020-06-10","ACTV","","","" "QAUY","Mexico","MX","","","Sociedad de producción rural de responsabilidad limitada","Spanish","es","Sociedad de producción rural de responsabilidad limitada","SPR","","2020-06-10","ACTV","","","" "QM7Z","Mexico","MX","","","Sociedad anónima de capital variable, casa de bolsa","Spanish","es","Sociedad anónima de capital variable, casa de bolsa","","","2020-06-10","ACTV","","","" "QZB4","Mexico","MX","","","Sociedad anónima bursátil de capital variable, bolsa de valores","Spanish","es","Sociedad anónima bursátil de capital variable, bolsa de valores","","","2020-06-10","ACTV","change of name of legal form","2020-11-19","change of name of legal form" "R8PY","Mexico","MX","","","Sociedad anónima de capital variable, bolsa de valores","Spanish","es","Sociedad anónima de capital variable, bolsa de valores","","","2020-06-10","ACTV","","","" "RCE0","Mexico","MX","","","Sociedad anónima de capital variable, fondo de inversión de renta variable","Spanish","es","Sociedad anónima de capital variable, fondo de inversión de renta variable","S. A. de C. V., F. I. de R. V.","","2020-06-10","ACTV","","","" "RCJS","Mexico","MX","","","Corporaciones de carácter público reconocidos por la legislación mexicana","Spanish","es","Corporaciones de carácter público reconocidos por la legislación mexicana","","","2020-06-10","ACTV","","","" "RKLI","Mexico","MX","","","Sociedad anónima, sociedad de información crediticia","Spanish","es","Sociedad anónima, sociedad de información crediticia","","","2020-06-10","ACTV","","","" "RQDD","Mexico","MX","","","Sociedad anónima bursátil, sociedad financiera de objeto múltiple, entidad regulada","Spanish","es","Sociedad anónima bursátil, sociedad financiera de objeto múltiple, entidad regulada","S.A.B. SOFOM E.R.","","2020-06-10","ACTV","","","" "RR3L","Mexico","MX","","","Sociedad anónima promotora de inversión bursátil de capital variable","Spanish","es","Sociedad anónima promotora de inversión bursátil de capital variable","S.A.P.I.B. de C.V.","","2020-06-10","ACTV","change of name of legal form","2020-11-19","change of name of legal form" "S6M8","Mexico","MX","","","Sociedad nacional de crédito institución de banca de desarrollo","Spanish","es","Sociedad nacional de crédito institución de banca de desarrollo","","","2020-06-10","ACTV","","","" "S8DM","Mexico","MX","","","Sociedad anónima institución de seguros","Spanish","es","Sociedad anónima institución de seguros","","","2020-06-10","ACTV","","","" "SKO4","Mexico","MX","","","Sociedad mutualista","Spanish","es","Sociedad mutualista","","","2020-06-10","ACTV","","","" "TPJZ","Mexico","MX","","","Sociedad anónima promotora de inversión","Spanish","es","Sociedad anónima promotora de inversión","S.A. P.I.","","2020-06-10","ACTV","","","" "TTIF","Mexico","MX","","","Sociedad anónima bursátil de capital variable, sociedad financiera de objeto múltiple, entidad no regulada","Spanish","es","Sociedad anónima bursátil de capital variable, sociedad financiera de objeto múltiple, entidad no regulada","S.A.B. DE C.V., SOFOM E.N.R.","","2020-11-19","ACTV","","","" "TYW0","Mexico","MX","","","Sociedad anónima bursátil de capital variable, sociedad controladora","Spanish","es","Sociedad anónima bursátil de capital variable, sociedad controladora","","","2020-06-10","ACTV","change of name of legal form","2020-11-19","change of name of legal form" "U77P","Mexico","MX","","","Sociedad anónima de capital variable, institución de fianzas","Spanish","es","Sociedad anónima de capital variable, institución de fianzas","","","2020-06-10","ACTV","","","" "U901","Mexico","MX","","","Instituciones de Seguros","Spanish","es","Instituciones de Seguros","","","2020-06-10","ACTV","change of country name","2023-09-28","adjusted spelling of the country name" "UBV0","Mexico","MX","","","Sociedad anónima de capital variable, fondo de inversión en instrumentos de deuda","Spanish","es","Sociedad anónima de capital variable, fondo de inversión en instrumentos de deuda","S. A. de C. V., F. I. en I. D.","","2020-06-10","ACTV","","","" "VATV","Mexico","MX","","","Sociedad anónima promotora de inversión de capital variable","Spanish","es","Sociedad anónima promotora de inversión de capital variable","S.A. P.I. de C.V.","","2020-06-10","ACTV","change of name of legal form","2020-11-19","change of name of legal form" "VIOQ","Mexico","MX","","","Estado","Spanish","es","Estado","Edo.","","2020-06-10","ACTV","","","" "VN3F","Mexico","MX","","","Sociedad cooperativa de productores de bienes y/o servicios","Spanish","es","Sociedad cooperativa de productores de bienes y/o servicios","","","2020-06-10","ACTV","","","" "W9WS","Mexico","MX","","","Empresa productiva del estado","Spanish","es","Empresa productiva del estado","E.P.E.","","2020-11-19","ACTV","","","" "X9J8","Mexico","MX","","","Asociación ganadera local especializada","Spanish","es","Asociación ganadera local especializada","","","2020-06-10","ACTV","","","" "XDGC","Mexico","MX","","","Sociedad cooperativa limitada","Spanish","es","Sociedad cooperativa limitada","S.C.L.","","2020-11-19","ACTV","","","" "XEN5","Mexico","MX","","","Sociedad en comandita simple","Spanish","es","Sociedad en comandita simple","S. en C.","","2020-06-10","ACTV","","","" "XLVZ","Mexico","MX","","","Sociedad de responsabilidad limitada de capital variable","Spanish","es","Sociedad de responsabilidad limitada de capital variable","S. de R. L. de C. V.","","2020-06-10","ACTV","","","" "XSZY","Mexico","MX","","","Sociedad anónima financiera popular","Spanish","es","Sociedad anónima financiera popular","","","2020-06-10","ACTV","","","" "YRI0","Mexico","MX","","","Fideicomiso público de fomento económico","Spanish","es","Fideicomiso público de fomento económico","","","2020-06-10","ACTV","change of name of legal form","2020-11-19","change of name of legal form" "ZAIS","Mexico","MX","","","Sociedad en nombre colectivo de capital variable","Spanish","es","Sociedad en nombre colectivo de capital variable","","","2020-06-10","ACTV","","","" "ZXVG","Mexico","MX","","","Sociedad en comandita por acciones de capital variable","Spanish","es","Sociedad en comandita por acciones de capital variable","S. en C. por A. de C. V.","","2020-06-10","ACTV","","","" "528Z","Monaco","MC","","","Société en Commandite Simple","French","fr","Société en Commandite Simple","SCS","","2021-09-23","ACTV","","","" "CWTQ","Monaco","MC","","","Société Anonyme Monégasque","French","fr","Société Anonyme Monégasque","SAM","","2021-09-23","ACTV","","","" "DA06","Monaco","MC","","","Société à Responsabilité Limitée","French","fr","Société à Responsabilité Limitée","SARL","","2021-09-23","ACTV","","","" "GWZF","Monaco","MC","","","Société Civile Particulière","French","fr","Société Civile Particulière","SCP","","2021-09-23","ACTV","","","" "TU6A","Monaco","MC","","","Société en Nom Collectif","French","fr","Société en Nom Collectif","SNC","","2021-09-23","ACTV","","","" "X7W6","Monaco","MC","","","Entreprise en Nom Personnel","French","fr","Entreprise en Nom Personnel","","","2021-09-23","ACTV","","","" "3FI5","Myanmar","MM","","","ခံ၀န်ချက်အားဖြင့် တာ၀န်ကန့်သတ်ထားသည့်ကုမ္ပဏီ၊","Burmese","my","hkan 0 n hkyet aarrhpyint tar 0 n k ant saathtarr saeet kumpane","","","2023-09-28","ACTV","","","" "478A","Myanmar","MM","","","အစုအားဖြင့်တာ၀န်ကန့်သတ်ထားသည့်အများနှင့် မသက်ဆိုင်သည့်ကုမ္ပဏီ၊","Burmese","my","a hcu aarr hpyint tar 0 n k ant saathtarr saeet a myarrnhaint masaatsine saeet kumpane","","","2023-09-28","ACTV","","","" "CPNU","Myanmar","MM","","","စီးပွားရေးလုပ်ငန်းအသင်းအဖွဲ့၊","Burmese","my","hceepwarrrayylotengaann aasainnaahpwal","","","2023-09-28","ACTV","","","" "FJK0","Myanmar","MM","","","၁၉၅၀ ခုနှစ် အထူးကုမ္ပဏီအက်ဥပဒေအရ အစုအားဖြင့်တာ၀န်ကန့်သတ်ထားသည့် အများနှင့် သက်ဆိုင်သည့်ကုမ္ပဏီ၊","Burmese","my","1 9 5 0 hkunhait aahtuu kumpane aaatupadayaar a hcu aarr hpyint tar 0 n k ant saathtarrsaeet a myarrnhaint saatsine saeet kumpane","","","2023-09-28","ACTV","","","" "G54B","Myanmar","MM","","","တာ၀န်ကန့်သတ်မထားသည့်ကုမ္ပဏီ၊","Burmese","my","tar 0 n k ant saat m htarr saeet kumpane","","","2023-09-28","ACTV","","","" "QUC7","Myanmar","MM","","","အစုအားဖြင့်တာ၀န်ကန့်သတ်ထားသည့်အများနှင့် သက်ဆိုင်သည့်ကုမ္ပဏီ၊","Burmese","my","a hcu aarr hpyint tar 0 n k ant saathtarr saeet a myarrnhaint saatsine saeet kumpane","","","2023-09-28","ACTV","","","" "T3FE","Myanmar","MM","","","၁၉၅၀ ခုနှစ် အထူးကုမ္ပဏီအက်ဥပဒေအရ အစုအားဖြင့်တာ၀န်ကန့်သတ်ထားသည့်အများနှင့် မသက်ဆိုင်သည့်ကုမ္ပဏီ၊","Burmese","my","1 9 5 0 hkunhait aahtuu kumpane aaatupadayaar a hcu aarr hpyint tar 0 n k ant saathtarr saeet a myarrnhaint masaatsine saeet kumpane","","","2023-09-28","ACTV","","","" "33MN","Netherlands","NL","","","vereniging met volledige rechtsbevoegdheid","Dutch","nl","vereniging met volledige rechtsbevoegdheid","","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","change of name of legal form; also to separate from other legal form 'vereniging met beperkte rechtsbevoegdheid' which now has its own ELF code" "4QXM","Netherlands","NL","","","eenmanszaak","Dutch","nl","eenmanszaak","","","2017-11-30","ACTV","","","" "54M6","Netherlands","NL","","","besloten vennootschap met beperkte aansprakelijkheid","Dutch","nl","besloten vennootschap met beperkte aansprakelijkheid","BV;bv;B.V.;b.v.","","2017-11-30","ACTV","","","" "5WU6","Netherlands","NL","","","Europees Economisch Samenwerkingsverband","Dutch","nl","Europees Economisch Samenwerkingsverband","EESV;E.E.S.V.","","2017-11-30","ACTV","","","" "62Y3","Netherlands","NL","","","vennootschap onder firma","Dutch","nl","vennootschap onder firma","VOF;vof;V.O.F.;v.o.f.","","2017-11-30","ACTV","","","" "8VFX","Netherlands","NL","","","vereniging met beperkte rechtsbevoegdheid","Dutch","nl","vereniging met beperkte rechtsbevoegdheid","","","2023-09-28","ACTV","","","" "9AAK","Netherlands","NL","","","maatschap","Dutch","nl","maatschap","","","2017-11-30","ACTV","","","" "A0W7","Netherlands","NL","","","publiekrechtelijke rechtspersoon","Dutch","nl","publiekrechtelijke rechtspersoon","","","2017-11-30","ACTV","","","" "B5PM","Netherlands","NL","","","naamloze vennootschap","Dutch","nl","naamloze vennootschap","NV;nv;N.V.;n.v.","","2017-11-30","ACTV","","","" "BBEB","Netherlands","NL","","","Europese naamloze vennootschap (Societas Europaea)","Dutch","nl","Europese naamloze vennootschap (Societas Europaea)","SE;S.E.","","2017-11-30","ACTV","","","" "CODH","Netherlands","NL","","","commanditaire vennootschap","Dutch","nl","commanditaire vennootschap","CV;cv;C.V.;c.v.","","2017-11-30","ACTV","","","" "DEO1","Netherlands","NL","","","onderlinge waarborgmaatschappij","Dutch","nl","onderlinge waarborgmaatschappij","OWM;owm;O.W.M.;o.w.m.","","2017-11-30","ACTV","","","" "EZQW","Netherlands","NL","","","rechtspersoon in oprichting","Dutch","nl","rechtspersoon in oprichting","rp io;RP io;R.P. io","","2017-11-30","ACTV","","","" "GNXT","Netherlands","NL","","","vereniging van eigenaars","Dutch","nl","vereniging van eigenaars","VvE;VVE;V.v.E.;V.V.E.","","2017-11-30","ACTV","","","" "JHK5","Netherlands","NL","","","fonds voor gemene rekening","Dutch","nl","fonds voor gemene rekening","","","2017-11-30","ACTV","","","" "L7HX","Netherlands","NL","","","kerkgenootschap","Dutch","nl","kerkgenootschap","","","2017-11-30","ACTV","","","" "M1IZ","Netherlands","NL","","","Overige Privaatrechtelijke Rechtspersoon","Dutch","nl","Overige Privaatrechtelijke Rechtspersoon","","","2019-07-05","ACTV","","","" "NFFH","Netherlands","NL","","","coöperatie","Dutch","nl","coöperatie","coöperatie;coöp","","2017-11-30","ACTV","","","" "UNJ2","Netherlands","NL","","","rederij","Dutch","nl","rederij","","","2017-11-30","ACTV","","","" "V44D","Netherlands","NL","","","stichting","Dutch","nl","stichting","","","2017-11-30","ACTV","","","" "Y3ZB","Netherlands","NL","","","Societas Cooperativa Europaea","Dutch","nl","Societas Cooperativa Europaea","SCE;S.C.E.","","2017-11-30","ACTV","","","" "4LEA","New Zealand","NZ","","","Unlimited Liability Company","English","en","Unlimited Liability Company","Unltd;Ultd","","2017-11-30","ACTV","","","" "F7KI","New Zealand","NZ","","","Limited Partnership","English","en","Limited Partnership","Limited Partnership;LP;L.P.","","2017-11-30","ACTV","","","" "P2R9","New Zealand","NZ","","","Limited Liability Company","English","en","Limited Liability Company","Ltd;Ltd.;Limited","","2017-11-30","ACTV","","","" "Q4BE","New Zealand","NZ","","","government entity","English","en","government entity","","","2023-09-28","ACTV","","","" "Z6ZU","New Zealand","NZ","","","Cooperative Company","English","en","Cooperative Company","COOP","","2017-11-30","ACTV","","","" "149O","North Macedonia","MK","","","Командитно друштво со акции","Macedonian","mk","Komanditno drustvo so akcii","KDA","","2017-11-30","ACTV","","2019-07-05","change country name" "DTIU","North Macedonia","MK","","","Акционерско друштво","Macedonian","mk","Akcionersko drustvo","AD","","2017-11-30","ACTV","","2019-07-05","change country name" "HEXO","North Macedonia","MK","","","Јавно трговско друштво","Macedonian","mk","Javno trgovsko drushtvo","JTD","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","change of name of legal form" "JCK1","North Macedonia","MK","","","Стопанска интересна заедница","Macedonian","mk","Stopanska interesna zaednica","SIZ","","2017-11-30","ACTV","","2019-07-05","change country name" "KHAB","North Macedonia","MK","","","Друштво со ограничена одговрност","Macedonian","mk","Drustvo so ogranicena odgvornost","DOO","","2017-11-30","ACTV","","2019-07-05","change country name" "KXDY","North Macedonia","MK","","","Подрушница на странско трговско друштво, односно на странски трговрец поединец","Macedonian","mk","Podruznica na stransko trgovsko drustvo, odnosno na stranski trgovec poedinec","","","2017-11-30","ACTV","","2019-07-05","change country name" "VPFY","North Macedonia","MK","","","Трговец поединец","Macedonian","mk","Trgovec poedinec","TP","","2017-11-30","ACTV","","2019-07-05","change country name" "XH7Z","North Macedonia","MK","","","Командитно друштво","Macedonian","mk","Komanditno drustvo","KD","","2017-11-30","ACTV","","2019-07-05","change country name" "326Y","Norway","NO","","","Ansvarlig selskap","Norwegian","no","Ansvarlig selskap","ANS","","2017-11-30","ACTV","","","" "3C7U","Norway","NO","","","Stiftelse","Norwegian","no","Stiftelse","","","2017-11-30","ACTV","","","" "3L58","Norway","NO","","","Kommunalt foretak","Norwegian","no","Kommunalt foretak","KF","","2017-11-30","ACTV","","","" "4ZRR","Norway","NO","","","Norskregistrert utenlandsk foretak","Norwegian","no","Norskregistrert utenlandsk foretak","NUF","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "50TD","Norway","NO","","","Statsforetak","Norwegian","no","Statsforetak","SF","","2017-11-30","ACTV","","","" "5ZTZ","Norway","NO","","","Fylkeskommunalt foretak","Norwegian","no","Fylkeskommunalt foretak","FKF","","2017-11-30","ACTV","","","" "8S9H","Norway","NO","","","Gjensidig forsikringsselskap","Norwegian","no","Gjensidig forsikringsselskap","","","2017-11-30","ACTV","","","" "9DI1","Norway","NO","","","Boligbyggelag","Norwegian","no","Boligbyggelag","BBL","","2017-11-30","ACTV","","","" "AEV1","Norway","NO","","","Partrederi","Norwegian","no","Partrederi","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "BJ65","Norway","NO","","","Pensjonskasse","Norwegian","no","Pensjonskasse","","","2017-11-30","ACTV","","","" "CF5L","Norway","NO","","","Ansvarlig selskap, delt ansvar","Norwegian","no","Ansvarlig selskap, delt ansvar","DA","","2017-11-30","ACTV","","","" "DRPL","Norway","NO","","","Europeisk økonomisk foretaksgruppe","Norwegian","no","Europeisk økonomisk foretaksgruppe","EØFG","","2017-11-30","ACTV","","","" "EXD7","Norway","NO","","","Enkeltpersonforetak","Norwegian","no","Enkeltpersonforetak","ENK","","2017-11-30","ACTV","","","" "FSBD","Norway","NO","","","Forening","Norwegian","no","Forening","","","2017-11-30","ACTV","adjustment of legal form name","2023-09-28","adjusted the legal form name to the generic term" "GYY6","Norway","NO","","","Annen juridisk person","Norwegian","no","Annen juridisk person","","","2017-11-30","INAC","deletion","2023-09-28","not a real separate legal form" "IQGE","Norway","NO","","","Allmennaksjeselskap","Norwegian","no","Allmennaksjeselskap","ASA","","2017-11-30","ACTV","","","" "K5P8","Norway","NO","","","Samvirkeforetak","Norwegian","no","Samvirkeforetak","SA","","2017-11-30","ACTV","","","" "KX7D","Norway","NO","","","Fylkeskommune","Norwegian","no","Fylkeskommune","","","2023-09-28","ACTV","","","" "LJJW","Norway","NO","","","Verdipapirfond","Norwegian","no","Verdipapirfond","","","2017-11-30","ACTV","","","" "M9IQ","Norway","NO","","","Kommandittselskap","Norwegian","no","Kommandittselskap","KS","","2017-11-30","ACTV","","","" "O0EU","Norway","NO","","","Borettslag","Norwegian","no","Borettslag","BRL","","2017-11-30","ACTV","","","" "O7LB","Norway","NO","","","Europeisk samvirkeforetak","Norwegian","no","Europeisk samvirkeforetak","SCE","","2017-11-30","ACTV","","","" "PB3V","Norway","NO","","","Konkursbo","Norwegian","no","Konkursbo","","","2017-11-30","ACTV","","","" "Q0Q1","Norway","NO","","","Selskap med begrenset ansvar","Norwegian","no","Selskap med begrenset ansvar","BA","","2017-11-30","ACTV","","","" "R71C","Norway","NO","","","Sparebank","Norwegian","no","Sparebank","","","2017-11-30","ACTV","","","" "V06W","Norway","NO","","","Europeisk selskap","Norwegian","no","Europeisk selskap","SE","","2017-11-30","ACTV","","","" "YI42","Norway","NO","","","Aksjeselskap","Norwegian","no","Aksjeselskap","AS","","2017-11-30","ACTV","","","" "YTMC","Norway","NO","","","Interkommunalt selskap","Norwegian","no","Interkommunalt selskap","IKS","","2017-11-30","ACTV","","","" "ZQ0Q","Norway","NO","","","Eierseksjonssameie","Norwegian","no","Eierseksjonssameie","","","2017-11-30","ACTV","","","" "4XMS","Pakistan","PK","","","Private Limited Company (multi member)","English","en","Private Limited Company (multi member)","Pvt. Ltd.","","2017-11-30","ACTV","typo corrected","2023-09-28","typo in name and transliterated name corrected" "7IYW","Pakistan","PK","","","Company Limited by Guarantee (having share capital)","English","en","Company Limited by Guarantee (having share capital)","(Guarantee) Ltd.","","2017-11-30","ACTV","typo corrected","2023-09-28","typo in transliterated name corrected" "88OX","Pakistan","PK","","","Private Limited Company (single member)","English","en","Private Limited Company (single member)","SMC","","2017-11-30","ACTV","typo corrected","2023-09-28","typo in name and transliterated name corrected" "LH0Q","Pakistan","PK","","","Unlimited Company","English","en","Unlimited Company","Unltd;Ultd;Unlimited","","2017-11-30","ACTV","","","" "MOI8","Pakistan","PK","","","Public Limited Company (not-for profit association)","English","en","Public Limited Company (not-for profit association)","","","2017-11-30","ACTV","typo corrected","2023-09-28","typo in transliterated name corrected" "QR25","Pakistan","PK","","","Company Limited by Guarantee (without share capital)","English","en","Company Limited by Guarantee (without share capital)","(Guarantee) Ltd.","","2017-11-30","ACTV","typo corrected","2023-09-28","typo in transliterated name corrected" "RKYF","Pakistan","PK","","","Public Limited Company (unlisted)","English","en","Public Limited Company (unlisted)","Ltd;Ltd.;Limited","","2017-11-30","ACTV","typo corrected","2023-09-28","typo in transliterated name corrected" "VQV6","Pakistan","PK","","","Public Limited Company (listed)","English","en","Public Limited Company (listed)","Ltd;Ltd.;Limited","","2017-11-30","ACTV","typo corrected","2023-09-28","typo in transliterated name corrected" "XBK3","Pakistan","PK","","","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP;L.L.P.;limited liability partnership;Limited Liability Partnership","","2017-11-30","ACTV","","","" "6TPA","Panama","PA","","","Sociedad Anónima","Spanish","es","Sociedad Anónima","S.A.","","2020-06-10","ACTV","","","" "BSN7","Panama","PA","","","Asociación","Spanish","es","Asociación","","","2020-06-10","ACTV","","","" "GDT9","Panama","PA","","","Sociedad Civil","Spanish","es","Sociedad Civil","S.C.","","2020-06-10","ACTV","","","" "JS13","Panama","PA","","","Sociedad de Responsabilidad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada","S.R.L.","","2020-06-10","ACTV","","","" "PY5Y","Panama","PA","","","Sociedad en Comandita por acciones","Spanish","es","Sociedad en Comandita por acciones","","","2020-06-10","ACTV","","","" "UNCO","Panama","PA","","","Fundación de Interés Privado","Spanish","es","Fundación de Interés Privado","F.I.P.","","2020-06-10","ACTV","","","" "V5VG","Panama","PA","","","Sociedad en Comandita simple","Spanish","es","Sociedad en Comandita simple","","","2020-06-10","ACTV","","","" "VIMA","Panama","PA","","","Micro-empresa de Responsabilidad Limitada","Spanish","es","Micro-empresa de Responsabilidad Limitada","M.R.L.","","2020-06-10","ACTV","","","" "6UED","Papua New Guinea","PG","","","Local Company","English","en","Local Company","","","2020-06-10","ACTV","","","" "WHCV","Papua New Guinea","PG","","","Foreign Enterprise","English","en","Foreign Enterprise","","","2020-06-10","ACTV","","","" "ZE1G","Papua New Guinea","PG","","","Overseas Company","English","en","Overseas Company","","","2020-06-10","ACTV","","","" "48X2","Paraguay","PY","","","Empresa Unipersonal De Responsabilidad Limitada","Spanish","es","Empresa Unipersonal De Responsabilidad Limitada","E.I.R.L","","2020-06-10","ACTV","","","" "4QBB","Paraguay","PY","","","Sociedad En Comandita Simple","Spanish","es","Sociedad En Comandita Simple","S.C","","2020-06-10","ACTV","","","" "78SG","Paraguay","PY","","","Empresa Unipersonal","Spanish","es","Empresa Unipersonal","E.U","","2020-06-10","ACTV","","","" "IJAO","Paraguay","PY","","","Sociedad Anonima","Spanish","es","Sociedad Anonima","S.A.","","2020-06-10","ACTV","","","" "K08V","Paraguay","PY","","","Sociedad De Responsabilidad Limitada","Spanish","es","Sociedad De Responsabilidad Limitada","S.R.L","","2020-06-10","ACTV","","","" "LNG8","Paraguay","PY","","","Sociedad En Comandita Por Acciones","Spanish","es","Sociedad En Comandita Por Acciones","S.C.A","","2020-06-10","ACTV","","","" "1MQ6","Peru","PE","","","Sociedad en Comandita por Acciones","Spanish","es","Sociedad en Comandita por Acciones","S. en C. por A.","","2020-06-10","ACTV","","","" "37G2","Peru","PE","","","Sociedad por Acciones Cerrada Simplificada","Spanish","es","Sociedad por Acciones Cerrada Simplificada","S.A.C.S.","","2020-06-10","ACTV","","","" "3LHF","Peru","PE","","","Sociedad Colectiva","Spanish","es","Sociedad Colectiva","S.C.","","2020-06-10","ACTV","","","" "4LCX","Peru","PE","","","Empresas de Derecho Público","Spanish","es","Empresas de Derecho Público","","","2020-06-10","ACTV","","","" "649C","Peru","PE","","","Sociedad Civil de Responsabilidad Limitada","Spanish","es","Sociedad Civil de Responsabilidad Limitada","S. Civil de R. L.","","2020-06-10","ACTV","","","" "73C0","Peru","PE","","","Sociedad Comercial de Responsabilidad Limitada","Spanish","es","Sociedad Comercial de Responsabilidad Limitada","SRL","","2020-06-10","ACTV","","","" "AABQ","Peru","PE","","","Empresas Multicomunales","Spanish","es","Empresas Multicomunales","","","2020-06-10","ACTV","","","" "CHX6","Peru","PE","","","Sociedad Anónima Cerrada","Spanish","es","Sociedad Anónima Cerrada","SAC","","2020-06-10","ACTV","","","" "H8G2","Peru","PE","","","Empresa Individual de Responsabilidad Limitada","Spanish","es","Empresa Individual de Responsabilidad Limitada","EIRL","","2020-06-10","ACTV","","","" "I695","Peru","PE","","","Socieda Anónima","Spanish","es","Socieda Anónima","SA","","2020-06-10","ACTV","","","" "P53M","Peru","PE","","","Cooperativas","Spanish","es","Cooperativas","","","2020-06-10","ACTV","","","" "PKRY","Peru","PE","","","Socieda Anónima Abierta","Spanish","es","Socieda Anónima Abierta","SAA","","2020-06-10","ACTV","","","" "QQWG","Peru","PE","","","Sociedad Civil","Spanish","es","Sociedad Civil","S. Civil","","2020-06-10","ACTV","","","" "RFJT","Peru","PE","","","Sociedad en Comandita Simple","Spanish","es","Sociedad en Comandita Simple","S. en C.","","2020-06-10","ACTV","","","" "YMBC","Peru","PE","","","Sociedad legal","Spanish","es","Sociedad legal","","","2020-06-10","ACTV","","","" "76ME","Philippines","PH","","","nonstock corporation","English","en","nonstock corporation","","","2021-09-23","ACTV","","","" "IODM","Philippines","PH","","","educational corporation","English","en","educational corporation","","","2021-09-23","ACTV","","","" "KJOW","Philippines","PH","","","one person corporation","English","en","one person corporation","OPC","","2021-09-23","ACTV","","","" "SPX9","Philippines","PH","","","close corporation","English","en","close corporation","","","2021-09-23","ACTV","","","" "WHGH","Philippines","PH","","","stock corporation","English","en","stock corporation","Inc.","","2021-09-23","ACTV","","","" "ZJEX","Philippines","PH","","","religious corporation","English","en","religious corporation","","","2021-09-23","ACTV","","","" "13ZV","Poland","PL","","","samodzielny publiczny zakład opieki zdrowotnej","Polish","pl","samodzielny publiczny zakład opieki zdrowotnej","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "3BJG","Poland","PL","","","spółka partnerska","Polish","pl","spółka partnerska","sp.p.","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "5F76","Poland","PL","","","cechy i izby rzemieślnicze, izby gospodarcze","Polish","pl","cechy i izby rzemieślnicze, izby gospodarcze","","","2017-11-30","ACTV","","","" "60BG","Poland","PL","","","organy władzy, administracji rządowej, kontroli państwowej i ochrony prawa oraz sądy i trybunały","Polish","pl","organy władzy, administracji rządowej, kontroli państwowej i ochrony prawa oraz sądy i trybunały","","","2017-11-30","ACTV","","","" "629I","Poland","PL","","","spółka jawna","Polish","pl","spółka jawna","s.j.;Sp.j.","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "6LUM","Poland","PL","","","główny oddział zagranicznego zakładu reasekuracji","Polish","pl","główny oddział zagranicznego zakładu reasekuracji","","","2017-11-30","ACTV","","","" "6OYI","Poland","PL","","","zrzeszenie","Polish","pl","zrzeszenie","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "85PM","Poland","PL","","","Europejskie Zgrupowanie Interesów Gospodarczych","Polish","pl","Europejskie Zgrupowanie Interesów Gospodarczych","EZIG","","2021-09-23","ACTV","","","" "8TOF","Poland","PL","","","spółdzielnia","Polish","pl","spółdzielnia","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "96XK","Poland","PL","","","fundacja","Polish","pl","fundacja","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "AL9T","Poland","PL","","","samorządowe jednostki organizacyjne","Polish","pl","samorządowe jednostki organizacyjne","","","2017-11-30","ACTV","","","" "B21W","Poland","PL","","","prosta spółka akcyjna","Polish","pl","prosta spółka akcyjna","PSA","","2021-09-23","ACTV","","","new legal form in Poland since 1 July 2021" "BSJT","Poland","PL","","","spółka komandytowa","Polish","pl","spółka komandytowa","sp.k.","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "CY1M","Poland","PL","","","instytucje gospodarki budżetowej","Polish","pl","instytucje gospodarki budżetowej","","","2017-11-30","ACTV","","","" "EU0T","Poland","PL","","","towarzystwo reasekuracji wzajemnej","Polish","pl","towarzystwo reasekuracji wzajemnej","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "F21U","Poland","PL","","","Skarb Państwa","Polish","pl","Skarb Państwa","","","2017-11-30","ACTV","","","" "FANM","Poland","PL","","","kółka rolnicze","Polish","pl","kółka rolnicze","","","2017-11-30","ACTV","","","" "FJ0E","Poland","PL","","","spółka akcyjna","Polish","pl","spółka akcyjna","S.A.","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "FQ5Y","Poland","PL","","","organizacje społeczne i zawodowe","Polish","pl","organizacje społeczne i zawodowe","","","2017-11-30","ACTV","","","" "GZE5","Poland","PL","","","wspólnota mieszkaniowa","Polish","pl","wspólnota mieszkaniowa","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "H7OD","Poland","PL","","","spółdzielcza kasa oszczędnościowo-kredytowa","Polish","pl","spółdzielcza kasa oszczędnościowo-kredytowa","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "HOT8","Poland","PL","","","partie polityczne","Polish","pl","partie polityczne","","","2017-11-30","ACTV","","","" "J3A3","Poland","PL","","","spółka europejska","Polish","pl","spółka europejska","SE","","2017-11-30","ACTV","","","" "JCKO","Poland","PL","","","państwowe jednostki organizacyjne","Polish","pl","państwowe jednostki organizacyjne","","","2017-11-30","ACTV","","","" "KM66","Poland","PL","","","instytuty badawcze","Polish","pl","instytuty badawcze","","","2017-11-30","ACTV","","","" "LT9U","Poland","PL","","","związek zawodowy","Polish","pl","związek zawodowy","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "O7XB","Poland","PL","","","spółka z ograniczoną odpowiedzialnością","Polish","pl","spółka z ograniczoną odpowiedzialnością","sp. z o.o.","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "OMX0","Poland","PL","","","spółka komandytowo-akcyjna","Polish","pl","spółka komandytowo-akcyjna","S.K.A.","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "P1L1","Poland","PL","","","główny oddział zagranicznego zakładu ubezpieczeń","Polish","pl","główny oddział zagranicznego zakładu ubezpieczeń","","","2017-11-30","ACTV","","","" "QUX1","Poland","PL","","","otwarty fundusz emerytalny","Polish","pl","otwarty fundusz emerytalny","OFE","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "QYL4","Poland","PL","","","placówki systemu oświaty","Polish","pl","placówki systemu oświaty","","","2017-11-30","ACTV","","","" "RBHP","Poland","PL","","","fundusz inwestycyjny","Polish","pl","fundusz inwestycyjny","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "RUCO","Poland","PL","","","oddział przedsiębiorcy zagranicznego","Polish","pl","oddział przedsiębiorcy zagranicznego","","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "SMIS","Poland","PL","","","przedsiębiorstwo państwowe","Polish","pl","przedsiębiorstwo państwowe","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "SP4S","Poland","PL","","","kościoł i związki wyznaniowe","Polish","pl","kościoł i związki wyznaniowe","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "SVA3","Poland","PL","","","fundusze inne niż inwestycyjne i inne niż otwarte fundusze emerytalne","Polish","pl","fundusze inne niż inwestycyjne i inne niż otwarte fundusze emerytalne","","","2017-11-30","ACTV","","","" "T7PB","Poland","PL","","","wspólnoty samorządowe","Polish","pl","wspólnoty samorządowe","","","2017-11-30","ACTV","","","" "WNX1","Poland","PL","","","towarzystwo ubezpieczeń wzajemnych","Polish","pl","towarzystwo ubezpieczeń wzajemnych","TUW","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "WOK7","Poland","PL","","","związki inne niż zawodowe","Polish","pl","związki inne niż zawodowe","","","2017-11-30","ACTV","","","" "WUJ2","Poland","PL","","","uczelnia","Polish","pl","uczelnia","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "YLZL","Poland","PL","","","spółka cywilna","Polish","pl","spółka cywilna","s.c.","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "ZVVM","Poland","PL","","","osoby fizyczne prowadzące działalność gospodarczą","Polish","pl","osoby fizyczne prowadzące działalność gospodarczą","","","2017-11-30","ACTV","","","" "ZZKE","Poland","PL","","","stowarzyszenie i związki stowarzyszeń","Polish","pl","stowarzyszenie i związki stowarzyszeń","","","2017-11-30","ACTV","text corrected","2020-06-10","change name of legal form to singular" "1HGD","Portugal","PT","","","Cooperativa","Portuguese","pt","Cooperativa","","","2017-11-30","ACTV","","","" "5KVH","Portugal","PT","","","Cooperativa de 2º Grau","Portuguese","pt","Cooperativa de 2º Grau","","","2017-11-30","ACTV","","","" "68PD","Portugal","PT","","","Representação Permanente","Portuguese","pt","Representação Permanente","","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a representation or branch of a company abroad" "6IK8","Portugal","PT","","","Entidade Empresarial Intermunicipal","Portuguese","pt","Entidade Empresarial Intermunicipal","","","2017-11-30","ACTV","","","" "6L6P","Portugal","PT","","","Fundo","Portuguese","pt","Fundo","","","2017-11-30","ACTV","","","" "99JD","Portugal","PT","","","Agrupamento Europeu de Interesse Económico","Portuguese","pt","Agrupamento Europeu de Interesse Económico","AEIE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "A8CT","Portugal","PT","","","Entidade Pública Empresarial","Portuguese","pt","Entidade Pública Empresarial","","","2017-11-30","ACTV","","","" "ALPT","Portugal","PT","","","Associação","Portuguese","pt","Associação","","","2017-11-30","ACTV","","","" "D7OA","Portugal","PT","","","Entidade Empresarial Municipal","Portuguese","pt","Entidade Empresarial Municipal","","","2017-11-30","ACTV","","","" "DFE5","Portugal","PT","","","Sociedade Anónima","Portuguese","pt","Sociedade Anónima","","","2017-11-30","ACTV","","","" "IX01","Portugal","PT","","","Empresa Intermunicipal","Portuguese","pt","Empresa Intermunicipal","","","2017-11-30","ACTV","","","" "KUUV","Portugal","PT","","","Organismo da Administração Pública","Portuguese","pt","Organismo da Administração Pública","","","2017-11-30","ACTV","","","" "MFHR","Portugal","PT","","","Sociedade Anónima Europeia","Portuguese","pt","Sociedade Anónima Europeia","SE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "N66B","Portugal","PT","","","Sociedade em Nome Coletivo","Portuguese","pt","Sociedade em Nome Coletivo","","","2017-11-30","ACTV","","","" "NIQY","Portugal","PT","","","Entidade Empresarial Metropolitana","Portuguese","pt","Entidade Empresarial Metropolitana","","","2017-11-30","ACTV","","","" "OXUC","Portugal","PT","","","Sociedade em Comandita","Portuguese","pt","Sociedade em Comandita","","","2017-11-30","ACTV","","","" "P5S3","Portugal","PT","","","Pessoa Coletiva de Direito Público","Portuguese","pt","Pessoa Coletiva de Direito Público","","","2017-11-30","ACTV","","","" "PIDC","Portugal","PT","","","Empresa Municipal","Portuguese","pt","Empresa Municipal","","","2017-11-30","ACTV","","","" "QFXD","Portugal","PT","","","Pessoa Coletiva Internacional","Portuguese","pt","Pessoa Coletiva Internacional","","","2017-11-30","ACTV","","","" "USOG","Portugal","PT","","","Sociedade por Quotas","Portuguese","pt","Sociedade por Quotas","","","2017-11-30","ACTV","","","" "V6YL","Portugal","PT","","","Societas Cooperativa Europaea","Portuguese","pt","Societas Cooperativa Europaea","SCE","","2021-09-23","ACTV","","","" "VALH","Portugal","PT","","","Empresário em Nome Individual","Portuguese","pt","Empresário em Nome Individual","","","2023-09-28","ACTV","","","" "VF4C","Portugal","PT","","","Sociedade Unipessoal por Quotas","Portuguese","pt","Sociedade Unipessoal por Quotas","","","2017-11-30","ACTV","","","" "W9W3","Portugal","PT","","","Sociedade Anónima Desportiva","Portuguese","pt","Sociedade Anónima Desportiva","","","2017-11-30","ACTV","","","" "XD16","Portugal","PT","","","Empresa Metropolitana","Portuguese","pt","Empresa Metropolitana","","","2017-11-30","ACTV","","","" "XMXM","Portugal","PT","","","Fundo","Portuguese","pt","Fundo","","","2017-11-30","INAC","double entry of legal form removed","2019-07-05","this legal form was on the list twice, also as ELF Code 6L6P; and XMXM is less used than 6L6P" "YMLD","Portugal","PT","","","Agrupamento Complementar de Empresas","Portuguese","pt","Agrupamento Complementar de Empresas","","","2017-11-30","ACTV","","","" "Z0NE","Portugal","PT","","","Fundação","Portuguese","pt","Fundação","","","2017-11-30","ACTV","","","" "ZILA","Portugal","PT","","","Estabelecimento Individual de Responsabilidade Limitada","Portuguese","pt","Estabelecimento Individual de Responsabilidade Limitada","","","2017-11-30","ACTV","","","" "ZSWE","Portugal","PT","","","Empresa Regional","Portuguese","pt","Empresa Regional","","","2017-11-30","ACTV","","","" "IKBN","Portugal","PT","Madeira","PT-30","Trust","Portuguese","pt","Trust","","","2017-11-30","ACTV","correction country subdivision code","2019-07-05","correction of country subdivision code" "Z7ZX","Portugal","PT","Madeira","PT-30","Sucursal Financeira Exterior","Portuguese","pt","Sucursal Financeira Exterior","","","2017-11-30","ACTV","correction country subdivision code","2019-07-05","correction of country subdivision code" "194I","Puerto Rico","PR","","","Professional Corporation","English","en","Professional Corporation","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "194I","Puerto Rico","PR","","","Corporación Especial para el Desarrollo Municipal","Spanish","es","Corporación Especial para el Desarrollo Municipal","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "1TG4","Puerto Rico","PR","","","Low Profit LLC","English","en","Low Profit LLC","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "1TG4","Puerto Rico","PR","","","Compañía de Responsabilidad Limitada con Fin Social","Spanish","es","Compañía de Responsabilidad Limitada con Fin Social","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "35RF","Puerto Rico","PR","","","Limited Liability Company","English","en","Limited Liability Company","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "35RF","Puerto Rico","PR","","","Compañía de Responsabilidad Limitada","Spanish","es","Compañía de Responsabilidad Limitada","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "3QX8","Puerto Rico","PR","","","Limited Liability Company","English","en","Limited Liability Company","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "3QX8","Puerto Rico","PR","","","Cooperative de Juvenil","Spanish","es","Cooperative de Juvenil","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "4XY9","Puerto Rico","PR","","","Trust","English","en","Trust","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "4XY9","Puerto Rico","PR","","","Entidad Financiera Internacional (Corporación)","Spanish","es","Entidad Financiera Internacional (Corporación)","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "6DE6","Puerto Rico","PR","","","Close Corporation","English","en","Close Corporation","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "6DE6","Puerto Rico","PR","","","Centro Bancario Internacional (Corporación)","Spanish","es","Centro Bancario Internacional (Corporación)","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "7JAI","Puerto Rico","PR","","","Special Employee Owned Corporation","English","en","Special Employee Owned Corporation","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "7JAI","Puerto Rico","PR","","","Empressa Municipal","Spanish","es","Empressa Municipal","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "81YI","Puerto Rico","PR","","","International Financial Entity (LLC)","English","en","International Financial Entity (LLC)","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "81YI","Puerto Rico","PR","","","Cooperative de Trabajadores","Spanish","es","Cooperative de Trabajadores","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "87N3","Puerto Rico","PR","","","Cooperativa de Consumo","Spanish","es","Cooperativa de Consumo","","","2020-11-19","ACTV","new ELF code to replace inactivated code; typo corrected","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages; for this legal form also typo corrected" "87N3","Puerto Rico","PR","","","Consumer Cooperative","English","en","Consumer Cooperative","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "9EGO","Puerto Rico","PR","","","Bank (LLC)","English","en","Bank (LLC)","","","2020-06-10","ACTV","","","" "9EGO","Puerto Rico","PR","","","Banco (CRL)","Spanish","es","Banco (CRL)","","","2020-06-10","ACTV","","","" "A4MM","Puerto Rico","PR","","","International Banking Center (Corporation)","English","en","International Banking Center (Corporation)","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "A4MM","Puerto Rico","PR","","","Compañía de Seguros","Spanish","es","Compañía de Seguros","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "BQ6L","Puerto Rico","PR","","","Sponsored By Municipal Corporation","English","en","Sponsored By Municipal Corporation","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "BQ6L","Puerto Rico","PR","","","Entidad Financiera Internacional (CRL)","Spanish","es","Entidad Financiera Internacional (CRL)","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "C907","Puerto Rico","PR","","","Youth Cooperative","English","en","Youth Cooperative","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "C907","Puerto Rico","PR","","","Sociedad de Responsabilidad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "D5L6","Puerto Rico","PR","","","Consumer Cooperative","English","en","Consumer Cooperative","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "D5L6","Puerto Rico","PR","","","Centro Bancario Internacional (CRL)","Spanish","es","Centro Bancario Internacional (CRL)","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "D8XQ","Puerto Rico","PR","","","Municipal Enterprise","English","en","Municipal Enterprise","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "D8XQ","Puerto Rico","PR","","","Empressa Municipal","Spanish","es","Empressa Municipal","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "DE7H","Puerto Rico","PR","","","Professional Corporation","English","en","Professional Corporation","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "DE7H","Puerto Rico","PR","","","Corporación Professional","Spanish","es","Corporación Professional","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "E85L","Puerto Rico","PR","","","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "E85L","Puerto Rico","PR","","","Corporación","Spanish","es","Corporación","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "EQQP","Puerto Rico","PR","","","Special Employee Owned Corporation","English","en","Special Employee Owned Corporation","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "EQQP","Puerto Rico","PR","","","Corporación Especial Propiedad de Trabajadores","Spanish","es","Corporación Especial Propiedad de Trabajadores","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "ERUM","Puerto Rico","PR","","","Public Benefit Corporation","English","en","Public Benefit Corporation","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "ERUM","Puerto Rico","PR","","","Corporación Especial Propiedad de Trabajadores","Spanish","es","Corporación Especial Propiedad de Trabajadores","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "GCP3","Puerto Rico","PR","","","International Financial Entity (LLC)","English","en","International Financial Entity (LLC)","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "GCP3","Puerto Rico","PR","","","Entidad Financiera Internacional (CRL)","Spanish","es","Entidad Financiera Internacional (CRL)","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "GL33","Puerto Rico","PR","","","Centro Bancario Internacional (Corporación)","Spanish","es","Centro Bancario Internacional (Corporación)","","","2020-11-19","ACTV","language label corrected","2021-09-23","language labels were switched between the 2 languages for this legal form" "GL33","Puerto Rico","PR","","","International Banking Center (Corporation)","English","en","International Banking Center (Corporation)","","","2020-11-19","ACTV","language label corrected","2021-09-23","language labels were switched between the 2 languages for this legal form" "GRH5","Puerto Rico","PR","","","Workers Cooperative","English","en","Workers Cooperative","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "GRH5","Puerto Rico","PR","","","Cooperativa de Trabajadores","Spanish","es","Cooperativa de Trabajadores","","","2020-11-19","ACTV","new ELF code to replace inactivated code; typo corrected","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages; for this legal form also typo corrected" "I1WG","Puerto Rico","PR","","","Municipal Enterprise","English","en","Municipal Enterprise","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "I1WG","Puerto Rico","PR","","","Corporación de Beneficio Social","Spanish","es","Corporación de Beneficio Social","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "I6FV","Puerto Rico","PR","","","Savings & Credit Cooperative","English","en","Savings & Credit Cooperative","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "I6FV","Puerto Rico","PR","","","Cooperativa de Ahorro y Crédito","Spanish","es","Cooperativa de Ahorro y Crédito","","","2020-11-19","ACTV","new ELF code to replace inactivated code; typo corrected","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages; for this legal form also typo corrected" "INDH","Puerto Rico","PR","","","Corporation","English","en","Corporation","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "INDH","Puerto Rico","PR","","","Compañía de Responsabilidad Limitada","Spanish","es","Compañía de Responsabilidad Limitada","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "JJ1V","Puerto Rico","PR","","","Trust","English","en","Trust","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "JJ1V","Puerto Rico","PR","","","Fideicomiso","Spanish","es","Fideicomiso","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "ME4Y","Puerto Rico","PR","","","Public Benefit Corporation","English","en","Public Benefit Corporation","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "ME4Y","Puerto Rico","PR","","","Corporación de Beneficio Social","Spanish","es","Corporación de Beneficio Social","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "O2JM","Puerto Rico","PR","","","Youth Cooperative","English","en","Youth Cooperative","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "O2JM","Puerto Rico","PR","","","Cooperativa de Juvenil","Spanish","es","Cooperativa de Juvenil","","","2020-11-19","ACTV","new ELF code to replace inactivated code; typo corrected","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages; for this legal form also typo corrected" "O4QG","Puerto Rico","PR","","","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "O4QG","Puerto Rico","PR","","","Sociedad de Responsabilidad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "O8XV","Puerto Rico","PR","","","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "RA5B","Puerto Rico","PR","","","International Banking Center (LLC)","English","en","International Banking Center (LLC)","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "RA5B","Puerto Rico","PR","","","Centro Bancario Internacional (CRL)","Spanish","es","Centro Bancario Internacional (CRL)","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "SOQ1","Puerto Rico","PR","","","Workers Cooperative","English","en","Workers Cooperative","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "SOQ1","Puerto Rico","PR","","","Fideicomiso","Spanish","es","Fideicomiso","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "SQXC","Puerto Rico","PR","","","Insurance Company","English","en","Insurance Company","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "SQXC","Puerto Rico","PR","","","Compañía de Responsabilidad Limitada con Fin Social","Spanish","es","Compañía de Responsabilidad Limitada con Fin Social","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "T2JS","Puerto Rico","PR","","","Close Corporation","English","en","Close Corporation","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "T2JS","Puerto Rico","PR","","","Corporación Intima","Spanish","es","Corporación Intima","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "TEGV","Puerto Rico","PR","","","Special Corporation for Municipal Development","English","en","Special Corporation for Municipal Development","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "TEGV","Puerto Rico","PR","","","Corporación Especial para el Desarrollo Municipal","Spanish","es","Corporación Especial para el Desarrollo Municipal","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "TPFL","Puerto Rico","PR","","","Bank (Corporation)","English","en","Bank (Corporation)","","","2020-06-10","ACTV","","","" "TPFL","Puerto Rico","PR","","","Banco (Corporación)","Spanish","es","Banco (Corporación)","","","2020-06-10","ACTV","","","" "UL6C","Puerto Rico","PR","","","Savings & Credit Cooperative","English","en","Savings & Credit Cooperative","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "UL6C","Puerto Rico","PR","","","Corporación Intima","Spanish","es","Corporación Intima","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "VKSV","Puerto Rico","PR","","","Insurance Company","English","en","Insurance Company","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "VKSV","Puerto Rico","PR","","","Compañía de Seguros","Spanish","es","Compañía de Seguros","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "W6NI","Puerto Rico","PR","","","International Financial Entity (Corporation)","English","en","International Financial Entity (Corporation)","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "W6NI","Puerto Rico","PR","","","Entidad Financiera Internacional (Corporación)","Spanish","es","Entidad Financiera Internacional (Corporación)","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "XK6L","Puerto Rico","PR","","","International Financial Entity (Corporation)","English","en","International Financial Entity (Corporation)","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "XK6L","Puerto Rico","PR","","","Cooperative de Consumo","Spanish","es","Cooperative de Consumo","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "XUYT","Puerto Rico","PR","","","International Banking Center (LLC)","English","en","International Banking Center (LLC)","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "XUYT","Puerto Rico","PR","","","Cooperative de Ahorro y Crédito","Spanish","es","Cooperative de Ahorro y Crédito","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "Y21X","Puerto Rico","PR","","","Sponsored By Municipal Corporation","English","en","Sponsored By Municipal Corporation","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "Y21X","Puerto Rico","PR","","","Corporación Auspiciada Por Municipios","Spanish","es","Corporación Auspiciada Por Municipios","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "Y3T2","Puerto Rico","PR","","","Special Corporation for Municipal Development","English","en","Special Corporation for Municipal Development","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "Y3T2","Puerto Rico","PR","","","Corporación Professional","Spanish","es","Corporación Professional","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "Y7LW","Puerto Rico","PR","","","Low Profit LLC","English","en","Low Profit LLC","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "Y7LW","Puerto Rico","PR","","","Corporación Auspiciada Por Municipios","Spanish","es","Corporación Auspiciada Por Municipios","","","2020-06-10","INAC","ELF code inactivated and replaced by new code","2020-11-19","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "YS16","Puerto Rico","PR","","","Corporation","English","en","Corporation","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "YS16","Puerto Rico","PR","","","Corporación","Spanish","es","Corporación","","","2020-11-19","ACTV","new ELF code to replace inactivated code","","all existing ELF codes for Puerto Rico replaced with new codes to solve situation with incorrect pairing of the same legal form in 2 languages" "ADV0","Qatar","QA","","","الشركة ذات المسؤولية المحدودة","Arabic","ar","Sharika That Almasuliah Almahduda","ذ.م.م","","2021-09-23","ACTV","","","" "B4L0","Qatar","QA","","","شركة المحاصة","Arabic","ar","Sharikat Almahasah","","","2021-09-23","ACTV","","","" "KHBL","Qatar","QA","","","شركة التوصية البسيطة","Arabic","ar","Sharikat Altawsia Albasita","","","2021-09-23","ACTV","","","" "OR18","Qatar","QA","","","شركة التضامن","Arabic","ar","Sharikat Altadamun","","","2021-09-23","ACTV","","","" "QZ84","Qatar","QA","","","شركة المساهمة العامة","Arabic","ar","Sharikat Almusahama Alaamah","ش.م.ع","","2021-09-23","ACTV","","","" "RN1W","Qatar","QA","","","شركة التوصية بالأسهم","Arabic","ar","Sharikat Altawsia Blas'hoom","","","2021-09-23","ACTV","","","" "W50Q","Qatar","QA","","","شركة المساهمة الخاصة","Arabic","ar","Sharikat Almusahama Alkhasa","ش.م.خ","","2021-09-23","ACTV","","","" "1CDX","Romania","RO","","","Societate europeană","Romanian","ro","Societate europeană","SE","","2017-11-30","ACTV","","","" "37II","Romania","RO","","","Cooperativă meșteșugărească","Romanian","ro","Cooperativă meșteșugărească","","","2017-11-30","ACTV","","","" "4V0A","Romania","RO","","","Grupul european de interes economic","Romanian","ro","Grupul european de interes economic","GEIE","","2017-11-30","ACTV","","","" "5NCK","Romania","RO","","","Organizație non-guvernamentală","Romanian","ro","Organizație non-guvernamentală","ONG","","2017-11-30","ACTV","","","" "7B9H","Romania","RO","","","Societate cooperativă","Romanian","ro","Societate cooperativă","","","2017-11-30","ACTV","","","" "7W9B","Romania","RO","","","Organizații cooperatiste de credit și casele centrale ale acestora","Romanian","ro","Organizații cooperatiste de credit și casele centrale ale acestora","","","2017-11-30","ACTV","","","" "85K5","Romania","RO","","","Reprezentanta","Romanian","ro","Reprezentanta","","","2017-11-30","ACTV","","","" "8FD2","Romania","RO","","","Cooperativă de consum","Romanian","ro","Cooperativă de consum","","","2017-11-30","ACTV","","","" "AI01","Romania","RO","","","Persoana fizica independentă","Romanian","ro","Persoana fizica independentă","PFI","","2017-11-30","ACTV","","","" "ANDT","Romania","RO","","","Societate pe acţiuni","Romanian","ro","Societate pe acţiuni","SA ","","2017-11-30","ACTV","","","" "CTBD","Romania","RO","","","Alte forme de proprietate","Romanian","ro","Alte forme de proprietate","","","2017-11-30","ACTV","","","" "CUGP","Romania","RO","","","Regie autonomă","Romanian","ro","Regie autonomă","RA","","2017-11-30","ACTV","","","" "DUGD","Romania","RO","","","Intreprindere individuala","Romanian","ro","Intreprindere individuala","II","","2017-11-30","ACTV","","","" "EFBR","Romania","RO","","","Grupul de interes economic","Romanian","ro","Grupul de interes economic","GIE","","2017-11-30","ACTV","","","" "F0BK","Romania","RO","","","Societate agricolă","Romanian","ro","Societate agricolă","","","2017-11-30","ACTV","","","" "F68H","Romania","RO","","","Societate în nume colectiv","Romanian","ro","Societate în nume colectiv","SNC","","2017-11-30","ACTV","","","" "FJQ8","Romania","RO","","","Persoana fizica autorizata","Romanian","ro","Persoana fizica autorizata","PFA","","2017-11-30","ACTV","","","" "GT4V","Romania","RO","","","Cooperativă de credit","Romanian","ro","Cooperativă de credit","","","2017-11-30","ACTV","","","" "I15K","Romania","RO","","","Cooperativă agricolă","Romanian","ro","Cooperativă agricolă","","","2017-11-30","ACTV","","","" "I9BB","Romania","RO","","","Sucursala","Romanian","ro","Sucursala","","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "NFRJ","Romania","RO","","","Reprezentant fiscal","Romanian","ro","Reprezentant fiscal","","","2017-11-30","ACTV","","","" "SWMK","Romania","RO","","","Societate în comandită pe acţiuni","Romanian","ro","Societate în comandită pe acţiuni","SCA","","2017-11-30","ACTV","","","" "TH8A","Romania","RO","","","Asociatie familiala","Romanian","ro","Asociatie familiala","AF","","2017-11-30","ACTV","","","" "UWEE","Romania","RO","","","Societate Cooperativă Europeană","Romanian","ro","Societate Cooperativă Europeană","SCE","","2017-11-30","ACTV","","","" "V0FL","Romania","RO","","","Societate în comandită simplă","Romanian","ro","Societate în comandită simplă","SCS","","2017-11-30","ACTV","","","" "XHN1","Romania","RO","","","Societate cu răspundere limitată","Romanian","ro","Societate cu răspundere limitată","SRL","","2017-11-30","ACTV","","","" "15A2","Russian Federation","RU","","","Объединения (ассоциации и союзы) благотворительных организаций","Russian","ru","Ob""yedineniya (assotsiatsii i soyuzy) blagotvoritel'nykh organizatsiy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "17R7","Russian Federation","RU","","","Общества с ограниченной ответственностью","Russian","ru","Obshchestva s ogranichennoy otvetstvennost'yu","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "1MJ0","Russian Federation","RU","","","Крестьянские (фермерские) хозяйства","Russian","ru","Krest'yanskiye (fermerskiye) khozyaystva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "1RJ2","Russian Federation","RU","","","Автономные некоммерческие организации","Russian","ru","Avtonomnyye nekommercheskiye organizatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "1U7Y","Russian Federation","RU","","","Благотворительные учреждения","Russian","ru","Blagotvoritel'nyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "24TU","Russian Federation","RU","","","Союзы (ассоциации) общественных объединений","Russian","ru","Soyuzy (assotsiatsii) obshchestvennykh ob""yedineniy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "2H36","Russian Federation","RU","","","Союзы (ассоциации) кооперативов","Russian","ru","Soyuzy (assotsiatsii) kooperativov","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "2OTW","Russian Federation","RU","","","Муниципальные автономные учреждения","Russian","ru","Munitsipal'nyye avtonomnyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "2R46","Russian Federation","RU","","","Товарищества собственников жилья","Russian","ru","Tovarishchestva sobstvennikov zhil'ya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "37YG","Russian Federation","RU","","","Федеральные казенные предприятия","Russian","ru","Federal'nyye kazennyye predpriyatiya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3AMJ","Russian Federation","RU","","","Сельскохозяйственные производственные кооперативы","Russian","ru","Sel'skokhozyaystvennyye proizvodstvennyye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3EAX","Russian Federation","RU","","","Производственные кооперативы (кроме сельскохозяйственных производственных кооперативов)","Russian","ru","Proizvodstvennyye kooperativy (krome sel'skokhozyaystvennykh proizvodstvennykh kooperativov)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3F98","Russian Federation","RU","","","Учреждения","Russian","ru","Uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3TOV","Russian Federation","RU","","","Профсоюзные организации","Russian","ru","Profsoyuznyye organizatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "3U8X","Russian Federation","RU","","","Прочие юридические лица, являющиеся коммерческими организациями","Russian","ru","Prochiye yuridicheskiye litsa, yavlyayushchiyesya kommercheskimi organizatsiyami","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4PZX","Russian Federation","RU","","","Учреждения, созданные субъектом Российской Федерации","Russian","ru","Uchrezhdeniya, sozdannyye sub""yektom Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4TYO","Russian Federation","RU","","","Публичные акционерные общества","Russian","ru","Publichnyye aktsionernyye obshchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4VTZ","Russian Federation","RU","","","Ассоциации (союзы)","Russian","ru","Assotsiatsii (soyuzy)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "5VMR","Russian Federation","RU","","","Адвокаты, учредившие адвокатский кабинет","Russian","ru","Advokaty, uchredivshiye advokatskiy kabinet","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "6H83","Russian Federation","RU","","","Сельскохозяйственные потребительские животноводческие кооперативы","Russian","ru","Sel'skokhozyaystvennyye potrebitel'skiye zhivotnovodcheskiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8B9A","Russian Federation","RU","","","Жилищные или жилищно-строительные кооперативы","Russian","ru","Zhilishchnyye ili zhilishchno-stroitel'nyye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8JWV","Russian Federation","RU","","","Государственные академии наук","Russian","ru","Gosudarstvennyye akademii nauk","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8MQM","Russian Federation","RU","","","Государственные бюджетные учреждения субъектов Российской Федерации","Russian","ru","Gosudarstvennyye byudzhetnyye uchrezhdeniya sub""yektov Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8NF7","Russian Federation","RU","","","Федеральные государственные бюджетные учреждения","Russian","ru","Federal'nyye gosudarstvennyye byudzhetnyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8NZE","Russian Federation","RU","","","Садоводческие, огороднические или дачные потребительские кооперативы","Russian","ru","Sadovodcheskiye, ogorodnicheskiye ili dachnyye potrebitel'skiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8RIH","Russian Federation","RU","","","Публично-правовые компании","Russian","ru","Publichno-pravovyye kompanii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8XDD","Russian Federation","RU","","","Советы муниципальных образований субъектов Российской Федерации","Russian","ru","Sovety munitsipal'nykh obrazovaniy sub""yektov Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "9M15","Russian Federation","RU","","","Центральный банк","Russian","ru","Central'nyj bank","","","2020-11-19","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "9RQZ","Russian Federation","RU","","","Государственные унитарные предприятия субъектов Российской Федерации","Russian","ru","Gosudarstvennyye unitarnyye predpriyatiya sub""yektov Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "AS78","Russian Federation","RU","","","Адвокатские бюро","Russian","ru","Advokatskiye byuro","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "B5GH","Russian Federation","RU","","","Казачьи общества, внесенные в государственный реестр казачьих обществ в Российской Федерации","Russian","ru","Kazach'i obshchestva, vnesennyye v gosudarstvennyy reyestr kazach'ikh obshchestv v Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "BLVV","Russian Federation","RU","","","Кредитные потребительские кооперативы","Russian","ru","Kreditnyye potrebitel'skiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "BQ3A","Russian Federation","RU","","","Гаражные и гаражно-строительные кооперативы","Russian","ru","Garazhnyye i garazhno-stroitel'nyye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "BZQL","Russian Federation","RU","","","Организационно-правовые формы для деятельности граждан (физических лиц)","Russian","ru","Organizatsionno-pravovyye formy dlya deyatel'nosti grazhdan (fizicheskikh lits)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "C3RQ","Russian Federation","RU","","","Организационно-правовые формы юридических лиц, являющихся некоммерческими корпоративными организациями","Russian","ru","Organizatsionno-pravovyyу formy yuridicheskikh lits, yavlyayushchikhsya kommercheskimi korporativnymi organizatsiyami","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "C7TI","Russian Federation","RU","","","Ассоциации (союзы) садоводческих, огороднических и дачных некоммерческих объединений","Russian","ru","Assotsiatsii (soyuzy) sadovodcheskikh, ogorodnicheskikh i dachnykh nekommercheskikh ob""yedineniy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CKTA","Russian Federation","RU","","","Некоммерческие партнерства","Russian","ru","Nekommercheskiye partnerstva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CN7I","Russian Federation","RU","","","Фонды проката","Russian","ru","Fondy prokata","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "D094","Russian Federation","RU","","","Экологические фонды","Russian","ru","Ekologicheskiye fondy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "D84J","Russian Federation","RU","","","Общественные организации","Russian","ru","Obshchestvennyye organizatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "DO25","Russian Federation","RU","","","Государственные компании","Russian","ru","Gosudarstvennyye kompanii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "DZSY","Russian Federation","RU","","","Казенные предприятия субъектов Российской Федерации","Russian","ru","Kazennyye predpriyatiya sub""yektov Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "E0VI","Russian Federation","RU","","","Государственные корпорации","Russian","ru","Gosudarstvennyye korporatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "EH3M","Russian Federation","RU","","","Общественные фонды","Russian","ru","Obshchestvennyye fondy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "EWQF","Russian Federation","RU","","","Организационно-правовые формы для коммерческой деятельности граждан","Russian","ru","Organizatsionno-pravovyye formy dlya kommercheskoy deyatel'nosti grazhdan","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "FWGK","Russian Federation","RU","","","Муниципальные бюджетные учреждения","Russian","ru","Munitsipal'nyye byudzhetnyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "FZKX","Russian Federation","RU","","","Производственные кооперативы (артели)","Russian","ru","Proizvodstvennyye kooperativy (arteli)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "G2CW","Russian Federation","RU","","","Территориальные общественные самоуправления","Russian","ru","Territorial'nyye obshchestvennyye samoupravleniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "GHC5","Russian Federation","RU","","","Сельскохозяйственные потребительские огороднические кооперативы","Russian","ru","Sel'skokhozyaystvennyye potrebitel'skiye ogorodnicheskiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "GQRJ","Russian Federation","RU","","","Учреждения, созданные Российской Федерацией","Russian","ru","Uchrezhdeniya, sozdannyye Rossiyskoy Federatsiyey","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "GWHK","Russian Federation","RU","","","Общины коренных малочисленных народов Российской Федерации","Russian","ru","Obshchiny korennykh malochislennykh narodov Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "GZF9","Russian Federation","RU","","","Структурные подразделения обособленных подразделений юридических лиц","Russian","ru","Strukturnyye podrazdeleniya obosoblennykh podrazdeleniy yuridicheskikh lits","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "H2AF","Russian Federation","RU","","","Товарищества собственников недвижимости","Russian","ru","Tovarishchestva sobstvennikov nedvizhimosti","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "H2P4","Russian Federation","RU","","","Кредитные кооперативы второго уровня","Russian","ru","Kreditnyye kooperativy vtorogo urovnya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "H4NY","Russian Federation","RU","","","Адвокатские палаты","Russian","ru","Advokatskiye palaty","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "HKKL","Russian Federation","RU","","","Федеральные государственные автономные учреждения","Russian","ru","Federal'nyye gosudarstvennyye avtonomnyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "HUET","Russian Federation","RU","","","Религиозные организации","Russian","ru","Religioznyye organizatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "HUR1","Russian Federation","RU","","","Сельскохозяйственные потребительские обслуживающие кооперативы","Russian","ru","Sel'skokhozyaystvennyye potrebitel'skiye obsluzhivayushchiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "I9O1","Russian Federation","RU","","","Сельскохозяйственные потребительские перерабатывающие кооперативы","Russian","ru","Sel'skokhozyaystvennyye potrebitel'skiye pererabatyvayushchiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "I9V2","Russian Federation","RU","","","Организационно-правовые формы юридических лиц, являющихся некоммерческими унитарными организациями","Russian","ru","Organizatsionno-pravovyye formy yuridicheskikh lits, yavlyayushchikhsya nekommercheskimi unitarnymi organizatsiyami","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "IBSS","Russian Federation","RU","","","Сельскохозяйственные потребительские снабженческие кооперативы","Russian","ru","Sel'skokhozyaystvennyye potrebitel'skiye snabzhencheskiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "IC46","Russian Federation","RU","","","Сельскохозяйственные артели (колхозы)","Russian","ru","Sel'skokhozyaystvennyye arteli (kolkhozy)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ILY0","Russian Federation","RU","","","Саморегулируемые организации","Russian","ru","Samoreguliruyemyye organizatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "J18N","Russian Federation","RU","","","Товарищества на вере (коммандитные товарищества)","Russian","ru","Tovarishchestva na vere (kommanditnyye tovarishchestva)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "J7NW","Russian Federation","RU","","","Простые товарищества","Russian","ru","Prostyye tovarishchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "JPMQ","Russian Federation","RU","","","Организационно-правовые формы организаций, созданных без прав юридического лица","Russian","ru","Organizatsionno-pravovyye formy organizatsiy, sozdannykh bez prav yuridicheskogo litsa","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "JZBN","Russian Federation","RU","","","Непубличные акционерные общества","Russian","ru","Nepublichnyye aktsionernyye obshchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "KLA2","Russian Federation","RU","","","Хозяйственные товарищества","Russian","ru","Khozyaystvennyye tovarishchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "KOYR","Russian Federation","RU","","","Главы крестьянских (фермерских) хозяйств","Russian","ru","Glavy krest'yanskikh (fermerskikh) khozyaystv","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "KVSH","Russian Federation","RU","","","Органы общественной самодеятельности","Russian","ru","Organy obshchestvennoy samodeyatel'nosti","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "KZC6","Russian Federation","RU","","","Фонды","Russian","ru","Fondy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "LLL8","Russian Federation","RU","","","Отделения иностранных некоммерческих неправительственных организаций","Russian","ru","Otdeleniya inostrannykh nekommercheskikh nepravitel'stvennykh organizatsiy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "LYTH","Russian Federation","RU","","","Благотворительные фонды","Russian","ru","Blagotvoritel'nyye fondy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MG22","Russian Federation","RU","","","Государственные автономные учреждения субъектов Российской Федерации","Russian","ru","Gosudarstvennyye avtonomnyye uchrezhdeniya sub""yektov Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MT3A","Russian Federation","RU","","","Открытое акционерное общество","Russian","ru","Otkrytoye aktsionernoye obshchestvo","","","2020-11-19","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MV1C","Russian Federation","RU","","","Потребительские общества","Russian","ru","Potrebitel'skiye obshchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MVSF","Russian Federation","RU","","","Объединения фермерских хозяйств","Russian","ru","Ob""yedineniya fermerskikh khozyaystv","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "NRK9","Russian Federation","RU","","","Общественные учреждения","Russian","ru","Obshchestvennyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "NZ85","Russian Federation","RU","","","Политические партии","Russian","ru","Politicheskiye partii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "O1KO","Russian Federation","RU","","","Сельскохозяйственные потребительские сбытовые (торговые) кооперативы","Russian","ru","Sel'skokhozyaystvennyye potrebitel'skiye sbytovyye (torgovyye) kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "OCIS","Russian Federation","RU","","","Федеральные государственные унитарные предприятия","Russian","ru","Federal'nyye gosudarstvennyye unitarnyye predpriyatiya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "OPLQ","Russian Federation","RU","","","Представительства юридических лиц","Russian","ru","Predstavitel'stva yuridicheskikh lits","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "OVLN","Russian Federation","RU","","","Унитарные предприятия, основанные на праве оперативного управления (казенные предприятия)","Russian","ru","Unitarnyye predpriyatiya, osnovannyye na prave operativnogo upravleniya (kazennyye predpriyatiya)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "P9CF","Russian Federation","RU","","","Индивидуальные предприниматели","Russian","ru","Individual'nyye predprinimateli","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "PA5X","Russian Federation","RU","","","Ассоциации (союзы) экономического взаимодействия субъектов Российской Федерации","Russian","ru","Assotsiatsii (soyuzy) ekonomicheskogo vzaimodeystviya sub""yektov Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "PDYW","Russian Federation","RU","","","Сельскохозяйственные потребительские садоводческие кооперативы","Russian","ru","Sel'skokhozyaystvennyye potrebitel'skiye sadovodcheskiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "PJRZ","Russian Federation","RU","","","Нотариальные палаты","Russian","ru","Notarial'nyye palaty","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Q9FA","Russian Federation","RU","","","Межправительственные международные организации","Russian","ru","Mezhpravitel'stvennyye mezhdunarodnyye organizatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QCRH","Russian Federation","RU","","","Хозяйственные общества","Russian","ru","Khozyaystvennyye obshchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QFGM","Russian Federation","RU","","","Потребительские кооперативы","Russian","ru","Potrebitel'skiye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QKFU","Russian Federation","RU","","","Учреждения, созданные муниципальным образованием (муниципальные учреждения)","Russian","ru","Uchrezhdeniya, sozdannyye munitsipal'nym obrazovaniyem (munitsipal'nyye uchrezhdeniya)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QMEH","Russian Federation","RU","","","Общества взаимного страхования","Russian","ru","Obshchestva vzaimnogo strakhovaniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QQS1","Russian Federation","RU","","","Организационно-правовые формы международных организаций, осуществляющих деятельность на территории российской федерации","Russian","ru","Organizatsionno-pravovyye formy mezhdunarodnykh organizatsiy, osushchestvlyayushchikh deyatel'nost' na territorii rossiyskoy federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QSXT","Russian Federation","RU","","","Нотариусы, занимающиеся частной практикой","Russian","ru","Notariusy, zanimayushchiyesya chastnoy praktikoy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "QUMQ","Russian Federation","RU","","","Унитарные предприятия, основанные на праве хозяйственного ведения","Russian","ru","Unitarnyye predpriyatiya, osnovannyye na prave khozyaystvennogo vedeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "R71T","Russian Federation","RU","","","Акционерные общества","Russian","ru","Aktsionernyye obshchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "RJUK","Russian Federation","RU","","","Садоводческие, огороднические или дачные некоммерческие товарищества","Russian","ru","Sadovodcheskiye, ogorodnicheskiye ili dachnyye nekommercheskiye tovarishchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "SDVV","Russian Federation","RU","","","Объединения работодателей","Russian","ru","Ob""yedineniya rabotodateley","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "SIPP","Russian Federation","RU","","","Организационно-правовые формы для деятельности граждан, не отнесенной к предпринимательству","Russian","ru","Organizatsionno-pravovyye formy dlya deyatel'nosti grazhdan, ne otnesennoy k predprinimatel'stvu","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "TLDB","Russian Federation","RU","","","Союзы потребительских обществ","Russian","ru","Soyuzy potrebitel'skikh obshchestv","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "TMIG","Russian Federation","RU","","","Федеральные государственные казенные учреждения","Russian","ru","Federal'nyye gosudarstvennyye kazennyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "UTBN","Russian Federation","RU","","","Коллегии адвокатов","Russian","ru","Kollegii advokatov","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "UY49","Russian Federation","RU","","","Районные суды, городские суды, межрайонные суды (районные суды)","Russian","ru","Rayonnyye sudy, gorodskiye sudy, mezhrayonnyye sudy (rayonnyye sudy)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VA0A","Russian Federation","RU","","","Рыболовецкие артели (колхозы)","Russian","ru","Rybolovetskiye arteli (kolkhozy)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VAB6","Russian Federation","RU","","","Обособленные подразделения юридических лиц","Russian","ru","Obosoblennyye podrazdeleniya yuridicheskikh lits","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VE1P","Russian Federation","RU","","","Организационно-правовые формы юридических лиц, являющихся некоммерческими корпоративными организациями","Russian","ru","Organizatsionno-pravovyye formy yuridicheskikh lits, yavlyayushchikhsya nekommercheskimi korporativnymi organizatsiyami","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VEOU","Russian Federation","RU","","","Унитарные предприятия","Russian","ru","Unitarnyye predpriyatiya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VEX5","Russian Federation","RU","","","Муниципальные казенные учреждения","Russian","ru","Munitsipal'nyye kazennyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VIGZ","Russian Federation","RU","","","Филиалы юридических лиц","Russian","ru","Filialy yuridicheskikh lits","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VOUU","Russian Federation","RU","","","Организационно-правовые формы юридических лиц, являющихся коммерческими унитарными организациями","Russian","ru","Organizatsionno-pravovyye formy yuridicheskikh lits, yavlyayushchikhsya kommercheskimi unitarnymi organizatsiyami","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WJXS","Russian Federation","RU","","","Жилищные накопительные кооперативы","Russian","ru","Zhilishchnyye nakopitel'nyye kooperativy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WYNO","Russian Federation","RU","","","Союзы (ассоциации) кредитных кооперативов","Russian","ru","Soyuzy (assotsiatsii) kreditnykh kooperativov","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XBRI","Russian Federation","RU","","","Неправительственные международные организации","Russian","ru","Nepravitel'stvennyye mezhdunarodnyye organizatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XIGI","Russian Federation","RU","","","Муниципальные казенные предприятия","Russian","ru","Munitsipal'nyye kazennyye predpriyatiya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XINV","Russian Federation","RU","","","Кооперативные хозяйства (коопхозы)","Russian","ru","Kooperativnyye khozyaystva (koopkhozy)","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XJJR","Russian Federation","RU","","","Союзы (ассоциации) общин малочисленных народов","Russian","ru","Soyuzy (assotsiatsii) obshchin malochislennykh narodov","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "XNKN","Russian Federation","RU","","","Кредитные потребительские кооперативы граждан","Russian","ru","Kreditnyye potrebitel'skiye kooperativy grazhdan","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "YA7H","Russian Federation","RU","","","Частные учреждения","Russian","ru","Chastnyye uchrezhdeniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "YGHZ","Russian Federation","RU","","","Паевые инвестиционные фонды","Russian","ru","Payevyye investitsionnyye fondy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "YJ6A","Russian Federation","RU","","","Общественные движения","Russian","ru","Obshchestvennyye dvizheniya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Z2AQ","Russian Federation","RU","","","Негосударственные пенсионные фонды","Russian","ru","Negosudarstvennyye pensionnyye fondy","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Z3SH","Russian Federation","RU","","","Муниципальные унитарные предприятия","Russian","ru","Munitsipal'nyye unitarnyye predpriyatiya","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Z3Y0","Russian Federation","RU","","","Садоводческие, огороднические или дачные некоммерческие партнерства","Russian","ru","Sadovodcheskiye, ogorodnicheskiye ili dachnyye nekommercheskiye partnerstva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ZGYA","Russian Federation","RU","","","Торгово-промышленные палаты","Russian","ru","Torgovo-promyshlennyye palaty","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ZH3O","Russian Federation","RU","","","Хозяйственные партнерства","Russian","ru","Khozyaystvennyye partnerstva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ZKAF","Russian Federation","RU","","","Полные товарищества","Russian","ru","Polnyye tovarishchestva","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ZNHF","Russian Federation","RU","","","Государственные казенные учреждения субъектов Российской Федерации","Russian","ru","Gosudarstvennyye kazennyye uchrezhdeniya sub""yektov Rossiyskoy Federatsii","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "29OB","Saint Kitts and Nevis","KN","","","foundation","English","en","foundation","","","2021-09-23","ACTV","","","entities on both St. Kitts and Nevis can use the legal forms mentioned here for the country Saint Kitts and Nevis" "AHRM","Saint Kitts and Nevis","KN","","","limited partnership","English","en","limited partnership","","","2021-09-23","ACTV","","","entities on both St. Kitts and Nevis can use the legal forms mentioned here for the country Saint Kitts and Nevis" "I93O","Saint Kitts and Nevis","KN","","","public company","English","en","public company","","","2021-09-23","ACTV","","","entities on both St. Kitts and Nevis can use the legal forms mentioned here for the country Saint Kitts and Nevis" "KYOI","Saint Kitts and Nevis","KN","","","exempt limited partnership","English","en","exempt limited partnership","","","2021-09-23","ACTV","","","entities on both St. Kitts and Nevis can use the legal forms mentioned here for the country Saint Kitts and Nevis" "WFYL","Saint Kitts and Nevis","KN","","","private company","English","en","private company","","","2021-09-23","ACTV","","","entities on both St. Kitts and Nevis can use the legal forms mentioned here for the country Saint Kitts and Nevis" "ZJZB","Saint Kitts and Nevis","KN","","","exempt private company","English","en","exempt private company","","","2021-09-23","ACTV","","","entities on both St. Kitts and Nevis can use the legal forms mentioned here for the country Saint Kitts and Nevis" "2F0A","Saint Kitts and Nevis","KN","Nevis","KN-N","limited liability company","English","en","limited liability company","LLC;LC","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "4EP1","Saint Kitts and Nevis","KN","Nevis","KN-N","multiform foundation","English","en","multiform foundation","","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "7Z3M","Saint Kitts and Nevis","KN","Nevis","KN-N","public company","English","en","public company","","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "BXZH","Saint Kitts and Nevis","KN","Nevis","KN-N","limited partnership","English","en","limited partnership","","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "EF4Y","Saint Kitts and Nevis","KN","Nevis","KN-N","foundation","English","en","foundation","","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "H64R","Saint Kitts and Nevis","KN","Nevis","KN-N","private company","English","en","private company","","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "HW77","Saint Kitts and Nevis","KN","Nevis","KN-N","International Business Company","English","en","International Business Company","IBC","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "I03S","Saint Kitts and Nevis","KN","Nevis","KN-N","international exempt trust","English","en","international exempt trust","","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "I8G4","Saint Kitts and Nevis","KN","Nevis","KN-N","exempt private company","English","en","exempt private company","","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "OTE3","Saint Kitts and Nevis","KN","Nevis","KN-N","exempt limited partnership","English","en","exempt limited partnership","","","2021-09-23","ACTV","","","entities on the island of Nevis have the choice to use the legal forms mentioned here for the country Saint Kitts and Nevis or use the legal forms mentioned here for the jurisdiction Nevis" "10ST","Saint Vincent and the Grenadines","VC","","","association","English","en","association","","","2021-09-23","ACTV","","","" "1PWF","Saint Vincent and the Grenadines","VC","","","public company","English","en","public company","","","2021-09-23","ACTV","","","" "3QSG","Saint Vincent and the Grenadines","VC","","","international business company - limited duration company","English","en","international business company - limited duration company","LDC;(LDC) Limited;(LDC) Ltd","","2021-09-23","ACTV","","","" "5EKE","Saint Vincent and the Grenadines","VC","","","international business company - company limited by shares","English","en","international business company - company limited by shares","Ltd;Corp;Inc","","2021-09-23","ACTV","","","" "ABII","Saint Vincent and the Grenadines","VC","","","international business company - unlimited company not authorised to issue shares","English","en","international business company - unlimited company not authorised to issue shares","Unltd","","2021-09-23","ACTV","","","" "FG2L","Saint Vincent and the Grenadines","VC","","","company","English","en","company","Ltd;Corp;Inc","","2021-09-23","ACTV","","","" "I9K6","Saint Vincent and the Grenadines","VC","","","partnership","English","en","partnership","","","2021-09-23","ACTV","","","" "LCVA","Saint Vincent and the Grenadines","VC","","","international business company - company limited by guarantee not authorised to issue shares","English","en","international business company - company limited by guarantee not authorised to issue shares","Ltd;Corp;Inc","","2021-09-23","ACTV","","","" "QYZD","Saint Vincent and the Grenadines","VC","","","sole proprietorship","English","en","sole proprietorship","","","2021-09-23","ACTV","","","" "REVF","Saint Vincent and the Grenadines","VC","","","international business company - company limited by guarantee authorised to issue shares","English","en","international business company - company limited by guarantee authorised to issue shares","Ltd;Corp;Inc","","2021-09-23","ACTV","","","" "RY5B","Saint Vincent and the Grenadines","VC","","","international business company - unlimited company authorised to issue shares","English","en","international business company - unlimited company authorised to issue shares","Unltd","","2021-09-23","ACTV","","","" "S1OK","Saint Vincent and the Grenadines","VC","","","non-profit company","English","en","non-profit company","inc.;corp.","","2021-09-23","ACTV","","","" "U5AR","Saint Vincent and the Grenadines","VC","","","statutory company","English","en","statutory company","","","2021-09-23","ACTV","","","" "XY6R","Saint Vincent and the Grenadines","VC","","","co-operative society","English","en","co-operative society","","","2021-09-23","ACTV","","","" "YN9Y","Saint Vincent and the Grenadines","VC","","","international business company - company limited by shares - segregated cell company","English","en","international business company - company limited by shares - segregated cell company","SCC Limited;SCC Ltd","","2021-09-23","ACTV","","","" "1RPE","Samoa","WS","","","Charitable trust","English","en","Charitable trust","","","2017-11-30","ACTV","","","" "7WL9","Samoa","WS","","","Public limited company","English","en","Public limited company","","","2017-11-30","ACTV","","","" "BCM3","Samoa","WS","","","Credit Union","English","en","Credit Union","","","2017-11-30","ACTV","","","" "M6YY","Samoa","WS","","","Private limited company","English","en","Private limited company","","","2017-11-30","ACTV","","","" "QWFD","Samoa","WS","","","Overseas company","English","en","Overseas company","","","2017-11-30","ACTV","","","" "SXY3","Samoa","WS","","","Incorporated society","English","en","Incorporated society","","","2017-11-30","ACTV","","","" "TOMA","Samoa","WS","","","Co-operative society","English","en","Co-operative society","","","2017-11-30","ACTV","","","" "78VH","Saudi Arabia","SA","","","شركة مساهمة","Arabic","ar","sharikat musahama","","","2020-06-10","ACTV","","","" "B3JS","Saudi Arabia","SA","","","شركات اشخاص","Arabic","ar","sharikat 'ashkhas","","","2020-06-10","ACTV","","","" "DW9N","Saudi Arabia","SA","","","شركة توصية بالأسهم","Arabic","ar","sharikat tawsiat bial'ashum","","","2020-06-10","ACTV","","","" "N10C","Saudi Arabia","SA","","","شركات ذات رأس مال قابل للتغيير","Arabic","ar","sharikat dhat ras mal qabil liltaghyir","","","2020-06-10","ACTV","","","" "PT6M","Saudi Arabia","SA","","","شركات أموال","Arabic","ar","sharikat 'amwal","","","2020-06-10","ACTV","","","" "T2NA","Saudi Arabia","SA","","","شركة التضامن","Arabic","ar","sharikat altadamun","","","2020-06-10","ACTV","","","" "TTE8","Saudi Arabia","SA","","","شركه ذات مسؤولية محدودة","Arabic","ar","sharakah dhat maswuwliat mahduda","","","2020-06-10","ACTV","","","" "WHCI","Saudi Arabia","SA","","","شركه توصية بسيطة","Arabic","ar","sharakah tawsiat basita","","","2020-06-10","ACTV","","","" "YVGA","Saudi Arabia","SA","","","شركة محاصة","Arabic","ar","sharikat muhasa","","","2020-06-10","ACTV","","","" "Z9IE","Saudi Arabia","SA","","","شركات أجنبية","Arabic","ar","sharikat 'ajnabia","","","2020-06-10","INAC","deletion","2023-09-28","foreign entity" "6UPM","Serbia","RS","","","Задружни савез","Serbian","sr","Zadružni savez","","","2017-11-30","ACTV","","","" "73PZ","Serbia","RS","","","Командитно друштво","Serbian","sr","Komanditno društvo","к.д;кд","k.d.;kd","2017-11-30","ACTV","","","" "88TX","Serbia","RS","","","Друштвено предузеће","Serbian","sr","Društveno preduzeće","ДП","DP","2017-11-30","ACTV","legal form no longer in use for new entities","2023-09-28","this legal form is no longer used for new entities; it still exists for older entities" "9O67","Serbia","RS","","","Предузетник","Serbian","sr","Preduzetnik","ПР","PR","2017-11-30","ACTV","","","" "DEF6","Serbia","RS","","","Јавно предузеће","Serbian","sr","Javno preduzeće","ЈП","JP","2017-11-30","ACTV","","","" "E7W8","Serbia","RS","","","Задруга","Serbian","sr","Zadruga","","","2017-11-30","ACTV","","","" "KIU5","Serbia","RS","","","Друштво са ограниченом одговорношћу","Serbian","sr","Društvo sa ograničenom odgovornošću","д.о.о.;доо","d.o.o.;doo","2017-11-30","ACTV","","","" "YVPW","Serbia","RS","","","Акционарско друштво","Serbian","sr","Akcionarsko društvo","а.д;ад","a.d;ad","2017-11-30","ACTV","","","" "ZPOY","Serbia","RS","","","Ортачко друштво","Serbian","sr","Ortačko društvo","о.д.;од","o.d.;od","2017-11-30","ACTV","","","" "3YUS","Seychelles","SC","","","Foundation","English","en","Foundation","","","2020-06-10","ACTV","","","" "6MS4","Seychelles","SC","","","Company Limited by Shares","English","en","Company Limited by Shares","","","2020-06-10","ACTV","","","" "7QEH","Seychelles","SC","","","International Business Company - Company Limited by Shares","English","en","International Business Company - Company Limited by Shares","IBC","","2020-06-10","ACTV","","","" "7XUS","Seychelles","SC","","","Special License Company","English","en","Special License Company","CSL","","2020-06-10","ACTV","","","" "BB5Y","Seychelles","SC","","","International Trust","English","en","International Trust","","","2020-06-10","ACTV","","","" "CDYY","Seychelles","SC","","","Company Limited by Guarantee","English","en","Company Limited by Guarantee","","","2020-06-10","ACTV","","","" "E3YL","Seychelles","SC","","","Company Limited by Shares and Guarantee","English","en","Company Limited by Shares and Guarantee","","","2020-06-10","ACTV","","","" "G6M8","Seychelles","SC","","","International Business Company - Protected Cell Company","English","en","International Business Company - Protected Cell Company","IBC","","2020-06-10","ACTV","","","" "H35I","Seychelles","SC","","","Public Company","English","en","Public Company","","","2020-06-10","ACTV","","","" "H987","Seychelles","SC","","","Proprietary Company","English","en","Proprietary Company","","","2020-06-10","ACTV","","","" "KGUS","Seychelles","SC","","","International Business Company - Company Limited by Shares and Guarantee","English","en","International Business Company - Company Limited by Shares and Guarantee","IBC","","2020-06-10","ACTV","","","" "KOFC","Seychelles","SC","","","International Business Company - Company Limited by Guarantee","English","en","International Business Company - Company Limited by Guarantee","IBC","","2020-06-10","ACTV","","","" "P3YJ","Seychelles","SC","","","Unlimited Company","English","en","Unlimited Company","","","2020-06-10","ACTV","","","" "Q9VK","Seychelles","SC","","","Protected Cell Company","English","en","Protected Cell Company","PCC","","2020-06-10","ACTV","","","" "VA1X","Seychelles","SC","","","Limited Partnership","English","en","Limited Partnership","LP","","2020-06-10","ACTV","","","" "WKFR","Seychelles","SC","","","International Business Company - Limited Life Company","English","en","International Business Company - Limited Life Company","IBC","","2020-06-10","ACTV","","","" "17FJ","Singapore","SG","","","Limited Partnership","English","en","Limited Partnership","LP;limited partnership;Limited Partnership","","2017-11-30","ACTV","","","" "2PHU","Singapore","SG","","","Business","English","en","Business","","","2017-11-30","ACTV","","","" "5SGV","Singapore","SG","","","Limited Liability Partnership","English","en","Limited Liability Partnership","limited liability partnership;LLP;Limited Liability Partnership","","2017-11-30","ACTV","","","" "KEMH","Singapore","SG","","","Company (Foreign Branch)","English","en","Company (Foreign Branch)","","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "LWXI","Singapore","SG","","","Company (Local)","English","en","Company (Local)","Pte Ltd;Ltd;Limited","","2017-11-30","ACTV","","","" "1CSZ","Sint Maarten","SX","","","vereniging","Dutch","nl","vereniging","","","2020-06-10","ACTV","","","" "2CC3","Sint Maarten","SX","","","besloten vennootschap","Dutch","nl","besloten vennootschap","BV","BV","2020-06-10","ACTV","","","" "2UBX","Sint Maarten","SX","","","commanditaire vennootschap op aandelen","Dutch","nl","commanditaire vennootschap op aandelen","","","2020-06-10","ACTV","","","" "52AV","Sint Maarten","SX","","","stichting particulier fonds","Dutch","nl","stichting particulier fonds","SPF","SPF","2020-06-10","ACTV","","","" "66T3","Sint Maarten","SX","","","eenmanszaak","Dutch","nl","eenmanszaak","","","2020-06-10","ACTV","","","" "8W32","Sint Maarten","SX","","","openbare vennootschap","Dutch","nl","openbare vennootschap","","","2020-06-10","ACTV","","","" "B4OI","Sint Maarten","SX","","","onderlinge waarborgmaatschappij","Dutch","nl","onderlinge waarborgmaatschappij","OWM","OWM","2020-06-10","ACTV","","","" "FBX9","Sint Maarten","SX","","","aandeelhouder-bestuurde vennootschap","Dutch","nl","aandeelhouder-bestuurde vennootschap","ABV","ABV","2020-06-10","ACTV","","","" "FI9R","Sint Maarten","SX","","","stichting","Dutch","nl","stichting","","","2020-06-10","ACTV","","","" "NWT1","Sint Maarten","SX","","","coöperatie","Dutch","nl","coöperatie","","","2020-06-10","ACTV","","","" "SXX9","Sint Maarten","SX","","","naamloze vennootschap","Dutch","nl","naamloze vennootschap","NV","NV","2020-06-10","ACTV","","","" "YXX0","Sint Maarten","SX","","","commanditaire vennootschap","Dutch","nl","commanditaire vennootschap","CV","CV","2020-06-10","ACTV","","","" "14NU","Slovakia","SK","","","Rozpočtové a príspevkové organizácie","Slovak","sk","Rozpočtové a príspevkové organizácie","","","2017-11-30","ACTV","","","" "189Q","Slovakia","SK","","","Špecializovaná organizačná jednotka ČSD","Slovak","sk","Špecializovaná organizačná jednotka ČSD","Špec.org.jednotka ČSD","","2017-11-30","ACTV","","","" "1CSW","Slovakia","SK","","","Obecný podnik","Slovak","sk","Obecný podnik","","","2017-11-30","ACTV","","","" "1GLU","Slovakia","SK","","","Jednotka železničného správneho úradu","Slovak","sk","Jednotka železničného správneho úradu","Jednot.žel.správ.úradu","","2017-11-30","ACTV","","","" "1HEP","Slovakia","SK","","","Rozpočtová organizácia","Slovak","sk","Rozpočtová organizácia","","","2017-11-30","ACTV","","","" "1K73","Slovakia","SK","","","Zahraničná osoba, právnická osoba so sídlom mimo územia SR","Slovak","sk","Zahraničná osoba, právnická osoba so sídlom mimo územia SR","Zahranič.osoba,právnická","","2017-11-30","ACTV","","","" "1W8B","Slovakia","SK","","","Zahraničná osoba","Slovak","sk","Zahraničná osoba","","","2017-11-30","ACTV","","","" "2EEG","Slovakia","SK","","","Akciová spoločnosť","Slovak","sk","Akciová spoločnosť","Akc. spol.","","2017-11-30","ACTV","","","" "2KMA","Slovakia","SK","","","Štátny podnik v oddieli Pšn","Slovak","sk","Štátny podnik v oddieli Pšn","","","2017-11-30","ACTV","","","" "2XNE","Slovakia","SK","","","Komoditná burza","Slovak","sk","Komoditná burza","","","2017-11-30","ACTV","","","" "3P3W","Slovakia","SK","","","Družstevný podnik (s jedným zakladateľom)","Slovak","sk","Družstevný podnik (s jedným zakladateľom)","","","2017-11-30","ACTV","","","" "43MZ","Slovakia","SK","","","Príspevková organizácia","Slovak","sk","Príspevková organizácia","","","2017-11-30","ACTV","","","" "46CD","Slovakia","SK","","","Pobočka sporiteľne","Slovak","sk","Pobočka sporiteľne","","","2017-11-30","ACTV","","","" "4CKX","Slovakia","SK","","","Krajský úrad","Slovak","sk","Krajský úrad","","","2017-11-30","ACTV","","","" "4GX1","Slovakia","SK","","","Národný výbor","Slovak","sk","Národný výbor","","","2017-11-30","ACTV","","","" "5AM3","Slovakia","SK","","","Zastupiteľské orgány iných štátov","Slovak","sk","Zastupiteľské orgány iných štátov","Zastup.org.iných štátov","","2017-11-30","ACTV","","","" "5J5Y","Slovakia","SK","","","Verejná obchodná spoločnosť","Slovak","sk","Verejná obchodná spoločnosť","Ver. obch. spol.","","2017-11-30","ACTV","","","" "5YBL","Slovakia","SK","","","Stavovská organizácia - profesná komora","Slovak","sk","Stavovská organizácia - profesná komora","","","2017-11-30","ACTV","","","" "5Z8W","Slovakia","SK","","","Samostatne hospodáriaci roľník zapísaný v obchodnom registri","Slovak","sk","Samostatne hospodáriaci roľník zapísaný v obchodnom registri","SHR roľník v OR","","2017-11-30","ACTV","","","" "6R72","Slovakia","SK","","","Samostatne hospodáriaci roľník nezapísaný v obchodnom registri","Slovak","sk","Samostatne hospodáriaci roľník nezapísaný v obchodnom registri","SHR roľník","","2017-11-30","ACTV","","","" "72R7","Slovakia","SK","","","Stredná škola","Slovak","sk","Stredná škola","","","2017-11-30","ACTV","","","" "73MQ","Slovakia","SK","","","Samosprávny kraj (úrad samosprávneho kraja)","Slovak","sk","Samosprávny kraj (úrad samosprávneho kraja)","","","2017-11-30","ACTV","","","" "7EG2","Slovakia","SK","","","Fondy","Slovak","sk","Fondy","","","2017-11-30","ACTV","","","" "7O89","Slovakia","SK","","","Európske družstvo","Slovak","sk","Európske družstvo","SCE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "7QSE","Slovakia","SK","","","Zastúpenie zahraničnej právnickej osoby","Slovak","sk","Zastúpenie zahraničnej právnickej osoby","Zastúp.zahr.práv.osoby","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "8KHD","Slovakia","SK","","","Jednotka zboru ozbrojenej ochrany železníc","Slovak","sk","Jednotka zboru ozbrojenej ochrany železníc","Jed.zboru ochrany žel.","","2017-11-30","ACTV","","","" "8RE3","Slovakia","SK","","","Družstevný podnik poľnohospodársky","Slovak","sk","Družstevný podnik poľnohospodársky","Družstevný podnik poľ.","","2017-11-30","ACTV","","","" "8UE6","Slovakia","SK","","","Organizačná jednotka politickej strany, politického hnutia","Slovak","sk","Organizačná jednotka politickej strany, politického hnutia","Org.jedn.pol.strany,hn.","","2017-11-30","ACTV","","","" "90YN","Slovakia","SK","","","Sociálna a zdravotné poisťovne","Slovak","sk","Sociálna a zdravotné poisťovne","Sociál.,zdrav.poisťovňa","","2017-11-30","ACTV","","","" "93WZ","Slovakia","SK","","","Podnikateľ-fyzická osoba-zapís.v OR-podnikajúca súčasne ako sam.hosp.roľník","Slovak","sk","Podnikateľ-fyzická osoba-zapís.v OR-podnikajúca súčasne ako sam.hosp.roľník","Živ. a SHR roľník v OR","","2017-11-30","ACTV","","","" "95MS","Slovakia","SK","","","Slobodné povolanie-fyzická osoba podnikajúca na základe iného ako živnostenského zákona","Slovak","sk","Slobodné povolanie-fyzická osoba podnikajúca na základe iného ako živnostenského zákona","FO-slob.povolanie","","2017-11-30","ACTV","","","" "9L9V","Slovakia","SK","","","Poľnohospodárske družstvo","Slovak","sk","Poľnohospodárske družstvo","Poľnohospodár.družstvo","","2017-11-30","ACTV","","","" "9NSV","Slovakia","SK","","","Neinvestičný fond","Slovak","sk","Neinvestičný fond","","","2017-11-30","ACTV","","","" "AGSR","Slovakia","SK","","","Jednotka štátnej železnično - technickej inšpekcie","Slovak","sk","Jednotka štátnej železnično - technickej inšpekcie","Jedn.štát.žel.tech.inš.","","2017-11-30","ACTV","","","" "BKEB","Slovakia","SK","","","Oblastný závod poisťovne","Slovak","sk","Oblastný závod poisťovne","Oblast. závod poisťovne","","2017-11-30","ACTV","","","" "BUMI","Slovakia","SK","","","Európska spoločnosť","Slovak","sk","Európska spoločnosť","SE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "C4PZ","Slovakia","SK","","","Podnikateľ-fyzická osoba-nezapísaný v obchodnom registri","Slovak","sk","Podnikateľ-fyzická osoba-nezapísaný v obchodnom registri","Živnostník","","2017-11-30","ACTV","","","" "CS8B","Slovakia","SK","","","Štátna hospodárska organizácia riadená okresným úradom","Slovak","sk","Štátna hospodárska organizácia riadená okresným úradom","Štát.hosp.org.riad.okr.","","2017-11-30","ACTV","","","" "D18J","Slovakia","SK","","","Jednoduchá spoločnosť na akcie","Slovak","sk","Jednoduchá spoločnosť na akcie","Jednoduchá spol. na akcie","","2017-11-30","ACTV","","","" "DAQC","Slovakia","SK","","","Základná škola","Slovak","sk","Základná škola","","","2017-11-30","ACTV","","","" "E1VK","Slovakia","SK","","","Medzinárodné organizácie a združenia","Slovak","sk","Medzinárodné organizácie a združenia","Medzinár. org. a združ.","","2017-11-30","ACTV","","","" "E4CI","Slovakia","SK","","","Bytové družstvo","Slovak","sk","Bytové družstvo","","","2017-11-30","ACTV","","","" "E9SH","Slovakia","SK","","","Zahraničná osoba, fyzická osoba s bydliskom mimo územia SR","Slovak","sk","Zahraničná osoba, fyzická osoba s bydliskom mimo územia SR","Zahranič.osoba,fyzická","","2017-11-30","ACTV","","","" "ED84","Slovakia","SK","","","Poisťovací spolok","Slovak","sk","Poisťovací spolok","","","2017-11-30","ACTV","","","" "ER02","Slovakia","SK","","","Organizačná jednotka združenia","Slovak","sk","Organizačná jednotka združenia","Org.jednotka združenia","","2017-11-30","ACTV","","","" "F560","Slovakia","SK","","","Spoločná záujmová organizácia družstiev","Slovak","sk","Spoločná záujmová organizácia družstiev","Spoločná záuj.org.druž.","","2017-11-30","ACTV","","","" "FDVU","Slovakia","SK","","","Fyzická osoba-príležitostne činná-zapísaná v registri daňového informačného systému","Slovak","sk","Fyzická osoba-príležitostne činná-zapísaná v registri daňového informačného systému","FO v RDIS","","2017-11-30","ACTV","","","" "FMUC","Slovakia","SK","","","Iné pracovisko vysokej školy/fakulty","Slovak","sk","Iné pracovisko vysokej školy/fakulty","Iné prac.vysokej školy","","2017-11-30","ACTV","","","" "FQRE","Slovakia","SK","","","Účelová zahranično - obchodná organizácia","Slovak","sk","Účelová zahranično - obchodná organizácia","Účelová zahr.-obch.org.","","2017-11-30","ACTV","","","" "GL07","Slovakia","SK","","","Poisťovňa - akciová spoločnosť","Slovak","sk","Poisťovňa - akciová spoločnosť","Poisťovna - a. s.","","2017-11-30","ACTV","","","" "GY5R","Slovakia","SK","","","Cirkevná organizácia","Slovak","sk","Cirkevná organizácia","","","2017-11-30","ACTV","","","" "HZG7","Slovakia","SK","","","Vysoká škola","Slovak","sk","Vysoká škola","","","2017-11-30","ACTV","","","" "HZI2","Slovakia","SK","","","Banka-štátny peňažný ústav","Slovak","sk","Banka-štátny peňažný ústav","Banka-štát.peňaž.ústav","","2017-11-30","ACTV","","","" "I7AS","Slovakia","SK","","","Družstvo","Slovak","sk","Družstvo","","","2017-11-30","ACTV","","","" "ISCZ","Slovakia","SK","","","Doplnková dôchodková poisťovňa","Slovak","sk","Doplnková dôchodková poisťovňa","Doplnková dôchod.poisť.","","2017-11-30","ACTV","","","" "IW8Z","Slovakia","SK","","","Výrobné družstvo","Slovak","sk","Výrobné družstvo","","","2017-11-30","ACTV","","","" "J8DW","Slovakia","SK","","","Podnik zahraničnej osoby (organizačná zložka podniku zahraničnej osoby)","Slovak","sk","Podnik zahraničnej osoby (organizačná zložka podniku zahraničnej osoby)","Podnik zahr. osoby, org. zložka","","2017-11-30","ACTV","","","" "JKC5","Slovakia","SK","","","Podnik alebo hospodárske zariadenie združenia","Slovak","sk","Podnik alebo hospodárske zariadenie združenia","Podnik alebo hosp.zar.","","2017-11-30","ACTV","","","" "KB52","Slovakia","SK","","","Komanditná spoločnosť","Slovak","sk","Komanditná spoločnosť","Kom. spol.","","2017-11-30","ACTV","","","" "KVQU","Slovakia","SK","","","Združenie medzinárodného obchodu","Slovak","sk","Združenie medzinárodného obchodu","Združ.medzinár.obchodu","","2017-11-30","ACTV","","","" "KWFE","Slovakia","SK","","","Komora (s výnimkou profesných komôr)","Slovak","sk","Komora (s výnimkou profesných komôr)","","","2017-11-30","ACTV","","","" "KZ3R","Slovakia","SK","","","Poisťovňa - štátny podnik","Slovak","sk","Poisťovňa - štátny podnik","Poisťovňa - š. p.","","2017-11-30","ACTV","","","" "L1M7","Slovakia","SK","","","Fakulta vysokej školy","Slovak","sk","Fakulta vysokej školy","","","2017-11-30","ACTV","","","" "L9WT","Slovakia","SK","","","Obec (obecný úrad), mesto (mestský úrad)","Slovak","sk","Obec (obecný úrad), mesto (mestský úrad)","Obec, mesto (o.,m.úrad)","","2017-11-30","ACTV","","","" "MSGT","Slovakia","SK","","","Slobodné povolanie-fyzická osoba podnikajúca na základe iného ako živnostenského zákona zapísaná v obchodnom registri","Slovak","sk","Slobodné povolanie-fyzická osoba podnikajúca na základe iného ako živnostenského zákona zapísaná v obchodnom registri","FO-slob.povolanie v OR","","2017-11-30","ACTV","","","" "MY1S","Slovakia","SK","","","Odštepný závod alebo iná organizačná zložka podniku zapisujúca sa do obchodného registra","Slovak","sk","Odštepný závod alebo iná organizačná zložka podniku zapisujúca sa do obchodného registra","Odštepný závod v OR","","2017-11-30","ACTV","","","" "N5MX","Slovakia","SK","","","Samostatne podnikajúca fyzická osoba","Slovak","sk","Samostatne podnikajúca fyzická osoba","Samostatne podnikajúca FO","","2017-11-30","ACTV","","","" "N7I1","Slovakia","SK","","","Organizačná zložka príspevkovej organizácie s odvodenou právnou subjektivitou","Slovak","sk","Organizačná zložka príspevkovej organizácie s odvodenou právnou subjektivitou","Org.zložka prísp.org.","","2017-11-30","ACTV","","","" "N9QW","Slovakia","SK","","","Pobočka štátneho peňažného ústavu","Slovak","sk","Pobočka štátneho peňažného ústavu","Pobočka štát.peňaž.úst.","","2017-11-30","ACTV","","","" "NC88","Slovakia","SK","","","Účelová organizačná jednotka ČSD","Slovak","sk","Účelová organizačná jednotka ČSD","Účelová org. jedn. ČSD","","2017-11-30","ACTV","","","" "NL31","Slovakia","SK","","","Spoločný podnik (s viacerými zakladateľmi)","Slovak","sk","Spoločný podnik (s viacerými zakladateľmi)","","","2017-11-30","ACTV","","","" "NLI7","Slovakia","SK","","","Sporiteľna","Slovak","sk","Sporiteľna","","","2017-11-30","ACTV","","","" "NO20","Slovakia","SK","","","Zatiaľ neurčené","Slovak","sk","Zatiaľ neurčené","","","2017-11-30","ACTV","","","" "O0Y2","Slovakia","SK","","","Nešpecifikovaná právna forma","Slovak","sk","Nešpecifikovaná právna forma","","","2017-11-30","ACTV","","","" "O7TC","Slovakia","SK","","","Spoločný podnik","Slovak","sk","Spoločný podnik","","","2017-11-30","ACTV","","","" "OKAZ","Slovakia","SK","","","Obecný úrad","Slovak","sk","Obecný úrad","","","2017-11-30","ACTV","","","" "P6XJ","Slovakia","SK","","","Podnik alebo hospodárske zariadenie politickej strany","Slovak","sk","Podnik alebo hospodárske zariadenie politickej strany","Podnik alebo hosp.zar.","","2017-11-30","ACTV","","","" "PX29","Slovakia","SK","","","Iná právnicka osoba","Slovak","sk","Iná právnicka osoba","","","2017-11-30","ACTV","","","" "QACV","Slovakia","SK","","","Spotrebné družstvo","Slovak","sk","Spotrebné družstvo","","","2017-11-30","ACTV","","","" "QCJ9","Slovakia","SK","","","Spoločnosť komanditná na akcie","Slovak","sk","Spoločnosť komanditná na akcie","Spol. kom. na akcie","","2017-11-30","ACTV","","","" "R9GT","Slovakia","SK","","","Samostatná drobná prevádzkareň obecného úradu","Slovak","sk","Samostatná drobná prevádzkareň obecného úradu","Samost. prevádzkareň OÚ","","2017-11-30","ACTV","","","" "RF3D","Slovakia","SK","","","Združenie (zväz, spolok, spoločnosť, klub ai.)","Slovak","sk","Združenie (zväz, spolok, spoločnosť, klub ai.)","","","2017-11-30","ACTV","","","" "S5E1","Slovakia","SK","","","Miestna jednotka bez právnej spôsobilosti","Slovak","sk","Miestna jednotka bez právnej spôsobilosti","","","2017-11-30","ACTV","","","" "SIRY","Slovakia","SK","","","Záujmové združenie právnických osôb","Slovak","sk","Záujmové združenie právnických osôb","Záujm. združ. práv.osôb","","2017-11-30","ACTV","","","" "SMUS","Slovakia","SK","","","Záujmové združenie","Slovak","sk","Záujmové združenie","","","2017-11-30","ACTV","","","" "SPIE","Slovakia","SK","","","Podnikateľ-fyzická osoba-zapísaný v obchodnom registri","Slovak","sk","Podnikateľ-fyzická osoba-zapísaný v obchodnom registri","Živnostník v OR","","2017-11-30","ACTV","","","" "SQ4I","Slovakia","SK","","","Podnikateľ-fyzická osoba-nezapís.v OR-podnikajúca súčasne ako osoba so slobodným povolaním","Slovak","sk","Podnikateľ-fyzická osoba-nezapís.v OR-podnikajúca súčasne ako osoba so slobodným povolaním","Živ.a sl.povolanie","","2017-11-30","ACTV","","","" "SQFW","Slovakia","SK","","","Iné družstvo","Slovak","sk","Iné družstvo","","","2017-11-30","ACTV","","","" "STUP","Slovakia","SK","","","Národná banka Slovenska","Slovak","sk","Národná banka Slovenska","NBS","","2017-11-30","ACTV","","","" "SUH3","Slovakia","SK","","","Záujmová organizácia družstiev","Slovak","sk","Záujmová organizácia družstiev","Záujmová org.družstiev","","2017-11-30","ACTV","","","" "T0KQ","Slovakia","SK","","","Svojpomocné poľnohospodárske družstvo","Slovak","sk","Svojpomocné poľnohospodárske družstvo","Svojpomoc.poľn.družstvo","","2017-11-30","ACTV","","","" "TAV3","Slovakia","SK","","","Iná organizácia verejnej správy","Slovak","sk","Iná organizácia verejnej správy","Iná org.verejnej správy","","2017-11-30","ACTV","","","" "TG3X","Slovakia","SK","","","Podnikateľ-fyzická osoba-nezapís.v OR-podnikajúca súčasne ako sam.hosp.roľník","Slovak","sk","Podnikateľ-fyzická osoba-nezapís.v OR-podnikajúca súčasne ako sam.hosp.roľník","Živ. a SHR roľník","","2017-11-30","ACTV","","","" "U3QQ","Slovakia","SK","","","Banka - akciová spoločnosť","Slovak","sk","Banka - akciová spoločnosť","Banka - a. s.","","2017-11-30","ACTV","","","" "U5IM","Slovakia","SK","","","Železnice SR","Slovak","sk","Železnice SR","","","2017-11-30","ACTV","","","" "U7QK","Slovakia","SK","","","Nadácia","Slovak","sk","Nadácia","","","2017-11-30","ACTV","","","" "UCTO","Slovakia","SK","","","Oblastná organizačná jednotka ČSD","Slovak","sk","Oblastná organizačná jednotka ČSD","Obl.org.jednotka ČSD","","2017-11-30","ACTV","","","" "VATN","Slovakia","SK","","","Európske zoskupenie územnej spolupráce","Slovak","sk","Európske zoskupenie územnej spolupráce","Európ.zoskup.územ.spol","","2017-11-30","ACTV","","","" "VRJP","Slovakia","SK","","","Nezisková organizácia poskytujúca všeobecne prospešné služby","Slovak","sk","Nezisková organizácia poskytujúca všeobecne prospešné služby","Nezisk.org.poskyt.všeob.prosp.služby","","2017-11-30","ACTV","","","" "VSC1","Slovakia","SK","","","Zahraničné kultúrne, informačné stredisko, rozhlasová, tlačová a televízna agentúra","Slovak","sk","Zahraničné kultúrne, informačné stredisko, rozhlasová, tlačová a televízna agentúra","Zahr.kul.,inf.strediská","","2017-11-30","ACTV","","","" "VSZS","Slovakia","SK","","","Spoločnosť s ručením obmedzeným","Slovak","sk","Spoločnosť s ručením obmedzeným","Spol. s r. o.","","2017-11-30","ACTV","","","" "WQCR","Slovakia","SK","","","Podnikateľ-fyzická osoba-zapís.v OR-podnikajúca súčasne ako osoba so slobodným povolaním","Slovak","sk","Podnikateľ-fyzická osoba-zapís.v OR-podnikajúca súčasne ako osoba so slobodným povolaním","Živ.a sl.povolanie v OR","","2017-11-30","ACTV","","","" "XLXU","Slovakia","SK","","","Politická strana, politické hnutie","Slovak","sk","Politická strana, politické hnutie","","","2017-11-30","ACTV","","","" "Y1X5","Slovakia","SK","","","Štátny podnik","Slovak","sk","Štátny podnik","","","2017-11-30","ACTV","","","" "Y45Q","Slovakia","SK","","","Podnik zahraničného obchodu","Slovak","sk","Podnik zahraničného obchodu","PZO","","2017-11-30","ACTV","","","" "YB59","Slovakia","SK","","","Podnik so zahraničnou majetkovou účasťou","Slovak","sk","Podnik so zahraničnou majetkovou účasťou","Podnik so zahr.maj.úč.","","2017-11-30","ACTV","","","" "YF99","Slovakia","SK","","","Verejnoprávna inštitúcia","Slovak","sk","Verejnoprávna inštitúcia","Verejnopráv.inštitúcia","","2017-11-30","ACTV","","","" "YGN4","Slovakia","SK","","","Organizačná zložka podniku","Slovak","sk","Organizačná zložka podniku","","","2017-11-30","ACTV","","","" "YRIU","Slovakia","SK","","","Nezisková organizácia","Slovak","sk","Nezisková organizácia","","","2017-11-30","ACTV","","","" "YVE8","Slovakia","SK","","","Európske zoskupenie hospodárskych záujmov","Slovak","sk","Európske zoskupenie hospodárskych záujmov","Európ.zoskup.hosp.záujm.;EZHZ","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "YVWB","Slovakia","SK","","","Záujmové združenie fyzických osôb bez právnej spôsobilosti","Slovak","sk","Záujmové združenie fyzických osôb bez právnej spôsobilosti","Záujmové združ.fyz.osôb","","2017-11-30","ACTV","","","" "ZG2I","Slovakia","SK","","","Spoločenstvá vlastníkov pozemkov, bytov a pod.","Slovak","sk","Spoločenstvá vlastníkov pozemkov, bytov a pod.","Spoločenstvá vlastníkov","","2017-11-30","ACTV","","","" "14AT","Slovenia","SI","","","Javna agencija","Slovene","sl","Javna agencija","","","2019-07-05","ACTV","","","" "1OR3","Slovenia","SI","","","delniška družba","Slovene","sl","delniška družba","d.d.","","2017-11-30","ACTV","","","" "2CTG","Slovenia","SI","","","zadruga","Slovene","sl","zadruga","","","2019-07-05","ACTV","","","" "34PA","Slovenia","SI","","","Centralna banka","Slovene","sl","Centralna banka","","","2019-07-05","ACTV","","","" "4A8T","Slovenia","SI","","","evropska delniška družba","Slovene","sl","evropska delniška družba","SE","","2017-11-30","ACTV","","","" "5LXY","Slovenia","SI","","","Verska skupnost in podobne verske organizacije","Slovene","sl","Verska skupnost in podobne verske organizacije","","","2019-07-05","ACTV","","","" "6MPY","Slovenia","SI","","","Ustanova","Slovene","sl","Ustanova","","","2019-07-05","ACTV","","","" "8ER6","Slovenia","SI","","","Stanovanjska zadruga","Slovene","sl","Stanovanjska zadruga","","","2019-07-05","ACTV","","","" "D64E","Slovenia","SI","","","Gospodarska zbornica","Slovene","sl","Gospodarska zbornica","","","2019-07-05","ACTV","","","" "E01X","Slovenia","SI","","","zadruga v zasebni lasti","Slovene","sl","zadruga v zasebni lasti","","","2019-07-05","ACTV","","","" "HJCS","Slovenia","SI","","","Društvo, zveza društev","Slovene","sl","Društvo, zveza društev","","","2019-07-05","ACTV","","","" "I7MN","Slovenia","SI","","","Javno podjetje","Slovene","sl","Javno podjetje","","","2019-07-05","ACTV","","","" "ICQT","Slovenia","SI","","","Družba za vzajemno zavarovanje","Slovene","sl","Družba za vzajemno zavarovanje","d.v.z.","","2019-07-05","ACTV","","","" "JQA2","Slovenia","SI","","","Kmetijska zadruga","Slovene","sl","Kmetijska zadruga","","","2019-07-05","ACTV","","","" "KBKD","Slovenia","SI","","","družba z omejeno odgovornostjo","Slovene","sl","družba z omejeno odgovornostjo","d.o.o.","","2017-11-30","ACTV","","","" "KH4O","Slovenia","SI","","","Skupnost lastnikov stanovanj","Slovene","sl","Skupnost lastnikov stanovanj","","","2019-07-05","ACTV","","","" "LNYR","Slovenia","SI","","","Obrtna zadruga","Slovene","sl","Obrtna zadruga","","","2019-07-05","ACTV","","","" "M84A","Slovenia","SI","","","Sklad","Slovene","sl","Sklad","","","2019-07-05","ACTV","","","" "OPDJ","Slovenia","SI","","","komanditna družba","Slovene","sl","komanditna družba","k.d.","","2017-11-30","ACTV","","","" "Q2EV","Slovenia","SI","","","Evropsko gospodarsko interesno združenje","Slovene","sl","Evropsko gospodarsko interesno združenje","EGIZ","","2019-07-05","ACTV","","","" "QUEA","Slovenia","SI","","","Tuja pravna oseba po ZZK-1","Slovene","sl","Tuja pravna oseba po ZZK-1","","","2019-07-05","ACTV","","","" "QW8S","Slovenia","SI","","","Samostojni podjetnik posameznik","Slovene","sl","Samostojni podjetnik posameznik","s.p.","","2019-07-05","ACTV","","","" "QYQ5","Slovenia","SI","","","Družbeno podjetje","Slovene","sl","Družbeno podjetje","","","2019-07-05","ACTV","","","" "RAX7","Slovenia","SI","","","Zadruga z omejeno odgovornostjo","Slovene","sl","Zadruga z omejeno odgovornostjo","z.o.o.","","2019-07-05","ACTV","","","" "RG9Z","Slovenia","SI","","","Societas Cooperativa Europaea","Slovene","si","Societas Cooperativa Europaea","SCE","","2021-09-23","ACTV","","","" "S1UI","Slovenia","SI","","","Civilna odvetniška družba","Slovene","sl","Civilna odvetniška družba","","","2019-07-05","ACTV","","","" "SD81","Slovenia","SI","","","družba z neomejeno odgovornostjo","Slovene","sl","družba z neomejeno odgovornostjo","d.n.o.","","2017-11-30","ACTV","","","" "TMVE","Slovenia","SI","","","Zadruga brez odgovornosti","Slovene","sl","Zadruga brez odgovornosti","z.b.o.","","2019-07-05","ACTV","","","" "UDQJ","Slovenia","SI","","","Gospodarsko interesno združenje","Slovene","sl","Gospodarsko interesno združenje","GIZ","","2019-07-05","ACTV","","","" "UESF","Slovenia","SI","","","Javni sklad","Slovene","sl","Javni sklad","","","2019-07-05","ACTV","","","" "UG0E","Slovenia","SI","","","Dobrodelna organizacija","Slovene","sl","Dobrodelna organizacija","","","2019-07-05","ACTV","","","" "WZ78","Slovenia","SI","","","komanditna delniška družba","Slovene","sl","komanditna delniška družba","k.d.d.","","2017-11-30","ACTV","","","" "X94Z","Slovenia","SI","","","Republika Slovenija","Slovene","sl","Republika Slovenija","","","2019-07-05","ACTV","","","" "8PIA","Solomon Islands","SB","","","Private Company","English","en","Private Company","","","2020-06-10","ACTV","","","" "A7VA","Solomon Islands","SB","","","Community Company","English","en","Community Company","","","2020-06-10","ACTV","","","" "YSBJ","Solomon Islands","SB","","","Overseas Company","English","en","Overseas Company","","","2020-06-10","ACTV","","","" "Z4ZP","Solomon Islands","SB","","","Public Company","English","en","Public Company","","","2020-06-10","ACTV","","","" "3QSR","South Africa","ZA","","","pension fund","English","en","pension fund","","","2023-09-28","ACTV","","","" "4YUU","South Africa","ZA","","","Close Corporation","English","en","Close Corporation","CC","","2017-11-30","ACTV","","","" "CXWJ","South Africa","ZA","","","Co-operatives (Secondary)","English","en","Co-operatives (Secondary)","","","2017-11-30","ACTV","","","" "GQVQ","South Africa","ZA","","","Private Company","English","en","Private Company","Pty Ltd","","2017-11-30","ACTV","","","" "J7L0","South Africa","ZA","","","Non-Profit Company","English","en","Non-Profit Company","NPC","","2017-11-30","ACTV","","","" "MZT6","South Africa","ZA","","","Co-operatives (Primary)","English","en","Co-operatives (Primary)","","","2017-11-30","ACTV","","","" "R155","South Africa","ZA","","","State Owned Company","English","en","State Owned Company","SOC","","2017-11-30","ACTV","","","" "R59V","South Africa","ZA","","","External Company","English","en","External Company","","","2017-11-30","INAC","deletion","2023-09-28","foreign entity" "U89P","South Africa","ZA","","","Personal Liability Company","English","en","Personal Liability Company","Inc","","2017-11-30","ACTV","","","" "XE4Z","South Africa","ZA","","","Public Company","English","en","Public Company","Ltd;Ltd.;Limited","","2017-11-30","ACTV","","","" "ZE81","South Africa","ZA","","","Co-operatives (Tertiary)","English","en","Co-operatives (Tertiary)","","","2017-11-30","ACTV","","","" "1G29","Spain","ES","","","Sociedad Limitada Laboral (o Sociedad de Responsabilidad Limitada laboral)","Spanish","es","Sociedad Limitada Laboral (o Sociedad de Responsabilidad Limitada laboral)","S.R.L.L.;S.L.L.","","2017-11-30","ACTV","","","" "1QU8","Spain","ES","","","Sociedad Cooperativa","Spanish","es","Sociedad Cooperativa","S.Coop","","2017-11-30","ACTV","","","" "1SL4","Spain","ES","","","Empresario Individual","Spanish","es","Empresario Individual","","","2017-11-30","ACTV","","","" "1ZHJ","Spain","ES","","","Sociedad Colectiva Profesional (o Sociedad regular colectiva profesional)","Spanish","es","Sociedad Colectiva Profesional (o Sociedad regular colectiva profesional)","S.C.P.;S.R.C.P.","","2017-11-30","ACTV","","","" "4S57","Spain","ES","","","Caja de Ahorros","Spanish","es","Caja de Ahorros","","","2017-11-30","ACTV","","","" "4SJR","Spain","ES","","","Sociedad Agraría de Trasformación","Spanish","es","Sociedad Agraría de Trasformación","S.A.T.","","2020-06-10","ACTV","","","" "5RDO","Spain","ES","","","Sociedad Anonima","Spanish","es","Sociedad Anonima","S.A.","","2017-11-30","ACTV","","","" "7U8O","Spain","ES","","","Sociedades de Inversion Inmobiliaria","Spanish","es","Sociedades de Inversion Inmobiliaria","S.I.I.","","2017-11-30","ACTV","","","" "8EHB","Spain","ES","","","Sociedad de Inversión de Capital Variable","Spanish","es","Sociedad de Inversión de Capital Variable","SICAV","","2020-06-10","ACTV","","","" "956I","Spain","ES","","","Sociedad Limitada de nueva empresa","Spanish","es","Sociedad Limitada de nueva empresa","S.L.N.E.","","2017-11-30","ACTV","","","" "9FPZ","Spain","ES","","","Sociedad Anonima Europea","Spanish","es","Sociedad Anonima Europea","S.E.","","2017-11-30","ACTV","","","" "A0J6","Spain","ES","","","Asociación","Spanish","es","Asociación","","","2019-07-05","ACTV","","","" "A97B","Spain","ES","","","Mutualidad de Prevision Social","Spanish","es","Mutualidad de Prevision Social","M.P.S.","","2017-11-30","ACTV","","","" "AJ9U","Spain","ES","","","Sociedad Anonima Profesional","Spanish","es","Sociedad Anonima Profesional","S.A.P.","","2017-11-30","ACTV","","","" "ARDP","Spain","ES","","","Sociedad Civil Profesional","Spanish","es","Sociedad Civil Profesional","","","2017-11-30","ACTV","","","" "AXS5","Spain","ES","","","Sociedad de Capital-Riesgo","Spanish","es","Sociedad de Capital-Riesgo","SCR","","2017-11-30","ACTV","","","" "B0V5","Spain","ES","","","Sociedad Cooperativa Profesional","Spanish","es","Sociedad Cooperativa Profesional","S.Coop.P.","","2017-11-30","ACTV","","","" "BI3B","Spain","ES","","","Agrupacion Europea de Interes Economico","Spanish","es","Agrupacion Europea de Interes Economico","A.E.I.E.","","2017-11-30","ACTV","","","" "CUIH","Spain","ES","","","Mutua","Spanish","es","Mutua","","","2017-11-30","ACTV","","","" "DDES","Spain","ES","","","Sociedad de Capital-Riesgo-Pyme","Spanish","es","Sociedad de Capital-Riesgo-Pyme","SCR-Pyme","","2017-11-30","ACTV","","","" "DP3Q","Spain","ES","","","Sociedad de Responsabilidad Limitada","Spanish","es","Sociedad de Responsabilidad Limitada","S.L.;S.R.L.","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "FCJF","Spain","ES","","","Fondo de Inversion en activos del Mercado Monetario","Spanish","es","Fondo de Inversion en activos del Mercado Monetario","F.I.A.M.M.","","2017-11-30","ACTV","","","" "FH4R","Spain","ES","","","Fondo de Pensiones","Spanish","es","Fondo de Pensiones","F.P.","","2017-11-30","ACTV","","","" "GJL1","Spain","ES","","","Sociedad Comanditaria por Acciones","Spanish","es","Sociedad Comanditaria por Acciones","S.Com. p. A.","","2017-11-30","ACTV","","","" "GJTL","Spain","ES","","","Sociedad Comanditaria por Acciones Profesional","Spanish","es","Sociedad Comanditaria por Acciones Profesional","S.Com:p.A.P.","","2017-11-30","ACTV","","","" "HRQA","Spain","ES","","","Sociedad Cooperativa Europea","Spanish","es","Sociedad Cooperativa Europea","S. Coop. E.;SCE","","2017-11-30","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "I2WU","Spain","ES","","","Agrupacion de Interes Economico","Spanish","es","Agrupacion de Interes Economico","A.I.E.","","2017-11-30","ACTV","","","" "IAS6","Spain","ES","","","Sociedad de Garantia Reciproca","Spanish","es","Sociedad de Garantia Reciproca","S.G.R.","","2017-11-30","ACTV","","","" "IT6N","Spain","ES","","","Emprendedor de Responsabilidad Limitada","Spanish","es","Emprendedor de Responsabilidad Limitada","E.R.L.","","2017-11-30","ACTV","","","" "JB2M","Spain","ES","","","Sociedad Limitada Profesional","Spanish","es","Sociedad Limitada Profesional","S.R.L.P.;S.L.P.","","2017-11-30","ACTV","","","" "JTV5","Spain","ES","","","Fondo de Capital-Riesgo","Spanish","es","Fondo de Capital-Riesgo","FCR","","2017-11-30","ACTV","","","" "K0RI","Spain","ES","","","Institucion de Inversion Colectiva","Spanish","es","Institucion de Inversion Colectiva","IIC","","2017-11-30","ACTV","","","" "K6L9","Spain","ES","","","Sociedad Civil Profesional","Spanish","es","Sociedad Civil Profesional","","","2017-11-30","INAC","double entry of legal form removed","2019-07-05","this legal form was on the list twice, also as ELF Code ARDP; and K6L9 is less used" "MDOL","Spain","ES","","","Fundación","Spanish","es","Fundación","","","2019-07-05","ACTV","","","" "QMUM","Spain","ES","","","Fondos de Inversion Inmobiliaria","Spanish","es","Fondos de Inversion Inmobiliaria","F.I.I.","","2017-11-30","ACTV","","","" "R2L8","Spain","ES","","","Sociedad Anonima Laboral","Spanish","es","Sociedad Anonima Laboral","S.A.L.","","2017-11-30","ACTV","","","" "R6UT","Spain","ES","","","Sociedad Limitada Unipersonal","Spanish","es","Sociedad Limitada Unipersonal","SLU","","2020-11-19","ACTV","","","" "S0Z5","Spain","ES","","","Fondo de Inversion","Spanish","es","Fondo de Inversion","F.I.","","2017-11-30","ACTV","","","" "S6MS","Spain","ES","","","Congregación","Spanish","es","Congregación","","","2019-07-05","ACTV","","","" "S6X7","Spain","ES","","","Sociedad Colectiva","Spanish","es","Sociedad Colectiva","S.C.;S.R.C.","","2017-11-30","ACTV","","","" "SS0L","Spain","ES","","","Cooperativa de Credito","Spanish","es","Cooperativa de Credito","","","2017-11-30","ACTV","","","" "TDD5","Spain","ES","","","Sociedad Comanditaria Simple","Spanish","es","Sociedad Comanditaria Simple","S. en C.;S. Com.","","2017-11-30","ACTV","","","" "TLCJ","Spain","ES","","","junta de compensación","Spanish","es","junta de compensación","","","2023-09-28","ACTV","","","" "TUHS","Spain","ES","","","Corporación de Derecho Público","Spanish","es","Corporación de Derecho Público","","","2020-06-10","ACTV","","","" "UJ35","Spain","ES","","","Fondo de Inversion Mobiliaria","Spanish","es","Fondo de Inversion Mobiliaria","F.I.M.","","2017-11-30","ACTV","","","" "VFIU","Spain","ES","","","Sociedad Comanditaria Simple Profesional","Spanish","es","Sociedad Comanditaria Simple Profesional","S. en C.P.;S.Com.P.","","2017-11-30","ACTV","","","" "XYGP","Spain","ES","","","Fondo de Capital-Riesgo-Pyme","Spanish","es","Fondo de Capital-Riesgo-Pyme","FCR-Pyme","","2017-11-30","ACTV","","","" "8MS6","Suriname","SR","","","Stichting","Dutch","nl","Stichting","","","2019-07-05","ACTV","","","" "K4ZA","Suriname","SR","","","Cooperatieve Vereniging","Dutch","nl","Cooperatieve Vereniging","","","2019-07-05","ACTV","","","" "KJZ3","Suriname","SR","","","Filiaal of Bijkantoor","Dutch","nl","Filiaal of Bijkantoor","","","2019-07-05","INAC","deletion","2020-06-10","this is not a Surinam legal form" "OBTO","Suriname","SR","","","Commanditaire vennootschap (op aandelen) met een beherende vennoot","Dutch","nl","Commanditaire vennootschap (op aandelen) met een beherende vennoot","CV;cv;C.V.;c.v.","","2019-07-05","ACTV","","","" "QPC9","Suriname","SR","","","Vereniging","Dutch","nl","Vereniging","","","2019-07-05","ACTV","","","" "QWWY","Suriname","SR","","","Commanditaire vennootschap (op aandelen) met meer dan een beherende vennoot","Dutch","nl","Commanditaire vennootschap (op aandelen) met meer dan een beherende vennoot","CV;cv;C.V.;c.v.","","2019-07-05","ACTV","","","" "R6BI","Suriname","SR","","","Eenmanszaak","Dutch","nl","Eenmanszaak","","","2019-07-05","ACTV","","","" "TCVB","Suriname","SR","","","Naamloze Vennootschap / Limited Company by Shares","Dutch","nl","Naamloze Vennootschap / Limited Company by Shares","NV;nv;N.V.;n.v.","","2019-07-05","ACTV","","","" "WBWC","Suriname","SR","","","Vennootschap onder een firma","Dutch","nl","Vennootschap onder een firma","VOF;vof;V.O.F.;v.o.f.","","2019-07-05","ACTV","","","" "1TN0","Sweden","SE","","","Ideell förening (som bedriver näringsverksamhet)","Swedish","sv","Ideell förening (som bedriver näringsverksamhet)","I","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "27AW","Sweden","SE","","","offentlig enhet","Swedish","sv","offentlig enhet","","","2023-09-28","ACTV","","","" "2UAX","Sweden","SE","","","Trossamfund (som bedriver näringsverksamhet)","Swedish","sv","Trossamfund (som bedriver näringsverksamhet)","TSF","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "381R","Sweden","SE","","","Medlemsbank","Swedish","sv","Medlemsbank","MB","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "44CQ","Sweden","SE","","","samfallighetsförening","Swedish","sv","samfallighetsförening","","","2023-09-28","ACTV","","","" "54P7","Sweden","SE","","","Europabolag","Swedish","sv","Europabolag","SE;S.E.","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "9YIP","Sweden","SE","","","Europakooperativ","Swedish","sv","Europakooperativ","SCE;S.C.E.","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "AZTO","Sweden","SE","","","Sambruksförening","Swedish","sv","Sambruksförening","SF","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "BEAY","Sweden","SE","","","Handelsbolag","Swedish","sv","Handelsbolag","HB","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "BYQJ","Sweden","SE","","","Bankaktiebolag","Swedish","sv","Bankaktiebolag","BAB","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "C61P","Sweden","SE","","","Ekonomisk förening","Swedish","sv","Ekonomisk förening","Ek. för.","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "CX05","Sweden","SE","","","Kommanditbolag","Swedish","sv","Kommanditbolag","KB","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "E9BI","Sweden","SE","","","stiftelse","Swedish","sv","stiftelse","","","2023-09-28","ACTV","","","" "G04R","Sweden","SE","","","Sparbank","Swedish","sv","Sparbank","SB","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "M0Y0","Sweden","SE","","","Försäkringsförening","Swedish","sv","Försäkringsförening","FOF","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "O1QI","Sweden","SE","","","Ömsesidigt försäkringsbolag","Swedish","sv","Ömsesidigt försäkringsbolag","OFB","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "OJ9I","Sweden","SE","","","Försäkringsaktiebolag","Swedish","sv","Försäkringsaktiebolag","FAB","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "PDQ0","Sweden","SE","","","Kooperativ hyresrättsförening","Swedish","sv","Kooperativ hyresrättsförening","KHF","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "RLJO","Sweden","SE","","","Europeisk ekonomisk intressegruppering","Swedish","sv","Europeisk ekonomisk intressegruppering","EEIG","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "RYFP","Sweden","SE","","","Europeisk gruppering för territoriellt samarbete","Swedish","sv","Europeisk gruppering för territoriellt samarbete","EGTS","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "SSOM","Sweden","SE","","","Bostadsrättsförening","Swedish","sv","Bostadsrättsförening","BRF","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "UKOL","Sweden","SE","","","enkelt bolag","Swedish","sv","enkelt bolag","","","2023-09-28","ACTV","","","" "WZDB","Sweden","SE","","","Bostadsförening","Swedish","sv","Bostadsförening","","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "XJHM","Sweden","SE","","","Aktiebolag","Swedish","sv","Aktiebolag","AB","","2017-11-30","ACTV","language code adjusted to sv","2019-07-05","language code adjusted to sv" "1BL5","Switzerland","CH","","","Swiss branch of an enterprise domiciled abroad not registered in the commercial register","English","en","Swiss branch of an enterprise domiciled abroad not registered in the commercial register","Foreign Coop. & Ltd.Co.","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "1BL5","Switzerland","CH","","","Succursale suisse d'une entreprise domiciliée à l'étranger non inscrite au registre de commerce","French","fr","Succursale suisse d'une entreprise domiciliée à l'étranger non inscrite au registre de commerce","Coop & Sarl étranger","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "1BL5","Switzerland","CH","","","Ausländische Niederlassung nicht im Handelsregister eingetragen","German","de","Ausländische Niederlassung nicht im Handelsregister eingetragen","Ausl. Gen. & GMBH","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "1BL5","Switzerland","CH","","","Succursali svizzere di una impresa domiciliata all'estero non iscritta al registro di commercio","Italian","it","Succursali svizzere di una impresa domiciliata all'estero non iscritta al registro di commercio","Coop. & SAGL estero","","2017-11-30","INAC","deletion","2023-09-28","not a separate legal form; it is a branch of a company abroad" "1RKS","Switzerland","CH","","","Foreign public administration (e.g. embassy)","English","en","Foreign public administration (e.g. embassy)","Embassy","","2017-11-30","INAC","deletion","2023-09-28","not a Swiss legal form" "1RKS","Switzerland","CH","","","Administration publique étrangère (ex. Ambassade)","French","fr","Administration publique étrangère (ex. Ambassade)","Ambassade","","2017-11-30","INAC","deletion","2023-09-28","not a Swiss legal form" "1RKS","Switzerland","CH","","","Ausländische öffentliche Verwaltung","German","de","Ausländische öffentliche Verwaltung","Botschaft","","2017-11-30","INAC","deletion","2023-09-28","not a Swiss legal form" "1RKS","Switzerland","CH","","","Amministrazione pubblica estera (ex. ambasciata)","Italian","it","Amministrazione pubblica estera (ex. ambasciata)","Ambasciate","","2017-11-30","INAC","deletion","2023-09-28","not a Swiss legal form" "2B81","Switzerland","CH","","","Simple partnership","English","en","Simple partnership","Simple Co.","","2017-11-30","ACTV","","","" "2B81","Switzerland","CH","","","Société simple","French","fr","Société simple","","","2017-11-30","ACTV","","","" "2B81","Switzerland","CH","","","Einfache Gesellschaft","German","de","Einfache Gesellschaft","Einfache Gesellsch.","","2017-11-30","ACTV","","","" "2B81","Switzerland","CH","","","Sociéta semplice","Italian","it","Sociéta semplice","","","2017-11-30","ACTV","","","" "2JZ4","Switzerland","CH","","","Foundation","English","en","Foundation","","","2017-11-30","ACTV","","","" "2JZ4","Switzerland","CH","","","Fondation","French","fr","Fondation","","","2017-11-30","ACTV","","","" "2JZ4","Switzerland","CH","","","Stiftung","German","de","Stiftung","","","2017-11-30","ACTV","","","" "2JZ4","Switzerland","CH","","","Fondazione","Italian","it","Fondazione","","","2017-11-30","ACTV","","","" "2WFG","Switzerland","CH","","","Foreign public company","English","en","Foreign public company","Foreign legal nature","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "2WFG","Switzerland","CH","","","Entreprise publique étrangère","French","fr","Entreprise publique étrangère","Nature jur. étran.","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "2WFG","Switzerland","CH","","","Ausländisches öffentliches Unternehmen","German","de","Ausländisches öffentliches Unternehmen","Ausl. Rechtsform","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "2WFG","Switzerland","CH","","","Impresa pubblica estera","Italian","it","Impresa pubblica estera","Natura guiri. estera","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "2XJA","Switzerland","CH","","","Federal administration","English","en","Federal administration","Federal administration","","2017-11-30","ACTV","","","" "2XJA","Switzerland","CH","","","Administration de la Confédération","French","fr","Administration de la Confédération","Confédération","","2017-11-30","ACTV","","","" "2XJA","Switzerland","CH","","","Verwaltung des Bundes","German","de","Verwaltung des Bundes","Bund","","2017-11-30","ACTV","","","" "2XJA","Switzerland","CH","","","Amministrazione della Confederazione","Italian","it","Amministrazione della Confederazione","Confederazione","","2017-11-30","ACTV","","","" "3EKS","Switzerland","CH","","","Limited liability company","English","en","Limited liability company","Ltd;Ltd.;Limited","","2017-11-30","ACTV","","","" "3EKS","Switzerland","CH","","","Société à responsabilité limitée (SARL)","French","fr","Société à responsabilité limitée (SARL)","SARL","","2017-11-30","ACTV","","","" "3EKS","Switzerland","CH","","","Gesellschaft mit beschränkter Haftung (GmbH)","German","de","Gesellschaft mit beschränkter Haftung (GmbH)","GMBH","","2017-11-30","ACTV","","","" "3EKS","Switzerland","CH","","","Società a garanzia limitata (SAGL)","Italian","it","Società a garanzia limitata (SAGL)","SAGL","","2017-11-30","ACTV","","","" "54WI","Switzerland","CH","","","Investment company with fixed capital","English","en","Investment company with fixed capital","","","2017-11-30","ACTV","","","" "54WI","Switzerland","CH","","","Société d'investissement à capital fixe (SICAF)","French","fr","Société d'investissement à capital fixe (SICAF)","","","2017-11-30","ACTV","","","" "54WI","Switzerland","CH","","","Investmentgesellschaft mit festem Kapital (SICAF)","German","de","Investmentgesellschaft mit festem Kapital (SICAF)","","","2017-11-30","ACTV","","","" "54WI","Switzerland","CH","","","Società di investimento a capitale fisso (SICAF)","Italian","it","Società di investimento a capitale fisso (SICAF)","","","2017-11-30","ACTV","","","" "5BEZ","Switzerland","CH","","","Special legal form","English","en","Special legal form","","","2017-11-30","ACTV","","","" "5BEZ","Switzerland","CH","","","Forme juridique particulière","French","fr","Forme juridique particulière","","","2017-11-30","ACTV","","","" "5BEZ","Switzerland","CH","","","Besondere Rechtsform","German","de","Besondere Rechtsform","","","2017-11-30","ACTV","","","" "5BEZ","Switzerland","CH","","","Natura giuridica particolare","Italian","it","Natura giuridica particolare","","","2017-11-30","ACTV","","","" "7MNN","Switzerland","CH","","","Public sector institution","English","en","Public sector institution","Pub. Sec. inst.","","2017-11-30","ACTV","","","" "7MNN","Switzerland","CH","","","Institut de droit public","French","fr","Institut de droit public","Inst. droit public","","2017-11-30","ACTV","","","" "7MNN","Switzerland","CH","","","Institut des öffentlichen Rechts","German","de","Institut des öffentlichen Rechts","Inst. öff. Recht","","2017-11-30","ACTV","","","" "7MNN","Switzerland","CH","","","Istituti di diritto pubblico","Italian","it","Istituti di diritto pubblico","Ist. dir. pubblico","","2017-11-30","ACTV","","","" "AZA0","Switzerland","CH","","","Sole proprietorship","English","en","Sole proprietorship","Individually owned Co.","","2017-11-30","ACTV","","","" "AZA0","Switzerland","CH","","","Entreprise individuelle","French","fr","Entreprise individuelle","Raison individuelle","","2017-11-30","ACTV","","","" "AZA0","Switzerland","CH","","","Einzelunternehmen","German","de","Einzelunternehmen","Einzelfirma","","2017-11-30","ACTV","","","" "AZA0","Switzerland","CH","","","Ditta individuale","Italian","it","Ditta individuale","Ragione individuale","","2017-11-30","ACTV","","","" "BF9N","Switzerland","CH","","","Federal public company","English","en","Federal public company","Fed. publ. co.","","2017-11-30","ACTV","","","" "BF9N","Switzerland","CH","","","Entreprise publique fédérale","French","fr","Entreprise publique fédérale","Ent. pub. fédérale","","2017-11-30","ACTV","","","" "BF9N","Switzerland","CH","","","Unternehmen des Bundes","German","de","Unternehmen des Bundes","öff. Unt. Bund","","2017-11-30","ACTV","","","" "BF9N","Switzerland","CH","","","Impresa pubblica federale","Italian","it","Impresa pubblica federale","Imp. pubb. federale","","2017-11-30","ACTV","","","" "CQMY","Switzerland","CH","","","Limited partnership","English","en","Limited partnership","Ltd partnership","","2017-11-30","ACTV","","","" "CQMY","Switzerland","CH","","","Société en commandite","French","fr","Société en commandite","Soc. en commandite","","2017-11-30","ACTV","","","" "CQMY","Switzerland","CH","","","Kommanditgesellschaft","German","de","Kommanditgesellschaft","Kommanditgesellsch.","","2017-11-30","ACTV","","","" "CQMY","Switzerland","CH","","","Società in accomandita","Italian","it","Società in accomandita","Soc. in accomandita","","2017-11-30","ACTV","","","" "DP2E","Switzerland","CH","","","International organisation","English","en","International organisation","Internat. Org.","","2017-11-30","ACTV","","","" "DP2E","Switzerland","CH","","","Organisation Internationale","French","fr","Organisation Internationale","Org. Internationales","","2017-11-30","ACTV","","","" "DP2E","Switzerland","CH","","","Internationale Organisation","German","de","Internationale Organisation","Int. Organisation","","2017-11-30","ACTV","","","" "DP2E","Switzerland","CH","","","Organizazioni Internazionali","Italian","it","Organizazioni Internazionali","Org. Internazionali","","2017-11-30","ACTV","","","" "E0NE","Switzerland","CH","","","Public corporation","English","en","Public corporation","Public corporation","","2017-11-30","ACTV","","","" "E0NE","Switzerland","CH","","","Corporation de droit public","French","fr","Corporation de droit public","Corp. droit public","","2017-11-30","ACTV","","","" "E0NE","Switzerland","CH","","","öffentlich-rechtliche Körperschaft (Verwaltung)","German","de","öffentlich-rechtliche Körperschaft (Verwaltung)","öff.-rechtl. Körp.","","2017-11-30","ACTV","","","" "E0NE","Switzerland","CH","","","Amm. corporazioni, consorzi, patriziati di diritto pubblico","Italian","it","Amm. corporazioni, consorzi, patriziati di diritto pubblico","Corp. diritto pubb.","","2017-11-30","ACTV","","","" "FFTN","Switzerland","CH","","","Cantonal administration","English","en","Cantonal administration","Cantonal administration","","2017-11-30","ACTV","","","" "FFTN","Switzerland","CH","","","Administration du canton","French","fr","Administration du canton","Canton","","2017-11-30","ACTV","","","" "FFTN","Switzerland","CH","","","Verwaltung des Kantons","German","de","Verwaltung des Kantons","Kanton","","2017-11-30","ACTV","","","" "FFTN","Switzerland","CH","","","Amministrazione del cantone","Italian","it","Amministrazione del cantone","Cantone","","2017-11-30","ACTV","","","" "FJG4","Switzerland","CH","","","Trust","German","de","Trust","","","2019-07-05","ACTV","","","" "FJG4","Switzerland","CH","","","Trust","English","en","Trust","","","2019-07-05","ACTV","","","" "FJG4","Switzerland","CH","","","Trust","French","fr","Trust","","","2019-07-05","ACTV","","","" "FJG4","Switzerland","CH","","","Trust","Italian","it","Trust","","","2019-07-05","ACTV","","","" "FLNB","Switzerland","CH","","","Fonds","German","de","Fonds","","","2019-07-05","ACTV","","","" "FLNB","Switzerland","CH","","","Fund","English","en","Fund","","","2019-07-05","ACTV","","","" "FLNB","Switzerland","CH","","","Fonds","French","fr","Fonds","","","2019-07-05","ACTV","","","" "FLNB","Switzerland","CH","","","Fondo","Italian","it","Fondo","","","2019-07-05","ACTV","","","" "GP8M","Switzerland","CH","","","Local administration","English","en","Local administration","Local administration","","2017-11-30","ACTV","","","" "GP8M","Switzerland","CH","","","Administration communale","French","fr","Administration communale","Commune","","2017-11-30","ACTV","","","" "GP8M","Switzerland","CH","","","Verwaltung der Gemeinde","German","de","Verwaltung der Gemeinde","Gemeinde","","2017-11-30","ACTV","","","" "GP8M","Switzerland","CH","","","Amministrazione comunale","Italian","it","Amministrazione comunale","Comune","","2017-11-30","ACTV","","","" "H781","Switzerland","CH","","","Association","English","en","Association","","","2017-11-30","ACTV","","","" "H781","Switzerland","CH","","","Association politique, religieuse, scientifique, etc.","French","fr","Association politique, religieuse, scientifique, etc.","","","2017-11-30","ACTV","","","" "H781","Switzerland","CH","","","Verein","German","de","Verein","","","2017-11-30","ACTV","","","" "H781","Switzerland","CH","","","Associazione politico, religioso, scientifico, ecc.","Italian","it","Associazione politico, religioso, scientifico, ecc.","","","2017-11-30","ACTV","","","" "HX77","Switzerland","CH","","","Cantonal public company","English","en","Cantonal public company","Cant. publ. co.","","2017-11-30","ACTV","","","" "HX77","Switzerland","CH","","","Entreprise publique cantonale","French","fr","Entreprise publique cantonale","Ent. pub. cantonale","","2017-11-30","ACTV","","","" "HX77","Switzerland","CH","","","Unternehmen des Kantons","German","de","Unternehmen des Kantons","öff. Unt. Kanton","","2017-11-30","ACTV","","","" "HX77","Switzerland","CH","","","Impresa pubblica cantonale","Italian","it","Impresa pubblica cantonale","Imp. pubb. cantonale","","2017-11-30","ACTV","","","" "JB25","Switzerland","CH","","","Swiss branch of an enterprise domiciled abroad registered in the commercial registrer","English","en","Swiss branch of an enterprise domiciled abroad registered in the commercial registrer","Foreign PLC","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "JB25","Switzerland","CH","","","Succursale suisse d'une entreprise domiciliée à l'étranger inscrite au registre de commerce","French","fr","Succursale suisse d'une entreprise domiciliée à l'étranger inscrite au registre de commerce","SAdom. étran.","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "JB25","Switzerland","CH","","","Ausländische Niederlassung im Handelsregister eingetragen","German","de","Ausländische Niederlassung im Handelsregister eingetragen","Ausl. AG & LTD","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "JB25","Switzerland","CH","","","Succursale di una impresa domiciliata all'estero iscritta al registro di commercio","Italian","it","Succursale di una impresa domiciliata all'estero iscritta al registro di commercio","SA dom. estero","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "KJ9Q","Switzerland","CH","","","Non-commercial power of attorney","English","en","Non-commercial power of attorney","Power Att.","","2017-11-30","ACTV","","","" "KJ9Q","Switzerland","CH","","","Procurations non commerciales","French","fr","Procurations non commerciales","Procuration","","2017-11-30","ACTV","","","" "KJ9Q","Switzerland","CH","","","Nichtkaufmännische Prokuren","German","de","Nichtkaufmännische Prokuren","Prokura","","2017-11-30","ACTV","","","" "KJ9Q","Switzerland","CH","","","Procura non commerciale","Italian","it","Procura non commerciale","Procura","","2017-11-30","ACTV","","","" "L5DU","Switzerland","CH","","","Local public company","English","en","Local public company","Loc. publ. co.","","2017-11-30","ACTV","","","" "L5DU","Switzerland","CH","","","Entreprise publique communale","French","fr","Entreprise publique communale","Ent. pub. communale","","2017-11-30","ACTV","","","" "L5DU","Switzerland","CH","","","Unternehmen der Gemeinde","German","de","Unternehmen der Gemeinde","öff. Unt. Gemeinde","","2017-11-30","ACTV","","","" "L5DU","Switzerland","CH","","","Impresa pubblica comunale","Italian","it","Impresa pubblica comunale","Imp. pubb. comunale","","2017-11-30","ACTV","","","" "M848","Switzerland","CH","","","Corpororate public company","English","en","Corpororate public company","Corp. publ. co.","","2017-11-30","ACTV","","","" "M848","Switzerland","CH","","","Entreprise publique d'une corpororation","French","fr","Entreprise publique d'une corpororation","Ent. pub. corpor.","","2017-11-30","ACTV","","","" "M848","Switzerland","CH","","","öffentlich-rechtliche Körperschaft (Unternehmen)","German","de","öffentlich-rechtliche Körperschaft (Unternehmen)","öff. Unt. Körp.","","2017-11-30","ACTV","","","" "M848","Switzerland","CH","","","Impresa o ente pubblico di una corporazione","Italian","it","Impresa o ente pubblico di una corporazione","Imp. pubb. corpora.","","2017-11-30","ACTV","","","" "MRSY","Switzerland","CH","","","General partnership","English","en","General partnership","Partnership (general)","","2017-11-30","ACTV","","","" "MRSY","Switzerland","CH","","","Société en nom collectif","French","fr","Société en nom collectif","Soc. nom collectif","","2017-11-30","ACTV","","","" "MRSY","Switzerland","CH","","","Kollektivgesellschaft","German","de","Kollektivgesellschaft","Kollektivgesellsch.","","2017-11-30","ACTV","","","" "MRSY","Switzerland","CH","","","Società in nome collettivo","Italian","it","Società in nome collettivo","Soc. nome collettivo","","2017-11-30","ACTV","","","" "MVII","Switzerland","CH","","","Company limited by shares","English","en","Company limited by shares","PLC","","2017-11-30","ACTV","","","" "MVII","Switzerland","CH","","","Société anonyme","French","fr","Société anonyme","SA","","2017-11-30","ACTV","","","" "MVII","Switzerland","CH","","","Aktiengesellschaft","German","de","Aktiengesellschaft","AG","","2017-11-30","ACTV","","","" "MVII","Switzerland","CH","","","Società anonima","Italian","it","Società anonima","SA","","2017-11-30","ACTV","","","" "OBFU","Switzerland","CH","","","Representative of an ownership in undivided shares","English","en","Representative of an ownership in undivided shares","Undivided","","2017-11-30","ACTV","","","" "OBFU","Switzerland","CH","","","Représentants d'indivisions","French","fr","Représentants d'indivisions","Indivisions","","2017-11-30","ACTV","","","" "OBFU","Switzerland","CH","","","Haupt von Gemeinderschaften","German","de","Haupt von Gemeinderschaften","","","2017-11-30","ACTV","","","" "OBFU","Switzerland","CH","","","Rappresentanti d'indivisioni","Italian","it","Rappresentanti d'indivisioni","Indivisioni","","2017-11-30","ACTV","","","" "QSI2","Switzerland","CH","","","Cooperative","English","en","Cooperative","","","2017-11-30","ACTV","","","" "QSI2","Switzerland","CH","","","Société coopérative","French","fr","Société coopérative","","","2017-11-30","ACTV","","","" "QSI2","Switzerland","CH","","","Genossenschaft","German","de","Genossenschaft","","","2017-11-30","ACTV","","","" "QSI2","Switzerland","CH","","","Società cooperativa","Italian","it","Società cooperativa","","","2017-11-30","ACTV","","","" "R9TC","Switzerland","CH","","","Foreign enterprise","English","en","Foreign enterprise","Foreign Enterprise","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "R9TC","Switzerland","CH","","","Entreprise étrangère","French","fr","Entreprise étrangère","Ent. Etrangère","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "R9TC","Switzerland","CH","","","Ausländische Unternehmen","German","de","Ausländische Unternehmen","Aus. Unt.","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "R9TC","Switzerland","CH","","","Impresa straniera","Italian","it","Impresa straniera","Imp. Str.","","2017-11-30","INAC","deletion","2020-06-10","this is not a Swiss legal form" "TL87","Switzerland","CH","","","Limited partnership for collective investments","English","en","Limited partnership for collective investments","Ldt part. Coll. Invest.","","2017-11-30","ACTV","","","" "TL87","Switzerland","CH","","","Société en commandite de placements collectifs","French","fr","Société en commandite de placements collectifs","Soc. com. Investissement","","2017-11-30","ACTV","","","" "TL87","Switzerland","CH","","","Kommanditgesellschaft fuer kollektive Kapitalanlagen","German","de","Kommanditgesellschaft fuer kollektive Kapitalanlagen","Kommandit. Kapitalanlagen","","2017-11-30","ACTV","","","" "TL87","Switzerland","CH","","","Società in accomandita per investimenti collettivi di capitale","Italian","it","Società in accomandita per investimenti collettivi di capitale","Soc. com. investimenti","","2017-11-30","ACTV","","","" "UNA9","Switzerland","CH","","","Swiss branch registered at the registry of commerce","English","en","Swiss branch registered at the registry of commerce","Branch RC","","2017-11-30","INAC","deletion","2020-06-10","this is not a separate legal form; a branch has the legal form of the main company itself" "UNA9","Switzerland","CH","","","Succursale suisse enregistrée au registre de commerce","French","fr","Succursale suisse enregistrée au registre de commerce","Succ. RC","","2017-11-30","INAC","deletion","2020-06-10","this is not a separate legal form; a branch has the legal form of the main company itself" "UNA9","Switzerland","CH","","","Schweizerische Zweigniederlassung im Handelsregister eingetragen","German","de","Schweizerische Zweigniederlassung im Handelsregister eingetragen","Zweig. HR","","2017-11-30","INAC","deletion","2020-06-10","this is not a separate legal form; a branch has the legal form of the main company itself" "UNA9","Switzerland","CH","","","Succursale svizzera registrata nel registro di commercio","Italian","it","Succursale svizzera registrata nel registro di commercio","Succ. RC","","2017-11-30","INAC","deletion","2020-06-10","this is not a separate legal form; a branch has the legal form of the main company itself" "VPRH","Switzerland","CH","","","District public company","English","en","District public company","Distr. publ. co.","","2017-11-30","ACTV","","","" "VPRH","Switzerland","CH","","","Entreprise publique de district","French","fr","Entreprise publique de district","Ent. pub. district","","2017-11-30","ACTV","","","" "VPRH","Switzerland","CH","","","öffentliches Unternehmen des Bezirks","German","de","öffentliches Unternehmen des Bezirks","öff. Unt. Bezirk","","2017-11-30","ACTV","","","" "VPRH","Switzerland","CH","","","Impresa pubblica di distretto","Italian","it","Impresa pubblica di distretto","Imp. pubb. distretto","","2017-11-30","ACTV","","","" "W6A7","Switzerland","CH","","","Patnership limited by shares","English","en","Patnership limited by shares","","","2017-11-30","ACTV","","","" "W6A7","Switzerland","CH","","","Société en commandite par action","French","fr","Société en commandite par action","Soc. comm. action","","2017-11-30","ACTV","","","" "W6A7","Switzerland","CH","","","Kommanditaktiengesellschaft","German","de","Kommanditaktiengesellschaft","Kommandit-AG","","2017-11-30","ACTV","","","" "W6A7","Switzerland","CH","","","Società in accomandita per azioni","Italian","it","Società in accomandita per azioni","Soc. com. per azioni","","2017-11-30","ACTV","","","" "XJOT","Switzerland","CH","","","Investment company with variable capital","English","en","Investment company with variable capital","","","2017-11-30","ACTV","","","" "XJOT","Switzerland","CH","","","Société d'investissement à capital variable (SICAV)","French","fr","Société d'investissement à capital variable (SICAV)","","","2017-11-30","ACTV","","","" "XJOT","Switzerland","CH","","","Investmentgesellschaft mit variablem Kapital (SICAV)","German","de","Investmentgesellschaft mit variablem Kapital (SICAV)","","","2017-11-30","ACTV","","","" "XJOT","Switzerland","CH","","","Società di investimento a capitale variabile (SICAV)","Italian","it","Società di investimento a capitale variabile (SICAV)","","","2017-11-30","ACTV","","","" "YRGM","Switzerland","CH","","","District administration","English","en","District administration","District administration","","2017-11-30","ACTV","","","" "YRGM","Switzerland","CH","","","Administration du district","French","fr","Administration du district","District","","2017-11-30","ACTV","","","" "YRGM","Switzerland","CH","","","Verwaltung des Bezirks","German","de","Verwaltung des Bezirks","Bezirk","","2017-11-30","ACTV","","","" "YRGM","Switzerland","CH","","","Amministrazione del distretto","Italian","it","Amministrazione del distretto","Distretto","","2017-11-30","ACTV","","","" "14U1","Taiwan (Province of China)","TW","","","兩合公司","Chinese","zh","Wúxiàn zérèn gǔdōng de wúxiàn gōngsī","","","2023-09-28","ACTV","","","" "346N","Taiwan (Province of China)","TW","","","公益社團法人","Chinese","zh","Císhàn tuántǐ","","","2023-09-28","ACTV","","","" "6LI8","Taiwan (Province of China)","TW","","","營利社團法人","Chinese","zh","Yíng lì shè tuán fǎ rén","","","2023-09-28","ACTV","","","" "ALDM","Taiwan (Province of China)","TW","","","合作社","Chinese","zh","Hé zuò shè","","","2023-09-28","ACTV","","","" "F5VB","Taiwan (Province of China)","TW","","","財團法人","Chinese","zh","cái tuán fǎ rén","","","2023-09-28","ACTV","","","" "IUOP","Taiwan (Province of China)","TW","","","商號","Chinese","zh","shāng hào","","","2023-09-28","ACTV","","","" "K9SK","Taiwan (Province of China)","TW","","","合夥","Chinese","zh","hé huǒ","","","2023-09-28","ACTV","","","" "KHQ2","Taiwan (Province of China)","TW","","","無限公司","Chinese","zh","Wúxiàn gōngsī","","","2023-09-28","ACTV","","","" "TD8P","Taiwan (Province of China)","TW","","","股份有限公司","Chinese","zh","gǔ fèn yǒu xiàn gōng sī","","","2023-09-28","ACTV","","","" "Y45C","Taiwan (Province of China)","TW","","","有限公司","Chinese","zh","Yǒuxiàn gōngsī","","","2023-09-28","ACTV","","","" "46FG","Thailand","TH","","","จังหวัด","Thai","th","Cạngh̄wạd","","","2023-09-28","ACTV","","","" "D87D","Thailand","TH","","","มูลนิธิจดทะเบียน","Thai","th","Mūlniṭhi cdthabeīyn","","","2023-09-28","ACTV","","","" "FDRT","Thailand","TH","","","สมาคมจดทะเบียน","Thai","th","S̄mākhm cdthabeīyn","","","2023-09-28","ACTV","","","" "JUEU","Thailand","TH","","","ห้างหุ้นส่วนจำกัด","Thai","th","H̄̂āngh̄ûns̄̀wncảkạd","","","2023-09-28","ACTV","","","" "K09K","Thailand","TH","","","บริษัทจำกัด","Thai","th","Bris̄ʹạthcảkạd","","","2023-09-28","ACTV","","","" "N8FJ","Thailand","TH","","","ส่วนราชการ","Thai","th","S̄̀wn rāchkār","","","2023-09-28","ACTV","","","" "O0OZ","Thailand","TH","","","บริษัทมหาชนจำกัด","Thai","th","Bris̄ʹạth mh̄āchn cảkạd","","","2023-09-28","ACTV","","","" "QFXX","Thailand","TH","","","ห้างหุ้นส่วนสามัญจดทะเบียน","Thai","th","H̄̂āngh̄ûns̄̀wns̄āmạỵ cdthabeīyn","","","2023-09-28","ACTV","","","" "VSTJ","Thailand","TH","","","นิติบุคคลอื่นที่จัดตั้งขึ้นตามกฎหมายพิเศษ","Thai","th","Nitibukhkhl xụ̄̀n thī̀ cạdtậng k̄hụ̂n tām kḍh̄māy phiṣ̄es̄ʹ","","","2023-09-28","ACTV","","","" "UZUP","Tonga","TO","","","Local Company","English","en","Local Company","","","2020-06-10","ACTV","","","" "ZQEN","Tonga","TO","","","Overseas Company","English","en","Overseas Company","","","2020-06-10","ACTV","","","" "AF67","Tunisia","TN","","","Société unipersonnelle à responsabilité limitée","French","fr","Société unipersonnelle à responsabilité limitée","SUARL","","2021-09-23","ACTV","","","" "F502","Tunisia","TN","","","Entreprise individuelle","French","fr","Entreprise individuelle","","","2021-09-23","ACTV","","","" "WSE1","Tunisia","TN","","","Société à responsabilité limitée","French","fr","Société à responsabilité limitée","SARL","","2021-09-23","ACTV","","","" "YVSL","Tunisia","TN","","","Société anonyme","French","fr","Société anonyme","SA","","2021-09-23","ACTV","","","" "2DY1","Türkiye","TR","","","kamu tüzel kişiliği","Turkish","tr","kamu tüzel kişiliği","","","2023-09-28","ACTV","","","" "5T3H","Türkiye","TR","","","Fonlar","Turkish","tr","Fonlar","","","2019-07-05","ACTV","change of country name","2023-09-28","change of official country name in English" "8BXP","Türkiye","TR","","","kooperatif","Turkish","tr","kooperatif","","","2023-09-28","ACTV","","","" "D4KQ","Türkiye","TR","","","özel mevzuat ile kurulmuş kuruluş","Turkish","tr","özel mevzuat ile kurulmuş kuruluş","","","2023-09-28","ACTV","","","" "HAAY","Türkiye","TR","","","birlik","Turkish","tr","birlik","","","2023-09-28","ACTV","","","" "JMQU","Türkiye","TR","","","kollektif şirket","Turkish","tr","kollektif şirket","Koll.Şti.","","2017-11-30","ACTV","change of country name","2023-09-28","change of official country name in English" "LYA0","Türkiye","TR","","","dernek","Turkish","tr","dernek","","","2023-09-28","ACTV","","","" "ONVA","Türkiye","TR","","","komandit şirket","Turkish","tr","komandit şirket","Kom.Şti","","2017-11-30","ACTV","change of country name","2023-09-28","change of official country name in English" "R5UT","Türkiye","TR","","","limited şirket","Turkish","tr","limited şirket","Ltd. Şti.","","2017-11-30","ACTV","change of country name","2023-09-28","change of official country name in English" "RLSQ","Türkiye","TR","","","vakif","Turkish","tr","vakif","","","2023-09-28","ACTV","","","" "W2SQ","Türkiye","TR","","","anonim şirket","Turkish","tr","anonim şirket","A.Ş.","","2017-11-30","ACTV","change of country name","2023-09-28","change of official country name in English" "AJ2Y","Tuvalu","TV","","","proprietary company","English","en","proprietary company","PTY","","2023-09-28","ACTV","","","" "LZI3","Tuvalu","TV","","","partnership","English","en","partnership","","","2023-09-28","ACTV","","","" "OTC0","Tuvalu","TV","","","co-operative society","English","en","co-operative society","","","2023-09-28","ACTV","","","" "PKOR","Tuvalu","TV","","","public company","English","en","public company","LTD","","2023-09-28","ACTV","","","" "RS5D","Tuvalu","TV","","","association","English","en","association","","","2023-09-28","ACTV","","","" "W3YV","Tuvalu","TV","","","international company","English","en","international company","","","2023-09-28","ACTV","","","" "F8VX","United Arab Emirates","AE","","","Joint Liability Company","English","en","Joint Liability Company","","","2019-07-05","ACTV","","","" "JGNU","United Arab Emirates","AE","","","Public Joint Stock Company","English","en","Public Joint Stock Company","","","2019-07-05","ACTV","","","" "LOL8","United Arab Emirates","AE","","","Simple Commandite Company","English","en","Simple Commandite Company","","","2019-07-05","ACTV","","","" "MV4S","United Arab Emirates","AE","","","Sole Proprietor","English","en","Sole Proprietor","","","2020-06-10","ACTV","","","" "RWVW","United Arab Emirates","AE","","","Limited Liability Company","English","en","Limited Liability Company","","","2019-07-05","ACTV","","","" "WR09","United Arab Emirates","AE","","","Private Joint Stock Company","English","en","Private Joint Stock Company","","","2019-07-05","ACTV","","","" "4VPM","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Incorporated Cell","English","en","Incorporated Cell","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "6H9F","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Open Ended Investment Company","English","en","Open Ended Investment Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "9I58","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Private Company Unlimited without Shares","English","en","Private Company Unlimited without Shares","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "9U6F","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "B13W","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Restricted Scope Company","English","en","Restricted Scope Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "FE4G","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Protected Cell Company","English","en","Protected Cell Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "GU5E","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Public Company Limited by Shares","English","en","Public Company Limited by Shares","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "H8MU","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "HECG","United Arab Emirates","AE","Abu Dhabi","AE-AZ","General Partnership","English","en","General Partnership","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "KAEM","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Private Company Unlimited with Shares","English","en","Private Company Unlimited with Shares","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "LZ3H","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Close Ended Investment Company","English","en","Close Ended Investment Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "OSE2","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Private Company Limited by Shares","English","en","Private Company Limited by Shares","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "PNX6","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Incorporated Cell Company","English","en","Incorporated Cell Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "R2YL","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Private Company Limited by Guarantee","English","en","Private Company Limited by Guarantee","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "VKZD","United Arab Emirates","AE","Abu Dhabi","AE-AZ","Foundation","English","en","Foundation","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Abu Dhabi Global Market (ADGM)" "375P","United Arab Emirates","AE","Dubai","AE-DU","Foundation","English","en","Foundation","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "3P03","United Arab Emirates","AE","Dubai","AE-DU","Open Ended Investment Company","English","en","Open Ended Investment Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "46QC","United Arab Emirates","AE","Dubai","AE-DU","Public Company Limited by Shares","English","en","Public Company Limited by Shares","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "70EO","United Arab Emirates","AE","Dubai","AE-DU","Private Company Limited by Shares","English","en","Private Company Limited by Shares","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "AIR0","United Arab Emirates","AE","Dubai","AE-DU","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "F3UE","United Arab Emirates","AE","Dubai","AE-DU","General Partnership","English","en","General Partnership","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "RWX4","United Arab Emirates","AE","Dubai","AE-DU","Protected Cell Company","English","en","Protected Cell Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "V2PA","United Arab Emirates","AE","Dubai","AE-DU","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "VTIP","United Arab Emirates","AE","Dubai","AE-DU","Close Ended Investment Company","English","en","Close Ended Investment Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the Dubai International Financial Centre (DIFC)" "35BX","United Arab Emirates","AE","Ras Al Khaimah","AE-RK","Intellectual Property Holding Company ","English","en","Intellectual Property Holding Company ","","","2020-06-10","INAC","deletion","2021-09-23","not a separate legal entity form" "FHRL","United Arab Emirates","AE","Ras Al Khaimah","AE-RK","Segregated Portfolio Company","English","en","Segregated Portfolio Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the RAK International Corporate Centre" "GQ8F","United Arab Emirates","AE","Ras Al Khaimah","AE-RK","Company Limited By Guarantee","English","en","Company Limited By Guarantee","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the RAK International Corporate Centre" "HNPH","United Arab Emirates","AE","Ras Al Khaimah","AE-RK","Restricted Purposes Company","English","en","Restricted Purposes Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the RAK International Corporate Centre" "QJVN","United Arab Emirates","AE","Ras Al Khaimah","AE-RK","Company Limited By Shares","English","en","Company Limited By Shares","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the RAK International Corporate Centre" "UAES","United Arab Emirates","AE","Ras Al Khaimah","AE-RK","RAK Economic Zone Company","English","en","RAK Economic Zone Company","FZ LLC","","2021-09-23","ACTV","","","only to be used for entities incorporated under the regulations of the RAK Economic Zone" "Z3P8","United Arab Emirates","AE","Ras Al Khaimah","AE-RK","Unlimited Company","English","en","Unlimited Company","","","2020-06-10","ACTV","","","only to be used for entities incorporated under the regulations of the RAK International Corporate Centre" "17R0","United Kingdom of Great Britain and Northern Ireland","GB","","","Community Interest Company","English","en","Community Interest Company","CIC","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "1W62","United Kingdom of Great Britain and Northern Ireland","GB","","","Oversea Company","English","en","Oversea Company","","","2019-07-05","INAC","change of country name","2020-06-10","correction of country name to align with name in ISO 3166 standard in English" "468Q","United Kingdom of Great Britain and Northern Ireland","GB","","","United Kingdom Societas","English","en","United Kingdom Societas","UKS","","2021-09-23","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4GJI","United Kingdom of Great Britain and Northern Ireland","GB","","","Private Limited by Guarantee","English","en","Private Limited by Guarantee","Ltd;Ltd.;Limited","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "55MA","United Kingdom of Great Britain and Northern Ireland","GB","","","Cwmni Cyfyngedig Cyhoeddus","Welsh","cy","Cwmni Cyfyngedig Cyhoeddus","CCC;C.C.C.","","2017-11-30","INAC","change of country name","2019-07-05","correction of country name to align with name in ISO 3166 standard in English" "57V7","United Kingdom of Great Britain and Northern Ireland","GB","","","Private Unlimited","English","en","Private Unlimited","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "60IF","United Kingdom of Great Britain and Northern Ireland","GB","","","Private Unlimited/No Share Capital","English","en","Private Unlimited/No Share Capital","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "7T8N","United Kingdom of Great Britain and Northern Ireland","GB","","","Charitable Incorporated Organisation","English","en","Charitable Incorporated Organisation","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "8CF0","United Kingdom of Great Britain and Northern Ireland","GB","","","Assurance Company","English","en","Assurance Company","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "9B78","United Kingdom of Great Britain and Northern Ireland","GB","","","Royal Charter Company","English","en","Royal Charter Company","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "A2X8","United Kingdom of Great Britain and Northern Ireland","GB","","","Unregistered Company","English","en","Unregistered Company","","","2019-07-05","INAC","change of country name","2020-06-10","correction of country name to align with name in ISO 3166 standard in English" "AVYY","United Kingdom of Great Britain and Northern Ireland","GB","","","Government Entity","English","en","Government Entity","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "B6ES","United Kingdom of Great Britain and Northern Ireland","GB","","","Public Limited Company","English","en","Public Limited Company","PLC;P.L.C;plc;p.l.c","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "B6ES","United Kingdom of Great Britain and Northern Ireland","GB","","","Cwmni Cyfyngedig Cyhoeddus","Welsh","cy","Cwmni Cyfyngedig Cyhoeddus","CCC;C.C.C.","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "BX6Y","United Kingdom of Great Britain and Northern Ireland","GB","","","Friendly Society","English","en","Friendly Society","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "C605","United Kingdom of Great Britain and Northern Ireland","GB","","","Private Limited by Shares (Section 30 Exemption)","English","en","Private Limited by Shares (Section 30 Exemption)","","","2019-07-05","INAC","change of country name","2020-06-10","correction of country name to align with name in ISO 3166 standard in English" "CDOT","United Kingdom of Great Britain and Northern Ireland","GB","","","UK Establishment","English","en","UK Establishment","BR","","2017-11-30","INAC","change of country name","2020-06-10","correction of country name to align with name in ISO 3166 standard in English" "E12O","United Kingdom of Great Britain and Northern Ireland","GB","","","Building Society","English","en","Building Society","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "FVGZ","United Kingdom of Great Britain and Northern Ireland","GB","","","Industrial and Provident Society","English","en","Industrial and Provident Society","","","2019-07-05","INAC","change of country name","2020-06-10","correction of country name to align with name in ISO 3166 standard in English" "G12F","United Kingdom of Great Britain and Northern Ireland","GB","","","Private Limited by Guarantee/No Share Capital","English","en","Private Limited by Guarantee/No Share Capital","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "H0PO","United Kingdom of Great Britain and Northern Ireland","GB","","","Private Limited Company","English","en","Private Limited Company","Ltd;Ltd.;Limited","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "H0PO","United Kingdom of Great Britain and Northern Ireland","GB","","","cyfyngedig","Welsh","cy","cyfyngedig","cyf;cyf.","","2017-11-30","ACTV","change of country name","2019-07-05","correction of country name to align with name in ISO 3166 standard in English" "HHYT","United Kingdom of Great Britain and Northern Ireland","GB","","","European Public Limited-Liability Company (Societas Europaea)","English","en","European Public Limited-Liability Company (Societas Europaea)","SE;S.E.","","2017-11-30","INAC","change of country name","2021-01-01","correction of country name to align with name in ISO 3166 standard in English" "HX6D","United Kingdom of Great Britain and Northern Ireland","GB","","","Private Limited","English","en","Private Limited","","","2019-07-05","INAC","change of country name","2020-06-10","correction of country name to align with name in ISO 3166 standard in English" "ID30","United Kingdom of Great Britain and Northern Ireland","GB","","","Limited Partnership","English","en","Limited Partnership","LP;limited partnership;Limited Partnership","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "IYXU","United Kingdom of Great Britain and Northern Ireland","GB","","","Community Benefit Society","English","en","Community Benefit Society","BenCom","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "NAUO","United Kingdom of Great Britain and Northern Ireland","GB","","","Other Company Type","English","en","Other Company Type","","","2019-07-05","INAC","change of country name","2021-09-23","correction of country name to align with name in ISO 3166 standard in English" "Q0M5","United Kingdom of Great Britain and Northern Ireland","GB","","","Unregistered Company","English","en","Unregistered Company","","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "T61R","United Kingdom of Great Britain and Northern Ireland","GB","","","cyfyngedig","Welsh","cy","cyfyngedig","cyf;cyf.","","2017-11-30","INAC","change of country name","2019-07-05","correction of country name to align with name in ISO 3166 standard in English" "TT2H","United Kingdom of Great Britain and Northern Ireland","GB","","","Protected Cell Company","English","en","Protected Cell Company","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "TYJK","United Kingdom of Great Britain and Northern Ireland","GB","","","Private Limited by Guarantee/No Share Capital (Use of Limited Exemption)","English","en","Private Limited by Guarantee/No Share Capital (Use of Limited Exemption)","","","2019-07-05","INAC","change of country name","2020-06-10","correction of country name to align with name in ISO 3166 standard in English" "U6R9","United Kingdom of Great Britain and Northern Ireland","GB","","","European Economic Interest Grouping","English","en","European Economic Interest Grouping","EEIG","","2017-11-30","INAC","change of country name","2021-01-01","correction of country name to align with name in ISO 3166 standard in English" "VV0W","United Kingdom of Great Britain and Northern Ireland","GB","","","Investment Company with Variable Capital","English","en","Investment Company with Variable Capital","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "VYF8","United Kingdom of Great Britain and Northern Ireland","GB","","","United Kingdom Economic Interest Grouping","English","en","United Kingdom Economic Interest Grouping","UKEIG","","2021-09-23","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WBQU","United Kingdom of Great Britain and Northern Ireland","GB","","","Credit Union","English","en","Credit Union","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "WJ0A","United Kingdom of Great Britain and Northern Ireland","GB","","","Partneriaeth Atebolrwydd Cyfyngedig","Welsh","cy","Partneriaeth Atebolrwydd Cyfyngedig","PAC","","2017-11-30","INAC","change of country name","2019-07-05","correction of country name to align with name in ISO 3166 standard in English" "XLZV","United Kingdom of Great Britain and Northern Ireland","GB","","","Registered Society","English","en","Registered Society","","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Z0EY","United Kingdom of Great Britain and Northern Ireland","GB","","","Limited Liability Partnership","English","en","Limited Liability Partnership","limited liability partnership;LLP;Limited Liability Partnership","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Z0EY","United Kingdom of Great Britain and Northern Ireland","GB","","","Partneriaeth Atebolrwydd Cyfyngedig","Welsh","cy","Partneriaeth Atebolrwydd Cyfyngedig","PAC","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ZQ6S","United Kingdom of Great Britain and Northern Ireland","GB","","","Old Public Company","English","en","Old Public Company","Ltd;Ltd.;Limited","","2017-11-30","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ZZGG","United Kingdom of Great Britain and Northern Ireland","GB","","","Co-operative Society","English","en","Co-operative Society","Co-op","","2019-07-05","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "4A3J","United Kingdom of Great Britain and Northern Ireland","GB","Northern Ireland","GB-NIR","Northern Ireland Company","English","en","Northern Ireland Company","","","2019-07-05","ACTV","change of country name and jurisdiction","2020-06-10","correction of country name to align with name in ISO 3166 standard in English; jurisdiction of formation added; ISO has reintroduced the Country sub-division codes (ISO 3166-2) for the different parts of the UK" "5FRT","United Kingdom of Great Britain and Northern Ireland","GB","Northern Ireland","GB-NIR","Other Type of Company (in Northern Ireland)","English","en","Other Type of Company (in Northern Ireland)","","","2019-07-05","ACTV","change of country name and jurisdiction","2020-06-10","correction of country name to align with name in ISO 3166 standard in English; jurisdiction of formation added; ISO has reintroduced the Country sub-division codes (ISO 3166-2) for the different parts of the UK" "7VVZ","United Kingdom of Great Britain and Northern Ireland","GB","Northern Ireland","GB-NIR","Co-operative Society (Northern Ireland)","English","en","Co-operative Society (Northern Ireland)","Co-op","","2019-07-05","ACTV","change of country name and jurisdiction","2020-06-10","correction of country name to align with name in ISO 3166 standard in English; jurisdiction of formation added; ISO has reintroduced the Country sub-division codes (ISO 3166-2) for the different parts of the UK" "JTCO","United Kingdom of Great Britain and Northern Ireland","GB","Northern Ireland","GB-NIR","Credit Union (Northern Ireland)","English","en","Credit Union (Northern Ireland)","","","2019-07-05","ACTV","change of country name and jurisdiction","2020-06-10","correction of country name to align with name in ISO 3166 standard in English; jurisdiction of formation added; ISO has reintroduced the Country sub-division codes (ISO 3166-2) for the different parts of the UK" "UTY8","United Kingdom of Great Britain and Northern Ireland","GB","Northern Ireland","GB-NIR","Community Benefit Society (Northern Ireland)","English","en","Community Benefit Society (Northern Ireland)","BenCom","","2019-07-05","ACTV","change of country name and jurisdiction","2020-06-10","correction of country name to align with name in ISO 3166 standard in English; jurisdiction of formation added; ISO has reintroduced the Country sub-division codes (ISO 3166-2) for the different parts of the UK" "NBTW","United Kingdom of Great Britain and Northern Ireland","GB","Scotland","GB-SCT","Scottish Partnership","English","en","Scottish Partnership","","","2019-07-05","ACTV","change of country name and jurisdiction","2020-06-10","correction of country name to align with name in ISO 3166 standard in English; jurisdiction of formation added; ISO has reintroduced the Country sub-division codes (ISO 3166-2) for the different parts of the UK" "STX7","United Kingdom of Great Britain and Northern Ireland","GB","Scotland","GB-SCT","Scottish Charitable Incorporated Organisation","English","en","Scottish Charitable Incorporated Organisation","","","2019-07-05","ACTV","change of country name and jurisdiction","2020-06-10","correction of country name to align with name in ISO 3166 standard in English; jurisdiction of formation added; ISO has reintroduced the Country sub-division codes (ISO 3166-2) for the different parts of the UK" "14OD","United States of America","US","","","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "380O","United States of America","US","","","Federal Savings Association","English","en","Federal Savings Association","FSA","","2021-09-23","ACTV","","","entity legal forms incorporated on federal US level" "3MM4","United States of America","US","","","Edge Act Corporation","English","en","Edge Act Corporation","","","2021-09-23","ACTV","","","entity legal forms incorporated on federal US level" "62VJ","United States of America","US","","","National Bank","English","en","National Bank","N.A.","","2021-09-23","ACTV","","","entity legal forms incorporated on federal US level" "Z7ER","United States of America","US","","","Mutual Savings and Loan Holding Company","English","en","Mutual Savings and Loan Holding Company","","","2021-09-23","ACTV","","","entity legal forms incorporated on federal US level" "A3YH","United States of America","US","Alabama","US-AL","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "CR3H","United States of America","US","Alabama","US-AL","Registered Limited Liability Partnership","English","en","Registered Limited Liability Partnership","L.L.P.;LLP","","2020-06-10","ACTV","","","" "CWRI","United States of America","US","Alabama","US-AL","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC","","2020-06-10","ACTV","","","" "FIP8","United States of America","US","Alabama","US-AL","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "HFGV","United States of America","US","Alabama","US-AL","For-Profit Corporation","English","en","For-Profit Corporation","Inc.;Corp.","","2020-06-10","ACTV","","","" "HN8W","United States of America","US","Alabama","US-AL","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "JPZW","United States of America","US","Alabama","US-AL","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "QUNR","United States of America","US","Alabama","US-AL","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "V65U","United States of America","US","Alabama","US-AL","Non-Profit Corporation","English","en","Non-Profit Corporation","","","2020-06-10","ACTV","","","" "WDT2","United States of America","US","Alabama","US-AL","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","","","2020-06-10","ACTV","","","" "7GTR","United States of America","US","Alaska","US-AK","Public Corporation","English","en","Public Corporation","","","2021-09-23","ACTV","","","" "7QKB","United States of America","US","Alaska","US-AK","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "9A4Q","United States of America","US","Alaska","US-AK","Religious Corporation","English","en","Religious Corporation","","","2020-06-10","ACTV","","","" "BRO8","United States of America","US","Alaska","US-AK","Business Corporation","English","en","Business Corporation","INC","","2020-06-10","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "C0VE","United States of America","US","Alaska","US-AK","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "D4YS","United States of America","US","Alaska","US-AK","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC","","2020-06-10","ACTV","","","" "EQAQ","United States of America","US","Alaska","US-AK","Sole Proprietorship","English","en","Sole Proprietorship","","","2021-09-23","ACTV","","","" "K2BJ","United States of America","US","Alaska","US-AK","Non-Profit Corporation","English","en","Non-Profit Corporation","","","2020-06-10","ACTV","","","" "M886","United States of America","US","Alaska","US-AK","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;LLP","","2020-06-10","ACTV","","","" "OVBT","United States of America","US","Alaska","US-AK","Professional Corporation","English","en","Professional Corporation","P.C.","","2020-06-10","ACTV","","","" "TRS2","United States of America","US","Alaska","US-AK","Cooperative Corporation","English","en","Cooperative Corporation","COOP","","2020-06-10","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "VXDE","United States of America","US","Alaska","US-AK","Limited Partnership","English","en","Limited Partnership","LP","","2020-06-10","ACTV","abbreviation added","2021-09-23","addition of abbreviation" "WNKG","United States of America","US","Alaska","US-AK","Partnership","English","en","Partnership","","","2021-09-23","ACTV","","","" "ZPRC","United States of America","US","Alaska","US-AK","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "1T9S","United States of America","US","Arizona","US-AZ","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "5MNR","United States of America","US","Arizona","US-AZ","Professional Corporation","English","en","Professional Corporation","","","2017-11-30","ACTV","","","" "78H5","United States of America","US","Arizona","US-AZ","Corporation (Nonprofit)","English","en","Corporation (Nonprofit)","","","2017-11-30","ACTV","","","" "A9AW","United States of America","US","Arizona","US-AZ","Limited Partnership","English","en","Limited Partnership","","","2017-11-30","ACTV","","","" "D8PB","United States of America","US","Arizona","US-AZ","Business Development Corporation","English","en","Business Development Corporation","","","2017-11-30","ACTV","","","" "FGVH","United States of America","US","Arizona","US-AZ","Corporation (Business or for-profit)","English","en","Corporation (Business or for-profit)","","","2017-11-30","ACTV","","","" "IMDT","United States of America","US","Arizona","US-AZ","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","","","2017-11-30","ACTV","","","" "IVQQ","United States of America","US","Arizona","US-AZ","Corporation Sole","English","en","Corporation Sole","","","2017-11-30","ACTV","","","" "N69M","United States of America","US","Arizona","US-AZ","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2017-11-30","ACTV","","","" "O85W","United States of America","US","Arizona","US-AZ","Limited Liability Company","English","en","Limited Liability Company","","","2017-11-30","ACTV","","","" "P24O","United States of America","US","Arizona","US-AZ","Business Trust","English","en","Business Trust","","","2017-11-30","ACTV","","","" "QA1T","United States of America","US","Arizona","US-AZ","savings bank","English","en","savings bank","","","2023-09-28","ACTV","","","" "QEEJ","United States of America","US","Arizona","US-AZ","Professional Limited Liability Company","English","en","Professional Limited Liability Company","","","2017-11-30","ACTV","","","" "QUJ5","United States of America","US","Arizona","US-AZ","Benefit Corporation","English","en","Benefit Corporation","","","2017-11-30","ACTV","","","" "RSWJ","United States of America","US","Arizona","US-AZ","General Partnership","English","en","General Partnership","","","2017-11-30","ACTV","","","" "S68T","United States of America","US","Arizona","US-AZ","Electric Cooperative Nonprofit Membership Corporation","English","en","Electric Cooperative Nonprofit Membership Corporation","","","2017-11-30","ACTV","","","" "ST2Q","United States of America","US","Arizona","US-AZ","Cooperative Marketing Association","English","en","Cooperative Marketing Association","","","2017-11-30","ACTV","","","" "UGE3","United States of America","US","Arizona","US-AZ","Nonprofit Electric Generation and Transmission Cooperative Corporation","English","en","Nonprofit Electric Generation and Transmission Cooperative Corporation","","","2017-11-30","ACTV","","","" "VKPN","United States of America","US","Arizona","US-AZ","Close Corporation","English","en","Close Corporation","","","2017-11-30","ACTV","","","" "XUUL","United States of America","US","Arizona","US-AZ","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "1K9U","United States of America","US","Arkansas","US-AR","Non-Profit Corporation","English","en","Non-Profit Corporation","","","2020-06-10","ACTV","","","" "EJX1","United States of America","US","Arkansas","US-AR","For-Profit Corporation","English","en","For-Profit Corporation","Corp.;Inc.;Co.;Ltd.","","2020-06-10","ACTV","","","" "GD6J","United States of America","US","Arkansas","US-AR","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","correction of country subdivison code","2021-10-21","correction of country subdivison code" "JR6U","United States of America","US","Arkansas","US-AR","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","correction of country subdivison code","2021-10-21","correction of country subdivison code" "KGZ8","United States of America","US","Arkansas","US-AR","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","" "L2DM","United States of America","US","Arkansas","US-AR","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","LLLP;L.L.L.P.","","2020-06-10","ACTV","","","" "M4FO","United States of America","US","Arkansas","US-AR","Limited Liability Company","English","en","Limited Liability Company","Corporation;Incorporated;Company;Limited;Corp.;Inc.;Co.;Ltd.","","2020-06-10","ACTV","","","" "MJJZ","United States of America","US","Arkansas","US-AR","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "Q3NF","United States of America","US","Arkansas","US-AR","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "4JCS","United States of America","US","California","US-CA","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "5HQ4","United States of America","US","California","US-CA","Limited Partnership","English","en","Limited Partnership","LP;L.P.;LLLP;L.L.L.P.","","2020-06-10","ACTV","","","" "5Y1L","United States of America","US","California","US-CA","Industrial Bank","English","en","Industrial Bank","","","2021-09-23","ACTV","","","" "7CDL","United States of America","US","California","US-CA","For-Profit Corporation Close","English","en","For-Profit Corporation Close","Corporation;Company;Incorporated;Incorporation;Limited;Corp;Co;Inc;Ltd","","2020-06-10","ACTV","","","" "BADE","United States of America","US","California","US-CA","Nonprofit Common Interest Development Association","English","en","Nonprofit Common Interest Development Association","","","2020-06-10","ACTV","","","" "CVXK","United States of America","US","California","US-CA","Nonprofit Corporation Religious","English","en","Nonprofit Corporation Religious","","","2020-06-10","ACTV","","","" "EI4J","United States of America","US","California","US-CA","Limited Liability Company","English","en","Limited Liability Company","LLC;L.L.C.","","2020-06-10","ACTV","","","" "G1P6","United States of America","US","California","US-CA","Nonprofit Corporation Mutual Benefit","English","en","Nonprofit Corporation Mutual Benefit","","","2020-06-10","ACTV","","","" "H1UM","United States of America","US","California","US-CA","For-Profit Corporation General Stock","English","en","For-Profit Corporation General Stock","Corporation;Company;Incorporated;Incorporation;Limited;Corp;Co;Inc;Ltd","","2020-06-10","ACTV","","","" "K7YU","United States of America","US","California","US-CA","Nonprofit Corporation Public Benefit","English","en","Nonprofit Corporation Public Benefit","","","2020-06-10","ACTV","","","" "KQXA","United States of America","US","California","US-CA","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "LYRX","United States of America","US","California","US-CA","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "N295","United States of America","US","California","US-CA","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "O6AU","United States of America","US","California","US-CA","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "PZR6","United States of America","US","California","US-CA","For-Profit Corporation Professional","English","en","For-Profit Corporation Professional","PC","","2020-06-10","ACTV","","","" "SQ7B","United States of America","US","California","US-CA","General Partnership","English","en","General Partnership","","","2020-06-10","ACTV","","","" "0GY3","United States of America","US","Colorado","US-CO","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "1JXS","United States of America","US","Colorado","US-CO","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "81WV","United States of America","US","Colorado","US-CO","Limited Cooperative Association","English","en","Limited Cooperative Association","L.C.A.;LCA","","2020-06-10","ACTV","","","" "BC32","United States of America","US","Colorado","US-CO","Limited Partnership Association","English","en","Limited Partnership Association","","","2020-06-10","ACTV","","","" "HLCG","United States of America","US","Colorado","US-CO","Limited Partnership","English","en","Limited Partnership","limited;company;l.p.;lp;ltd.;co.","","2020-06-10","ACTV","","","" "I3Z9","United States of America","US","Colorado","US-CO","For-Profit Public Benefit Corporation","English","en","For-Profit Public Benefit Corporation","Corporation;Company;Incorporated;Limited;Corp;Co;Inc;Ltd","","2020-06-10","ACTV","","","" "L10T","United States of America","US","Colorado","US-CO","Limited Liability Company","English","en","Limited Liability Company","limited liability company;ltd. liability company;limited liability co.;ltd. liability co.;limited;l.l.c.;llc;ltd.","","2020-06-10","ACTV","","","" "LDHG","United States of America","US","Colorado","US-CO","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "M64D","United States of America","US","Colorado","US-CO","Limited Liability Partnership","English","en","Limited Liability Partnership","Limited;Ltd.;L.L.P.;LLP;RLLP;R.L.L.P.","","2020-06-10","ACTV","","","" "OWR6","United States of America","US","Colorado","US-CO","For-Profit Corporation","English","en","For-Profit Corporation","Corporation;Incorporated;Company;Limited;Corp.;Inc.;Co.;Ltd.","","2020-06-10","ACTV","","","" "PDLV","United States of America","US","Colorado","US-CO","Non-Profit Corporation","English","en","Non-Profit Corporation","","","2020-06-10","ACTV","","","" "TOBE","United States of America","US","Colorado","US-CO","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "WE9D","United States of America","US","Colorado","US-CO","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","Limited;Company;L.P.;Lp;Co.;L.L.L.P.;Lllp;LTD.;R.L.L.L.P.;RLLLP","","2020-06-10","ACTV","","","" "ZCHO","United States of America","US","Colorado","US-CO","Cooperative Association","English","en","Cooperative Association","incorporated;company;limited;coop;ass’n;assn;assoc.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "7W53","United States of America","US","Connecticut","US-CT","Nonstock Corporation","English","en","Nonstock Corporation","","","2020-06-10","ACTV","","","" "JKOT","United States of America","US","Connecticut","US-CT","Stock Corporation","English","en","Stock Corporation","Inc.;Co.;Corp.","","2020-06-10","ACTV","","","" "L7HH","United States of America","US","Connecticut","US-CT","Religious Society or Religious Corporation","English","en","Religious Society or Religious Corporation","","","2020-06-10","ACTV","","","" "LIEA","United States of America","US","Connecticut","US-CT","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "LKQ2","United States of America","US","Connecticut","US-CT","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "SERH","United States of America","US","Connecticut","US-CT","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "SHCN","United States of America","US","Connecticut","US-CT","Statutory Trust","English","en","Statutory Trust","","","2020-06-10","ACTV","","","" "T5X4","United States of America","US","Connecticut","US-CT","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "T80N","United States of America","US","Connecticut","US-CT","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","" "WT0G","United States of America","US","Connecticut","US-CT","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "Y182","United States of America","US","Connecticut","US-CT","Limited Liability Company","English","en","Limited Liability Company","LLC;L.L.C;, Limited Liability Co.;Ltd. Liability Company;Ltd. Liability Co;P.L.L.C.;PLLC","","2020-06-10","ACTV","","","" "12N6","United States of America","US","Delaware","US-DE","Unincorporated Nonprofit Association","English","en","Unincorporated Nonprofit Association","","","2019-07-05","ACTV","","","" "1HXP","United States of America","US","Delaware","US-DE","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2019-07-05","ACTV","","","" "4FSX","United States of America","US","Delaware","US-DE","Statutory Trust","English","en","Statutory Trust","","","2019-07-05","ACTV","","","" "9ASJ","United States of America","US","Delaware","US-DE","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "HZEH","United States of America","US","Delaware","US-DE","Limited Liability Company","English","en","Limited Liability Company","","","2019-07-05","ACTV","","","" "JU79","United States of America","US","Delaware","US-DE","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "MIPY","United States of America","US","Delaware","US-DE","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "N7VF","United States of America","US","Delaware","US-DE","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "QF4W","United States of America","US","Delaware","US-DE","Partnership","English","en","Partnership","","","2019-07-05","ACTV","","","" "T91T","United States of America","US","Delaware","US-DE","Limited Partnership","English","en","Limited Partnership","","","2019-07-05","ACTV","","","" "TGMR","United States of America","US","Delaware","US-DE","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","","","2019-07-05","ACTV","","","" "XTIQ","United States of America","US","Delaware","US-DE","Corporation","English","en","Corporation","","","2019-07-05","ACTV","","","" "74LJ","United States of America","US","District of Columbia","US-DC","Limited Partnership (including Limited Liability Limited Partnership)","English","en","Limited Partnership (including Limited Liability Limited Partnership)","L.L.L.P.;LLLP;R.L.L.L.P.;RLLLP","","2017-11-30","ACTV","jurisdiction corrected","2021-09-23","use correct name of jurisdiction" "9AQ8","United States of America","US","District of Columbia","US-DC","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "CNQ3","United States of America","US","District of Columbia","US-DC","Business Corporation (including professional corporation)","English","en","Business Corporation (including professional corporation)","Corp.;Inc.;Co.;Ltd.;P.C.;Chtd","","2017-11-30","ACTV","jurisdiction corrected","2021-09-23","use correct name of jurisdiction" "IPGV","United States of America","US","District of Columbia","US-DC","Limited Cooperative Association","English","en","Limited Cooperative Association","L.C.A.;LCA;Co-op.;Coop.;Co-op;Coop;Assoc.;Assoc;Assn.;Assn","","2017-11-30","ACTV","jurisdiction corrected","2021-09-23","use correct name of jurisdiction" "NUQ2","United States of America","US","District of Columbia","US-DC","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "O35K","United States of America","US","District of Columbia","US-DC","General Cooperative Association","English","en","General Cooperative Association","Co-op;Coop;Assoc.;Assoc;Assn.;Assn","","2017-11-30","ACTV","jurisdiction corrected","2021-09-23","use correct name of jurisdiction" "SQOE","United States of America","US","District of Columbia","US-DC","Statutory Trust","English","en","Statutory Trust","","","2017-11-30","ACTV","jurisdiction corrected","2021-09-23","use correct name of jurisdiction" "TJ6V","United States of America","US","District of Columbia","US-DC","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;R.L.L.P.;LLP;RLLP","","2017-11-30","ACTV","jurisdiction corrected","2021-09-23","use correct name of jurisdiction" "VNIU","United States of America","US","District of Columbia","US-DC","Limited Liability Company (including professional LLC and series LLC)","English","en","Limited Liability Company (including professional LLC and series LLC)","L.L.C.;LLC;L.C.;LC;P.L.L.C.;PLLC","","2017-11-30","ACTV","jurisdiction corrected","2021-09-23","use correct name of jurisdiction" "ZJPG","United States of America","US","District of Columbia","US-DC","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2017-11-30","ACTV","jurisdiction corrected","2021-09-23","use correct name of jurisdiction" "3LXM","United States of America","US","Florida","US-FL","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "3N55","United States of America","US","Florida","US-FL","Non-Profit Corporation","English","en","Non-Profit Corporation","Corporation;Incorporated;Corp.;Inc.","","2020-06-10","ACTV","","","" "5DS0","United States of America","US","Florida","US-FL","Limited Partnership","English","en","Limited Partnership","Limited; L.P.; Ltd.","","2020-06-10","ACTV","","","" "72CA","United States of America","US","Florida","US-FL","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "8N21","United States of America","US","Florida","US-FL","Limited Liability Company","English","en","Limited Liability Company","LLC;L.L.C.; P.L.L.C.;PLLC","","2020-06-10","ACTV","","","" "D155","United States of America","US","Florida","US-FL","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","L.L.L.P.; LLLP","","2020-06-10","ACTV","","","" "E4LW","United States of America","US","Florida","US-FL","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "QSKT","United States of America","US","Florida","US-FL","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "TRI2","United States of America","US","Florida","US-FL","Profit Corporation","English","en","Profit Corporation","Corporation;Company;Incorporated;Corp.; Inc.; Co;Chartered;P.A.","","2020-06-10","ACTV","","","" "6IIM","United States of America","US","Georgia","US-GA","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "AD0H","United States of America","US","Georgia","US-GA","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "ALW3","United States of America","US","Georgia","US-GA","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "ASC7","United States of America","US","Georgia","US-GA","Professional Corporation","English","en","Professional Corporation","","","2020-06-10","ACTV","","","" "EY94","United States of America","US","Georgia","US-GA","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "F9OB","United States of America","US","Georgia","US-GA","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "GR2X","United States of America","US","Georgia","US-GA","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "H5G0","United States of America","US","Georgia","US-GA","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "MFYJ","United States of America","US","Georgia","US-GA","Profit Corporation","English","en","Profit Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "S7VR","United States of America","US","Georgia","US-GA","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "6MB6","United States of America","US","Hawaii","US-HI","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","L.L.L.P.;LLLP","","2019-07-05","ACTV","","","" "982Z","United States of America","US","Hawaii","US-HI","Service Mark","English","en","Service Mark","","","2019-07-05","INAC","deletion","2021-09-23","not a separate legal entity form" "9G8O","United States of America","US","Hawaii","US-HI","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "AQBO","United States of America","US","Hawaii","US-HI","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2019-07-05","ACTV","","","" "B38Q","United States of America","US","Hawaii","US-HI","General Partnership","English","en","General Partnership","","","2019-07-05","ACTV","","","" "DX2N","United States of America","US","Hawaii","US-HI","Nonprofit Corporation","English","en","Nonprofit Corporation","Corp.;Ltd.;Inc.","","2019-07-05","ACTV","text adjusted","2021-09-23","adjustment of name of legal form" "FTNW","United States of America","US","Hawaii","US-HI","Cooperative","English","en","Cooperative","Co-op","","2019-07-05","ACTV","","","" "IWRC","United States of America","US","Hawaii","US-HI","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "L2QV","United States of America","US","Hawaii","US-HI","Corporation","English","en","Corporation","Corp.;Ltd.;Inc.","","2019-07-05","ACTV","text adjusted","2021-09-23","adjustment of name of legal form" "L5BO","United States of America","US","Hawaii","US-HI","Trade Name","English","en","Trade Name","","","2019-07-05","INAC","deletion","2021-09-23","not a separate legal entity form" "M2KR","United States of America","US","Hawaii","US-HI","Limited Liablity Partnership","English","en","Limited Liablity Partnership","L.L.P.;LLP;R.L.L.P.;RLLP","","2019-07-05","ACTV","","","" "MJ9Z","United States of America","US","Hawaii","US-HI","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "QJ1G","United States of America","US","Hawaii","US-HI","Industrial Bank","English","en","Industrial Bank","","","2021-09-23","ACTV","","","" "S0BB","United States of America","US","Hawaii","US-HI","Professional Corporation","English","en","Professional Corporation","Corp.;Ltd.;Inc.","","2019-07-05","ACTV","","","" "SBF3","United States of America","US","Hawaii","US-HI","Sustainable Business Corporation","English","en","Sustainable Business Corporation","Corp.;Ltd.;Inc.","","2019-07-05","ACTV","","","" "TTTV","United States of America","US","Hawaii","US-HI","Corporation Sole","English","en","Corporation Sole","Corp.;Ltd.;Inc.","","2019-07-05","ACTV","","","" "VPBH","United States of America","US","Hawaii","US-HI","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC","","2019-07-05","ACTV","","","" "WMTY","United States of America","US","Hawaii","US-HI","Publicity Rights Name Registration","English","en","Publicity Rights Name Registration","","","2019-07-05","INAC","deletion","2021-09-23","not a separate legal entity form" "YOUG","United States of America","US","Hawaii","US-HI","Commercial Registered Agent","English","en","Commercial Registered Agent","C.R.A.","","2019-07-05","INAC","deletion","2021-09-23","not a separate legal entity form" "ZLIW","United States of America","US","Hawaii","US-HI","Trademark","English","en","Trademark","","","2019-07-05","INAC","deletion","2021-09-23","not a separate legal entity form" "530K","United States of America","US","Idaho","US-ID","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "AB76","United States of America","US","Idaho","US-ID","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "EVE6","United States of America","US","Idaho","US-ID","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "H1J5","United States of America","US","Idaho","US-ID","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "JXUC","United States of America","US","Idaho","US-ID","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "QLWR","United States of America","US","Idaho","US-ID","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;R.L.L.P.;LLP;RLLP","","2020-06-10","ACTV","","","" "RU6X","United States of America","US","Idaho","US-ID","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "U9HL","United States of America","US","Idaho","US-ID","General Business Corporation","English","en","General Business Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "UK9P","United States of America","US","Idaho","US-ID","General Partnership","English","en","General Partnership","","","2020-06-10","ACTV","","","" "1KU4","United States of America","US","Illinois","US-IL","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "1WZP","United States of America","US","Illinois","US-IL","Limited Partnership","English","en","Limited Partnership","L.P.;LP;LLLP","","2020-06-10","ACTV","","","" "22SC","United States of America","US","Illinois","US-IL","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "8RLE","United States of America","US","Illinois","US-IL","Limited Liability Company","English","en","Limited Liability Company","LLC;L.L.C","","2020-06-10","ACTV","","","" "AZUK","United States of America","US","Illinois","US-IL","Business Corporation","English","en","Business Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "COKS","United States of America","US","Illinois","US-IL","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "F5VL","United States of America","US","Illinois","US-IL","Professional Services Corporation","English","en","Professional Services Corporation","Ltd.;Prof. Corp.;P.C.;Chartered","","2020-06-10","ACTV","","","" "HSPI","United States of America","US","Illinois","US-IL","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "QY7A","United States of America","US","Illinois","US-IL","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "VUXH","United States of America","US","Illinois","US-IL","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","" "YTY3","United States of America","US","Illinois","US-IL","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "0SKB","United States of America","US","Indiana","US-IN","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "78PB","United States of America","US","Indiana","US-IN","Professional Corporation","English","en","Professional Corporation","Professional Corporation;Professional Service Corporation;PC;PSC","","2019-07-05","ACTV","","","" "8Z76","United States of America","US","Indiana","US-IN","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "95W7","United States of America","US","Indiana","US-IN","Financial Institution","English","en","Financial Institution","","","2019-07-05","ACTV","","","" "9FD9","United States of America","US","Indiana","US-IN","Master Limited Liability Company","English","en","Master Limited Liability Company","Limited Liabilty Company;LLC","","2019-07-05","ACTV","","","" "C639","United States of America","US","Indiana","US-IN","Industrial Bank","English","en","Industrial Bank","","","2021-09-23","ACTV","","","" "D92T","United States of America","US","Indiana","US-IN","Limited Liability Partnership","English","en","Limited Liability Partnership","Limited Liability Partnership;LLP","","2019-07-05","ACTV","","","" "DQBZ","United States of America","US","Indiana","US-IN","Limited Liability Company","English","en","Limited Liability Company","Limited Liability Company;LLC","","2019-07-05","ACTV","","","" "EW9A","United States of America","US","Indiana","US-IN","Business Trust","English","en","Business Trust","","","2019-07-05","ACTV","","","" "EZ08","United States of America","US","Indiana","US-IN","Agricultural Cooperative","English","en","Agricultural Cooperative","Corporation;Incorporated;Company;Limited;Corp;Inc.;Co.;Ltd.","","2019-07-05","ACTV","","","" "G4YY","United States of America","US","Indiana","US-IN","Limited Partnership","English","en","Limited Partnership","Limited Partnership;LP","","2019-07-05","ACTV","","","" "M1FY","United States of America","US","Indiana","US-IN","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "N0YQ","United States of America","US","Indiana","US-IN","Insurance Corporation","English","en","Insurance Corporation","","","2019-07-05","ACTV","","","" "P91Q","United States of America","US","Indiana","US-IN","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "QR5I","United States of America","US","Indiana","US-IN","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "R0BI","United States of America","US","Indiana","US-IN","For-Profit Corporation","English","en","For-Profit Corporation","Corporation;Incorporated;Company;Limited;Corp;Inc.;Co.;Ltd.","","2019-07-05","ACTV","","","" "V5G5","United States of America","US","Indiana","US-IN","Professional Benefit Corporation","English","en","Professional Benefit Corporation","Professional Corporation;Professional Service Corporation;PC;PSC","","2019-07-05","ACTV","","","" "V89I","United States of America","US","Indiana","US-IN","Nonprofit Corporation","English","en","Nonprofit Corporation","Corporation;Incorporated;Company;Limited;Corp;Inc.;Co.;Ltd.","","2019-07-05","ACTV","","","" "VCQZ","United States of America","US","Indiana","US-IN","Series","English","en","Series","Limited Liabilty Company;LLC","","2019-07-05","ACTV","","","" "X4EB","United States of America","US","Indiana","US-IN","Benefit Corporation","English","en","Benefit Corporation","Corporation;Incorporated;Company;Limited;Corp;Inc. Co.;Ltd.","","2019-07-05","ACTV","","","" "32AX","United States of America","US","Iowa","US-IA","Cooperative Association","English","en","Cooperative Association","","","2020-06-10","ACTV","","","" "7XPF","United States of America","US","Iowa","US-IA","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "8VLM","United States of America","US","Iowa","US-IA","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "DU35","United States of America","US","Iowa","US-IA","Profit Corporation","English","en","Profit Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "GDH0","United States of America","US","Iowa","US-IA","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "HPKC","United States of America","US","Iowa","US-IA","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "HUSW","United States of America","US","Iowa","US-IA","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "L22N","United States of America","US","Iowa","US-IA","Professional Corporation","English","en","Professional Corporation","","","2020-06-10","ACTV","","","" "T7D4","United States of America","US","Iowa","US-IA","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "UGKR","United States of America","US","Iowa","US-IA","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "VVPD","United States of America","US","Iowa","US-IA","Professional Limited Liability Company","English","en","Professional Limited Liability Company","","","2020-06-10","ACTV","","","" "VWY9","United States of America","US","Iowa","US-IA","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "0WOU","United States of America","US","Kansas","US-KS","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "35QN","United States of America","US","Kansas","US-KS","Public Benefit Corporation","English","en","Public Benefit Corporation","P.B.C.;PBC","","2021-09-23","ACTV","","","" "7U8S","United States of America","US","Kansas","US-KS","General Partnership","English","en","General Partnership","","","2021-09-23","ACTV","","","" "AREY","United States of America","US","Kansas","US-KS","Sole Proprietorship","English","en","Sole Proprietorship","","","2021-09-23","ACTV","","","" "CANT","United States of America","US","Kansas","US-KS","Professional Association","English","en","Professional Association","P.A.;PA","","2021-09-23","ACTV","","","" "F9I4","United States of America","US","Kansas","US-KS","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "FBN0","United States of America","US","Kansas","US-KS","Limited Liability Company","English","en","Limited Liability Company","L.C.;L.L.C.;LC;LLC.","","2021-09-23","ACTV","","","" "FEC4","United States of America","US","Kansas","US-KS","Not-For-Profit Corporation","English","en","Not-For-Profit Corporation","","","2021-09-23","ACTV","","","" "FGT5","United States of America","US","Kansas","US-KS","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP","","2021-09-23","ACTV","","","" "GCU5","United States of America","US","Kansas","US-KS","Corporation","English","en","Corporation","Co.;corp.;inc.;ltd.","","2021-09-23","ACTV","","","" "JIF7","United States of America","US","Kansas","US-KS","Statutory Public Benefit Limited Liability Company","English","en","Statutory Public Benefit Limited Liability Company","S.P.B.L.L.C.;SPBLLC","","2021-09-23","ACTV","","","" "VBVM","United States of America","US","Kansas","US-KS","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "WC8Q","United States of America","US","Kansas","US-KS","Business Trust","English","en","Business Trust","","","2021-09-23","ACTV","","","" "X4TB","United States of America","US","Kansas","US-KS","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "XQEC","United States of America","US","Kansas","US-KS","Limited Partnership","English","en","Limited Partnership","LP","","2021-09-23","ACTV","","","" "3MMY","United States of America","US","Kentucky","US-KY","Limited Liability Limited Partership","English","en","Limited Liability Limited Partership","LLLP;LIMITED LIABILITY LIMITED PARTNERSHIP","","2019-07-05","ACTV","","","" "5RRE","United States of America","US","Kentucky","US-KY","Corporation (professional)","English","en","Corporation (professional)","PSC;PROFESSIONAL SERVICE CORPORATION","","2019-07-05","ACTV","","","" "6GEC","United States of America","US","Kentucky","US-KY","Limited Liability Company (professional)","English","en","Limited Liability Company (professional)","PLLC;PROFESSONAL LIMITED LIABILITY COMPANY","","2019-07-05","ACTV","","","" "85YQ","United States of America","US","Kentucky","US-KY","Statutory Trust","English","en","Statutory Trust","limited;LTD","","2019-07-05","ACTV","","","" "A9VQ","United States of America","US","Kentucky","US-KY","Limited Cooperative Assocation","English","en","Limited Cooperative Assocation","LCA;LIMITED COOPERATIVE ASSOCIATION;LIMITED COOPERATIVE;LTD CO-OP","","2019-07-05","ACTV","","","" "DAVB","United States of America","US","Kentucky","US-KY","Corporation (non-profit)","English","en","Corporation (non-profit)","CORPORATION;COMPANY;LIMITED;CORP;INC;CO;LTD","","2019-07-05","ACTV","typo corrected","2023-09-28","typo in transliterated name corrected" "EBP8","United States of America","US","Kentucky","US-KY","General Partnership","English","en","General Partnership","","","2019-07-05","ACTV","","","" "F2QV","United States of America","US","Kentucky","US-KY","Limited Liability Company (profit)","English","en","Limited Liability Company (profit)","LLC;LIMITED LIABILITY COMPANY;LTD. CO","","2019-07-05","ACTV","","","" "HH12","United States of America","US","Kentucky","US-KY","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "LU9O","United States of America","US","Kentucky","US-KY","Unincorporated Non-Profit Assocation","English","en","Unincorporated Non-Profit Assocation","Limited;Ltd.","","2019-07-05","ACTV","typo corrected","2023-09-28","typo in name corrected" "MBKN","United States of America","US","Kentucky","US-KY","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "MY61","United States of America","US","Kentucky","US-KY","Limited Liability Company (non-profit)","English","en","Limited Liability Company (non-profit)","LLC;LIMITED LIABILITY COMPANY;LTD. CO","","2019-07-05","ACTV","","","" "NJ57","United States of America","US","Kentucky","US-KY","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "O5PH","United States of America","US","Kentucky","US-KY","Public Benefit Corporation (profit)","English","en","Public Benefit Corporation (profit)","PBC;Benefit Corporation;Public Benefit Corporation","","2019-07-05","ACTV","","","" "OFGO","United States of America","US","Kentucky","US-KY","Business Trust","English","en","Business Trust","limited;LTD","","2019-07-05","ACTV","","","" "QWPR","United States of America","US","Kentucky","US-KY","Corporation (profit)","English","en","Corporation (profit)","CORPORATION;COMPANY;LIMITED CORP;INC;CO;LTD","","2019-07-05","ACTV","","","" "SJQO","United States of America","US","Kentucky","US-KY","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "T362","United States of America","US","Kentucky","US-KY","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP;LIMITED LIABILITY PARTNERSHIP","","2019-07-05","ACTV","typo corrected","2023-09-28","typo in name corrected" "VE28","United States of America","US","Kentucky","US-KY","Limited Partnership","English","en","Limited Partnership","LP;LIMTED PARTNERSHIP;LTD","","2019-07-05","ACTV","","","" "1V0I","United States of America","US","Louisiana","US-LA","Domestic Benefit Corporation","English","en","Domestic Benefit Corporation","A Benefit Corporation","","2019-07-05","ACTV","","","" "6DVA","United States of America","US","Louisiana","US-LA","Foreign Non-Profit Limited Liability Company","English","en","Foreign Non-Profit Limited Liability Company","limited liability company;L.L.C.;L.C.","","2019-07-05","ACTV","","","" "6EDK","United States of America","US","Louisiana","US-LA","Domestic Non-Profit Corporation","English","en","Domestic Non-Profit Corporation","","","2019-07-05","ACTV","","","" "6R7O","United States of America","US","Louisiana","US-LA","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "6UYJ","United States of America","US","Louisiana","US-LA","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "8PUO","United States of America","US","Louisiana","US-LA","Foreign Partnership","English","en","Foreign Partnership","","","2019-07-05","ACTV","","","" "9L6B","United States of America","US","Louisiana","US-LA","Foreign Limited Liability Company","English","en","Foreign Limited Liability Company","limited liability company;L.L.C.;L.C.","","2019-07-05","ACTV","","","" "C1F4","United States of America","US","Louisiana","US-LA","Domestic Public Benefit Corporation","English","en","Domestic Public Benefit Corporation","","","2019-07-05","ACTV","","","" "CD9O","United States of America","US","Louisiana","US-LA","Domestic Limited Liability Company","English","en","Domestic Limited Liability Company","limited liability company;L.L.C.;L.C.","","2019-07-05","ACTV","","","" "EO9A","United States of America","US","Louisiana","US-LA","Foreign Real Estate Investment Trust","English","en","Foreign Real Estate Investment Trust","","","2019-07-05","ACTV","","","" "HQYG","United States of America","US","Louisiana","US-LA","Foreign Corporation","English","en","Foreign Corporation","corp.;corporation;co.;company;ltd.;limited;inc.;incorporated","","2019-07-05","ACTV","","","" "LTKC","United States of America","US","Louisiana","US-LA","Home Service Contract Provider","English","en","Home Service Contract Provider","inc.;incorporated;co.;company;corp.;corporation;ltd.;limited;limited liability company;L.L.C.;L.C.","","2019-07-05","ACTV","","","" "MQU4","United States of America","US","Louisiana","US-LA","Domestic Unincorporated Association","English","en","Domestic Unincorporated Association","","","2019-07-05","ACTV","","","" "N71W","United States of America","US","Louisiana","US-LA","Cable & Video Franchise","English","en","Cable & Video Franchise","","","2019-07-05","ACTV","","","" "NI44","United States of America","US","Louisiana","US-LA","Domestic Corporation","English","en","Domestic Corporation","corp.;corporation;co.;company;ltd.;limited;inc.;incorporated","","2019-07-05","ACTV","","","" "NV9X","United States of America","US","Louisiana","US-LA","Domestic Real Estate Investment Trust","English","en","Domestic Real Estate Investment Trust","","","2019-07-05","ACTV","","","" "O6QP","United States of America","US","Louisiana","US-LA","Domestic Partnership","English","en","Domestic Partnership","","","2019-07-05","ACTV","","","" "ONJ1","United States of America","US","Louisiana","US-LA","Domestic Low-Profit Limited Liability Company","English","en","Domestic Low-Profit Limited Liability Company","low-profit limited liability company;L3C","","2019-07-05","ACTV","","","" "Q8RV","United States of America","US","Louisiana","US-LA","Foreign Benefit Corporation","English","en","Foreign Benefit Corporation","A Benefit Corporation","","2019-07-05","ACTV","","","" "SJKV","United States of America","US","Louisiana","US-LA","Foreign Non-Profit Corporation","English","en","Foreign Non-Profit Corporation","","","2019-07-05","ACTV","","","" "TDBW","United States of America","US","Louisiana","US-LA","Domestic Registered Limited Liability Partnership","English","en","Domestic Registered Limited Liability Partnership","registered limited liability partnership;L.L.P.","","2019-07-05","ACTV","","","" "TZDZ","United States of America","US","Louisiana","US-LA","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "WP6R","United States of America","US","Louisiana","US-LA","Co-op","English","en","Co-op","corp.;corporation;co.;company;ltd.;limited;inc.;incorporated","","2019-07-05","ACTV","","","" "XFUO","United States of America","US","Louisiana","US-LA","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "Z016","United States of America","US","Louisiana","US-LA","Collection Agency","English","en","Collection Agency","","","2019-07-05","ACTV","","","" "ZQZW","United States of America","US","Louisiana","US-LA","Foreign Public Benefit","English","en","Foreign Public Benefit","","","2019-07-05","ACTV","","","" "2XXG","United States of America","US","Maine","US-ME","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2019-07-05","ACTV","","","" "53DC","United States of America","US","Maine","US-ME","Limited Liability Company","English","en","Limited Liability Company","","","2019-07-05","ACTV","","","" "5KRB","United States of America","US","Maine","US-ME","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "AT9F","United States of America","US","Maine","US-ME","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "H99T","United States of America","US","Maine","US-ME","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "IIZ4","United States of America","US","Maine","US-ME","Limited Partnership","English","en","Limited Partnership","","","2019-07-05","ACTV","","","" "JR3Z","United States of America","US","Maine","US-ME","Cooperative","English","en","Cooperative","","","2019-07-05","ACTV","","","" "M9A1","United States of America","US","Maine","US-ME","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2019-07-05","ACTV","","","" "P1VP","United States of America","US","Maine","US-ME","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "TTB3","United States of America","US","Maine","US-ME","Business Corporation","English","en","Business Corporation","","","2019-07-05","ACTV","","","" "AZH4","United States of America","US","Maryland","US-MD","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "BSLM","United States of America","US","Maryland","US-MD","Limited Partnership","English","en","Limited Partnership","LP","","2021-09-23","ACTV","","","" "EW8U","United States of America","US","Maryland","US-MD","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "GMFE","United States of America","US","Maryland","US-MD","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "HLR4","United States of America","US","Maryland","US-MD","Stock Corporation","English","en","Stock Corporation","Inc.;Corp.;Ltd.","","2021-09-23","ACTV","","","" "J5NM","United States of America","US","Maryland","US-MD","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "JJ9M","United States of America","US","Maryland","US-MD","Limited Liability Company","English","en","Limited Liability Company","L.L.C., LLC , L.C., L C","","2021-09-23","ACTV","","","" "LKD5","United States of America","US","Maryland","US-MD","Close Corporation","English","en","Close Corporation","Inc.;Corp.;Ltd.","","2021-09-23","ACTV","","","" "OCVJ","United States of America","US","Maryland","US-MD","Religious Corporation","English","en","Religious Corporation","","","2021-09-23","ACTV","","","" "R2PI","United States of America","US","Maryland","US-MD","General Partnership","English","en","General Partnership","","","2021-09-23","ACTV","","","" "XHT1","United States of America","US","Maryland","US-MD","Sole Proprietorship","English","en","Sole Proprietorship","","","2021-09-23","ACTV","","","" "ZVS9","United States of America","US","Maryland","US-MD","Nonstock Corporation","English","en","Nonstock Corporation","","","2021-09-23","ACTV","","","" "1XME","United States of America","US","Massachusetts","US-MA","Housing Cooperative Corporation","English","en","Housing Cooperative Corporation","Company;Corporation;Corp.;Incorporated;Inc.","","2019-07-05","ACTV","","","" "22EO","United States of America","US","Massachusetts","US-MA","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "672E","United States of America","US","Massachusetts","US-MA","Cooperative Corporation","English","en","Cooperative Corporation","Company;Corporation;Corp.;Incorporated;Inc.","","2019-07-05","ACTV","","","" "6I75","United States of America","US","Massachusetts","US-MA","Professional Corporation","English","en","Professional Corporation","company;co.;corporation;corp.;incorporated;or inc.;limited or ltd.;professional corporation or p.c.","","2019-07-05","ACTV","","","" "7G8G","United States of America","US","Massachusetts","US-MA","Cooperative Bank","English","en","Cooperative Bank","","","2021-09-23","ACTV","","","" "BE3O","United States of America","US","Massachusetts","US-MA","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "BYFU","United States of America","US","Massachusetts","US-MA","Limited Liability Company","English","en","Limited Liability Company","Limited Liability Company;LLC;L.L.C;Limited Company;LC;L.C.","","2019-07-05","ACTV","","","" "CAGH","United States of America","US","Massachusetts","US-MA","Limited Liability Partnership","English","en","Limited Liability Partnership","Registered Limited Liability Partnership;Limited Liability Partnership;L.L.P.;LLP","","2019-07-05","ACTV","","","" "G76T","United States of America","US","Massachusetts","US-MA","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "GOGQ","United States of America","US","Massachusetts","US-MA","Limited Partnership","English","en","Limited Partnership","Limited Partnership","","2019-07-05","ACTV","","","" "KU3O","United States of America","US","Massachusetts","US-MA","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "NETO","United States of America","US","Massachusetts","US-MA","Employee Cooperative Corporation","English","en","Employee Cooperative Corporation","Company;Corporation;Corp.;Incorporated;Inc.","","2019-07-05","ACTV","","","" "QX9N","United States of America","US","Massachusetts","US-MA","Domestic Benefit Corporation (including professional corporations)","English","en","Domestic Benefit Corporation (including professional corporations)","Company;Co.;Corporation;Corp.;Incorporated;Inc. Limited;or Ltd. Professional Corporation or P.C. for those rendering professional services.","","2019-07-05","ACTV","","","" "R7QO","United States of America","US","Massachusetts","US-MA","Non-Profit Corporation","English","en","Non-Profit Corporation","Company;Corporation;Corp.;Incorporated;Inc.","","2019-07-05","ACTV","","","" "YP04","United States of America","US","Massachusetts","US-MA","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "Z73Z","United States of America","US","Massachusetts","US-MA","Voluntary Association and Business Trusts","English","en","Voluntary Association and Business Trusts","","","2019-07-05","ACTV","","","" "ZJTK","United States of America","US","Massachusetts","US-MA","Domestic Business Corporation","English","en","Domestic Business Corporation","Company;Co.;Corporation;Corp.;Incorporated;Inc. Limited;Ltd.","","2019-07-05","ACTV","","","" "47LQ","United States of America","US","Michigan","US-MI","Corporation (Nonprofit)","English","en","Corporation (Nonprofit)","","","2019-07-05","ACTV","","","" "58N0","United States of America","US","Michigan","US-MI","Limited Partnership","English","en","Limited Partnership","Limited Partnership","","2019-07-05","ACTV","","","" "6E4G","United States of America","US","Michigan","US-MI","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;LLP;Limited Liability Partnership","","2019-07-05","ACTV","","","" "6RZK","United States of America","US","Michigan","US-MI","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "88XU","United States of America","US","Michigan","US-MI","Sole proprietorship","English","en","Sole proprietorship","","","2019-07-05","ACTV","","","" "HQJV","United States of America","US","Michigan","US-MI","Professional Corporation","English","en","Professional Corporation","P.C.;PC;Professional Corporation","","2019-07-05","ACTV","","","" "IN4H","United States of America","US","Michigan","US-MI","Professional Limited Liability Company","English","en","Professional Limited Liability Company","P.L.L.C.;PLLC;Professional Limited Liability Company","","2019-07-05","ACTV","","","" "LJH5","United States of America","US","Michigan","US-MI","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC;Limited Liability Company","","2019-07-05","ACTV","","","" "MI0H","United States of America","US","Michigan","US-MI","for profit and not-for profit co-operatives","English","en","for profit and not-for profit co-operatives","Cooperative;coop.;co-operative;or co-op","","2019-07-05","ACTV","","","" "NK3V","United States of America","US","Michigan","US-MI","General Partnership","English","en","General Partnership","","","2019-07-05","ACTV","","","" "NR96","United States of America","US","Michigan","US-MI","L3C","English","en","L3C","L.3.C.;L3C;Low-Profit Limited Liability Company","","2019-07-05","ACTV","","","" "TPO4","United States of America","US","Michigan","US-MI","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "U7HC","United States of America","US","Michigan","US-MI","Corporation (For-Profit)","English","en","Corporation (For-Profit)","Corp.;Corp;Co.;Co;Inc.;Inc;Ltd.;Ltd;Corporation;Company;Incorporated;Limited","","2019-07-05","ACTV","","","" "UJZB","United States of America","US","Michigan","US-MI","Ecclesiastical Corporation","English","en","Ecclesiastical Corporation","","","2019-07-05","ACTV","","","" "XTOF","United States of America","US","Michigan","US-MI","Railroad","English","en","Railroad","","","2019-07-05","ACTV","","","" "Y8GA","United States of America","US","Michigan","US-MI","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "1ASH","United States of America","US","Minnesota","US-MN","Religious corporations","English","en","Religious corporations","","","2017-11-30","ACTV","","","" "1ONH","United States of America","US","Minnesota","US-MN","Public Benefit Corporations","English","en","Public Benefit Corporations","","","2017-11-30","ACTV","","","" "37F5","United States of America","US","Minnesota","US-MN","Professional Firms","English","en","Professional Firms","","","2017-11-30","ACTV","","","" "43LY","United States of America","US","Minnesota","US-MN","Limited Partnership","English","en","Limited Partnership","","","2017-11-30","ACTV","","","" "4P36","United States of America","US","Minnesota","US-MN","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "6VCW","United States of America","US","Minnesota","US-MN","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "6ZAR","United States of America","US","Minnesota","US-MN","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2017-11-30","ACTV","","","" "8OK2","United States of America","US","Minnesota","US-MN","Business Trusts","English","en","Business Trusts","","","2017-11-30","ACTV","","","" "9HKD","United States of America","US","Minnesota","US-MN","Financial Corporations","English","en","Financial Corporations","","","2017-11-30","ACTV","","","" "9I4Y","United States of America","US","Minnesota","US-MN","Non-Profit Corporation","English","en","Non-Profit Corporation","","","2017-11-30","ACTV","","","" "BQRL","United States of America","US","Minnesota","US-MN","Limited Liability Company","English","en","Limited Liability Company","","","2017-11-30","ACTV","","","" "DEMP","United States of America","US","Minnesota","US-MN","General Partnership","English","en","General Partnership","","","2017-11-30","ACTV","","","" "IYZI","United States of America","US","Minnesota","US-MN","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "LDBS","United States of America","US","Minnesota","US-MN","Cooperative (Producer)","English","en","Cooperative (Producer)","","","2017-11-30","ACTV","","","" "OXAZ","United States of America","US","Minnesota","US-MN","Insurance Corporations","English","en","Insurance Corporations","","","2017-11-30","ACTV","","","" "S2K8","United States of America","US","Minnesota","US-MN","Business Corporation","English","en","Business Corporation","","","2017-11-30","ACTV","","","" "S968","United States of America","US","Minnesota","US-MN","Industrial Bank","English","en","Industrial Bank","","","2021-09-23","ACTV","","","" "SGT8","United States of America","US","Minnesota","US-MN","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "T4OL","United States of America","US","Minnesota","US-MN","Cemetery associations","English","en","Cemetery associations","","","2017-11-30","ACTV","","","" "TBN1","United States of America","US","Minnesota","US-MN","Non-Profit Limited Liability Company","English","en","Non-Profit Limited Liability Company","","","2017-11-30","ACTV","","","" "TS1K","United States of America","US","Minnesota","US-MN","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "UJ49","United States of America","US","Minnesota","US-MN","Cooperative (Investor)","English","en","Cooperative (Investor)","","","2017-11-30","ACTV","","","" "VSDJ","United States of America","US","Minnesota","US-MN","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "7WQO","United States of America","US","Mississippi","US-MS","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "8YBQ","United States of America","US","Mississippi","US-MS","General Partnership","English","en","General Partnership","","","2020-06-10","ACTV","","","" "AHK4","United States of America","US","Mississippi","US-MS","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "BG8P","United States of America","US","Mississippi","US-MS","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "HDOD","United States of America","US","Mississippi","US-MS","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "NDBR","United States of America","US","Mississippi","US-MS","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "O4NK","United States of America","US","Mississippi","US-MS","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "U7GR","United States of America","US","Mississippi","US-MS","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;R.L.L.P.;LLP;RLLP","","2020-06-10","ACTV","","","" "WPCN","United States of America","US","Mississippi","US-MS","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC","","2020-06-10","ACTV","","","" "XST3","United States of America","US","Mississippi","US-MS","Business Corporation","English","en","Business Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "1ADA","United States of America","US","Missouri","US-MO","Family Trust Company","English","en","Family Trust Company","","","2020-06-10","ACTV","","","" "21OE","United States of America","US","Missouri","US-MO","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;LLP","","2020-06-10","ACTV","","","" "7F5B","United States of America","US","Missouri","US-MO","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "9BH2","United States of America","US","Missouri","US-MO","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "EMLK","United States of America","US","Missouri","US-MO","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "J1JO","United States of America","US","Missouri","US-MO","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "KC7Z","United States of America","US","Missouri","US-MO","For-Profit Corporation","English","en","For-Profit Corporation","","","2020-06-10","ACTV","","","" "QSHG","United States of America","US","Missouri","US-MO","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "R8SH","United States of America","US","Missouri","US-MO","Not For Profit Corporation","English","en","Not For Profit Corporation","","","2020-06-10","ACTV","","","" "SU5T","United States of America","US","Missouri","US-MO","Cooperative Association","English","en","Cooperative Association","Co-op;C.A.","","2020-06-10","ACTV","","","" "U7OR","United States of America","US","Missouri","US-MO","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "UJKE","United States of America","US","Missouri","US-MO","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "1S9L","United States of America","US","Montana","US-MT","Professional Series Limited Liability Company","English","en","Professional Series Limited Liability Company","","","2020-06-10","ACTV","","","" "1XOG","United States of America","US","Montana","US-MT","Agricultural Marketing Association","English","en","Agricultural Marketing Association","","","2019-07-05","ACTV","","","" "30PQ","United States of America","US","Montana","US-MT","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","","","2020-06-10","ACTV","","","" "30TX","United States of America","US","Montana","US-MT","Trust Company","English","en","Trust Company","","","2020-06-10","ACTV","","","" "40SO","United States of America","US","Montana","US-MT","Mutual Benefit Corporation","English","en","Mutual Benefit Corporation","","","2020-06-10","ACTV","","","" "5AE9","United States of America","US","Montana","US-MT","Builidng and Loan Association","English","en","Builidng and Loan Association","","","2020-06-10","ACTV","","","" "5MRP","United States of America","US","Montana","US-MT","Close Corporation","English","en","Close Corporation","","","2020-06-10","ACTV","","","" "7OS8","United States of America","US","Montana","US-MT","Congressional Chartered Corporation","English","en","Congressional Chartered Corporation","","","2020-06-10","ACTV","","","" "93CA","United States of America","US","Montana","US-MT","Agricultural Association","English","en","Agricultural Association","","","2019-07-05","ACTV","","","" "9OSW","United States of America","US","Montana","US-MT","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2019-07-05","ACTV","","","" "9STD","United States of America","US","Montana","US-MT","Corporation","English","en","Corporation","","","2019-07-05","ACTV","","","" "A770","United States of America","US","Montana","US-MT","Professional Corporation","English","en","Professional Corporation","","","2020-06-10","ACTV","","","" "AEK0","United States of America","US","Montana","US-MT","Limited Liability Company","English","en","Limited Liability Company","","","2019-07-05","ACTV","","","" "B2F4","United States of America","US","Montana","US-MT","Cooperative Association","English","en","Cooperative Association","","","2019-07-05","ACTV","","","" "HEMZ","United States of America","US","Montana","US-MT","Credit Union","English","en","Credit Union","","","2020-06-10","ACTV","","","" "JGPP","United States of America","US","Montana","US-MT","Rural Cooperative Association","English","en","Rural Cooperative Association","","","2019-07-05","ACTV","","","" "KPH8","United States of America","US","Montana","US-MT","Investment Company","English","en","Investment Company","","","2020-06-10","ACTV","","","" "L1PM","United States of America","US","Montana","US-MT","Professional Limited Liability Limited Partnership","English","en","Professional Limited Liability Limited Partnership","","","2020-06-10","ACTV","","","" "LPLY","United States of America","US","Montana","US-MT","Limited Partnership","English","en","Limited Partnership","","","2019-07-05","ACTV","","","" "LXI4","United States of America","US","Montana","US-MT","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "MY93","United States of America","US","Montana","US-MT","Professional Limited Liability Company","English","en","Professional Limited Liability Company","","","2020-06-10","ACTV","","","" "OOX5","United States of America","US","Montana","US-MT","Benefit Corporation","English","en","Benefit Corporation","","","2020-06-10","ACTV","","","" "PNF3","United States of America","US","Montana","US-MT","Corporate Credit Union","English","en","Corporate Credit Union","","","2020-06-10","ACTV","","","" "Q6K2","United States of America","US","Montana","US-MT","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "QB0A","United States of America","US","Montana","US-MT","Business Trust","English","en","Business Trust","","","2020-06-10","ACTV","","","" "SCX8","United States of America","US","Montana","US-MT","Public Benefit Corporation","English","en","Public Benefit Corporation","","","2020-06-10","ACTV","","","" "SW88","United States of America","US","Montana","US-MT","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "T91C","United States of America","US","Montana","US-MT","Professional Close Corporation","English","en","Professional Close Corporation","","","2020-06-10","ACTV","","","" "WRF9","United States of America","US","Montana","US-MT","Religious Corporation","English","en","Religious Corporation","","","2020-06-10","ACTV","","","" "XVC6","United States of America","US","Montana","US-MT","Series Limited Liability Company","English","en","Series Limited Liability Company","","","2019-07-05","ACTV","","","" "3GTV","United States of America","US","Nebraska","US-NE","Sanitary & Improvement District","English","en","Sanitary & Improvement District","","","2019-07-05","ACTV","","","" "4TMV","United States of America","US","Nebraska","US-NE","Domestic Limited Cooperative Association","English","en","Domestic Limited Cooperative Association","","","2019-07-05","ACTV","","","" "4WTP","United States of America","US","Nebraska","US-NE","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "5OET","United States of America","US","Nebraska","US-NE","Foreign Limited Liability Company","English","en","Foreign Limited Liability Company","","","2019-07-05","ACTV","","","" "639V","United States of America","US","Nebraska","US-NE","Non Profit Domesticated Foreign Corporation","English","en","Non Profit Domesticated Foreign Corporation","","","2019-07-05","ACTV","","","" "6ICB","United States of America","US","Nebraska","US-NE","Foreign Corp Professional Corporation","English","en","Foreign Corp Professional Corporation","","","2019-07-05","ACTV","","","" "7BQ5","United States of America","US","Nebraska","US-NE","Non Stock Corporation","English","en","Non Stock Corporation","","","2019-07-05","ACTV","","","" "8APW","United States of America","US","Nebraska","US-NE","Domestic Limited Liability Company","English","en","Domestic Limited Liability Company","","","2019-07-05","ACTV","","","" "8HNT","United States of America","US","Nebraska","US-NE","Foreign Corporation","English","en","Foreign Corporation","","","2019-07-05","ACTV","","","" "B843","United States of America","US","Nebraska","US-NE","Domestic Professional Limited Liability Company","English","en","Domestic Professional Limited Liability Company","","","2019-07-05","ACTV","","","" "BJ2V","United States of America","US","Nebraska","US-NE","Foreign Professional Limited Liability Company","English","en","Foreign Professional Limited Liability Company","","","2019-07-05","ACTV","","","" "CXIO","United States of America","US","Nebraska","US-NE","Domesticated Foreign Corporation Professional Corporation","English","en","Domesticated Foreign Corporation Professional Corporation","","","2019-07-05","ACTV","","","" "D2MO","United States of America","US","Nebraska","US-NE","Joint Public Agency","English","en","Joint Public Agency","","","2019-07-05","ACTV","","","" "DFPP","United States of America","US","Nebraska","US-NE","Domestic Limited Partnership","English","en","Domestic Limited Partnership","","","2019-07-05","ACTV","","","" "ECLT","United States of America","US","Nebraska","US-NE","Domestic Corporation Professional Corporation","English","en","Domestic Corporation Professional Corporation","","","2019-07-05","ACTV","","","" "GEXT","United States of America","US","Nebraska","US-NE","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "HV3B","United States of America","US","Nebraska","US-NE","Non Taxable Corporation","English","en","Non Taxable Corporation","","","2019-07-05","ACTV","","","" "IOWN","United States of America","US","Nebraska","US-NE","Non Profit Foreign Limited Cooperative Association","English","en","Non Profit Foreign Limited Cooperative Association","","","2019-07-05","ACTV","","","" "KFPS","United States of America","US","Nebraska","US-NE","Domestic General Partnership","English","en","Domestic General Partnership","","","2019-07-05","ACTV","","","" "LQZC","United States of America","US","Nebraska","US-NE","Nebraska Benefit Corporation","English","en","Nebraska Benefit Corporation","","","2019-07-05","ACTV","","","" "MPFG","United States of America","US","Nebraska","US-NE","Foreign Limited Liability Partnership","English","en","Foreign Limited Liability Partnership","","","2019-07-05","ACTV","","","" "NGZJ","United States of America","US","Nebraska","US-NE","Domesticated Foreign Corporation","English","en","Domesticated Foreign Corporation","","","2019-07-05","ACTV","","","" "O256","United States of America","US","Nebraska","US-NE","Non Profit Foreign Corporation","English","en","Non Profit Foreign Corporation","","","2019-07-05","ACTV","","","" "Q17J","United States of America","US","Nebraska","US-NE","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "R22H","United States of America","US","Nebraska","US-NE","Registered Agent Designation","English","en","Registered Agent Designation","","","2019-07-05","ACTV","","","" "R3J6","United States of America","US","Nebraska","US-NE","Foreign General Apartnership","English","en","Foreign General Apartnership","","","2019-07-05","ACTV","","","" "R7JP","United States of America","US","Nebraska","US-NE","Non Profit (Dom) Corporation","English","en","Non Profit (Dom) Corporation","","","2019-07-05","ACTV","","","" "RH6N","United States of America","US","Nebraska","US-NE","Domestic Corporation","English","en","Domestic Corporation","","","2019-07-05","ACTV","","","" "T172","United States of America","US","Nebraska","US-NE","Insurance Company","English","en","Insurance Company","","","2019-07-05","ACTV","","","" "V4RX","United States of America","US","Nebraska","US-NE","Non Profit Dom Limited Cooperative Association","English","en","Non Profit Dom Limited Cooperative Association","","","2019-07-05","ACTV","","","" "VYEO","United States of America","US","Nebraska","US-NE","Fraternal Society","English","en","Fraternal Society","","","2019-07-05","ACTV","","","" "XBKP","United States of America","US","Nebraska","US-NE","Agricultural Association","English","en","Agricultural Association","","","2019-07-05","ACTV","","","" "XUVE","United States of America","US","Nebraska","US-NE","Bank","English","en","Bank","","","2019-07-05","INAC","deletion","2023-09-28","not a separate type of bank; these are either a commercial bank or a savings bank." "Y7BG","United States of America","US","Nebraska","US-NE","Hospital Authority","English","en","Hospital Authority","","","2019-07-05","ACTV","","","" "YQDQ","United States of America","US","Nebraska","US-NE","Domestic Limited Liability Partnership","English","en","Domestic Limited Liability Partnership","","","2019-07-05","ACTV","","","" "YWK0","United States of America","US","Nebraska","US-NE","Foreign Limited Partnership","English","en","Foreign Limited Partnership","","","2019-07-05","ACTV","","","" "ZDW0","United States of America","US","Nebraska","US-NE","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "ZEZ2","United States of America","US","Nebraska","US-NE","Foreign Limited Cooperative Association","English","en","Foreign Limited Cooperative Association","","","2019-07-05","ACTV","","","" "62L3","United States of America","US","Nevada","US-NV","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "7K6U","United States of America","US","Nevada","US-NV","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;LLP","","2020-06-10","ACTV","","","" "8WM4","United States of America","US","Nevada","US-NV","Profit Corporation","English","en","Profit Corporation","Inc.;Ltd.;Co.;Corp.","","2020-06-10","ACTV","","","" "92OB","United States of America","US","Nevada","US-NV","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "HCTP","United States of America","US","Nevada","US-NV","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "IY8C","United States of America","US","Nevada","US-NV","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "K3J6","United States of America","US","Nevada","US-NV","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "MM8M","United States of America","US","Nevada","US-NV","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;LC","","2020-06-10","ACTV","","","" "SUEQ","United States of America","US","Nevada","US-NV","Business Trust","English","en","Business Trust","B.T.;BT","","2020-06-10","ACTV","","","" "Y9F2","United States of America","US","Nevada","US-NV","Industrial Bank","English","en","Industrial Bank","","","2021-09-23","ACTV","","","" "2JB4","United States of America","US","New Hampshire","US-NH","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "3LNE","United States of America","US","New Hampshire","US-NH","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "520I","United States of America","US","New Hampshire","US-NH","Foundation","English","en","Foundation","","","2020-06-10","ACTV","","","" "6M6O","United States of America","US","New Hampshire","US-NH","Business Corporation","English","en","Business Corporation","","","2020-06-10","ACTV","","","" "9M2Q","United States of America","US","New Hampshire","US-NH","Benefit Corporation","English","en","Benefit Corporation","","","2020-06-10","ACTV","","","" "G66U","United States of America","US","New Hampshire","US-NH","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "OI5N","United States of America","US","New Hampshire","US-NH","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "OJ9K","United States of America","US","New Hampshire","US-NH","Limited Liability Company","English","en","Limited Liability Company","","","2020-06-10","ACTV","","","" "P3LZ","United States of America","US","New Hampshire","US-NH","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "RCNI","United States of America","US","New Hampshire","US-NH","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","" "S97G","United States of America","US","New Hampshire","US-NH","Investment Trust","English","en","Investment Trust","","","2020-06-10","ACTV","","","" "W1DV","United States of America","US","New Hampshire","US-NH","Cooperative Bank","English","en","Cooperative Bank","","","2021-09-23","ACTV","","","" "7HY7","United States of America","US","New Jersey","US-NJ","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "FFBM","United States of America","US","New Jersey","US-NJ","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","" "G42I","United States of America","US","New Jersey","US-NJ","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "L2SY","United States of America","US","New Jersey","US-NJ","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "N508","United States of America","US","New Jersey","US-NJ","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "P7RH","United States of America","US","New Jersey","US-NJ","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC","","2020-06-10","ACTV","","","" "T4M6","United States of America","US","New Jersey","US-NJ","Nonprofit Corporation","English","en","Nonprofit Corporation","corp.;inc.","","2020-06-10","ACTV","","","" "VWC5","United States of America","US","New Jersey","US-NJ","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "XSNP","United States of America","US","New Jersey","US-NJ","Business Corporation","English","en","Business Corporation","","","2020-06-10","ACTV","","","" "4YOA","United States of America","US","New Mexico","US-NM","Limited Liability Company","English","en","Limited Liability Company","","","2020-06-10","ACTV","","","" "7GMS","United States of America","US","New Mexico","US-NM","Cooperative Association","English","en","Cooperative Association","","","2020-06-10","ACTV","","","" "F69V","United States of America","US","New Mexico","US-NM","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "POG3","United States of America","US","New Mexico","US-NM","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "VG3S","United States of America","US","New Mexico","US-NM","Profit Corporation","English","en","Profit Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "W0U4","United States of America","US","New Mexico","US-NM","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "W0XQ","United States of America","US","New Mexico","US-NM","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "Y1ZD","United States of America","US","New Mexico","US-NM","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "4VH5","United States of America","US","New York","US-NY","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "51RC","United States of America","US","New York","US-NY","Not-for-profit Corporation","English","en","Not-for-profit Corporation","","","2020-06-10","ACTV","","","" "BO6L","United States of America","US","New York","US-NY","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "D6JI","United States of America","US","New York","US-NY","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "EPCY","United States of America","US","New York","US-NY","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "M0ER","United States of America","US","New York","US-NY","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "PJ10","United States of America","US","New York","US-NY","Business Corporation","English","en","Business Corporation","","","2020-06-10","ACTV","","","" "SDX0","United States of America","US","New York","US-NY","Limited Liability Company","English","en","Limited Liability Company","","","2020-06-10","ACTV","","","" "XIZI","United States of America","US","New York","US-NY","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","" "YVSB","United States of America","US","New York","US-NY","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "1QMT","United States of America","US","North Carolina","US-NC","Business Corporation","English","en","Business Corporation","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "358I","United States of America","US","North Carolina","US-NC","Nonprofit Corporation","English","en","Nonprofit Corporation","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "3DXJ","United States of America","US","North Carolina","US-NC","Professional Limited Liability Company","English","en","Professional Limited Liability Company","PLLC","","2017-11-30","ACTV","","","" "4LKE","United States of America","US","North Carolina","US-NC","County Agricultural Fair","English","en","County Agricultural Fair","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "5AAO","United States of America","US","North Carolina","US-NC","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "5JAL","United States of America","US","North Carolina","US-NC","Insurance Company","English","en","Insurance Company","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "6NI8","United States of America","US","North Carolina","US-NC","Railroad","English","en","Railroad","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "8E0H","United States of America","US","North Carolina","US-NC","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "8N0C","United States of America","US","North Carolina","US-NC","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "8QMN","United States of America","US","North Carolina","US-NC","Professional Corporation","English","en","Professional Corporation","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation;PC","","2017-11-30","ACTV","","","" "ARON","United States of America","US","North Carolina","US-NC","limited partnership","English","en","limited partnership","LP;Ltd. Partnership.;Ltd. Partnership","","2017-11-30","ACTV","","","" "CJ58","United States of America","US","North Carolina","US-NC","Cooperative Association","English","en","Cooperative Association","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation;coop.;cooperative","","2017-11-30","ACTV","","","" "F99D","United States of America","US","North Carolina","US-NC","Electric Membership Cooperative","English","en","Electric Membership Cooperative","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation;emc;electric membership corporation","","2017-11-30","ACTV","","","" "IHLF","United States of America","US","North Carolina","US-NC","Savings & Loan Association","English","en","Savings & Loan Association","corp.;inc.;co.;ltd. Incorporated;company;limited;corporation;S&L","","2017-11-30","ACTV","","","" "JF6D","United States of America","US","North Carolina","US-NC","Nonprofit Community Trust","English","en","Nonprofit Community Trust","corp.;inc.;co.;ltd. Incorporated;company;limited;corporation","","2017-11-30","ACTV","typo corrected","2019-07-05","typo corrected" "Q4F9","United States of America","US","North Carolina","US-NC","Mutual Association","English","en","Mutual Association","corp.;inc.;co.;ltd. Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "Q6EM","United States of America","US","North Carolina","US-NC","L3C","English","en","L3C","L3C","","2017-11-30","ACTV","explication added","2021-09-23","no longer available to be created; existing entities with this legal form still survive" "SIST","United States of America","US","North Carolina","US-NC","Public Transportation Authority","English","en","Public Transportation Authority","corp.;inc.;co.;ltd. Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "U94O","United States of America","US","North Carolina","US-NC","Captive Insurance Company","English","en","Captive Insurance Company","corp.;inc.;co.;ltd. Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "UFIY","United States of America","US","North Carolina","US-NC","Bank","English","en","Bank","corp.;inc.;co.;ltd. Incorporated;company;limited;corporation","","2017-11-30","INAC","deletion","2023-09-28","not a separate type of bank; these are either a commercial bank or a savings bank." "UKX4","United States of America","US","North Carolina","US-NC","State Savings Bank","English","en","State Savings Bank","corp.;inc.;co.;ltd. Incorporated;company;limited;corporation;SSB","","2017-11-30","INAC","deletion","2023-09-28","not a separate type of bank; these are either a commercial bank or a savings bank." "UVH6","United States of America","US","North Carolina","US-NC","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "WY1B","United States of America","US","North Carolina","US-NC","Municipal","English","en","Municipal","corp.;inc.;co.;ltd. Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "X0MP","United States of America","US","North Carolina","US-NC","limited liability partnership","English","en","limited liability partnership","LLP;ltd;Liability partnership;rllp;registered limited liability partnership","","2017-11-30","ACTV","","","" "X1EL","United States of America","US","North Carolina","US-NC","Limited Liability Company","English","en","Limited Liability Company","LLC;limited liability company;ltd;liability company","","2017-11-30","ACTV","","","" "Y5L0","United States of America","US","North Carolina","US-NC","Mutual Burial Association","English","en","Mutual Burial Association","corp.;inc.;co.;ltd.;Incorporated;company;limited;corporation","","2017-11-30","ACTV","","","" "YJZ3","United States of America","US","North Carolina","US-NC","Registered Limited Liability Limited Partnership","English","en","Registered Limited Liability Limited Partnership","RLLLP;LLLP;Registered Ltd.;Liability Ltd.;Partnership","","2017-11-30","ACTV","","","" "2WJZ","United States of America","US","North Dakota","US-ND","Cooperative Association","English","en","Cooperative Association","coop;co-op;assn.;assoc.","","2019-07-05","ACTV","","","" "4U9V","United States of America","US","North Dakota","US-ND","Professional Limited Liabity Partnership","English","en","Professional Limited Liabity Partnership","LLP;L.L.P.;PLLP;P.L.L.P","","2019-07-05","ACTV","","","" "64HG","United States of America","US","North Dakota","US-ND","Professional Limited Liability Company","English","en","Professional Limited Liability Company","LLC;L.L.C.;PLLC;P.L.L.C.","","2019-07-05","ACTV","","","" "6JCE","United States of America","US","North Dakota","US-ND","General Partnership","English","en","General Partnership","GP;G.P.","","2019-07-05","ACTV","","","" "AZYL","United States of America","US","North Dakota","US-ND","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "CPK1","United States of America","US","North Dakota","US-ND","Mutual Aid Cooperative","English","en","Mutual Aid Cooperative","coop;co-op","","2019-07-05","ACTV","","","" "DLEW","United States of America","US","North Dakota","US-ND","Nonprofit Limited Liability Company","English","en","Nonprofit Limited Liability Company","LLC;L.L.C.","","2019-07-05","ACTV","","","" "EO24","United States of America","US","North Dakota","US-ND","Cooperative Grazing Associations","English","en","Cooperative Grazing Associations","coop;co-op","","2019-07-05","ACTV","","","" "ER7C","United States of America","US","North Dakota","US-ND","Publicly Traded Corporation","English","en","Publicly Traded Corporation","corp;inc.","","2019-07-05","ACTV","","","" "FK53","United States of America","US","North Dakota","US-ND","Farm/Ranch Limited Liability Company","English","en","Farm/Ranch Limited Liability Company","LLC;L.L.C.","","2019-07-05","ACTV","typo in name corrected","2023-09-28","typo in name corrected" "GHB2","United States of America","US","North Dakota","US-ND","(Business) Limited Liability Company","English","en","(Business) Limited Liability Company","LLC;L.L.C.","","2019-07-05","ACTV","","","" "J1V0","United States of America","US","North Dakota","US-ND","Limited Liability Partnership","English","en","Limited Liability Partnership","LLP;L.L.P.","","2019-07-05","ACTV","","","" "KO5T","United States of America","US","North Dakota","US-ND","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "LF4E","United States of America","US","North Dakota","US-ND","Farm/Ranch Corporation","English","en","Farm/Ranch Corporation","corp;inc.","","2019-07-05","ACTV","","","" "MTDW","United States of America","US","North Dakota","US-ND","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","LLLP;L.L.L.P","","2019-07-05","ACTV","","","" "NHGN","United States of America","US","North Dakota","US-ND","Limited Partnership","English","en","Limited Partnership","LP;L.P.","","2019-07-05","ACTV","","","" "NJA5","United States of America","US","North Dakota","US-ND","Real Estate Investment Trusts","English","en","Real Estate Investment Trusts","REIT;R.E.I.T.","","2019-07-05","ACTV","","","" "OGHV","United States of America","US","North Dakota","US-ND","Professional Corporation","English","en","Professional Corporation","corp.;inc.;PC;P.C.","","2019-07-05","ACTV","","","" "OVCL","United States of America","US","North Dakota","US-ND","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "S745","United States of America","US","North Dakota","US-ND","(Business) Corporation","English","en","(Business) Corporation","corp.;inc.;BC;B.C.","","2019-07-05","ACTV","","","" "U87X","United States of America","US","North Dakota","US-ND","Nonprofit Corporation","English","en","Nonprofit Corporation","corp.;inc.","","2019-07-05","ACTV","","","" "WIU6","United States of America","US","North Dakota","US-ND","Community Development Corporation","English","en","Community Development Corporation","corp;inc.;CDC;C.D.C.","","2019-07-05","ACTV","","","" "YOB3","United States of America","US","North Dakota","US-ND","Electric Cooperative Corporations","English","en","Electric Cooperative Corporations","coop;co-op","","2019-07-05","ACTV","","","" "ZULC","United States of America","US","North Dakota","US-ND","Development Corporation","English","en","Development Corporation","corp;inc.","","2019-07-05","ACTV","","","" "2EPF","United States of America","US","Ohio","US-OH","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "2R1N","United States of America","US","Ohio","US-OH","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "52U0","United States of America","US","Ohio","US-OH","Limited Liability Partnership","English","en","Limited Liability Partnership","registered limited liability partnership;registered partnership having limited liability;limited liability partnership;R.L.L.P.;P.L.L.;L.L.P.;RLLP","","2017-11-30","ACTV","","","" "7VK5","United States of America","US","Ohio","US-OH","Corporation (Nonprofit)","English","en","Corporation (Nonprofit)","","","2017-11-30","ACTV","","","" "95OK","United States of America","US","Ohio","US-OH","General Partnership","English","en","General Partnership","","","2017-11-30","ACTV","","","" "AEJF","United States of America","US","Ohio","US-OH","Professional Association","English","en","Professional Association","company, co.;corporation;corp.;incorporated;inc.","","2017-11-30","ACTV","","","" "BTQ1","United States of America","US","Ohio","US-OH","Corporation (For-Profit)","English","en","Corporation (For-Profit)","company, co.;corporation;corp.;incorporated;inc.","","2017-11-30","ACTV","","","" "EZNQ","United States of America","US","Ohio","US-OH","Limited Liability Company","English","en","Limited Liability Company","limited liability company;limited;LLC;L.L.C.;ltd.;ltd","","2017-11-30","ACTV","","","" "FZMT","United States of America","US","Ohio","US-OH","Cooperative","English","en","Cooperative","Cooperative;coop.;co-operative;co-op;association;assn;company;co;incorporated;inc.;corporation;corp.","","2017-11-30","ACTV","","","" "GXLH","United States of America","US","Ohio","US-OH","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "JBQI","United States of America","US","Ohio","US-OH","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "N566","United States of America","US","Ohio","US-OH","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "ZD39","United States of America","US","Ohio","US-OH","Limited Partnership","English","en","Limited Partnership","Limited Partnership;L.P.;Limited;Ltd.","","2017-11-30","ACTV","","","" "30D6","United States of America","US","Oklahoma","US-OK","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "B8XC","United States of America","US","Oklahoma","US-OK","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "BGH4","United States of America","US","Oklahoma","US-OK","Profit Corporation","English","en","Profit Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "CD96","United States of America","US","Oklahoma","US-OK","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "EDOR","United States of America","US","Oklahoma","US-OK","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "GIPE","United States of America","US","Oklahoma","US-OK","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "OJDX","United States of America","US","Oklahoma","US-OK","Limited Liability Partnership","English","en","Limited Liability Partnership","RLLP, LLP, R.L.L.P., L.L.P.","","2020-06-10","ACTV","","","" "PQXK","United States of America","US","Oklahoma","US-OK","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "VJXH","United States of America","US","Oklahoma","US-OK","Not-for-profit Corporation","English","en","Not-for-profit Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "0AWU","United States of America","US","Oregon","US-OR","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "2WCH","United States of America","US","Oregon","US-OR","savings bank","English","en","savings bank","","","2023-09-28","ACTV","","","" "4BEM","United States of America","US","Oregon","US-OR","Assumed Business Name","English","en","Assumed Business Name","Sole Proprietor;DBA;General Partnership","","2019-07-05","ACTV","","","" "GEE0","United States of America","US","Oregon","US-OR","Limited Partnership","English","en","Limited Partnership","Limited Partnership","","2019-07-05","ACTV","","","" "LGVF","United States of America","US","Oregon","US-OR","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "QK2J","United States of America","US","Oregon","US-OR","Limited Liability Company","English","en","Limited Liability Company","Limited Liability Company;LLC;L.L.C.","","2019-07-05","ACTV","","","" "R18M","United States of America","US","Oregon","US-OR","District Improvement Company","English","en","District Improvement Company","District Improvement Company","","2019-07-05","ACTV","","","" "T2DF","United States of America","US","Oregon","US-OR","Business Trust","English","en","Business Trust","trust","","2019-07-05","ACTV","","","" "T5ZE","United States of America","US","Oregon","US-OR","Business Corporation","English","en","Business Corporation","Corporation;Incorporated;Company;Limited","","2019-07-05","ACTV","","","" "U1EG","United States of America","US","Oregon","US-OR","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "UQWQ","United States of America","US","Oregon","US-OR","Cooperative Corporation","English","en","Cooperative Corporation","Cooperative;co-op","","2019-07-05","ACTV","","","" "UZ83","United States of America","US","Oregon","US-OR","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2019-07-05","ACTV","","","" "V10Q","United States of America","US","Oregon","US-OR","Professional Corporation","English","en","Professional Corporation","Professional Corporation;P.C.;Prof. Corp","","2019-07-05","ACTV","","","" "WQLU","United States of America","US","Oregon","US-OR","Limited Liability Partnership","English","en","Limited Liability Partnership","Limited Liability Partnership;LLP;L.L.P.","","2019-07-05","ACTV","","","" "Z9C5","United States of America","US","Oregon","US-OR","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "23Q4","United States of America","US","Pennsylvania","US-PA","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "3JTE","United States of America","US","Pennsylvania","US-PA","Business Corporation","English","en","Business Corporation","corp.;inc.;co.;ltd.;P.C.","","2020-06-10","ACTV","","","" "3L7Q","United States of America","US","Pennsylvania","US-PA","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "51AN","United States of America","US","Pennsylvania","US-PA","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "9C19","United States of America","US","Pennsylvania","US-PA","Limited Liability Company","English","en","Limited Liability Company","","","2020-06-10","ACTV","","","" "9EJ6","United States of America","US","Pennsylvania","US-PA","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "B8KO","United States of America","US","Pennsylvania","US-PA","Limited Liability Partnership","English","en","Limited Liability Partnership","","","2020-06-10","ACTV","","","" "HSEV","United States of America","US","Pennsylvania","US-PA","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "HV9Q","United States of America","US","Pennsylvania","US-PA","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "R9OY","United States of America","US","Pennsylvania","US-PA","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "4NMI","United States of America","US","Rhode island","US-RI","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "5E0K","United States of America","US","Rhode Island","US-RI","Benefit Professional Corporation","English","en","Benefit Professional Corporation","","","2020-06-10","ACTV","","","" "7RLC","United States of America","US","Rhode Island","US-RI","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;LLP","","2020-06-10","ACTV","","","" "AVLE","United States of America","US","Rhode Island","US-RI","Non-profit Corporation","English","en","Non-profit Corporation","","","2020-06-10","ACTV","","","" "C2O4","United States of America","US","Rhode island","US-RI","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "DRSE","United States of America","US","Rhode Island","US-RI","Limited Liability Company","English","en","Limited Liability Company","l.l.c.","","2020-06-10","ACTV","","","" "FW66","United States of America","US","Rhode Island","US-RI","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "HA7M","United States of America","US","Rhode island","US-RI","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "MG8V","United States of America","US","Rhode Island","US-RI","L3C Low Profit LLC","English","en","L3C Low Profit LLC","","","2020-06-10","ACTV","","","" "N263","United States of America","US","Rhode Island","US-RI","Workers Cooperative","English","en","Workers Cooperative","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "QMI2","United States of America","US","Rhode Island","US-RI","Benefit Corporation","English","en","Benefit Corporation","","","2020-06-10","ACTV","","","" "QYFI","United States of America","US","Rhode Island","US-RI","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "RZ5R","United States of America","US","Rhode Island","US-RI","Professional Service Corporation","English","en","Professional Service Corporation","corp.;inc.;p.c.;ltd.","","2020-06-10","ACTV","","","" "Z54A","United States of America","US","Rhode Island","US-RI","Business Corporation","English","en","Business Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "ZHZP","United States of America","US","Rhode Island","US-RI","Cooperative","English","en","Cooperative","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "11GD","United States of America","US","South Carolina","US-SC","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "5DBJ","United States of America","US","South Carolina","US-SC","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "7QV2","United States of America","US","South Carolina","US-SC","Business Corporation","English","en","Business Corporation","","","2020-06-10","ACTV","","","" "9JWK","United States of America","US","South Carolina","US-SC","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "D2EI","United States of America","US","South Carolina","US-SC","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "DBGD","United States of America","US","South Carolina","US-SC","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC;Ltd. Co.","","2020-06-10","ACTV","","","" "G0HE","United States of America","US","South Carolina","US-SC","Statutory Close Corporation","English","en","Statutory Close Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "G6VI","United States of America","US","South Carolina","US-SC","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "N10D","United States of America","US","South Carolina","US-SC","Professional Corporation","English","en","Professional Corporation","P.C.;PC;P.A.;PA","","2020-06-10","ACTV","","","" "PNSZ","United States of America","US","South Carolina","US-SC","Benefit Corporation","English","en","Benefit Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "WTWK","United States of America","US","South Carolina","US-SC","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.","","2020-06-10","ACTV","","","" "YS05","United States of America","US","South Carolina","US-SC","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "15JS","United States of America","US","South Dakota","US-SD","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "4LZW","United States of America","US","South Dakota","US-SD","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "6TGS","United States of America","US","South Dakota","US-SD","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "C276","United States of America","US","South Dakota","US-SD","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "I7JL","United States of America","US","South Dakota","US-SD","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "JZWN","United States of America","US","South Dakota","US-SD","Business Corporation","English","en","Business Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "PXNI","United States of America","US","South Dakota","US-SD","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "UX5E","United States of America","US","South Dakota","US-SD","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","L.L.L.P.;LLLP","","2020-06-10","ACTV","","","" "Z9CH","United States of America","US","South Dakota","US-SD","Limited Liability Partnership","English","en","Limited Liability Partnership","RLLP, LLP, R.L.L.P., L.L.P.","","2020-06-10","ACTV","","","" "7TJ1","United States of America","US","Tennessee","US-TN","General Partnership","English","en","General Partnership","","","2020-06-10","ACTV","","","" "8MBD","United States of America","US","Tennessee","US-TN","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;LLP","","2020-06-10","ACTV","","","" "BRHI","United States of America","US","Tennessee","US-TN","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "C8HJ","United States of America","US","Tennessee","US-TN","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "DE0G","United States of America","US","Tennessee","US-TN","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "DQUB","United States of America","US","Tennessee","US-TN","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "I2XB","United States of America","US","Tennessee","US-TN","Limited Liability Company","English","en","Limited Liability Company","LLC;L.L.C.","","2020-06-10","ACTV","","","" "ND93","United States of America","US","Tennessee","US-TN","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "QJ9F","United States of America","US","Tennessee","US-TN","For-Profit Corporation","English","en","For-Profit Corporation","corp.;inc.;co.","","2020-06-10","ACTV","","","" "RD1T","United States of America","US","Tennessee","US-TN","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "828X","United States of America","US","Texas","US-TX","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "9AAS","United States of America","US","Texas","US-TX","Professional Corporation","English","en","Professional Corporation","","","2020-06-10","ACTV","","","" "C5K7","United States of America","US","Texas","US-TX","For-Profit Corporation","English","en","For-Profit Corporation","","","2020-06-10","ACTV","","","" "FE1L","United States of America","US","Texas","US-TX","Limited Partnership","English","en","Limited Partnership","","","2020-06-10","ACTV","","","" "HTV5","United States of America","US","Texas","US-TX","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "MXWB","United States of America","US","Texas","US-TX","Professional Association","English","en","Professional Association","","","2020-06-10","ACTV","","","" "N5OS","United States of America","US","Texas","US-TX","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "OGSS","United States of America","US","Texas","US-TX","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "TCLA","United States of America","US","Texas","US-TX","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "WYG5","United States of America","US","Texas","US-TX","Limited Liability Company","English","en","Limited Liability Company","","","2020-06-10","ACTV","","","" "YY5A","United States of America","US","Texas","US-TX","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "1CZS","United States of America","US","Utah","US-UT","General Partnership","English","en","General Partnership","","","2020-06-10","ACTV","","","" "2I4P","United States of America","US","Utah","US-UT","Profit Corporation","English","en","Profit Corporation","","","2020-06-10","ACTV","","","" "3ZXC","United States of America","US","Utah","US-UT","Limited Liability Company (LLC)","English","en","Limited Liability Company (LLC)","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "65B6","United States of America","US","Utah","US-UT","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "6OGF","United States of America","US","Utah","US-UT","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "7AJT","United States of America","US","Utah","US-UT","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "7H0X","United States of America","US","Utah","US-UT","Limited Liability Partnership","English","en","Limited Liability Partnership","RLLP, LLP, R.L.L.P., L.L.P.","","2020-06-10","ACTV","","","" "B12O","United States of America","US","Utah","US-UT","Business Trust","English","en","Business Trust","","","2020-06-10","ACTV","","","" "GIN3","United States of America","US","Utah","US-UT","Benefit LLC","English","en","Benefit LLC","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "IDFN","United States of America","US","Utah","US-UT","Professional Corporation","English","en","Professional Corporation","P.C","","2020-06-10","ACTV","","","" "NOBH","United States of America","US","Utah","US-UT","Non-profit Corporation","English","en","Non-profit Corporation","","","2020-06-10","ACTV","","","" "OK2B","United States of America","US","Utah","US-UT","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "Q1N4","United States of America","US","Utah","US-UT","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "RC44","United States of America","US","Utah","US-UT","Industrial Bank","English","en","Industrial Bank","","","2021-09-23","ACTV","","","" "T0XH","United States of America","US","Utah","US-UT","Benefit Corporation","English","en","Benefit Corporation","","","2020-06-10","ACTV","","","" "UEKV","United States of America","US","Utah","US-UT","Low Profit LLC","English","en","Low Profit LLC","L3C;l3c","","2020-06-10","ACTV","","","" "YQLO","United States of America","US","Utah","US-UT","Uniform Limited Cooperative Association","English","en","Uniform Limited Cooperative Association","","","2020-06-10","ACTV","","","" "8XN0","United States of America","US","Vermont","US-VT","Limited Liability Partnership","English","en","Limited Liability Partnership","RLLP;LLP","","2020-06-10","ACTV","","","" "AMV2","United States of America","US","Vermont","US-VT","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "FXHR","United States of America","US","Vermont","US-VT","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "GZMZ","United States of America","US","Vermont","US-VT","Professional Corporation","English","en","Professional Corporation","","","2020-06-10","ACTV","","","" "JJ5L","United States of America","US","Vermont","US-VT","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "JWTD","United States of America","US","Vermont","US-VT","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "K4MF","United States of America","US","Vermont","US-VT","Professional Limited Liability Company","English","en","Professional Limited Liability Company","PLC","","2020-06-10","ACTV","","","" "LPEE","United States of America","US","Vermont","US-VT","Cooperative","English","en","Cooperative","Corp.","","2020-06-10","ACTV","","","" "NYUD","United States of America","US","Vermont","US-VT","Profit Corporation","English","en","Profit Corporation","","","2020-06-10","ACTV","","","" "OE6T","United States of America","US","Vermont","US-VT","Limited Liability Company (LLC)","English","en","Limited Liability Company (LLC)","LLC;Ltd Liability Co;LC;Ltd Co","","2020-06-10","ACTV","","","" "PNZI","United States of America","US","Vermont","US-VT","Non-profit Corporation","English","en","Non-profit Corporation","","","2020-06-10","ACTV","","","" "R8O9","United States of America","US","Vermont","US-VT","Low Profit LLC","English","en","Low Profit LLC","L3C","","2020-06-10","ACTV","","","" "TCC0","United States of America","US","Vermont","US-VT","Mutual Benefit Enterprise","English","en","Mutual Benefit Enterprise","MBE","","2020-06-10","ACTV","","","" "UF6Y","United States of America","US","Vermont","US-VT","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "456O","United States of America","US","Virginia","US-VA","Partnership","English","en","Partnership","","","2019-07-05","ACTV","","","" "4WN7","United States of America","US","Virginia","US-VA","Limited Liability Company","English","en","Limited Liability Company","","","2019-07-05","ACTV","","","" "5Y4V","United States of America","US","Virginia","US-VA","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "8KA4","United States of America","US","Virginia","US-VA","Registered Limited Liability Partnership","English","en","Registered Limited Liability Partnership","","","2019-07-05","ACTV","","","" "BOEX","United States of America","US","Virginia","US-VA","Business Trust","English","en","Business Trust","","","2019-07-05","ACTV","","","" "DQMV","United States of America","US","Virginia","US-VA","Limited Partnership","English","en","Limited Partnership","","","2019-07-05","ACTV","","","" "HOV4","United States of America","US","Virginia","US-VA","Stock Corporation","English","en","Stock Corporation","","","2019-07-05","ACTV","","","" "OF3Q","United States of America","US","Virginia","US-VA","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "PLMC","United States of America","US","Virginia","US-VA","Nonstock Corporation","English","en","Nonstock Corporation","","","2019-07-05","ACTV","","","" "Q28E","United States of America","US","Virginia","US-VA","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "S4U2","United States of America","US","Virginia","US-VA","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "VVJ3","United States of America","US","Virginia","US-VA","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "9U5M","United States of America","US","Washington","US-WA","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "F8DD","United States of America","US","Washington","US-WA","Limited Liability Company","English","en","Limited Liability Company","LLC;L.L.C.","","2020-06-10","ACTV","","","" "FQLY","United States of America","US","Washington","US-WA","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "LBJ1","United States of America","US","Washington","US-WA","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "NHYA","United States of America","US","Washington","US-WA","Profit Corporation","English","en","Profit Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "PM3Y","United States of America","US","Washington","US-WA","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "RR8G","United States of America","US","Washington","US-WA","Non-profit Corporation","English","en","Non-profit Corporation","","","2020-06-10","ACTV","","","" "RRXD","United States of America","US","Washington","US-WA","Limited Liability Partnership","English","en","Limited Liability Partnership","L.L.P.;LLP","","2020-06-10","ACTV","","","" "VUUU","United States of America","US","Washington","US-WA","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "4HC4","United States of America","US","West Virginia","US-WV","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "724Q","United States of America","US","West Virginia","US-WV","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "DURX","United States of America","US","West Virginia","US-WV","Voluntary Association","English","en","Voluntary Association","","","2020-06-10","ACTV","","","" "IJHI","United States of America","US","West Virginia","US-WV","Corporation (for profit)","English","en","Corporation (for profit)","","","2020-06-10","ACTV","","","" "O1EZ","United States of America","US","West Virginia","US-WV","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "O9MN","United States of America","US","West Virginia","US-WV","Business Trust","English","en","Business Trust","","","2020-06-10","ACTV","","","" "OJBU","United States of America","US","West Virginia","US-WV","Unincorporated Non-Profit Association","English","en","Unincorporated Non-Profit Association","","","2020-06-10","ACTV","","","" "PXGA","United States of America","US","West Virginia","US-WV","Corporation (non-profit)","English","en","Corporation (non-profit)","","","2020-06-10","ACTV","","","" "QDZK","United States of America","US","West Virginia","US-WV","Cooperative Association","English","en","Cooperative Association","corp.;inc.;co.;ltd.;co-op","","2020-06-10","ACTV","","","" "R27J","United States of America","US","West Virginia","US-WV","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "RC5L","United States of America","US","West Virginia","US-WV","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "SSN4","United States of America","US","West Virginia","US-WV","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "SUMS","United States of America","US","West Virginia","US-WV","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "10GE","United States of America","US","Wisconsin","US-WI","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "6S32","United States of America","US","Wisconsin","US-WI","Business Corporation","English","en","Business Corporation","corp.;inc.;co.;ltd.","","2020-06-10","ACTV","","","" "B5YE","United States of America","US","Wisconsin","US-WI","Non-deposit Trust Company","English","en","Non-deposit Trust Company","","","2021-09-23","ACTV","","","" "C0CR","United States of America","US","Wisconsin","US-WI","Cooperative Association","English","en","Cooperative Association","","","2020-06-10","ACTV","","","" "EVBW","United States of America","US","Wisconsin","US-WI","Corporation Nonstock Nonprofit","English","en","Corporation Nonstock Nonprofit","","","2020-06-10","ACTV","","","" "I5XP","United States of America","US","Wisconsin","US-WI","Limited Liability Limited Partnership","English","en","Limited Liability Limited Partnership","LLLP","","2023-09-28","ACTV","","","" "JNYX","United States of America","US","Wisconsin","US-WI","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "M5RM","United States of America","US","Wisconsin","US-WI","Limited Liability Company","English","en","Limited Liability Company","LLC;L.L.C.","","2020-06-10","ACTV","","","" "QSJ1","United States of America","US","Wisconsin","US-WI","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "WNV6","United States of America","US","Wisconsin","US-WI","Limited Partnership","English","en","Limited Partnership","L.P.;LP","","2020-06-10","ACTV","","","" "Y7PW","United States of America","US","Wisconsin","US-WI","Savings and Loan Association","English","en","Savings and Loan Association","","","2021-09-23","ACTV","","","" "Z92A","United States of America","US","Wisconsin","US-WI","Limited Liability Partnership","English","en","Limited Liability Partnership","RLLP, LLP, R.L.L.P., L.L.P.","","2020-06-10","ACTV","","","" "ZXZ7","United States of America","US","Wisconsin","US-WI","Common Law Trust (Business Trust)","English","en","Common Law Trust (Business Trust)","","","2020-06-10","ACTV","","","" "1YA4","United States of America","US","Wyoming","US-WY","Statutory Foundation","English","en","Statutory Foundation","SF;S.F.","","2020-06-10","ACTV","","","" "71ZI","United States of America","US","Wyoming","US-WY","Registered Limited Liability Partnership","English","en","Registered Limited Liability Partnership","RLLP, LLP, R.L.L.P., L.L.P.","","2020-06-10","ACTV","","","" "9GXA","United States of America","US","Wyoming","US-WY","Profit Corporation","English","en","Profit Corporation","","","2020-06-10","ACTV","","","" "HXKE","United States of America","US","Wyoming","US-WY","Savings Bank","English","en","Savings Bank","","","2021-09-23","ACTV","","","" "NB58","United States of America","US","Wyoming","US-WY","Limited Liability Company","English","en","Limited Liability Company","L.L.C.;LLC;L.C.;LC","","2020-06-10","ACTV","","","" "PUJR","United States of America","US","Wyoming","US-WY","Nonprofit Corporation","English","en","Nonprofit Corporation","","","2020-06-10","ACTV","","","" "QR4Y","United States of America","US","Wyoming","US-WY","Limited Partnership","English","en","Limited Partnership","LP","","2020-06-10","ACTV","","","" "RDQZ","United States of America","US","Wyoming","US-WY","Statutory Trust","English","en","Statutory Trust","","","2020-06-10","ACTV","","","" "S6TP","United States of America","US","Wyoming","US-WY","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","","","" "WXPM","United States of America","US","Wyoming","US-WY","credit union","English","en","credit union","","","2023-09-28","ACTV","","","" "A35I","Vanuatu","VU","","","Overseas Company","English","en","Overseas Company","","","2020-06-10","ACTV","","","" "JTJE","Vanuatu","VU","","","Local Company","English","en","Local Company","","","2020-06-10","ACTV","","","" "WMJ9","Vanuatu","VU","","","Foundation","English","en","Foundation","","","2020-06-10","ACTV","","","" "0OCP","Viet Nam","VN","","","công ty trách nhiệm hữu hạn","Vietnamese","vi","công ty trách nhiệm hữu hạn","","","2023-09-28","ACTV","","","" "4RXL","Viet Nam","VN","","","công ty trách nhiệm hữu hạn một thành viên","Vietnamese","vi","công ty trách nhiệm hữu hạn một thành viên","","","2023-09-28","ACTV","","","" "BB0P","Viet Nam","VN","","","doanh nghiệp tư nhân","Vietnamese","vi","doanh nghiệp tư nhân","","","2023-09-28","ACTV","","","" "CZPI","Viet Nam","VN","","","doanh nghiệp nhà nước","Vietnamese","vi","doanh nghiệp nhà nước","","","2023-09-28","ACTV","","","" "KQWF","Viet Nam","VN","","","Nhóm Cty","Vietnamese","vi","Nhóm Cty","","","2023-09-28","ACTV","","","" "OMP4","Viet Nam","VN","","","công ty cổ phần","Vietnamese","vi","công ty cổ phần","","","2023-09-28","ACTV","","","" "QYCU","Viet Nam","VN","","","công ty hợp danh","Vietnamese","vi","công ty hợp danh","","","2023-09-28","ACTV","","","" "S97E","Viet Nam","VN","","","Hợp tác xã","Vietnamese","vi","Hợp tác xã","","","2023-09-28","ACTV","","","" "1GR6","Virgin Islands (British)","VG","","","Partnership","English","en","Partnership","","","2023-09-28","ACTV","","","" "6EH6","Virgin Islands (British)","VG","","","company limited by shares","English","en","company limited by shares","Ltd;Corp;Inc;S.A.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "BST2","Virgin Islands (British)","VG","","","company limited by guarantee that is not authorised to issue shares","English","en","company limited by guarantee that is not authorised to issue shares","Ltd;Corp;Inc;S.A.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "GLCI","Virgin Islands (British)","VG","","","restricted purposes company","English","en","restricted purposes company","(SPV) Ltd","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "JS65","Virgin Islands (British)","VG","","","unlimited company that is not authorised to issue shares","English","en","unlimited company that is not authorised to issue shares","Unltd","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "KORB","Virgin Islands (British)","VG","","","Limited Partnership","English","en","Limited Partnership","L.P.","","2023-09-28","ACTV","","","" "N28C","Virgin Islands (British)","VG","","","restricted purposes company segregated portfolio company","English","en","restricted purposes company segregated portfolio company","(SPV) SPC","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Q62B","Virgin Islands (British)","VG","","","unlimited company that is authorised to issue shares","English","en","unlimited company that is authorised to issue shares","Unltd","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "YOP9","Virgin Islands (British)","VG","","","segregated portfolio company","English","en","segregated portfolio company","SPC","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "ZHED","Virgin Islands (British)","VG","","","company limited by guarantee that is authorised to issue shares","English","en","company limited by guarantee that is authorised to issue shares","Ltd;Corp;Inc;S.A.","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "6QCE","Virgin Islands (U.S.)","VI","","","Commercial Bank","English","en","Commercial Bank","","","2021-09-23","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "A30N","Virgin Islands (U.S.)","VI","","","Foreign Trade & Labor Corporation","English","en","Foreign Trade & Labor Corporation","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "AN8Z","Virgin Islands (U.S.)","VI","","","Foreign Limited Partnership / Limited Liability Limited Partnership","English","en","Foreign Limited Partnership / Limited Liability Limited Partnership","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "CHWX","Virgin Islands (U.S.)","VI","","","Domestic Limited Liability Company","English","en","Domestic Limited Liability Company","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "DMNZ","Virgin Islands (U.S.)","VI","","","Foreign Non-Profit Corporation","English","en","Foreign Non-Profit Corporation","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MGUM","Virgin Islands (U.S.)","VI","","","Domestic Limited Partnership / Limited Liability Limited Partnership","English","en","Domestic Limited Partnership / Limited Liability Limited Partnership","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "MH3L","Virgin Islands (U.S.)","VI","","","Domestic Trade & Labor Corporation","English","en","Domestic Trade & Labor Corporation","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "NNLM","Virgin Islands (U.S.)","VI","","","Domestic Profit Corporation","English","en","Domestic Profit Corporation","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "PKZ2","Virgin Islands (U.S.)","VI","","","Domestic Non-Profit Corporation","English","en","Domestic Non-Profit Corporation","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "Q367","Virgin Islands (U.S.)","VI","","","Foreign Limited Liability Partnership","English","en","Foreign Limited Liability Partnership","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "SOX5","Virgin Islands (U.S.)","VI","","","Foreign Limited Liability Company","English","en","Foreign Limited Liability Company","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "TA9Z","Virgin Islands (U.S.)","VI","","","Domestic Limited Liability Partnership","English","en","Domestic Limited Liability Partnership","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" "UZ9W","Virgin Islands (U.S.)","VI","","","Foreign Profit Corporation","English","en","Foreign Profit Corporation","","","2020-06-10","ACTV","change of country name","2023-09-28","correction of country name to align with name in ISO 3166 standard in English" fingerprints-1.2.3/tools/fetch_and_build.py000066400000000000000000000052501450772166600210530ustar00rootroot00000000000000import io import csv import yaml from typing import Dict, Set from urllib.request import urlopen from normality import slugify, stringify from fingerprints.types.common import TYPES_PATH ELF_URL = "https://www.gleif.org/about-lei/code-lists/iso-20275-entity-legal-forms-code-list/2021-10-21-elf-code-list-v1.4.1.csv" OCCRP_URL = "https://docs.google.com/spreadsheets/d/1Cw2xQ3hcZOAgnnzejlY5Sv3OeMxKePTqcRhXQU8rCAw/pub?gid=0&single=true&output=csv" TypesData = Dict[str, Set[str]] def load_elf(types: TypesData): fh = urlopen(ELF_URL) fh = io.TextIOWrapper(fh, encoding="utf-8") for row in csv.DictReader(fh): data = {} for label, value in row.items(): label = label.split("(")[0] data[slugify(label, sep="_")] = value # print(data) abb_translit = data["abbreviations_transliterated"].split(";") name_translit = data["entity_legal_form_name_transliterated_name"] abb_local = data["abbreviations_local_language"].split(";") name_local = data["entity_legal_form_name_local_name"] abb_all = [] # for abb in chain(abb_translit, abb_local): for abb in abb_translit: abb = abb.strip() if len(abb): abb_all.append(abb) labels = set(abb_all) for abb in abb_local: abb = abb.strip() if len(abb): labels.add(abb) if len(name_translit): labels.add(name_translit) if len(name_local): labels.add(name_local) for abb in abb_all: other = set(labels) other.remove(abb) if abb not in types: types[abb] = other else: types[abb].update(other) def load_occrp(types: TypesData): fh = urlopen(OCCRP_URL) fh = io.TextIOWrapper(fh, encoding="utf-8") for row in csv.DictReader(fh): name = stringify(row.get("Name")) abb = stringify(row.get("Abbreviation")) if name is None or abb is None: continue # print(name, abb) if abb not in types: types[abb] = set() types[abb].add(name) def build() -> None: types: TypesData = {} load_elf(types) load_occrp(types) # from pprint import pprint # pprint(types) out = [] for type_, forms in sorted(types.items()): out.append({"main": type_, "forms": sorted(forms)}) with open(TYPES_PATH, "wb") as fh: fh.write( yaml.dump( {"types": out}, allow_unicode=True, encoding="utf-8", sort_keys=False, ) ) if __name__ == "__main__": build()