s478855 - only jurisdiction
This commit is contained in:
parent
c47148009b
commit
656cdcb3b4
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*~
|
||||
*.pyc
|
||||
|
||||
documents/
|
177
README.md
Normal file
177
README.md
Normal file
@ -0,0 +1,177 @@
|
||||
Extract key information from Edgar NDA documents
|
||||
=====================================================================================
|
||||
|
||||
Extract the information from NDAs (Non-Disclosure Agreements) about the involved parties,
|
||||
jurisdiction, contract term, etc.
|
||||
|
||||
Note that this an information extraction task, you are given keys
|
||||
(labels, attribute names) and you are expected to guess their
|
||||
respective values. It is not a NER task, we are not interested in
|
||||
where the information or entity is to be found, just the information
|
||||
itself.
|
||||
|
||||
The metric used is F1 score calculated on upper-cased values. As an
|
||||
auxiliary metric, also F1 on true-cased values is calculated.
|
||||
|
||||
It should not be assumed that for each key, a corresponding value is
|
||||
to be extracted from a document. There might be some “decoy” keys, for
|
||||
which no value should be given.
|
||||
|
||||
There might be more than value given for a given key. In such cases,
|
||||
more than one value should be given. You are allowed to give more than one value, even if one is expected
|
||||
(e.g. if you have two options, but you are not sure which is right), though, of course,
|
||||
the metric will be lower than just guessing the right value.
|
||||
|
||||
Evaluation
|
||||
----------
|
||||
|
||||
You can carry out evaluation using the [GEval](https://gitlab.com/filipg/geval),
|
||||
when you generate `out.tsv` files (in the same format as `expected.tsv` files):
|
||||
|
||||
```
|
||||
wget https://gonito.net/get/bin/geval
|
||||
chmod u+x geval
|
||||
./geval -t dev-0
|
||||
```
|
||||
|
||||
Textual and graphical features
|
||||
------------------------------
|
||||
|
||||
1D (textual) and/or 2D (graphical) features can be considered, as both
|
||||
the generated PDF documents and the extracted text is available. PDF files were generated using
|
||||
[Puppeteer package](https://developers.google.com/web/tools/puppeteer/) from the original
|
||||
HTML files. We provide 4 different text outputs based on:
|
||||
* pdf2djvu/djvu2hocr tools, ver. `0.9.8`,
|
||||
* tesseract tool, ver. `4.1.1-rc1-7-gb36c`, ran with `--oem 2 -l eng --dpi 300` flags
|
||||
(meaning both new and old OCR engines were used simultaneously, and language and pixel
|
||||
density were forced for better results),
|
||||
* textract tool, ver. `March 1, 2020`,
|
||||
* combination of pdf2djvu/djvu2hocr and tesseract tools. Documents are processed with both tools, by
|
||||
default we take the text from pdf2djvu/djvu2hocr, unless the text returned by tesseract is 1000
|
||||
characters longer.
|
||||
|
||||
It should not be assumed that the OCR-ed text layer is perfect.
|
||||
You are free to use alternative OCR software.
|
||||
|
||||
The texts are not tokenized nor pre-processed in any manner.
|
||||
|
||||
|
||||
Directory structure
|
||||
-------------------
|
||||
|
||||
* `README.md` — this file
|
||||
* `config.txt` — GEval configuration file
|
||||
* `in-header.tsv` — one-line TSV file with column names for input data (features),
|
||||
* `train/` — directory with training data
|
||||
* `train/in.tsv.xz` — input data for the train set
|
||||
* `train/expected.tsv` — expected (reference) data for the train set
|
||||
* `dev-0/` — directory with dev (test) data from the same sources as the train set
|
||||
* `dev-0/in.tsv.xz` — input data for the dev set
|
||||
* `dev-0/expected.tsv` — expected (reference) data for the dev set
|
||||
* `test-A` — directory with test data
|
||||
* `test-A/in.tsv.xz` — input data for the test set
|
||||
* `test-A/expected.tsv` — expected (reference) data for the test set (hidden)
|
||||
* `documents/` — all documents (for train, dev-0 and test-A), they are references in TSV files
|
||||
|
||||
Note that we mean TSV, *not* CSV files. In particular, double quotes
|
||||
are not considered special characters here! In particular, set
|
||||
`quoting` to `QUOTE_NONE` in the Python `csv` module:
|
||||
|
||||
import csv
|
||||
with open('file.tsv', 'r') as tsvfile:
|
||||
reader = csv.reader(tsvfile, delimiter='\t', quoting=csv.QUOTE_NONE)
|
||||
for item in reader:
|
||||
...
|
||||
|
||||
The files are sorted by MD5 sum hashes.
|
||||
|
||||
Structure of data sets
|
||||
----------------------
|
||||
|
||||
The original dataset was split into train, dev-0 and test-A subsets in
|
||||
a stable pseudorandom manner using the hashes (fingerprints) of the
|
||||
document contents:
|
||||
|
||||
* the train set contains 254 items,
|
||||
* the dev-0 set contains 83 items,
|
||||
* the test-A set contains 203 items.
|
||||
|
||||
|
||||
Format of the test sets
|
||||
-----------------------
|
||||
|
||||
The input file (`in.tsv.xz`) consists of 6 TAB-separated columns:
|
||||
|
||||
* the file name of the document (MD5 sum for binary contents with the
|
||||
right extension), to be taken from the `documents/' subdirectory,
|
||||
* list of keys in alphabetical order to be considered during
|
||||
prediction, keys are given in English with underscores in place of
|
||||
spaces and are separated with spaces,
|
||||
* the plain text extracted by pdf2djvu/djvu2hocr tools from the document with the end-of-lines
|
||||
TABs and non-printable characters replaced with spaces (so that they
|
||||
would not be confused with TSV special characters),
|
||||
* the plain text extracted by tesseract tool from the document with the end-of-lines
|
||||
TABs and non-printable characters replaced with spaces (so that they
|
||||
would not be confused with TSV special characters),
|
||||
* the plain text extracted by textract tool from the document with the end-of-lines
|
||||
TABs and non-printable characters replaced with spaces (so that they
|
||||
would not be confused with TSV special characters),
|
||||
* the plain text extracted by combination of pdf2djvu/djvu2hocr and tesseract tools
|
||||
from the document with the end-of-lines TABs and non-printable characters replaced
|
||||
with spaces (so that they would not be confused with TSV special characters).
|
||||
|
||||
The `expected.tsv` file is just a list of key-value pairs sorted
|
||||
alphabetically (by keys). Pairs are separated with spaces, value is
|
||||
separated from a key with the equals sign (`=`). The spaces and colons in values are
|
||||
replaced with underscores.
|
||||
|
||||
In case of “decoy” keys (with no expected values), they are omitted in
|
||||
`expected.tsv` files (they are *not* given with empty value).
|
||||
|
||||
Escaping special characters
|
||||
---------------------------
|
||||
|
||||
The following escape sequences are used for the OCR-ed text:
|
||||
|
||||
* `\f` — page break (`^L`)
|
||||
* `\n` — end of line,
|
||||
* `\t` — tabulation
|
||||
* `\\` — literal backslash
|
||||
|
||||
Information to be extracted
|
||||
---------------------------
|
||||
|
||||
There are up to 6 attributes to be extracted from each document:
|
||||
|
||||
* `effective_date` - date in `YYYY-MM-DD` format, at which point the contract is legally binding,
|
||||
* `jurisdiction` - under which state _or_ country jurisdiction is the contract signed,
|
||||
* `party` - party or parties of the contract,
|
||||
* `term` - length of the legal contract as expressed in the document.
|
||||
|
||||
Note that `party` usually occur more than once.
|
||||
|
||||
Normalization
|
||||
-------------
|
||||
|
||||
The expected pieces of information were normalized to some degree:
|
||||
|
||||
* in attribute values, all spaces ` ` and colons `:` were replaced with an underscores `_`,
|
||||
* all expected dates should be returned in `YYYY-MM-DD` format,
|
||||
* values for attribute `term` are normalized with the same original units e.g. `eleven months`
|
||||
is changed to `11_months`; all of them are in the same format: `{number}_{units}`.
|
||||
|
||||
Format of the output files for test sets
|
||||
----------------------------------------
|
||||
|
||||
The format of the output is the same as the format of
|
||||
`expected.tsv` files. The order of key-value pairs does not matter.
|
||||
|
||||
Format of the train set
|
||||
-----------------------
|
||||
|
||||
The format of the train set is the same as the format of a test set.
|
||||
|
||||
Sources
|
||||
-------
|
||||
|
||||
Original data was gathered from the [Edgar Database](https://www.sec.gov/edgar.shtml).
|
1
config.txt
Normal file
1
config.txt
Normal file
@ -0,0 +1 @@
|
||||
--metric MultiLabel-F1:uN<F1(UC)> --metric MultiLabel-F1:N<F1>P<3> --metric MultiLabel-F0:uN<P(UC)>P<3> --metric MultiLabel-F9999:uN<R(UC)>P<3> --metric Accuracy:uSN<Accuracy>P<2> --metric Mean/MultiLabel-F1:uN<Mean-F1>P<3> --metric MultiLabel-{F1:N<F1>,F0:N<P>P<3>,F9999:N<R>P<3>}{m<effective_date=\S+\s*>N<date>P<2>,m<party=\S+\s*>N<party>P<2>,m<jurisdiction=\S+\s*>N<juris>P<2>,m<term=\S+\s*>N<term>P<2>}u --precision 5 -B 200 --in-header in-header.tsv -%
|
83
dev-0/expected.tsv
Normal file
83
dev-0/expected.tsv
Normal file
@ -0,0 +1,83 @@
|
||||
effective_date=2014-05-20 jurisdiction=New_York party=Liquidmetal_Technology_Inc. party=Visser_Precision_Cast_LLC term=3_years
|
||||
jurisdiction=New_York party=Oglethorpe_Power_Corporation
|
||||
effective_date=2012-09-04 jurisdiction=Delaware party=Jda_Software_Group_Inc. party=Redprairie_Holding_Inc. term=2_years
|
||||
effective_date=2009-02-23 jurisdiction=Massachusetts party=Nitromed_Inc. party=Kenneth_M._Bate
|
||||
effective_date=2015-03-01 jurisdiction=Delaware party=Auspex_Pharmaceuticals party=Teva_Pharmaceutical_Industries_Ltd. term=3_years
|
||||
effective_date=2012-01-11 jurisdiction=Washington party=Financial_Northwest_Inc. party=Spencer_L._Schneider party=Stilwell_Group
|
||||
effective_date=2009-04-30 jurisdiction=Delaware party=California_Micro_Devices_Corporation party=On_Semiconductor_Corporation term=1_year
|
||||
effective_date=2016-06-22 jurisdiction=New_Jersey party=Nat_Krishnamurti party=Interpace_Diagnostics_Group_Inc.
|
||||
effective_date=2008-03-31 jurisdiction=New_York party=Intercept_Pharmaceuticals_Inc. party=David_Shapiro
|
||||
effective_date=2015-12-11 party=Anadigics_Inc. party=Ii-Vi_Inc.
|
||||
party=Pjm_Interconnection_LLC
|
||||
effective_date=2018-11-15 jurisdiction=Delaware party=Tesaro_Inc. party=Ajinomoto_Althea_Inc. party=Glaxosmithkline_LLC term=2_years
|
||||
jurisdiction=Delaware party=Allergan_Inc. party=Map_Pharmaceuticals_Inc. term=2_years
|
||||
effective_date=2000-05-23 jurisdiction=Delaware party=Udate.Com_Inc. party=Anthony_Dunn
|
||||
jurisdiction=New_York party=Virgin_Mobile_Usa_LLC term=2_years
|
||||
effective_date=2012-01-25 jurisdiction=Massachusetts party=Asahi_Kasei_Corporation party=Zoll_Medical_Corporation term=5_years
|
||||
effective_date=2008-07-31 jurisdiction=Minnesota party=Cogent_Inc. party=3m_Company term=2_years
|
||||
jurisdiction=California party=Penumbra_Inc. term=2_years
|
||||
effective_date=2014-11-25 jurisdiction=New_York party=Aol_Inc. party=Verizon_Corporate_Services_Group_Inc. term=3_years
|
||||
effective_date=2018-10-01 jurisdiction=California party=Cubic_Corporation party=John_D._Thomas term=1_year
|
||||
effective_date=2018-12-28 jurisdiction=Iowa party=Flexsteel_Industries_Inc. party=Jerald_K._Dittmer
|
||||
effective_date=2012-03-31 jurisdiction=California party=Integrated_Device_Technology_Inc. party=Plx_Technology_Inc. term=1_year
|
||||
jurisdiction=Virginia party=Bruce_L._Caswell party=Maximus_Inc. term=3_years
|
||||
effective_date=2004-10-11 jurisdiction=North_Carolina party=Inspire_Pharmaceuticals_Inc. party=Barry_G._Pea
|
||||
jurisdiction=Arizona party=Jda_Software_Inc. party=Compuware_Corporation
|
||||
jurisdiction=Indiana party=Peoples_Bank_Sb
|
||||
jurisdiction=New_Jersey party=Oceanfinancial_Corp.
|
||||
effective_date=2005-05-17 jurisdiction=California party=Patricia_Sueltz party=Salesforce.Com_Inc.
|
||||
effective_date=2018-03-30 jurisdiction=Delaware party=Jamba_Inc. party=Focus_Brands_Inc. term=2_years
|
||||
effective_date=2013-05-01 jurisdiction=Georgia party=Citi_Trends_Inc. party=Ivy_Council
|
||||
effective_date=2005-07-03 jurisdiction=New_York party=Common_Sense_Ltd. party=Synova_Healthcare_Inc. term=5_years
|
||||
effective_date=2015-06-23 jurisdiction=New_York party=Consac_LLC party=Musclepharm_Corporation term=12_months
|
||||
effective_date=2008-01-01 jurisdiction=California party=Biolargo_Inc. party=Joseph_L._Provenzano
|
||||
jurisdiction=Minnesota party=The_St._Paul_Travelers_Companies_Inc.
|
||||
jurisdiction=California party=Kbs_Capital_Advisors_LLC term=2_years
|
||||
effective_date=2018-08-16 jurisdiction=Kentucky party=Cafepress_Inc. party=District_Photo_Inc. term=1_year
|
||||
effective_date=2016-01-27 jurisdiction=Minnesota party=Target_Corporation party=Tina_Tyler
|
||||
jurisdiction=Ohio party=Fifth_Third_Processing_Solutions_LLC
|
||||
jurisdiction=Michigan party=Hi-Tex_Inc. party=Quaker_Fabric_Corporation_Of_Fall_River
|
||||
jurisdiction=California party=Gigpeak_Inc. party=Integrated_Device_Technology_Inc.
|
||||
effective_date=2000-02-10 jurisdiction=Minnesota party=New_England_Business_Service_Inc. party=Premium_Wear_Inc.
|
||||
effective_date=2008-11-06 jurisdiction=California party=Biolargo_Inc. party=Howard_Isaacs
|
||||
effective_date=2007-05-09 jurisdiction=Delaware party=Opsware_Inc. party=Hewlett-Packard_Company term=12_months
|
||||
jurisdiction=Illinois party=Jeremiah_Kaye party=Ahp_Servicing_LLC
|
||||
effective_date=2003-05-14 jurisdiction=Minnesota party=Flexsteel_Industries_Inc. party=Dmi_Furniture_Inc.
|
||||
effective_date=2010-06-23 jurisdiction=Texas party=Allis-Chalmers_Energy_Inc. party=Seawell_Ltd. term=2_years
|
||||
jurisdiction=New_Jersey party=Algorx_Pharmaceuticals_Inc. term=10_years
|
||||
effective_date=2009-11-06 jurisdiction=Delaware party=Hid_Global_Corporation party=Lasercard_Corporation term=3_years
|
||||
jurisdiction=Washington party=Corus_Pharma_Inc. party=A._Bruce_Montgomery
|
||||
effective_date=2005-02-16 party=Omni_National_Bank party=Jeffrey_L._Levine
|
||||
effective_date=2014-11-26 jurisdiction=Delaware party=E2open_Inc. party=Insight_Venture_Partners_LLC
|
||||
effective_date=1999-03-16 jurisdiction=Oregon party=Acumed_Inc. party=Medex_Surgical
|
||||
effective_date=2008-07-02 jurisdiction=Delaware party=Unionbancal_Corporation party=The_Bank_Of_Tokyo-Mitsubishi_Ufj term=2_years
|
||||
effective_date=2012-06-11 jurisdiction=Delaware party=Lightwave_Logic_Inc. party=Ronald_A._Bucchi
|
||||
effective_date=2007-03-04 jurisdiction=Delaware party=Webex_Communications_Inc. party=Cisco_Systems_Inc. term=2_years
|
||||
effective_date=2007-04-30 jurisdiction=Massachusetts party=Accurel_Systems_International_Corporation party=Implant_Sciences_Corporation
|
||||
effective_date=2011-11-01 jurisdiction=California party=Life_Technologies_Corporation party=Bernd_Brust
|
||||
effective_date=2012-09-20 party=Contran_Corporation party=Precision_Castparts_Corp.
|
||||
effective_date=2016-03-15 jurisdiction=Delaware party=Orchestra-Prémaman_Sa party=Destination_Maternity_Corporation term=9_months
|
||||
effective_date=2005-09-29 jurisdiction=Illinois party=Paul_B._Mulhollem party=Archer-Daniels-Midland_Company
|
||||
effective_date=2005-05-04 jurisdiction=Idaho party=Affiliated_Companies party=Michael_L._Mooney
|
||||
effective_date=2007-08-14 jurisdiction=Washington party=Photoworks_Inc. party=American_Greetings_Corporation
|
||||
effective_date=2016-05-03 jurisdiction=New_York party=Wizard_World_Inc. party=John_D._Maatta
|
||||
effective_date=2008-08-01 jurisdiction=New_York party=Omrix_Biopharmaceuticals_Inc. party=Ethicon_Inc.
|
||||
effective_date=2006-01-01 jurisdiction=California party=Bank_Of_Beverly_Hills party=Joseph_W._Kiley_Iii term=12_months
|
||||
effective_date=2015-03-16 jurisdiction=Utah party=Galil_Medical_Inc. party=Perseon_Corporation
|
||||
effective_date=2012-07-05 jurisdiction=Delaware party=Curtiss-Wright_Controls_Inc. party=Williams_Controls_Inc. term=3_years
|
||||
effective_date=2015-12-08 jurisdiction=Washington party=Anchor_Bancorp party=Joel_S._Lawson_Iv party=Varonica_S._Ragan term=1_year
|
||||
effective_date=2005-02-24 jurisdiction=Virginia party=Mobile_Satellite_Ventures party=Alexander_H._Good
|
||||
effective_date=2006-12-19 jurisdiction=New_York party=Mapinfo_Corporation party=Pitney_Bowes_Inc.
|
||||
jurisdiction=New_York party=Axcan_Pharma_Inc. party=Tpg_Capital_LP party=Eurand_N.V. term=24_months
|
||||
jurisdiction=Illinois party=Motorola_Inc. party=Iridium_Satellite_LLC
|
||||
effective_date=2008-01-01 jurisdiction=California party=Gigoptix_LLC party=Avi_Katz
|
||||
effective_date=2017-10-02 jurisdiction=Delaware party=Potbelly_Corporation party=Ancora_Advisors_LLC term=2_years
|
||||
party=Ideal_Restaurant_Group_Inc. party=The_Schooner_Group_LLC
|
||||
effective_date=2011-03-29 jurisdiction=Texas party=Newgistics_Inc. party=Stephen_M._Mattessich
|
||||
effective_date=2011-05-26 jurisdiction=California party=Skyworks_Solutions_Inc. party=Richard_K._Williams
|
||||
effective_date=2006-09-01 jurisdiction=Washington party=Microsoft_Corporation party=Digital_River_Inc.
|
||||
effective_date=2015-04-02 jurisdiction=Delaware party=Columbus_Mckinnon_Corporation party=Magnetek_Inc. term=3_years
|
||||
effective_date=2017-07-21 jurisdiction=Washington party=Adaptive_Biotechnologies party=Microsoft_Corporation
|
||||
effective_date=2011-01-18 jurisdiction=New_York party=Orthovita_Inc. party=Stryker_Corporation term=2_years
|
||||
jurisdiction=Washington party=Alder_Biopharmaceuticals_Inc. party=H._Lundbeck_A/S term=1_year
|
||||
effective_date=2015-07-21 jurisdiction=Illinois party=Us_Foods_Inc. party=Pietro_Satriano
|
|
83
dev-0/in.tsv
Normal file
83
dev-0/in.tsv
Normal file
File diff suppressed because one or more lines are too long
BIN
dev-0/in.tsv.xz
Normal file
BIN
dev-0/in.tsv.xz
Normal file
Binary file not shown.
83
dev-0/out.tsv
Normal file
83
dev-0/out.tsv
Normal file
@ -0,0 +1,83 @@
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Alabama
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=Iowa
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=North_Carolina
|
||||
jurisdiction=Arizona
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Kentucky
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=California
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Texas
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Idaho
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=Utah
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Connecticut
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Alabama
|
||||
jurisdiction=Texas
|
||||
jurisdiction=California
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Illinois
|
|
1
in-header.tsv
Normal file
1
in-header.tsv
Normal file
@ -0,0 +1 @@
|
||||
filename keys text_djvu text_tesseract text_textract text_best
|
|
113
run.ipynb
Normal file
113
run.ipynb
Normal file
@ -0,0 +1,113 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 9,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"import re"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 30,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"states = ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', \n",
|
||||
" 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', \n",
|
||||
" 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', \n",
|
||||
" 'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', \n",
|
||||
" 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming']"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 31,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"def count_strings(input, str_):\n",
|
||||
" pattern = re.compile(str_)\n",
|
||||
" return len(pattern.findall(input, re.IGNORECASE))"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 60,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"def predict_state(text):\n",
|
||||
" # Predict state of jurisdiction\n",
|
||||
" state_dict = {}\n",
|
||||
" for state in states:\n",
|
||||
" state_dict[state.replace(\" \", \"_\")] = count_strings(text, state)\n",
|
||||
"\n",
|
||||
" return max(state_dict, key=state_dict.get)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 68,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"with open('dev-0/in.tsv', 'r', encoding='utf8') as f:\n",
|
||||
" dev0_x = f.readlines()\n",
|
||||
"\n",
|
||||
"with open('dev-0/out.tsv', 'wt') as f:\n",
|
||||
" for x in dev0_x:\n",
|
||||
" f.write(\"jurisdiction=\"+str(predict_state(x))+'\\n')\n",
|
||||
"\n",
|
||||
"f.close()\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"with open('train/in.tsv', 'r', encoding='utf8') as f:\n",
|
||||
" train_x = f.readlines()\n",
|
||||
"\n",
|
||||
"with open('train/out.tsv', 'wt') as f:\n",
|
||||
" for x in train_x:\n",
|
||||
" f.write(\"jurisdiction=\"+str(predict_state(x))+'\\n')\n",
|
||||
"\n",
|
||||
"f.close()\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"with open('test-A/in.tsv', 'r', encoding='utf8') as f:\n",
|
||||
" testA_x = f.readlines()\n",
|
||||
"\n",
|
||||
"with open('test-A/out.tsv', 'wt') as f:\n",
|
||||
" for x in testA_x:\n",
|
||||
" f.write(\"jurisdiction=\"+str(predict_state(x))+'\\n')\n",
|
||||
"\n",
|
||||
"f.close()"
|
||||
]
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"interpreter": {
|
||||
"hash": "df93b008b708122b991044997d8941ca5d5845b048d54848454a010a3b0bd41a"
|
||||
},
|
||||
"kernelspec": {
|
||||
"display_name": "Python 3.8.13 ('eks')",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.8.13"
|
||||
},
|
||||
"orig_nbformat": 4
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 2
|
||||
}
|
51
run.py
Normal file
51
run.py
Normal file
@ -0,0 +1,51 @@
|
||||
import re
|
||||
|
||||
states = ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia',
|
||||
'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland',
|
||||
'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey',
|
||||
'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina',
|
||||
'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming']
|
||||
|
||||
|
||||
def count_strings(input, str_):
|
||||
pattern = re.compile(str_)
|
||||
return len(pattern.findall(input, re.IGNORECASE))
|
||||
|
||||
def predict_state(text):
|
||||
# Predict state of jurisdiction
|
||||
state_dict = {}
|
||||
for state in states:
|
||||
state_dict[state.replace(" ", "_")] = count_strings(text, state)
|
||||
|
||||
return max(state_dict, key=state_dict.get)
|
||||
|
||||
|
||||
|
||||
with open('dev-0/in.tsv', 'r', encoding='utf8') as f:
|
||||
dev0_x = f.readlines()
|
||||
|
||||
with open('dev-0/out.tsv', 'wt') as f:
|
||||
for x in dev0_x:
|
||||
f.write("jurisdiction="+str(predict_state(x))+'\n')
|
||||
|
||||
f.close()
|
||||
|
||||
|
||||
with open('train/in.tsv', 'r', encoding='utf8') as f:
|
||||
train_x = f.readlines()
|
||||
|
||||
with open('train/out.tsv', 'wt') as f:
|
||||
for x in train_x:
|
||||
f.write("jurisdiction="+str(predict_state(x))+'\n')
|
||||
|
||||
f.close()
|
||||
|
||||
|
||||
with open('test-A/in.tsv', 'r', encoding='utf8') as f:
|
||||
testA_x = f.readlines()
|
||||
|
||||
with open('test-A/out.tsv', 'wt') as f:
|
||||
for x in testA_x:
|
||||
f.write("jurisdiction="+str(predict_state(x))+'\n')
|
||||
|
||||
f.close()
|
203
test-A/in.tsv
Normal file
203
test-A/in.tsv
Normal file
File diff suppressed because one or more lines are too long
BIN
test-A/in.tsv.xz
Normal file
BIN
test-A/in.tsv.xz
Normal file
Binary file not shown.
203
test-A/out.tsv
Normal file
203
test-A/out.tsv
Normal file
@ -0,0 +1,203 @@
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=California
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Texas
|
||||
jurisdiction=California
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Alabama
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Florida
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=Florida
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Texas
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Florida
|
||||
jurisdiction=California
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Texas
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Connecticut
|
||||
jurisdiction=California
|
||||
jurisdiction=Texas
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Texas
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Connecticut
|
||||
jurisdiction=North_Carolina
|
||||
jurisdiction=Kansas
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=Connecticut
|
||||
jurisdiction=Maryland
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Utah
|
||||
jurisdiction=California
|
||||
jurisdiction=Utah
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Texas
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Michigan
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=New_York
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Maryland
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=California
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Tennessee
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Maryland
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=California
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Louisiana
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=New_York
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=California
|
||||
jurisdiction=North_Carolina
|
||||
jurisdiction=California
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Alabama
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=North_Carolina
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Kentucky
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Connecticut
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=North_Carolina
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=California
|
||||
jurisdiction=Maryland
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Alabama
|
|
254
train/expected-original.tsv
Normal file
254
train/expected-original.tsv
Normal file
@ -0,0 +1,254 @@
|
||||
effective_date=2001-04-18 jurisdiction=Oregon party=Eric_Dean_Sprunk party=NIKE_Inc.
|
||||
effective_date=2017-02-10 jurisdiction=California party=Kite_Pharma_Inc. party=Gilead_Sciences_Inc. term=7_years
|
||||
effective_date=2012-01-06 jurisdiction=Florida party=Maher_Albitar party=NeoGenomics_Laboratories_Inc.
|
||||
effective_date=1999-02-08 jurisdiction=Pennsylvania party=High_Speed_Net_Solutions party=R._J._Seifert_Enterprises term=2_years
|
||||
effective_date=2011-07-13 jurisdiction=California party=99¢_Only_Stores party=Leonard_Green_&_Partners_LP
|
||||
jurisdiction=California party=Dolby_Laboratories_Inc. party=Ray_M._Dolby
|
||||
effective_date=2009-09-23 jurisdiction=New_York party=Altimo_Holdings_&_Investments_Ltd. party=Open_Joint_Stock_Company_“Vimpel-Communications” party=Telenor_ASA term=12_months
|
||||
jurisdiction=Delaware party=Wells_Fargo_Securities_LLC party=ABC-Mart_Inc. term=3_years
|
||||
jurisdiction=Illinois party=Sears_Roebuck_and_Co.
|
||||
effective_date=2007-01-03 jurisdiction=New_York party=Potomac_Key_Group_LLC party=CompuDyne_Corporation term=2_years
|
||||
effective_date=2014-12-11 jurisdiction=Delaware party=Fortune_Brands_Home_&_Security_Inc. party=Norcraft_Companies_Inc. term=2_years
|
||||
jurisdiction=Iowa party=Reg_Marketing_&_Logistics_Group_LLC
|
||||
effective_date=2009-08-03 jurisdiction=Delaware party=Aspect_Medical_Systems_Inc. party=Tyco_Healthcare_Group_LP_d/b/a_Covidien term=3_years
|
||||
jurisdiction=Indiana party=David_L._Fetherman party=Escalade_Inc.
|
||||
effective_date=2013-02-18 jurisdiction=New_York party=Central_European_Distribution_Corporation party=W&L_Enterprises_Ltd. term=16_days
|
||||
effective_date=2005-06-04 jurisdiction=Massachusetts party=Neon_Systems_Inc. party=Progress_Software_Corporation
|
||||
effective_date=2008-08-11 jurisdiction=New_York party=Ann_Taylor_Inc. party=Christine_Beauchamp
|
||||
effective_date=2006-01-30 jurisdiction=Michigan party=Asset_Acceptance_Capital_Corp. party=James_C._Lee
|
||||
effective_date=2004-11-05 jurisdiction=Indiana party=Richard_Harcke party=Haynes_Wire_Company
|
||||
effective_date=2009-05-12 jurisdiction=Colorado party=Clovis_Oncology_Inc. party=Patrick_J._Mahaffy
|
||||
jurisdiction=Georgia party=Ameris_Bancorp party=Shirley_P._Fiano
|
||||
jurisdiction=New_York party=Xinyuan_Real_Estate_Co._Ltd.
|
||||
effective_date=2020-01-13 jurisdiction=Oregon party=John_J._Donahoe_II party=Nike_Inc.
|
||||
jurisdiction=Pennsylvania party=L._B._Foster_Company party=Legion_Partners_Asset_Management_LLC
|
||||
effective_date=2008-01-01 jurisdiction=Delaware party=Verso_Paper_Holdings_LLC party=Peter_H._Kesser
|
||||
effective_date=2008-09-10 jurisdiction=Florida party=Net_Talk.com_Inc.
|
||||
jurisdiction=Delaware party=Coupa_Software_Inc.
|
||||
effective_date=2005-04-06 jurisdiction=Illinois party=Rubicon_Technology_Inc. party=Hap_Hewes
|
||||
effective_date=2011-05-16 jurisdiction=Illinois party=Heidrick_&_Struggles_Inc party=Richard_W._Pehlke term=5_years
|
||||
effective_date=2010-09-07 jurisdiction=Delaware party=Benny_Ward party=BioDelivery_Sciences_International_Inc.
|
||||
jurisdiction=California party=Cisco_Systems_Inc. term=5_years
|
||||
effective_date=2014-03-21 jurisdiction=Delaware party=Intel_Corporation party=Cloudera_Inc.
|
||||
effective_date=2013-11-11 jurisdiction=Missouri party=Emerson_Electric_Co. party=Craig_W._Ashmore
|
||||
effective_date=2001-03-26 jurisdiction=Oregon party=Charles_D._Denson party=Nike_Inc.
|
||||
jurisdiction=Delaware party=Georgia-Pacific_LLC party=Buckeye_Technologies_Inc. term=2_years
|
||||
jurisdiction=Delaware party=Vocus_Inc. party=GTCR_LLC term=2_years
|
||||
effective_date=2014-11-14 jurisdiction=Connecticut party=John_Michael_Magouirk party=Colt's_Manufacturing_Company_LLC
|
||||
effective_date=2015-11-28 jurisdiction=Nevada party=Affinity_Gaming party=Z_Capital_Partners_LLC term=2_years
|
||||
effective_date=2007-03-24 jurisdiction=New_York party=Lone_Star_U.S._Acquisitions_LLC party=Accredited_Home_Lenders_Holding_Co. term=18_months
|
||||
jurisdiction=Illinois party=Oak_Brook_Bancshares,_Inc. party=Oak_Brook_Bank
|
||||
effective_date=2005-05-04 party=Silver_Valley_Capital party=Sterling_Mining_Company party=Kimberly_Gold_Mines_Inc party=Shoshone_Silver_Mining_Company jurisdiction=Idaho party=Michael_L._Mooney
|
||||
effective_date=2012-08-01 jurisdiction=Florida party=Aerosonic_Corporation party=TransDigm_Group_Inc. term=2_years
|
||||
effective_date=2008-07-22 jurisdiction=Delaware party=North_American_Galvanizing_&_Coating_Inc. party=AZZ_Inc. term=2_years
|
||||
effective_date=2011-05-05 jurisdiction=Delaware party=Interactive_Data_Corporation party=Andrew_Prozes
|
||||
effective_date=2007-03-15 jurisdiction=Minnesota party=Enpath_Medical_Inc. party=Greatbatch_Inc.
|
||||
jurisdiction=Virginia
|
||||
effective_date=2009-11-19 jurisdiction=California party=Diedrich_Coffee_Inc. party=Green_Mountain_Coffee_Roasters_Inc. term=2_years
|
||||
effective_date=2014-12-09 jurisdiction=California party=DigiPath_Inc. party=W-Net_Inc. term=1_year
|
||||
effective_date=2018-04-20 jurisdiction=Nevada party=Elaine_P._Wynn party=Wynn_Resorts_Limited
|
||||
effective_date=2015-06-23 jurisdiction=New_York party=Raymond_James_&_Associates_Inc. party=Providence_Equity_Partners_LLC term=18_months
|
||||
effective_date=2006-05-05 jurisdiction=Washington party=InfrastruX_Group party=John_Randell_Higgins
|
||||
jurisdiction=New_York party=Maxwell_Shoe_Company_Inc. party=Jones_Apparel_Group_Inc. term=3_years
|
||||
effective_date=2008-09-29 jurisdiction=Ohio party=Michael_A._Lynch party=Cardinal_Health_Inc.
|
||||
jurisdiction=Nevada party=Glacier_Bancorp_Inc party=Glacier_Bank party=Heritage_Bancorp party=Heritage_Bank_of_Nevada term=2_years
|
||||
jurisdiction=Georgia party=RMS_Titanic_Inc party=Premier_Exhibitions_Inc party=Thomas_Zaller party=Imagine_Exhibitions_Inc_(Georgia) party=Imagine_Exhibitions_Inc_(Nevada) party=Imagine_Exhibitions_PTE,_LTD party=TZ_Inc party=Kingsmen_Exhibits_PTE_LTD party=Kingsmen_Creative_LTD
|
||||
effective_date=2014-04-15 jurisdiction=Massachusetts party=World_Energy_Solutions_Inc. party=EnerNOC_Inc.
|
||||
effective_date=2015-03-16 jurisdiction=Texas party=Charles_H._Turner party=Pier_1_Services_Company
|
||||
jurisdiction=New_York party=Evercore_Partners_Services_East_LLC
|
||||
effective_date=2012-04-11 jurisdiction=New_York party=One_Equity_Partners_IV_LP party=MModal_Inc. term=18_months
|
||||
effective_date=2002-07-16 jurisdiction=Virginia party=Shire_US_Inc. party=New_River_Pharmaceuticals_Inc. term=5_years
|
||||
jurisdiction=Wisconsin party=Schneider
|
||||
effective_date=2010-05-17 jurisdiction=Colorado party=Victoria_Industries_Inc. party=Robert_A._Newson
|
||||
effective_date=2002-12-09 jurisdiction=Oregon party=Tazo_Tea_Company party=Master_Distributors_Inc.
|
||||
effective_date=2015-11-16 jurisdiction=Delaware party=II-VI_Inc. party=Anadigics_Inc. term=2_years
|
||||
effective_date=2001-05-22 jurisdiction=Ohio party=AEP_Energy_Services_Inc. party=Perot_Systems_Corporation term=2_years
|
||||
effective_date=2009-01-09 jurisdiction=Missouri party=Thomas_T._Riley party=Savvis_Inc.
|
||||
jurisdiction=South_Dakota party=Trace_Australia_PTY_LTD party=Advanced_ID_Corporation term=2_years
|
||||
effective_date=2008-06-06 jurisdiction=New_York party=Ann_Taylor_Inc. party=Brian_Lynch
|
||||
jurisdiction=Indiana party=TechniScan_Medical_Systems_Inc. party=The_Anson_Group_LLC
|
||||
effective_date=2012-12-07 jurisdiction=Minnesota party=Caribou_Coffee_Company_Inc. party=JAB_Beech_Inc.
|
||||
jurisdiction=Maine party=Rural_Cellular_Corporation party=Saco_River_Telegraph_and_Telephone_Company
|
||||
jurisdiction=Missouri party=Epiq_Systems_Inc. party=St._Denis_J._Villere_&_Company_L.L.C. term=2_years
|
||||
effective_date=2011-02-08 jurisdiction=Delaware party=Technology_Research_Corporation party=Coleman_Cable_Inc.
|
||||
effective_date=2005-05-31 jurisdiction=Illinois party=CDW party=Promark_Technology_Inc.
|
||||
effective_date=1999-08-24 jurisdiction=Indiana party=Joseph_Chalhoub party=Heritage-Crystal_Clean_LLC
|
||||
jurisdiction=Massachusetts party=VistaPrint_USA_Inc. party=Anne_Drapeau
|
||||
effective_date=2007-02-14 jurisdiction=Illinois party=Walgreen_Co. party=Option_Care_Inc. term=2_years
|
||||
jurisdiction=New_Jersey party=Cognizant_Technology_Solutions_Corporation
|
||||
effective_date=2008-03-05 jurisdiction=California party=CV_Therapeutics_Inc. party=Gilead_Sciences_Inc. term=5_years
|
||||
effective_date=2009-03-25 jurisdiction=California party=IXIA party=Catapult_Communications_Corporation term=1_year
|
||||
effective_date=2014-07-10 jurisdiction=Maine party=BAR_HARBOR_BANKSHARES party=Richard_Maltz
|
||||
jurisdiction=North_Carolina party=Pozen_Inc party=Adrian_Adams
|
||||
effective_date=2007-01-10 jurisdiction=Missouri party=Build-A-Bear_Workshop_Inc. party=Dave_Finnegan term=3_years
|
||||
jurisdiction=Georgia party=Gentiva_Health_Services_Inc.
|
||||
effective_date=2018-01-01 jurisdiction=Missouri party=Leggett_&_Platt_Inc. party=Jack_Crusa term=3_years
|
||||
effective_date=2010-03-17 jurisdiction=New_York party=ICx_Technologies_Inc. party=FLIR_Systems_Inc. term=2_years
|
||||
effective_date=2018-03-15 jurisdiction=Georgia party=Citi_Trends_Inc. party=Stuart_Clifford
|
||||
jurisdiction=New_York party=Superior_Essex_Inc. party=LS_Cable_Ltd. term=3_years
|
||||
jurisdiction=Kansas party=YRC_Worldwide_Inc.
|
||||
effective_date=2007-05-17 jurisdiction=California party=Biosite_Inc. party=Inverness_Medical_Innovations_Inc. party=Kenneth_Buechler
|
||||
jurisdiction=Oregon party=Nike_Inc.
|
||||
jurisdiction=Delaware party=JLL_Partners_Inc. party=BioClinica_Inc. term=18_months
|
||||
effective_date=2007-02-12 jurisdiction=Delaware party=Xerox_Corporation party=Global_Imaging_Systems_Inc. term=2_years
|
||||
jurisdiction=Connecticut party=FSC_CT_Inc.
|
||||
effective_date=2003-03-27 jurisdiction=Utah party=Control4_Corporation party=William_B._West
|
||||
jurisdiction=Texas party=Mavenir_Systems_Inc.
|
||||
effective_date=2009-02-02 jurisdiction=Delaware party=Caddystats_Inc.
|
||||
effective_date=2011-02-01 jurisdiction=Ohio party=The_Citizens_Bank_of_Logan party=John_Demmler
|
||||
effective_date=2009-01-07 jurisdiction=California party=Cost_Plus_Inc. party=Stephens_Investments_Holdings_LLC
|
||||
jurisdiction=California party=Boingo_Wireless_Inc.
|
||||
effective_date=2009-11-16 jurisdiction=New_York party=J._Crew_Group_Inc. term=3_years
|
||||
effective_date=1996-05-15 jurisdiction=South_Carolina party=Envirometrics_Products_Company party=Tom_Wilkie term=55.5_months
|
||||
effective_date=2011-03-22 jurisdiction=Texas party=AmerisourceBergen_Specialty_Group_Inc. party=Corcept_Therapeutics_Inc. term=1_year
|
||||
effective_date=2011-07-14 jurisdiction=New_York party=Landry’s_Inc. party=Morton’s_Restaurant_Group_Inc. term=2_years
|
||||
effective_date=2017-10-25 jurisdiction=New_Jersey party=Yu_Zhou party=Genexosome_Technologies_Inc.
|
||||
effective_date=2007-02-28 jurisdiction=Georgia party=The_Coca-Cola_Company party=Mary_Minnick
|
||||
effective_date=2010-03-16 jurisdiction=Massachusetts party=Somanetics_Corporation party=Tyco_Healthcare_Group_LP_d/b/a_Covidien
|
||||
jurisdiction=Texas party=EXCO_Resources_Inc. term=15_months
|
||||
effective_date=2004-08-03 jurisdiction=Delaware party=SafeNet_Inc. party=Datakey_Inc. term=1_year
|
||||
jurisdiction=New_York party=Delcath_Systems_Inc.
|
||||
effective_date=2007-10-11 jurisdiction=Pennsylvania party=Neuromed_Pharmaceuticals_Inc. party=Eugene_Wright_III
|
||||
effective_date=2016-05-05 jurisdiction=Pennsylvania party=Endo_International_PLC party=Todd_B._Sisitsky
|
||||
effective_date=2010-11-04 jurisdiction=Massachusetts party=Interactive_Data_Corporation party=Raymond_L._D’Arcy
|
||||
effective_date=2012-03-02 jurisdiction=Delaware party=P.F._Chang’s_China_Bistro_Inc. party=Centerbridge_Advisors_II_LLC term=2_years
|
||||
effective_date=2014-09-18 jurisdiction=Florida party=Robert_J._Shovlin party=NeoGenomics_Inc. term=2_years
|
||||
effective_date=2013-05-13 jurisdiction=California party=Avanir_Pharmaceuticals_Inc. party=Otsuka_Pharmaceutical_Co._Ltd.
|
||||
effective_date=2011-10-20 jurisdiction=New_York party=SuccessFactors_Inc. party=SAP_AG term=1_year
|
||||
effective_date=2012-10-30 jurisdiction=Delaware party=EQT_Infrastructure_II_Ltd._Partnership party=Westway_Group_Inc.
|
||||
effective_date=1994-10-06 jurisdiction=Oregon party=Mark_G._Parker party=Nike_Inc.
|
||||
effective_date=2004-11-10 jurisdiction=North_Carolina party=Inspire_Pharmaceuticals_Inc. party=Barry_G._Pea
|
||||
effective_date=2007-09-03 jurisdiction=Delaware party=Danaher_Corporation party=Tektronix_Inc. term=2_years
|
||||
effective_date=2014-12-16 jurisdiction=New_York party=American_Realty_Capital_Properties_Inc. party=Gavin_Brandon
|
||||
effective_date=2007-03-19 jurisdiction=Delaware party=Verso_Paper_Holdings_LLC party=Michael_Weinhold
|
||||
effective_date=2008-02-07 jurisdiction=Delaware party=Blackbaud_Inc. party=Kintera_Inc. term=3_years
|
||||
jurisdiction=New_York party=Ann_Taylor_Inc. party=Gary_Muto
|
||||
jurisdiction=Massachusetts party=resTORbio_Inc. party=Joan_Mannick
|
||||
effective_date=2003-01-21 jurisdiction=Massachusetts party=Boston_Safe_Deposit_&Trust_Company party=James_P._Palermo
|
||||
effective_date=2007-10-12 jurisdiction=New_York party=Adams_Respiratory_Therapeutics_Inc. party=Reckitt_Benckiser_Plc
|
||||
jurisdiction=Missouri party=Energizer_Holdings_Inc. party=J._Patrick_Mulcahy
|
||||
effective_date=2017-03-02 jurisdiction=Virginia party=Virginia_National_Bank party=Glenn_W._Rust
|
||||
effective_date=2008-09-01 jurisdiction=California party=Thomas_Properties_Group_Inc. party=Paul_S._Rutter
|
||||
effective_date=2006-11-28 jurisdiction=New_York party=Shire_Pharmaceuticals_Inc. party=L.E.K._Consulting_LLC party=New_River_Pharmaceuticals_Inc. term=5_years
|
||||
effective_date=2006-11-22 jurisdiction=California party=MDS_Inc. party=UBS_Securities_LLC term=3_years
|
||||
jurisdiction=Massachusetts party=Scholar_Rock_LLC
|
||||
jurisdiction=Wisconsin party=Roundy’s_Inc.
|
||||
jurisdiction=Washington party=Papa_Murphy's_International_LLC
|
||||
effective_date=2006-04-13 jurisdiction=New_York party=Burlington_Coat_Factory_Holdings_Inc. party=Andrew_Milstein
|
||||
effective_date=2014-07-24 jurisdiction=California party=Actuate_Corporation party=Open_Text_Corporation term=18_months
|
||||
jurisdiction=Illinois party=Sears_Holdings_Corporation
|
||||
effective_date=2014-04-06 jurisdiction=Delaware party=Vocus_Inc. party=GTCR_LLC
|
||||
effective_date=2005-03-01 jurisdiction=Massachusetts party=Boston_Private_Financial_Holdings party=J.H._Cromarty
|
||||
effective_date=2007-05-17 party=Biosite_Inc. party=Inverness_Medical_Innovations_Inc. jurisdiction=California party=Gunars_Valkirs
|
||||
effective_date=2014-06-10 jurisdiction=Ohio party=Jeffrey_W._Henderson party=Cardinal_Health_Inc.
|
||||
jurisdiction=Illinois party=Florists’_Transworld_Delivery_Inc.
|
||||
effective_date=2013-01-22 jurisdiction=New_York party=J._Crew_Group_Inc. party=Joan_Durkin term=3_years
|
||||
effective_date=2004-08-24 jurisdiction=New_Jersey party=Mark_A._Sirgo party=BioDelivery_Sciences_International_Inc.
|
||||
effective_date=2011-04-15 jurisdiction=Delaware party=Lincare_Holdings_Inc. party=Linde_AG term=2_years
|
||||
jurisdiction=Massachusetts party=VistaPrint_USA_Inc.
|
||||
jurisdiction=Massachusetts party=VistaPrint_USA_Inc.
|
||||
jurisdiction=Utah party=USANA_Health_Sciences_Inc.
|
||||
effective_date=2004-04-26 jurisdiction=Washington party=Microsoft_Corporation party=Electronic_Arts
|
||||
jurisdiction=Texas party=Legacy_Housing_Corporation
|
||||
effective_date=2007-10-28 jurisdiction=California party=Packeteer_Inc. party=Blue_Coat_Systems_Inc.
|
||||
jurisdiction=California party=ALCiS_Health_Inc.
|
||||
effective_date=2007-02-06 jurisdiction=Colorado party=Precision_Metal_Manufacturing_Inc. party=Back_2_Health_Ltd. term=5_years
|
||||
effective_date=2005-10-12 jurisdiction=Delaware party=Koch_Industries_Inc. party=Georgia-Pacific_Corporation term=2_years
|
||||
effective_date=2009-02-02 jurisdiction=Ohio party=Red_Mountain_Capital_Partners_LLC party=Air_Transport_Services_Group_Inc.
|
||||
jurisdiction=Pennsylvania party=The_Hershey_Company
|
||||
jurisdiction=New_Jersey party=Cognizant_Technology_Solutions_Corporation
|
||||
jurisdiction=Virginia party=Joseph_M._Squeri party=Comstock_Homebuilding_Companies_Inc.
|
||||
jurisdiction=New_York party=NeighborCare_Inc. party=Omnicare_Inc._Nectarine_Acquisition_Corp.
|
||||
jurisdiction=Delaware party=Delphi_Automotive_LLP
|
||||
jurisdiction=Nevada party=AGS_LLC party=Curt_Mayer
|
||||
effective_date=2006-04-13 jurisdiction=New_York party=Burlington_Coat_Factory_Holdings_Inc. party=Monroe_Milstein
|
||||
effective_date=2008-12-12 jurisdiction=Texas party=NetSpend_Corporation party=JTH_Tax_Inc. term=1_year
|
||||
effective_date=2008-09-10 jurisdiction=California party=Hifn_Inc. party=Exar_Corporation term=1_year
|
||||
effective_date=2006-02-28 jurisdiction=New_York party=Gentiva_Health_Services_Inc. party=The_Healthfield_Group_Inc. party=Tony_Strange
|
||||
effective_date=2009-05-11 jurisdiction=New_York party=API_Nanotronics_Corp. party=Thomas_W._Mills_Sr.
|
||||
effective_date=2004-09-02 jurisdiction=California party=nStor_Corporation_Inc. party=Xyratex_Technology_Ltd. term=1_year
|
||||
effective_date=2012-07-09 jurisdiction=New_Jersey party=Ian_Drysdale party=Heartland_Payment_Systems_Inc.
|
||||
jurisdiction=Missouri party=Savvis_Inc.
|
||||
effective_date=2004-02-24 party=BRS-_HCC_Investment_Co._Inc. party=Bruce_C._Bruckmann party=Bruckmann_Rosser_Sherrill_&_Co._II_LP party=Bruckmann_Rosser_Sherrill_&_Co._Inc. jurisdiction=Illinois party=Heritage-Crystal_Clean_LLC
|
||||
effective_date=2011-07-22 jurisdiction=Texas party=Imperial_Sugar_Company party=Louis_Dreyfus_Commodities_LLC term=3_years
|
||||
jurisdiction=New_Jersey party=Vitamin_Shoppe_Industuries_Inc. party=Renaissance_Brands_Ltd.
|
||||
effective_date=2009-05-21 jurisdiction=New_York party=Evercore_Partners_Inc.
|
||||
effective_date=2014-02-19 jurisdiction=New_York party=Calpine_Corporation party=LS_Power_Equity_Advisors_LLC term=1_year
|
||||
effective_date=2018-10-01 jurisdiction=Missouri party=Emerson_Electric_Co. party=Edward_L._Monser
|
||||
effective_date=2007-05-22 jurisdiction=Delaware party=QIAGEN_N.V. party=Digene_Corporation
|
||||
effective_date=2010-06-24 jurisdiction=Nevada party=AGS_LLC party=Bob_Miodunski
|
||||
effective_date=2011-10-10 jurisdiction=Florida party=SRI/Surgical_Express_Inc. party=Richard_Steeves
|
||||
jurisdiction=Kansas party=YRC_Worldwide_Inc. party=Phil_Gaines
|
||||
effective_date=2009-03-04 jurisdiction=Oregon party=Jeanne_Jackson party=Nike_Inc.
|
||||
jurisdiction=Delaware party=IDEX_Corporation
|
||||
jurisdiction=New_York party=Avon_Products_Inc.
|
||||
effective_date=2007-04-19 jurisdiction=New_York party=Cardinal_Health_Inc. party=VIASYS_Healthcare_Inc. term=2_years
|
||||
effective_date=2016-08-08 jurisdiction=Texas party=Philip_J._Hawk party=Team_Industrial_Services_Inc.
|
||||
effective_date=2007-05-31 jurisdiction=New_Jersey party=PLAINTIFF/COUNTER-DEFENDANT_ALLENDALE_PHARMACEUTICALS_Inc.
|
||||
jurisdiction=Florida party=FARO_Technologies_Inc.
|
||||
effective_date=2016-07-14 jurisdiction=New_York party=Wizard_World_Inc. party=Randall_S._Malinoff
|
||||
effective_date=2007-07-23 jurisdiction=New_York party=Cognizant_Technology_Solutions_Corporation party=Rajeev_Mehta
|
||||
effective_date=2009-02-03 jurisdiction=Delaware party=Tyco_Healthcare_Group_LP party=VNUS_Medical_Technologies_Inc. term=2_years
|
||||
effective_date=2018-03-19 jurisdiction=Delaware party=ARMO_Biosciences_Inc. party=Eli_Lilly_and_Company term=12_months
|
||||
jurisdiction=Oregon party=AVI_BioPharma_Inc.
|
||||
jurisdiction=Minnesota party=The_Travelers_Companies_Inc.
|
||||
jurisdiction=Texas party=American_Campus_Communities_Inc.
|
||||
effective_date=2002-05-16 jurisdiction=California party=InterTrust_Technologies_Corporation party=Sony_Corporation_of_America term=7_months
|
||||
effective_date=2011-08-11 jurisdiction=Delaware party=Amgen_Inc. party=Micromet_Inc. term=18_months
|
||||
effective_date=1991-08-01 jurisdiction=California party=Intel_Corporation
|
||||
effective_date=2006-08-08 jurisdiction=New_York party=J._Crew_Group_Inc. term=3_years
|
||||
effective_date=2014-01-31 jurisdiction=Delaware party=InSite_Vision_Incorporation party=Sun_Pharmaceutical_Industries_Ltd. term=3_years
|
||||
jurisdiction=Colorado party=Lightwave_Logic_Inc.
|
||||
effective_date=2010-03-02 jurisdiction=Pennsylvania party=Endo_Pharmaceuticals_Inc. party=HealthTronics_Inc.
|
||||
effective_date=2015-05-18 jurisdiction=New_York party=Carlyle_Investment_Management_LLC party=Blyth_Inc. term=2_years
|
||||
jurisdiction=Indiana party=Zimmer_Inc.
|
||||
effective_date=2009-01-17 jurisdiction=Delaware term=3_years
|
||||
effective_date=2007-07-03 jurisdiction=Pennsylvania party=Orthovita_Inc. party=Maarten_Persenaire
|
||||
effective_date=2011-12-14 jurisdiction=Massachusetts party=Jeffrey_M._Leiden party=Vertex_Pharmaceuticals_Inc.
|
||||
jurisdiction=Massachusetts party=The_Marblehead_Corporation
|
||||
effective_date=2015-01-16 jurisdiction=New_York party=AOL_Inc. party=Millennial_Media_Inc. term=6_months
|
||||
effective_date=2006-11-08 jurisdiction=Ohio party=Mark_Parrish party=Cardinal_Health_Inc.
|
||||
effective_date=2018-01-15 jurisdiction=Illinois party=DeAnn_O'Donovan party=AHP_Servicing_LLC
|
||||
jurisdiction=California party=Acologix_Inc.
|
||||
effective_date=2014-07-31 jurisdiction=California party=BioMarin_Pharmaceutical_Inc. party=Prosensa_Holding_N.V.
|
||||
effective_date=2001-12-03 jurisdiction=California party=Palm_Inc. party=PalmSource_Inc.
|
||||
effective_date=2008-07-24 jurisdiction=Oregon party=Mark_G._Parker party=Nike_Inc.
|
||||
effective_date=2014-04-17 jurisdiction=Texas party=Integrated_Drilling_Equipment_Holdings_Corp. party=Offshore_and_Marine_Holdings_LLC
|
||||
jurisdiction=Texas party=Parallel_Petroleum_Corporation party=Apollo_Management_VII_LP term=1_year
|
||||
effective_date=2016-08-09 jurisdiction=Michigan party=Perceptron_Inc. party=Harbert_Discovery_Fund_LP
|
||||
jurisdiction=Delaware party=HealthEquity_Inc.
|
||||
effective_date=2001-09-17 jurisdiction=California party=Borland_Software_Corporation party=Starbase_Corporation term=3_years
|
||||
effective_date=2013-04-22 jurisdiction=Florida party=Steven_A_Ross party=Laboratories_Inc. party=NeoGenomics
|
||||
effective_date=2002-07-08 jurisdiction=California party=InterTrust_Technologies_Corporation party=Koninklijke_Philips_Electronics_N.V. term=6_months
|
||||
jurisdiction=Ohio party=Convergys_Customer_Management_Group_Inc.
|
||||
effective_date=2008-02-04 jurisdiction=New_York party=Kinetic_Concepts_Inc. party=LifeCell_Corporation
|
||||
effective_date=2009-09-11 jurisdiction=Massachusetts party=Comverse_Inc. party=Danna_Rabin
|
||||
jurisdiction=Delaware party=PAETEC_Communications_Inc.
|
||||
effective_date=2007-07-23 jurisdiction=Georgia party=Acuity_Brands_Inc. party=John_K._Morgan
|
||||
effective_date=2015-01-12 jurisdiction=Delaware party=Pitney_Bowes_Inc. party=Borderfree_Inc. term=3_years
|
||||
jurisdiction=Massachusetts party=Tyco_Healthcare_Group_LP
|
||||
jurisdiction=Texas party=TXU_Corp.
|
||||
effective_date=2013-01-25 jurisdiction=New_York party=J.F._Lehman_&_Company party=OP-TECH_Environmental_Services_Inc. term=12_months
|
||||
jurisdiction=Pennsylvania party=Globus_Medical_Inc.
|
||||
effective_date=2003-04-09 jurisdiction=Michigan party=The_Regents_of_The_University_of_Michigan party=Genesis_Bioventures_Inc.
|
||||
effective_date=2009-06-23 jurisdiction=Washington party=Craig_Eudy party=Infrastrux_Group_Inc.
|
||||
effective_date=2010-10-01 jurisdiction=New_York party=Momentive_Specialty_Chemicals_Inc. party=Momentive_Performance_Materials_Inc. term=20_years
|
||||
effective_date=2007-12-10 jurisdiction=Missouri party=Anheuser-Busch_Companies_Inc. party=Mark_T._Bobak term=5_years
|
||||
effective_date=2011-07-02 jurisdiction=California party=Yahoo! party=Interclick_Inc. term=1_year
|
||||
jurisdiction=California party=Social_Reality_Inc. party=Dustin_Suchter
|
||||
effective_date=2006-05-11 jurisdiction=California party=Biosite_Inc. party=Beckman_Coulter_Inc.
|
||||
effective_date=2012-07-13 jurisdiction=Texas party=Avista_Capital_Holdings_LP party=Union_Drilling_Inc. term=1_year
|
||||
effective_date=2006-02-02 jurisdiction=Florida party=Sun_Energy_Solar_Inc. party=Robert_Fugerer
|
||||
effective_date=2003-04-01 jurisdiction=Ohio party=Belcan_Corporation party=Arc_Communication_Inc.
|
||||
jurisdiction=Delaware party=Leonard_Green_&_Partners_LP party=BJ’s_Wholesale_Inc. term=18_months
|
||||
effective_date=2017-02-01 jurisdiction=New_York party=Intel_Corporation party=Mobileye_N.V. term=2_years
|
||||
effective_date=2010-04-02 jurisdiction=New_York party=Sybase_Inc. party=SAP_AG term=1_year
|
||||
effective_date=2007-06-29 jurisdiction=Pennsylvania party=Orthovita_Inc. party=Donald_L._Scanlan
|
||||
effective_date=2003-09-10 jurisdiction=New_York party=Ctrip.com_International_Ltd. party=Qi_Ji
|
||||
jurisdiction=Rhode_Island party=CVS_Pharmacy_Inc.
|
||||
effective_date=2006-05-19 jurisdiction=California party=Myogen party=Gilead_Sciences_Inc. term=5_years
|
||||
effective_date=2005-03-28 jurisdiction=Florida party=Community_Bank_Corporation_of_America party=Clifton_E._Tufts
|
||||
effective_date=2006-04-13 jurisdiction=New_York party=Burlington_Coat_Factory_Holdings_Inc. party=Stephen_Milstein
|
||||
effective_date=2010-03-19 jurisdiction=Delaware party=Rib-X_Pharmaceuticals_Inc. party=Mark_Leuchtenberger
|
||||
effective_date=2011-01-27 jurisdiction=California party=99¢_Only_Stores party=Leonard_Green_&_Partners_LP
|
||||
jurisdiction=Delaware party=Lydall_Inc. party=David_Freeman
|
|
254
train/expected.tsv
Normal file
254
train/expected.tsv
Normal file
@ -0,0 +1,254 @@
|
||||
effective_date=2001-04-18 jurisdiction=Oregon party=Eric_Dean_Sprunk party=Nike_Inc.
|
||||
effective_date=2017-02-10 jurisdiction=California party=Kite_Pharma_Inc. party=Gilead_Sciences_Inc. term=7_years
|
||||
effective_date=2012-01-06 jurisdiction=Florida party=Maher_Albitar party=Neogenomics_Laboratories_Inc.
|
||||
effective_date=1999-02-08 jurisdiction=Pennsylvania party=High_Speed_Net_Solutions party=R._J._Seifert_Enterprises term=2_years
|
||||
effective_date=2011-07-13 jurisdiction=California party=99¢_Only_Stores party=Leonard_Green_and_Partners_LP
|
||||
jurisdiction=California party=Dolby_Laboratories_Inc. party=Ray_M._Dolby
|
||||
effective_date=2009-09-23 jurisdiction=New_York party=Altimo_Holdings_and_Investments_Ltd. party=Open_Joint_Stock_Company_“Vimpel-Communications” party=Telenor_Asa term=12_months
|
||||
jurisdiction=Delaware party=Wells_Fargo_Securities_LLC party=Abc-Mart_Inc. term=3_years
|
||||
jurisdiction=Illinois party=Sears_Roebuck_and_Co.
|
||||
effective_date=2007-01-03 jurisdiction=New_York party=Potomac_Key_Group_LLC party=Compudyne_Corporation term=2_years
|
||||
effective_date=2014-12-11 jurisdiction=Delaware party=Fortune_Brands_Home_and_Security_Inc. party=Norcraft_Companies_Inc. term=2_years
|
||||
jurisdiction=Iowa party=Reg_Marketing_and_Logistics_Group_LLC
|
||||
effective_date=2009-08-03 jurisdiction=Delaware party=Aspect_Medical_Systems_Inc. party=Tyco_Healthcare_Group_LP term=3_years
|
||||
jurisdiction=Indiana party=David_L._Fetherman party=Escalade_Inc.
|
||||
effective_date=2013-02-18 jurisdiction=New_York party=Central_European_Distribution_Corporation party=W_and_L_Enterprises_Ltd. term=16_days
|
||||
effective_date=2005-06-04 jurisdiction=Massachusetts party=Neon_Systems_Inc. party=Progress_Software_Corporation
|
||||
effective_date=2008-08-11 jurisdiction=New_York party=Ann_Taylor_Inc. party=Christine_Beauchamp
|
||||
effective_date=2006-01-30 jurisdiction=Michigan party=Asset_Acceptance_Capital_Corp. party=James_C._Lee
|
||||
effective_date=2004-11-05 jurisdiction=Indiana party=Richard_Harcke party=Haynes_Wire_Company
|
||||
effective_date=2009-05-12 jurisdiction=Colorado party=Clovis_Oncology_Inc. party=Patrick_J._Mahaffy
|
||||
jurisdiction=Georgia party=Ameris_Bancorp party=Shirley_P._Fiano
|
||||
jurisdiction=New_York party=Xinyuan_Real_Estate_Co._Ltd.
|
||||
effective_date=2020-01-13 jurisdiction=Oregon party=John_J._Donahoe_Ii party=Nike_Inc.
|
||||
jurisdiction=Pennsylvania party=L._B._Foster_Company party=Legion_Partners_Asset_Management_LLC
|
||||
effective_date=2008-01-01 jurisdiction=Delaware party=Verso_Paper_Holdings_LLC party=Peter_H._Kesser
|
||||
effective_date=2008-09-10 jurisdiction=Florida party=Net_Talk.Com_Inc.
|
||||
jurisdiction=Delaware party=Coupa_Software_Inc.
|
||||
effective_date=2005-04-06 jurisdiction=Illinois party=Rubicon_Technology_Inc. party=Hap_Hewes
|
||||
effective_date=2011-05-16 jurisdiction=Illinois party=Heidrick_and_Struggles_Inc. party=Richard_W._Pehlke term=5_years
|
||||
effective_date=2010-09-07 jurisdiction=Delaware party=Benny_Ward party=Biodelivery_Sciences_International_Inc.
|
||||
jurisdiction=California party=Cisco_Systems_Inc. term=5_years
|
||||
effective_date=2014-03-21 jurisdiction=Delaware party=Intel_Corporation party=Cloudera_Inc.
|
||||
effective_date=2013-11-11 jurisdiction=Missouri party=Emerson_Electric_Co. party=Craig_W._Ashmore
|
||||
effective_date=2001-03-26 jurisdiction=Oregon party=Charles_D._Denson party=Nike_Inc.
|
||||
jurisdiction=Delaware party=Georgia-Pacific_LLC party=Buckeye_Technologies_Inc. term=2_years
|
||||
jurisdiction=Delaware party=Vocus_Inc. party=Gtcr_LLC term=2_years
|
||||
effective_date=2014-11-14 jurisdiction=Connecticut party=John_Michael_Magouirk party=Colt's_Manufacturing_Company_LLC
|
||||
effective_date=2015-11-28 jurisdiction=Nevada party=Affinity_Gaming party=Z_Capital_Partners_LLC term=2_years
|
||||
effective_date=2007-03-24 jurisdiction=New_York party=Lone_Star_U.S._Acquisitions_LLC party=Accredited_Home_Lenders_Holding_Co. term=18_months
|
||||
jurisdiction=Illinois party=Oak_Brook_Bancshares_Inc. party=Oak_Brook_Bank
|
||||
effective_date=2005-05-04 party=Silver_Valley_Capital party=Sterling_Mining_Company party=Kimberly_Gold_Mines_Inc. party=Shoshone_Silver_Mining_Company jurisdiction=Idaho party=Michael_L._Mooney
|
||||
effective_date=2012-08-01 jurisdiction=Florida party=Aerosonic_Corporation party=Transdigm_Group_Inc. term=2_years
|
||||
effective_date=2008-07-22 jurisdiction=Delaware party=North_American_Galvanizing_and_Coating_Inc. party=Azz_Inc. term=2_years
|
||||
effective_date=2011-05-05 jurisdiction=Delaware party=Interactive_Data_Corporation party=Andrew_Prozes
|
||||
effective_date=2007-03-15 jurisdiction=Minnesota party=Enpath_Medical_Inc. party=Greatbatch_Inc.
|
||||
jurisdiction=Virginia
|
||||
effective_date=2009-11-19 jurisdiction=California party=Diedrich_Coffee_Inc. party=Green_Mountain_Coffee_Roasters_Inc. term=2_years
|
||||
effective_date=2014-12-09 jurisdiction=California party=Digipath_Inc. party=W-Net_Inc. term=1_year
|
||||
effective_date=2018-04-20 jurisdiction=Nevada party=Elaine_P._Wynn party=Wynn_Resorts_Ltd.
|
||||
effective_date=2015-06-23 jurisdiction=New_York party=Raymond_James_and_Associates_Inc. party=Providence_Equity_Partners_LLC term=18_months
|
||||
effective_date=2006-05-05 jurisdiction=Washington party=Infrastrux_Group party=John_Randell_Higgins
|
||||
jurisdiction=New_York party=Maxwell_Shoe_Company_Inc. party=Jones_Apparel_Group_Inc. term=3_years
|
||||
effective_date=2008-09-29 jurisdiction=Ohio party=Michael_A._Lynch party=Cardinal_Health_Inc.
|
||||
jurisdiction=Nevada party=Glacier_Bancorp_Inc. party=Glacier_Bank party=Heritage_Bancorp party=Heritage_Bank_Of_Nevada term=2_years
|
||||
jurisdiction=Georgia party=Rms_Titanic_Inc. party=Premier_Exhibitions_Inc. party=Thomas_Zaller party=Imagine_Exhibitions_Inc. party=Imagine_Exhibitions_Inc. party=Imagine_Exhibitions_Pte_Ltd. party=Tz_Inc. party=Kingsmen_Exhibits_Pte_Ltd. party=Kingsmen_Creative_Ltd.
|
||||
effective_date=2014-04-15 jurisdiction=Massachusetts party=World_Energy_Solutions_Inc. party=Enernoc_Inc.
|
||||
effective_date=2015-03-16 jurisdiction=Texas party=Charles_H._Turner party=Pier_1_Services_Company
|
||||
jurisdiction=New_York party=Evercore_Partners_Services_East_LLC
|
||||
effective_date=2012-04-11 jurisdiction=New_York party=One_Equity_Partners_Iv_LP party=Mmodal_Inc. term=18_months
|
||||
effective_date=2002-07-16 jurisdiction=Virginia party=Shire_Us_Inc. party=New_River_Pharmaceuticals_Inc. term=5_years
|
||||
jurisdiction=Wisconsin party=Schneider
|
||||
effective_date=2010-05-17 jurisdiction=Colorado party=Victoria_Industries_Inc. party=Robert_A._Newson
|
||||
effective_date=2002-12-09 jurisdiction=Oregon party=Tazo_Tea_Company party=Master_Distributors_Inc.
|
||||
effective_date=2015-11-16 jurisdiction=Delaware party=Ii-Vi_Inc. party=Anadigics_Inc. term=2_years
|
||||
effective_date=2001-05-22 jurisdiction=Ohio party=Aep_Energy_Services_Inc. party=Perot_Systems_Corporation term=2_years
|
||||
effective_date=2009-01-09 jurisdiction=Missouri party=Thomas_T._Riley party=Savvis_Inc.
|
||||
jurisdiction=South_Dakota party=Trace_Australia_Pty._Ltd. party=Advanced_Id_Corporation term=2_years
|
||||
effective_date=2008-06-06 jurisdiction=New_York party=Ann_Taylor_Inc. party=Brian_Lynch
|
||||
jurisdiction=Indiana party=Techniscan_Medical_Systems_Inc. party=The_Anson_Group_LLC
|
||||
effective_date=2012-12-07 jurisdiction=Minnesota party=Caribou_Coffee_Company_Inc. party=Jab_Beech_Inc.
|
||||
jurisdiction=Maine party=Rural_Cellular_Corporation party=Saco_River_Telegraph_and_Telephone_Company
|
||||
jurisdiction=Missouri party=Epiq_Systems_Inc. party=St._Denis_J._Villere_and_Company_L.L.C. term=2_years
|
||||
effective_date=2011-02-08 jurisdiction=Delaware party=Technology_Research_Corporation party=Coleman_Cable_Inc.
|
||||
effective_date=2005-05-31 jurisdiction=Illinois party=Cdw party=Promark_Technology_Inc.
|
||||
effective_date=1999-08-24 jurisdiction=Indiana party=Joseph_Chalhoub party=Heritage-Crystal_Clean_LLC
|
||||
jurisdiction=Massachusetts party=Vistaprint_Usa_Inc. party=Anne_Drapeau
|
||||
effective_date=2007-02-14 jurisdiction=Illinois party=Walgreen_Co. party=Option_Care_Inc. term=2_years
|
||||
jurisdiction=New_Jersey party=Cognizant_Technology_Solutions_Corporation
|
||||
effective_date=2008-03-05 jurisdiction=California party=Cv_Therapeutics_Inc. party=Gilead_Sciences_Inc. term=5_years
|
||||
effective_date=2009-03-25 jurisdiction=California party=Ixia party=Catapult_Communications_Corporation term=1_year
|
||||
effective_date=2014-07-10 jurisdiction=Maine party=Bar_Harbor_Bankshares party=Richard_Maltz
|
||||
jurisdiction=North_Carolina party=Pozen_Inc. party=Adrian_Adams
|
||||
effective_date=2007-01-10 jurisdiction=Missouri party=Build-A-Bear_Workshop_Inc. party=Dave_Finnegan term=3_years
|
||||
jurisdiction=Georgia party=Gentiva_Health_Services_Inc.
|
||||
effective_date=2018-01-01 jurisdiction=Missouri party=Leggett_and_Platt_Inc. party=Jack_Crusa term=3_years
|
||||
effective_date=2010-03-17 jurisdiction=New_York party=Icx_Technologies_Inc. party=Flir_Systems_Inc. term=2_years
|
||||
effective_date=2018-03-15 jurisdiction=Georgia party=Citi_Trends_Inc. party=Stuart_Clifford
|
||||
jurisdiction=New_York party=Superior_Essex_Inc. party=Ls_Cable_Ltd. term=3_years
|
||||
jurisdiction=Kansas party=Yrc_Worldwide_Inc.
|
||||
effective_date=2007-05-17 jurisdiction=California party=Biosite_Inc. party=Inverness_Medical_Innovations_Inc. party=Kenneth_Buechler
|
||||
jurisdiction=Oregon party=Nike_Inc.
|
||||
jurisdiction=Delaware party=Jll_Partners_Inc. party=Bioclinica_Inc. term=18_months
|
||||
effective_date=2007-02-12 jurisdiction=Delaware party=Xerox_Corporation party=Global_Imaging_Systems_Inc. term=2_years
|
||||
jurisdiction=Connecticut party=Fsc_Ct_Inc.
|
||||
effective_date=2003-03-27 jurisdiction=Utah party=Control4_Corporation party=William_B._West
|
||||
jurisdiction=Texas party=Mavenir_Systems_Inc.
|
||||
effective_date=2009-02-02 jurisdiction=Delaware party=Caddystats_Inc.
|
||||
effective_date=2011-02-01 jurisdiction=Ohio party=The_Citizens_Bank_Of_Logan party=John_Demmler
|
||||
effective_date=2009-01-07 jurisdiction=California party=Cost_Plus_Inc. party=Stephens_Investments_Holdings_LLC
|
||||
jurisdiction=California party=Boingo_Wireless_Inc.
|
||||
effective_date=2009-11-16 jurisdiction=New_York party=J._Crew_Group_Inc. term=3_years
|
||||
effective_date=1996-05-15 jurisdiction=South_Carolina party=Envirometrics_Products_Company party=Tom_Wilkie term=55.5_months
|
||||
effective_date=2011-03-22 jurisdiction=Texas party=Amerisourcebergen_Specialty_Group_Inc. party=Corcept_Therapeutics_Inc. term=1_year
|
||||
effective_date=2011-07-14 jurisdiction=New_York party=Landry’S_Inc. party=Morton’S_Restaurant_Group_Inc. term=2_years
|
||||
effective_date=2017-10-25 jurisdiction=New_Jersey party=Yu_Zhou party=Genexosome_Technologies_Inc.
|
||||
effective_date=2007-02-28 jurisdiction=Georgia party=The_Coca-Cola_Company party=Mary_Minnick
|
||||
effective_date=2010-03-16 jurisdiction=Massachusetts party=Somanetics_Corporation party=Tyco_Healthcare_Group_LP
|
||||
jurisdiction=Texas party=Exco_Resources_Inc. term=15_months
|
||||
effective_date=2004-08-03 jurisdiction=Delaware party=Safenet_Inc. party=Datakey_Inc. term=1_year
|
||||
jurisdiction=New_York party=Delcath_Systems_Inc.
|
||||
effective_date=2007-10-11 jurisdiction=Pennsylvania party=Neuromed_Pharmaceuticals_Inc. party=Eugene_Wright_Iii
|
||||
effective_date=2016-05-05 jurisdiction=Pennsylvania party=Endo_International_PLC party=Todd_B._Sisitsky
|
||||
effective_date=2010-11-04 jurisdiction=Massachusetts party=Interactive_Data_Corporation party=Raymond_L._D’Arcy
|
||||
effective_date=2012-03-02 jurisdiction=Delaware party=P.F._Chang’S_China_Bistro_Inc. party=Centerbridge_Advisors_Ii_LLC term=2_years
|
||||
effective_date=2014-09-18 jurisdiction=Florida party=Robert_J._Shovlin party=Neogenomics_Inc. term=2_years
|
||||
effective_date=2013-05-13 jurisdiction=California party=Avanir_Pharmaceuticals_Inc. party=Otsuka_Pharmaceutical_Co._Ltd.
|
||||
effective_date=2011-10-20 jurisdiction=New_York party=Successfactors_Inc. party=Sap_Ag term=1_year
|
||||
effective_date=2012-10-30 jurisdiction=Delaware party=Eqt_Infrastructure_Ii_Ltd. party=Westway_Group_Inc.
|
||||
effective_date=1994-10-06 jurisdiction=Oregon party=Mark_G._Parker party=Nike_Inc.
|
||||
effective_date=2004-11-10 jurisdiction=North_Carolina party=Inspire_Pharmaceuticals_Inc. party=Barry_G._Pea
|
||||
effective_date=2007-09-03 jurisdiction=Delaware party=Danaher_Corporation party=Tektronix_Inc. term=2_years
|
||||
effective_date=2014-12-16 jurisdiction=New_York party=American_Realty_Capital_Properties_Inc. party=Gavin_Brandon
|
||||
effective_date=2007-03-19 jurisdiction=Delaware party=Verso_Paper_Holdings_LLC party=Michael_Weinhold
|
||||
effective_date=2008-02-07 jurisdiction=Delaware party=Blackbaud_Inc. party=Kintera_Inc. term=3_years
|
||||
jurisdiction=New_York party=Ann_Taylor_Inc. party=Gary_Muto
|
||||
jurisdiction=Massachusetts party=Restorbio_Inc. party=Joan_Mannick
|
||||
effective_date=2003-01-21 jurisdiction=Massachusetts party=Boston_Safe_Deposit_and_Trust_Company party=James_P._Palermo
|
||||
effective_date=2007-10-12 jurisdiction=New_York party=Adams_Respiratory_Therapeutics_Inc. party=Reckitt_Benckiser_PLC
|
||||
jurisdiction=Missouri party=Energizer_Holdings_Inc. party=J._Patrick_Mulcahy
|
||||
effective_date=2017-03-02 jurisdiction=Virginia party=Virginia_National_Bank party=Glenn_W._Rust
|
||||
effective_date=2008-09-01 jurisdiction=California party=Thomas_Properties_Group_Inc. party=Paul_S._Rutter
|
||||
effective_date=2006-11-28 jurisdiction=New_York party=Shire_Pharmaceuticals_Inc. party=L.E.K._Consulting_LLC party=New_River_Pharmaceuticals_Inc. term=5_years
|
||||
effective_date=2006-11-22 jurisdiction=California party=Mds_Inc. party=Ubs_Securities_LLC term=3_years
|
||||
jurisdiction=Massachusetts party=Scholar_Rock_LLC
|
||||
jurisdiction=Wisconsin party=Roundy’S_Inc.
|
||||
jurisdiction=Washington party=Papa_Murphy's_International_LLC
|
||||
effective_date=2006-04-13 jurisdiction=New_York party=Burlington_Coat_Factory_Holdings_Inc. party=Andrew_Milstein
|
||||
effective_date=2014-07-24 jurisdiction=California party=Actuate_Corporation party=Open_Text_Corporation term=18_months
|
||||
jurisdiction=Illinois party=Sears_Holdings_Corporation
|
||||
effective_date=2014-04-06 jurisdiction=Delaware party=Vocus_Inc. party=Gtcr_LLC
|
||||
effective_date=2005-03-01 jurisdiction=Massachusetts party=Boston_Private_Financial_Holdings party=J.H._Cromarty
|
||||
effective_date=2007-05-17 party=Biosite_Inc. party=Inverness_Medical_Innovations_Inc. jurisdiction=California party=Gunars_Valkirs
|
||||
effective_date=2014-06-10 jurisdiction=Ohio party=Jeffrey_W._Henderson party=Cardinal_Health_Inc.
|
||||
jurisdiction=Illinois party=Florists’_Transworld_Delivery_Inc.
|
||||
effective_date=2013-01-22 jurisdiction=New_York party=J._Crew_Group_Inc. party=Joan_Durkin term=3_years
|
||||
effective_date=2004-08-24 jurisdiction=New_Jersey party=Mark_A._Sirgo party=Biodelivery_Sciences_International_Inc.
|
||||
effective_date=2011-04-15 jurisdiction=Delaware party=Lincare_Holdings_Inc. party=Linde_Ag term=2_years
|
||||
jurisdiction=Massachusetts party=Vistaprint_Usa_Inc.
|
||||
jurisdiction=Massachusetts party=Vistaprint_Usa_Inc.
|
||||
jurisdiction=Utah party=Usana_Health_Sciences_Inc.
|
||||
effective_date=2004-04-26 jurisdiction=Washington party=Microsoft_Corporation party=Electronic_Arts
|
||||
jurisdiction=Texas party=Legacy_Housing_Corporation
|
||||
effective_date=2007-10-28 jurisdiction=California party=Packeteer_Inc. party=Blue_Coat_Systems_Inc.
|
||||
jurisdiction=California party=Alcis_Health_Inc.
|
||||
effective_date=2007-02-06 jurisdiction=Colorado party=Precision_Metal_Manufacturing_Inc. party=Back_2_Health_Ltd. term=5_years
|
||||
effective_date=2005-10-12 jurisdiction=Delaware party=Koch_Industries_Inc. party=Georgia-Pacific_Corporation term=2_years
|
||||
effective_date=2009-02-02 jurisdiction=Ohio party=Red_Mountain_Capital_Partners_LLC party=Air_Transport_Services_Group_Inc.
|
||||
jurisdiction=Pennsylvania party=The_Hershey_Company
|
||||
jurisdiction=New_Jersey party=Cognizant_Technology_Solutions_Corporation
|
||||
jurisdiction=Virginia party=Joseph_M._Squeri party=Comstock_Homebuilding_Companies_Inc.
|
||||
jurisdiction=New_York party=Neighborcare_Inc. party=Omnicare_Inc.
|
||||
jurisdiction=Delaware party=Delphi_Automotive_LLP
|
||||
jurisdiction=Nevada party=Ags_LLC party=Curt_Mayer
|
||||
effective_date=2006-04-13 jurisdiction=New_York party=Burlington_Coat_Factory_Holdings_Inc. party=Monroe_Milstein
|
||||
effective_date=2008-12-12 jurisdiction=Texas party=Netspend_Corporation party=Jth_Tax_Inc. term=1_year
|
||||
effective_date=2008-09-10 jurisdiction=California party=Hifn_Inc. party=Exar_Corporation term=1_year
|
||||
effective_date=2006-02-28 jurisdiction=New_York party=Gentiva_Health_Services_Inc. party=The_Healthfield_Group_Inc. party=Tony_Strange
|
||||
effective_date=2009-05-11 jurisdiction=New_York party=Api_Nanotronics_Corp. party=Thomas_W._Mills_Sr.
|
||||
effective_date=2004-09-02 jurisdiction=California party=Nstor_Corporation_Inc. party=Xyratex_Technology_Ltd. term=1_year
|
||||
effective_date=2012-07-09 jurisdiction=New_Jersey party=Ian_Drysdale party=Heartland_Payment_Systems_Inc.
|
||||
jurisdiction=Missouri party=Savvis_Inc.
|
||||
effective_date=2004-02-24 party=Brs-_Hcc_Investment_Co._Inc. party=Bruce_C._Bruckmann party=Bruckmann_Rosser_Sherrill_and_Co._Ii_LP party=Bruckmann_Rosser_Sherrill_and_Co._Inc. jurisdiction=Illinois party=Heritage-Crystal_Clean_LLC
|
||||
effective_date=2011-07-22 jurisdiction=Texas party=Imperial_Sugar_Company party=Louis_Dreyfus_Commodities_LLC term=3_years
|
||||
jurisdiction=New_Jersey party=Vitamin_Shoppe_Industuries_Inc. party=Renaissance_Brands_Ltd.
|
||||
effective_date=2009-05-21 jurisdiction=New_York party=Evercore_Partners_Inc.
|
||||
effective_date=2014-02-19 jurisdiction=New_York party=Calpine_Corporation party=Ls_Power_Equity_Advisors_LLC term=1_year
|
||||
effective_date=2018-10-01 jurisdiction=Missouri party=Emerson_Electric_Co. party=Edward_L._Monser
|
||||
effective_date=2007-05-22 jurisdiction=Delaware party=Qiagen_N.V. party=Digene_Corporation
|
||||
effective_date=2010-06-24 jurisdiction=Nevada party=Ags_LLC party=Bob_Miodunski
|
||||
effective_date=2011-10-10 jurisdiction=Florida party=Sri/Surgical_Express_Inc. party=Richard_Steeves
|
||||
jurisdiction=Kansas party=Yrc_Worldwide_Inc. party=Phil_Gaines
|
||||
effective_date=2009-03-04 jurisdiction=Oregon party=Jeanne_Jackson party=Nike_Inc.
|
||||
jurisdiction=Delaware party=Idex_Corporation
|
||||
jurisdiction=New_York party=Avon_Products_Inc.
|
||||
effective_date=2007-04-19 jurisdiction=New_York party=Cardinal_Health_Inc. party=Viasys_Healthcare_Inc. term=2_years
|
||||
effective_date=2016-08-08 jurisdiction=Texas party=Philip_J._Hawk party=Team_Industrial_Services_Inc.
|
||||
effective_date=2007-05-31 jurisdiction=New_Jersey party=Plaintiff/Counter-Defendant_Allendale_Pharmaceuticals_Inc.
|
||||
jurisdiction=Florida party=Faro_Technologies_Inc.
|
||||
effective_date=2016-07-14 jurisdiction=New_York party=Wizard_World_Inc. party=Randall_S._Malinoff
|
||||
effective_date=2007-07-23 jurisdiction=New_York party=Cognizant_Technology_Solutions_Corporation party=Rajeev_Mehta
|
||||
effective_date=2009-02-03 jurisdiction=Delaware party=Tyco_Healthcare_Group_LP party=Vnus_Medical_Technologies_Inc. term=2_years
|
||||
effective_date=2018-03-19 jurisdiction=Delaware party=Armo_Biosciences_Inc. party=Eli_Lilly_and_Company term=12_months
|
||||
jurisdiction=Oregon party=Avi_Biopharma_Inc.
|
||||
jurisdiction=Minnesota party=The_Travelers_Companies_Inc.
|
||||
jurisdiction=Texas party=American_Campus_Communities_Inc.
|
||||
effective_date=2002-05-16 jurisdiction=California party=Intertrust_Technologies_Corporation party=Sony_Corporation_Of_America term=7_months
|
||||
effective_date=2011-08-11 jurisdiction=Delaware party=Amgen_Inc. party=Micromet_Inc. term=18_months
|
||||
effective_date=1991-08-01 jurisdiction=California party=Intel_Corporation
|
||||
effective_date=2006-08-08 jurisdiction=New_York party=J._Crew_Group_Inc. term=3_years
|
||||
effective_date=2014-01-31 jurisdiction=Delaware party=Insite_Vision_Incorporation party=Sun_Pharmaceutical_Industries_Ltd. term=3_years
|
||||
jurisdiction=Colorado party=Lightwave_Logic_Inc.
|
||||
effective_date=2010-03-02 jurisdiction=Pennsylvania party=Endo_Pharmaceuticals_Inc. party=Healthtronics_Inc.
|
||||
effective_date=2015-05-18 jurisdiction=New_York party=Carlyle_Investment_Management_LLC party=Blyth_Inc. term=2_years
|
||||
jurisdiction=Indiana party=Zimmer_Inc.
|
||||
effective_date=2009-01-17 jurisdiction=Delaware term=3_years
|
||||
effective_date=2007-07-03 jurisdiction=Pennsylvania party=Orthovita_Inc. party=Maarten_Persenaire
|
||||
effective_date=2011-12-14 jurisdiction=Massachusetts party=Jeffrey_M._Leiden party=Vertex_Pharmaceuticals_Inc.
|
||||
jurisdiction=Massachusetts party=The_Marblehead_Corporation
|
||||
effective_date=2015-01-16 jurisdiction=New_York party=Aol_Inc. party=Millennial_Media_Inc. term=6_months
|
||||
effective_date=2006-11-08 jurisdiction=Ohio party=Mark_Parrish party=Cardinal_Health_Inc.
|
||||
effective_date=2018-01-15 jurisdiction=Illinois party=Deann_O'donovan party=Ahp_Servicing_LLC
|
||||
jurisdiction=California party=Acologix_Inc.
|
||||
effective_date=2014-07-31 jurisdiction=California party=Biomarin_Pharmaceutical_Inc. party=Prosensa_Holding_N.V.
|
||||
effective_date=2001-12-03 jurisdiction=California party=Palm_Inc. party=Palmsource_Inc.
|
||||
effective_date=2008-07-24 jurisdiction=Oregon party=Mark_G._Parker party=Nike_Inc.
|
||||
effective_date=2014-04-17 jurisdiction=Texas party=Integrated_Drilling_Equipment_Holdings_Corp. party=Offshore_and_Marine_Holdings_LLC
|
||||
jurisdiction=Texas party=Parallel_Petroleum_Corporation party=Apollo_Management_Vii_LP term=1_year
|
||||
effective_date=2016-08-09 jurisdiction=Michigan party=Perceptron_Inc. party=Harbert_Discovery_Fund_LP
|
||||
jurisdiction=Delaware party=Healthequity_Inc.
|
||||
effective_date=2001-09-17 jurisdiction=California party=Borland_Software_Corporation party=Starbase_Corporation term=3_years
|
||||
effective_date=2013-04-22 jurisdiction=Florida party=Steven_A_Ross party=Laboratories_Inc. party=Neogenomics
|
||||
effective_date=2002-07-08 jurisdiction=California party=Intertrust_Technologies_Corporation party=Koninklijke_Philips_Electronics_N.V. term=6_months
|
||||
jurisdiction=Ohio party=Convergys_Customer_Management_Group_Inc.
|
||||
effective_date=2008-02-04 jurisdiction=New_York party=Kinetic_Concepts_Inc. party=Lifecell_Corporation
|
||||
effective_date=2009-09-11 jurisdiction=Massachusetts party=Comverse_Inc. party=Danna_Rabin
|
||||
jurisdiction=Delaware party=Paetec_Communications_Inc.
|
||||
effective_date=2007-07-23 jurisdiction=Georgia party=Acuity_Brands_Inc. party=John_K._Morgan
|
||||
effective_date=2015-01-12 jurisdiction=Delaware party=Pitney_Bowes_Inc. party=Borderfree_Inc. term=3_years
|
||||
jurisdiction=Massachusetts party=Tyco_Healthcare_Group_LP
|
||||
jurisdiction=Texas party=Txu_Corp.
|
||||
effective_date=2013-01-25 jurisdiction=New_York party=J.F._Lehman_and_Company party=Op-Tech_Environmental_Services_Inc. term=12_months
|
||||
jurisdiction=Pennsylvania party=Globus_Medical_Inc.
|
||||
effective_date=2003-04-09 jurisdiction=Michigan party=The_Regents_Of_The_University_Of_Michigan party=Genesis_Bioventures_Inc.
|
||||
effective_date=2009-06-23 jurisdiction=Washington party=Craig_Eudy party=Infrastrux_Group_Inc.
|
||||
effective_date=2010-10-01 jurisdiction=New_York party=Momentive_Specialty_Chemicals_Inc. party=Momentive_Performance_Materials_Inc. term=20_years
|
||||
effective_date=2007-12-10 jurisdiction=Missouri party=Anheuser-Busch_Companies_Inc. party=Mark_T._Bobak term=5_years
|
||||
effective_date=2011-07-02 jurisdiction=California party=Yahoo! party=Interclick_Inc. term=1_year
|
||||
jurisdiction=California party=Social_Reality_Inc. party=Dustin_Suchter
|
||||
effective_date=2006-05-11 jurisdiction=California party=Biosite_Inc. party=Beckman_Coulter_Inc.
|
||||
effective_date=2012-07-13 jurisdiction=Texas party=Avista_Capital_Holdings_LP party=Union_Drilling_Inc. term=1_year
|
||||
effective_date=2006-02-02 jurisdiction=Florida party=Sun_Energy_Solar_Inc. party=Robert_Fugerer
|
||||
effective_date=2003-04-01 jurisdiction=Ohio party=Belcan_Corporation party=Arc_Communication_Inc.
|
||||
jurisdiction=Delaware party=Leonard_Green_and_Partners_LP party=Bj’S_Wholesale_Inc. term=18_months
|
||||
effective_date=2017-02-01 jurisdiction=New_York party=Intel_Corporation party=Mobileye_N.V. term=2_years
|
||||
effective_date=2010-04-02 jurisdiction=New_York party=Sybase_Inc. party=Sap_Ag term=1_year
|
||||
effective_date=2007-06-29 jurisdiction=Pennsylvania party=Orthovita_Inc. party=Donald_L._Scanlan
|
||||
effective_date=2003-09-10 jurisdiction=New_York party=Ctrip.Com_International_Ltd. party=Qi_Ji
|
||||
jurisdiction=Rhode_Island party=Cvs_Pharmacy_Inc.
|
||||
effective_date=2006-05-19 jurisdiction=California party=Myogen party=Gilead_Sciences_Inc. term=5_years
|
||||
effective_date=2005-03-28 jurisdiction=Florida party=Community_Bank_Corporation_Of_America party=Clifton_E._Tufts
|
||||
effective_date=2006-04-13 jurisdiction=New_York party=Burlington_Coat_Factory_Holdings_Inc. party=Stephen_Milstein
|
||||
effective_date=2010-03-19 jurisdiction=Delaware party=Rib-X_Pharmaceuticals_Inc. party=Mark_Leuchtenberger
|
||||
effective_date=2011-01-27 jurisdiction=California party=99¢_Only_Stores party=Leonard_Green_and_Partners_LP
|
||||
jurisdiction=Delaware party=Lydall_Inc. party=David_Freeman
|
|
254
train/in.tsv
Normal file
254
train/in.tsv
Normal file
File diff suppressed because one or more lines are too long
BIN
train/in.tsv.xz
Normal file
BIN
train/in.tsv.xz
Normal file
Binary file not shown.
254
train/out.tsv
Normal file
254
train/out.tsv
Normal file
@ -0,0 +1,254 @@
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Iowa
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Michigan
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Florida
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Connecticut
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Idaho
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Washington
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Texas
|
||||
jurisdiction=New_York
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Wisconsin
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=South_Dakota
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Maine
|
||||
jurisdiction=Kansas
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=Maine
|
||||
jurisdiction=North_Carolina
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Connecticut
|
||||
jurisdiction=Utah
|
||||
jurisdiction=Texas
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=North_Carolina
|
||||
jurisdiction=Texas
|
||||
jurisdiction=New_York
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Texas
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Florida
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=North_Carolina
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Maryland
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=California
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=California
|
||||
jurisdiction=Alabama
|
||||
jurisdiction=Wisconsin
|
||||
jurisdiction=Washington
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=California
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Utah
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Texas
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Michigan
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Texas
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Texas
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Florida
|
||||
jurisdiction=New_York
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Alabama
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Texas
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Michigan
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=Florida
|
||||
jurisdiction=California
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Texas
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=Michigan
|
||||
jurisdiction=Washington
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Missouri
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Florida
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=California
|
||||
jurisdiction=Florida
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Connecticut
|
||||
jurisdiction=California
|
||||
jurisdiction=Delaware
|
|
Loading…
Reference in New Issue
Block a user