Refactor submission instructions
Browse files- LICENSE +201 -0
- README.md +196 -0
- cookiecutter.json +5 -0
- hooks/post_gen_project.py +5 -0
- hooks/pre_gen_project.py +16 -0
- requirements.txt +4 -0
- validation.py +28 -0
- {{cookiecutter.repo_name}}/LICENSE +201 -0
- {{cookiecutter.repo_name}}/README.md +94 -0
- {{cookiecutter.repo_name}}/cli.py +115 -0
- {{cookiecutter.repo_name}}/data/ade_corpus_v2/predictions.csv +0 -0
- {{cookiecutter.repo_name}}/data/ade_corpus_v2/task.json +1 -0
- {{cookiecutter.repo_name}}/data/banking_77/predictions.csv +0 -0
- {{cookiecutter.repo_name}}/data/banking_77/task.json +1 -0
- {{cookiecutter.repo_name}}/data/neurips_impact_statement_risks/predictions.csv +151 -0
- {{cookiecutter.repo_name}}/data/neurips_impact_statement_risks/task.json +1 -0
- {{cookiecutter.repo_name}}/data/one_stop_english/predictions.csv +519 -0
- {{cookiecutter.repo_name}}/data/one_stop_english/task.json +1 -0
- {{cookiecutter.repo_name}}/data/overruling/predictions.csv +2351 -0
- {{cookiecutter.repo_name}}/data/overruling/task.json +1 -0
- {{cookiecutter.repo_name}}/data/semiconductor_org_types/predictions.csv +450 -0
- {{cookiecutter.repo_name}}/data/semiconductor_org_types/task.json +1 -0
- {{cookiecutter.repo_name}}/data/systematic_review_inclusion/predictions.csv +2245 -0
- {{cookiecutter.repo_name}}/data/systematic_review_inclusion/task.json +1 -0
- {{cookiecutter.repo_name}}/data/tai_safety_research/predictions.csv +1640 -0
- {{cookiecutter.repo_name}}/data/tai_safety_research/task.json +1 -0
- {{cookiecutter.repo_name}}/data/terms_of_service/predictions.csv +0 -0
- {{cookiecutter.repo_name}}/data/terms_of_service/task.json +1 -0
- {{cookiecutter.repo_name}}/data/tweet_eval_hate/predictions.csv +2967 -0
- {{cookiecutter.repo_name}}/data/tweet_eval_hate/task.json +1 -0
- {{cookiecutter.repo_name}}/data/twitter_complaints/predictions.csv +3400 -0
- {{cookiecutter.repo_name}}/data/twitter_complaints/task.json +1 -0
- {{cookiecutter.repo_name}}/requirements.txt +2 -0
- {{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}.py +304 -0
LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Apache License
|
2 |
+
Version 2.0, January 2004
|
3 |
+
http://www.apache.org/licenses/
|
4 |
+
|
5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6 |
+
|
7 |
+
1. Definitions.
|
8 |
+
|
9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
11 |
+
|
12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13 |
+
the copyright owner that is granting the License.
|
14 |
+
|
15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
16 |
+
other entities that control, are controlled by, or are under common
|
17 |
+
control with that entity. For the purposes of this definition,
|
18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
19 |
+
direction or management of such entity, whether by contract or
|
20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22 |
+
|
23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24 |
+
exercising permissions granted by this License.
|
25 |
+
|
26 |
+
"Source" form shall mean the preferred form for making modifications,
|
27 |
+
including but not limited to software source code, documentation
|
28 |
+
source, and configuration files.
|
29 |
+
|
30 |
+
"Object" form shall mean any form resulting from mechanical
|
31 |
+
transformation or translation of a Source form, including but
|
32 |
+
not limited to compiled object code, generated documentation,
|
33 |
+
and conversions to other media types.
|
34 |
+
|
35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
36 |
+
Object form, made available under the License, as indicated by a
|
37 |
+
copyright notice that is included in or attached to the work
|
38 |
+
(an example is provided in the Appendix below).
|
39 |
+
|
40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41 |
+
form, that is based on (or derived from) the Work and for which the
|
42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
44 |
+
of this License, Derivative Works shall not include works that remain
|
45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46 |
+
the Work and Derivative Works thereof.
|
47 |
+
|
48 |
+
"Contribution" shall mean any work of authorship, including
|
49 |
+
the original version of the Work and any modifications or additions
|
50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
54 |
+
means any form of electronic, verbal, or written communication sent
|
55 |
+
to the Licensor or its representatives, including but not limited to
|
56 |
+
communication on electronic mailing lists, source code control systems,
|
57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
59 |
+
excluding communication that is conspicuously marked or otherwise
|
60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
61 |
+
|
62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
64 |
+
subsequently incorporated within the Work.
|
65 |
+
|
66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
71 |
+
Work and such Derivative Works in Source or Object form.
|
72 |
+
|
73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76 |
+
(except as stated in this section) patent license to make, have made,
|
77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78 |
+
where such license applies only to those patent claims licensable
|
79 |
+
by such Contributor that are necessarily infringed by their
|
80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
82 |
+
institute patent litigation against any entity (including a
|
83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84 |
+
or a Contribution incorporated within the Work constitutes direct
|
85 |
+
or contributory patent infringement, then any patent licenses
|
86 |
+
granted to You under this License for that Work shall terminate
|
87 |
+
as of the date such litigation is filed.
|
88 |
+
|
89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
90 |
+
Work or Derivative Works thereof in any medium, with or without
|
91 |
+
modifications, and in Source or Object form, provided that You
|
92 |
+
meet the following conditions:
|
93 |
+
|
94 |
+
(a) You must give any other recipients of the Work or
|
95 |
+
Derivative Works a copy of this License; and
|
96 |
+
|
97 |
+
(b) You must cause any modified files to carry prominent notices
|
98 |
+
stating that You changed the files; and
|
99 |
+
|
100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
101 |
+
that You distribute, all copyright, patent, trademark, and
|
102 |
+
attribution notices from the Source form of the Work,
|
103 |
+
excluding those notices that do not pertain to any part of
|
104 |
+
the Derivative Works; and
|
105 |
+
|
106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107 |
+
distribution, then any Derivative Works that You distribute must
|
108 |
+
include a readable copy of the attribution notices contained
|
109 |
+
within such NOTICE file, excluding those notices that do not
|
110 |
+
pertain to any part of the Derivative Works, in at least one
|
111 |
+
of the following places: within a NOTICE text file distributed
|
112 |
+
as part of the Derivative Works; within the Source form or
|
113 |
+
documentation, if provided along with the Derivative Works; or,
|
114 |
+
within a display generated by the Derivative Works, if and
|
115 |
+
wherever such third-party notices normally appear. The contents
|
116 |
+
of the NOTICE file are for informational purposes only and
|
117 |
+
do not modify the License. You may add Your own attribution
|
118 |
+
notices within Derivative Works that You distribute, alongside
|
119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
120 |
+
that such additional attribution notices cannot be construed
|
121 |
+
as modifying the License.
|
122 |
+
|
123 |
+
You may add Your own copyright statement to Your modifications and
|
124 |
+
may provide additional or different license terms and conditions
|
125 |
+
for use, reproduction, or distribution of Your modifications, or
|
126 |
+
for any such Derivative Works as a whole, provided Your use,
|
127 |
+
reproduction, and distribution of the Work otherwise complies with
|
128 |
+
the conditions stated in this License.
|
129 |
+
|
130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
132 |
+
by You to the Licensor shall be under the terms and conditions of
|
133 |
+
this License, without any additional terms or conditions.
|
134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135 |
+
the terms of any separate license agreement you may have executed
|
136 |
+
with Licensor regarding such Contributions.
|
137 |
+
|
138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
140 |
+
except as required for reasonable and customary use in describing the
|
141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
142 |
+
|
143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144 |
+
agreed to in writing, Licensor provides the Work (and each
|
145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147 |
+
implied, including, without limitation, any warranties or conditions
|
148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150 |
+
appropriateness of using or redistributing the Work and assume any
|
151 |
+
risks associated with Your exercise of permissions under this License.
|
152 |
+
|
153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
154 |
+
whether in tort (including negligence), contract, or otherwise,
|
155 |
+
unless required by applicable law (such as deliberate and grossly
|
156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157 |
+
liable to You for damages, including any direct, indirect, special,
|
158 |
+
incidental, or consequential damages of any character arising as a
|
159 |
+
result of this License or out of the use or inability to use the
|
160 |
+
Work (including but not limited to damages for loss of goodwill,
|
161 |
+
work stoppage, computer failure or malfunction, or any and all
|
162 |
+
other commercial damages or losses), even if such Contributor
|
163 |
+
has been advised of the possibility of such damages.
|
164 |
+
|
165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168 |
+
or other liability obligations and/or rights consistent with this
|
169 |
+
License. However, in accepting such obligations, You may act only
|
170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171 |
+
of any other Contributor, and only if You agree to indemnify,
|
172 |
+
defend, and hold each Contributor harmless for any liability
|
173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
174 |
+
of your accepting any such warranty or additional liability.
|
175 |
+
|
176 |
+
END OF TERMS AND CONDITIONS
|
177 |
+
|
178 |
+
APPENDIX: How to apply the Apache License to your work.
|
179 |
+
|
180 |
+
To apply the Apache License to your work, attach the following
|
181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182 |
+
replaced with your own identifying information. (Don't include
|
183 |
+
the brackets!) The text should be enclosed in the appropriate
|
184 |
+
comment syntax for the file format. We also recommend that a
|
185 |
+
file or class name and description of purpose be included on the
|
186 |
+
same "printed page" as the copyright notice for easier
|
187 |
+
identification within third-party archives.
|
188 |
+
|
189 |
+
Copyright [yyyy] [name of copyright owner]
|
190 |
+
|
191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192 |
+
you may not use this file except in compliance with the License.
|
193 |
+
You may obtain a copy of the License at
|
194 |
+
|
195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
196 |
+
|
197 |
+
Unless required by applicable law or agreed to in writing, software
|
198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200 |
+
See the License for the specific language governing permissions and
|
201 |
+
limitations under the License.
|
README.md
ADDED
@@ -0,0 +1,196 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# RAFT Submission Template
|
2 |
+
|
3 |
+
Welcome to the RAFT benchmark! RAFT is a few-shot classification benchmark that tests language models:
|
4 |
+
|
5 |
+
- across multiple domains (lit review, tweets, customer interaction, etc.)
|
6 |
+
- on economically valuable classification tasks (someone inherently cares about the task)
|
7 |
+
- in a setting that mirrors deployment (50 examples per task, info retrieval allowed, hidden test set)
|
8 |
+
|
9 |
+
This repository can be used to generate a template so you can submit your predictions for evaluation on [the leaderboard](https://huggingface.co/spaces/ought/raft-leaderboard).
|
10 |
+
|
11 |
+
## Quickstart
|
12 |
+
|
13 |
+
### 1. Create an account and repository on the Hugging Face Hub
|
14 |
+
|
15 |
+
First create an account on the Hugging Face Hub and you can sign up [here](https://huggingface.co/join) if you haven't already!
|
16 |
+
|
17 |
+
### 2. Create a template repository on your machine
|
18 |
+
|
19 |
+
The next step is to create a template repository on your local machine that contains various files and a CLI to help you validate and submit your predictions. You can run the following commands to create the repository:
|
20 |
+
|
21 |
+
```bash
|
22 |
+
# Install the following libraries if you don't have them
|
23 |
+
pip install cookiecutter huggingface-hub==0.0.16
|
24 |
+
# Create the template repository
|
25 |
+
cookiecutter https://github.com/oughtinc/raft_submission.git
|
26 |
+
```
|
27 |
+
|
28 |
+
This will ask you to specify your Hugging Face Hub username, password, and the name of the repository:
|
29 |
+
|
30 |
+
```
|
31 |
+
hf_hub_username [<huggingface>]:
|
32 |
+
hf_hub_password [<password>]:
|
33 |
+
repo_name [<my-raft-submissions>]:
|
34 |
+
```
|
35 |
+
|
36 |
+
This will trigger the following steps:
|
37 |
+
|
38 |
+
1. Create a private dataset repository on the Hugging Face Hub under `{hf_hub_username}/{repo_name}`
|
39 |
+
2. Clone the repository to your local machine
|
40 |
+
3. Add various template files and commit them locally to the repository
|
41 |
+
|
42 |
+
The resulting repository should have the following structure:
|
43 |
+
|
44 |
+
```
|
45 |
+
my-raft-submission
|
46 |
+
├── LICENSE
|
47 |
+
├── README.md <- The top-level README with submission instructions
|
48 |
+
├── cli.py <- The CLI for installing dependencies, validating predictions, and making submissions
|
49 |
+
├── data
|
50 |
+
│ ├── ade_corpus_v2 <- The predictions for each task are stored in their corresponding directory
|
51 |
+
│ │ ├── predictions.csv <- A CSV file of the predictions with `ID` and `Label` columns
|
52 |
+
│ │ └── task.json <- Configuration file for loading the predictions. Do not edit!
|
53 |
+
│ ├── banking_77
|
54 |
+
│ │ ├── predictions.csv
|
55 |
+
│ │ └── task.json
|
56 |
+
│ ├── neurips_impact_statement_risks
|
57 |
+
│ │ ├── predictions.csv
|
58 |
+
│ │ └── task.json
|
59 |
+
│ ├── one_stop_english
|
60 |
+
│ │ ├── predictions.csv
|
61 |
+
│ │ └── task.json
|
62 |
+
│ ├── overruling
|
63 |
+
│ │ ├── predictions.csv
|
64 |
+
│ │ └── task.json
|
65 |
+
│ ├── semiconductor_org_types
|
66 |
+
│ │ ├── predictions.csv
|
67 |
+
│ │ └── task.json
|
68 |
+
│ ├── systematic_review_inclusion
|
69 |
+
│ │ ├── predictions.csv
|
70 |
+
│ │ └── task.json
|
71 |
+
│ ├── tai_safety_research
|
72 |
+
│ │ ├── predictions.csv
|
73 |
+
│ │ └── task.json
|
74 |
+
│ ├── terms_of_service
|
75 |
+
│ │ ├── predictions.csv
|
76 |
+
│ │ └── task.json
|
77 |
+
│ ├── tweet_eval_hate
|
78 |
+
│ │ ├── predictions.csv
|
79 |
+
│ │ └── task.json
|
80 |
+
│ └── twitter_complaints
|
81 |
+
│ ├── predictions.csv
|
82 |
+
│ └── task.json
|
83 |
+
├── my-raft-submission.py <- Script to load predictions during evaluation. Do not edit!
|
84 |
+
└── requirements.txt <- The requirements file for the submissions
|
85 |
+
```
|
86 |
+
|
87 |
+
### 3. Install the dependencies
|
88 |
+
|
89 |
+
The final step is to install the project's dependencies. We recommend creating a Python virtual environment for the project, e.g. with Anaconda:
|
90 |
+
|
91 |
+
```bash
|
92 |
+
# Navigate to the template repository
|
93 |
+
cd my-raft-submissions
|
94 |
+
# Create and activate a virtual environment
|
95 |
+
conda create -n raft python=3.8 && conda activate raft
|
96 |
+
# Install dependencies
|
97 |
+
python cli.py install
|
98 |
+
```
|
99 |
+
|
100 |
+
That's it! You're now all set to start generating predictions - see the instructions below on how to submit them to the Hub.
|
101 |
+
|
102 |
+
## Submitting to the leaderboard
|
103 |
+
|
104 |
+
To make a submission to the [leaderboard](https://huggingface.co/spaces/ought/raft-leaderboard), there are three main steps:
|
105 |
+
|
106 |
+
1. Generate predictions on the unlabeled test set of each task
|
107 |
+
2. Validate the predictions are compatible with the evaluation framework
|
108 |
+
3. Push the predictions to the Hub!
|
109 |
+
|
110 |
+
See the instructions below for more details.
|
111 |
+
|
112 |
+
### Rules
|
113 |
+
|
114 |
+
1. To prevent overfitting to the public leaderboard, we only evaluate **one submission per week**. You can push predictions to the Hub as many times as you wish, but we will only evaluate the most recent commit in a given week.
|
115 |
+
2. Transfer or meta-learning using other datasets, including further pre-training on other corpora, is allowed.
|
116 |
+
3. Use of unlabeled test data is allowed, as is it always available in the applied setting. For example, further pre-training using the unlabeled data for a task would be permitted.
|
117 |
+
4. Systems may be augmented with information retrieved from the internet, e.g. via automated web searches.
|
118 |
+
|
119 |
+
|
120 |
+
### Submission file format
|
121 |
+
|
122 |
+
For each task in RAFT, you should create a CSV file called `predictions.csv` with your model's predictions on the unlabeled test set. Each file should have exactly 2 columns:
|
123 |
+
|
124 |
+
* ID (int)
|
125 |
+
* Label (string)
|
126 |
+
|
127 |
+
See the dummy predictions in the `data` folder for examples with the expected format. Each `predictions.csv` file should be stored in the task's subfolder in `data` and at the end you should have something like the following:
|
128 |
+
|
129 |
+
```
|
130 |
+
data
|
131 |
+
├── ade_corpus_v2
|
132 |
+
│ ├── predictions.csv
|
133 |
+
│ └── task.json
|
134 |
+
├── banking_77
|
135 |
+
│ ├── predictions.csv
|
136 |
+
│ └── task.json
|
137 |
+
├── neurips_impact_statement_risks
|
138 |
+
│ ├── predictions.csv
|
139 |
+
│ └── task.json
|
140 |
+
├── one_stop_english
|
141 |
+
│ ├── predictions.csv
|
142 |
+
│ └── task.json
|
143 |
+
├── overruling
|
144 |
+
│ ├── predictions.csv
|
145 |
+
│ └── task.json
|
146 |
+
├── semiconductor_org_types
|
147 |
+
│ ├── predictions.csv
|
148 |
+
│ └── task.json
|
149 |
+
├── systematic_review_inclusion
|
150 |
+
│ ├── predictions.csv
|
151 |
+
│ └── task.json
|
152 |
+
├── tai_safety_research
|
153 |
+
│ ├── predictions.csv
|
154 |
+
│ └── task.json
|
155 |
+
├── terms_of_service
|
156 |
+
│ ├── predictions.csv
|
157 |
+
│ └── task.json
|
158 |
+
├── tweet_eval_hate
|
159 |
+
│ ├── predictions.csv
|
160 |
+
│ └── task.json
|
161 |
+
└── twitter_complaints
|
162 |
+
├── predictions.csv
|
163 |
+
└── task.json
|
164 |
+
```
|
165 |
+
|
166 |
+
### Validate your submission
|
167 |
+
|
168 |
+
To ensure that your submission files are correctly formatted, run the following command from the root of the repository:
|
169 |
+
|
170 |
+
```
|
171 |
+
python cli.py validate
|
172 |
+
```
|
173 |
+
|
174 |
+
If everything is correct, you should see the following message:
|
175 |
+
|
176 |
+
```
|
177 |
+
All submission files validated! ✨ 🚀 ✨
|
178 |
+
Now you can make a submission 🤗
|
179 |
+
```
|
180 |
+
|
181 |
+
### Push your submission to the Hugging Face Hub!
|
182 |
+
|
183 |
+
The final step is to commit your files and push them to the Hub:
|
184 |
+
|
185 |
+
```
|
186 |
+
python cli.py submit
|
187 |
+
```
|
188 |
+
|
189 |
+
If there are no errors, you should see the following message:
|
190 |
+
|
191 |
+
```
|
192 |
+
Submission successful! 🎉 🥳 🎉
|
193 |
+
Your submission will be evaulated on Sunday 05 September 2021 ⏳
|
194 |
+
```
|
195 |
+
|
196 |
+
where the evaluation is run every Sunday and your results will be visible on the leaderboard.
|
cookiecutter.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"hf_hub_username": "huggingface",
|
3 |
+
"hf_hub_password": "password",
|
4 |
+
"repo_name": "my-raft-submission"
|
5 |
+
}
|
hooks/post_gen_project.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import subprocess
|
2 |
+
|
3 |
+
subprocess.call("git pull origin main".split())
|
4 |
+
subprocess.call(["git", "add", "."])
|
5 |
+
subprocess.call(["git", "commit", "-m", "Add template files"])
|
hooks/pre_gen_project.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from huggingface_hub import HfApi, HfFolder, Repository
|
2 |
+
|
3 |
+
hf_user = "{{cookiecutter.hf_hub_username}}"
|
4 |
+
hf_password = "{{cookiecutter.hf_hub_password}}"
|
5 |
+
huggingface_token = HfApi().login(username=hf_user, password=hf_password)
|
6 |
+
HfFolder.save_token(huggingface_token)
|
7 |
+
|
8 |
+
repo_url = HfApi().create_repo(
|
9 |
+
token=huggingface_token,
|
10 |
+
name="{{cookiecutter.repo_name}}",
|
11 |
+
organization=hf_user,
|
12 |
+
exist_ok=True,
|
13 |
+
private=True,
|
14 |
+
)
|
15 |
+
|
16 |
+
model_repo = Repository(local_dir=".", clone_from=repo_url, use_auth_token=huggingface_token)
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
datasets>=1.11.0
|
2 |
+
typer
|
3 |
+
cookiecutter
|
4 |
+
huggingface-hub==0.0.16
|
validation.py
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from pathlib import Path
|
2 |
+
|
3 |
+
from datasets import load_dataset
|
4 |
+
|
5 |
+
|
6 |
+
def main():
|
7 |
+
tasks = ["safety_or_not"]
|
8 |
+
|
9 |
+
# check that all the expected files exist
|
10 |
+
prediction_files = list(Path(".").glob("*.csv"))
|
11 |
+
mismatched_files = set(tasks).symmetric_difference(set([f.stem for f in prediction_files]))
|
12 |
+
if mismatched_files:
|
13 |
+
raise ValueError(f"Incorrect number of files! Expected {len(tasks)} files, but got {len(prediction_files)}.")
|
14 |
+
|
15 |
+
# check we can load the dataset for each task
|
16 |
+
load_errors = []
|
17 |
+
for task in tasks:
|
18 |
+
try:
|
19 |
+
dset = load_dataset("../raft_submission", task)
|
20 |
+
except Exception as e:
|
21 |
+
load_errors.append(e)
|
22 |
+
|
23 |
+
if load_errors:
|
24 |
+
raise ValueError(f"Could not load predictions! Errors: {load_errors}")
|
25 |
+
|
26 |
+
|
27 |
+
if __name__ == "__main__":
|
28 |
+
main()
|
{{cookiecutter.repo_name}}/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Apache License
|
2 |
+
Version 2.0, January 2004
|
3 |
+
http://www.apache.org/licenses/
|
4 |
+
|
5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6 |
+
|
7 |
+
1. Definitions.
|
8 |
+
|
9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
11 |
+
|
12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13 |
+
the copyright owner that is granting the License.
|
14 |
+
|
15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
16 |
+
other entities that control, are controlled by, or are under common
|
17 |
+
control with that entity. For the purposes of this definition,
|
18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
19 |
+
direction or management of such entity, whether by contract or
|
20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22 |
+
|
23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24 |
+
exercising permissions granted by this License.
|
25 |
+
|
26 |
+
"Source" form shall mean the preferred form for making modifications,
|
27 |
+
including but not limited to software source code, documentation
|
28 |
+
source, and configuration files.
|
29 |
+
|
30 |
+
"Object" form shall mean any form resulting from mechanical
|
31 |
+
transformation or translation of a Source form, including but
|
32 |
+
not limited to compiled object code, generated documentation,
|
33 |
+
and conversions to other media types.
|
34 |
+
|
35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
36 |
+
Object form, made available under the License, as indicated by a
|
37 |
+
copyright notice that is included in or attached to the work
|
38 |
+
(an example is provided in the Appendix below).
|
39 |
+
|
40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41 |
+
form, that is based on (or derived from) the Work and for which the
|
42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
44 |
+
of this License, Derivative Works shall not include works that remain
|
45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46 |
+
the Work and Derivative Works thereof.
|
47 |
+
|
48 |
+
"Contribution" shall mean any work of authorship, including
|
49 |
+
the original version of the Work and any modifications or additions
|
50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
54 |
+
means any form of electronic, verbal, or written communication sent
|
55 |
+
to the Licensor or its representatives, including but not limited to
|
56 |
+
communication on electronic mailing lists, source code control systems,
|
57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
59 |
+
excluding communication that is conspicuously marked or otherwise
|
60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
61 |
+
|
62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
64 |
+
subsequently incorporated within the Work.
|
65 |
+
|
66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
71 |
+
Work and such Derivative Works in Source or Object form.
|
72 |
+
|
73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76 |
+
(except as stated in this section) patent license to make, have made,
|
77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78 |
+
where such license applies only to those patent claims licensable
|
79 |
+
by such Contributor that are necessarily infringed by their
|
80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
82 |
+
institute patent litigation against any entity (including a
|
83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84 |
+
or a Contribution incorporated within the Work constitutes direct
|
85 |
+
or contributory patent infringement, then any patent licenses
|
86 |
+
granted to You under this License for that Work shall terminate
|
87 |
+
as of the date such litigation is filed.
|
88 |
+
|
89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
90 |
+
Work or Derivative Works thereof in any medium, with or without
|
91 |
+
modifications, and in Source or Object form, provided that You
|
92 |
+
meet the following conditions:
|
93 |
+
|
94 |
+
(a) You must give any other recipients of the Work or
|
95 |
+
Derivative Works a copy of this License; and
|
96 |
+
|
97 |
+
(b) You must cause any modified files to carry prominent notices
|
98 |
+
stating that You changed the files; and
|
99 |
+
|
100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
101 |
+
that You distribute, all copyright, patent, trademark, and
|
102 |
+
attribution notices from the Source form of the Work,
|
103 |
+
excluding those notices that do not pertain to any part of
|
104 |
+
the Derivative Works; and
|
105 |
+
|
106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107 |
+
distribution, then any Derivative Works that You distribute must
|
108 |
+
include a readable copy of the attribution notices contained
|
109 |
+
within such NOTICE file, excluding those notices that do not
|
110 |
+
pertain to any part of the Derivative Works, in at least one
|
111 |
+
of the following places: within a NOTICE text file distributed
|
112 |
+
as part of the Derivative Works; within the Source form or
|
113 |
+
documentation, if provided along with the Derivative Works; or,
|
114 |
+
within a display generated by the Derivative Works, if and
|
115 |
+
wherever such third-party notices normally appear. The contents
|
116 |
+
of the NOTICE file are for informational purposes only and
|
117 |
+
do not modify the License. You may add Your own attribution
|
118 |
+
notices within Derivative Works that You distribute, alongside
|
119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
120 |
+
that such additional attribution notices cannot be construed
|
121 |
+
as modifying the License.
|
122 |
+
|
123 |
+
You may add Your own copyright statement to Your modifications and
|
124 |
+
may provide additional or different license terms and conditions
|
125 |
+
for use, reproduction, or distribution of Your modifications, or
|
126 |
+
for any such Derivative Works as a whole, provided Your use,
|
127 |
+
reproduction, and distribution of the Work otherwise complies with
|
128 |
+
the conditions stated in this License.
|
129 |
+
|
130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
132 |
+
by You to the Licensor shall be under the terms and conditions of
|
133 |
+
this License, without any additional terms or conditions.
|
134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135 |
+
the terms of any separate license agreement you may have executed
|
136 |
+
with Licensor regarding such Contributions.
|
137 |
+
|
138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
140 |
+
except as required for reasonable and customary use in describing the
|
141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
142 |
+
|
143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144 |
+
agreed to in writing, Licensor provides the Work (and each
|
145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147 |
+
implied, including, without limitation, any warranties or conditions
|
148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150 |
+
appropriateness of using or redistributing the Work and assume any
|
151 |
+
risks associated with Your exercise of permissions under this License.
|
152 |
+
|
153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
154 |
+
whether in tort (including negligence), contract, or otherwise,
|
155 |
+
unless required by applicable law (such as deliberate and grossly
|
156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157 |
+
liable to You for damages, including any direct, indirect, special,
|
158 |
+
incidental, or consequential damages of any character arising as a
|
159 |
+
result of this License or out of the use or inability to use the
|
160 |
+
Work (including but not limited to damages for loss of goodwill,
|
161 |
+
work stoppage, computer failure or malfunction, or any and all
|
162 |
+
other commercial damages or losses), even if such Contributor
|
163 |
+
has been advised of the possibility of such damages.
|
164 |
+
|
165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168 |
+
or other liability obligations and/or rights consistent with this
|
169 |
+
License. However, in accepting such obligations, You may act only
|
170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171 |
+
of any other Contributor, and only if You agree to indemnify,
|
172 |
+
defend, and hold each Contributor harmless for any liability
|
173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
174 |
+
of your accepting any such warranty or additional liability.
|
175 |
+
|
176 |
+
END OF TERMS AND CONDITIONS
|
177 |
+
|
178 |
+
APPENDIX: How to apply the Apache License to your work.
|
179 |
+
|
180 |
+
To apply the Apache License to your work, attach the following
|
181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182 |
+
replaced with your own identifying information. (Don't include
|
183 |
+
the brackets!) The text should be enclosed in the appropriate
|
184 |
+
comment syntax for the file format. We also recommend that a
|
185 |
+
file or class name and description of purpose be included on the
|
186 |
+
same "printed page" as the copyright notice for easier
|
187 |
+
identification within third-party archives.
|
188 |
+
|
189 |
+
Copyright [yyyy] [name of copyright owner]
|
190 |
+
|
191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192 |
+
you may not use this file except in compliance with the License.
|
193 |
+
You may obtain a copy of the License at
|
194 |
+
|
195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
196 |
+
|
197 |
+
Unless required by applicable law or agreed to in writing, software
|
198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200 |
+
See the License for the specific language governing permissions and
|
201 |
+
limitations under the License.
|
{{cookiecutter.repo_name}}/README.md
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
benchmark: raft
|
3 |
+
type: prediction
|
4 |
+
---
|
5 |
+
|
6 |
+
# RAFT submissions for {{cookiecutter.repo_name}}
|
7 |
+
|
8 |
+
## Submitting to the leaderboard
|
9 |
+
|
10 |
+
To make a submission to the [leaderboard](https://huggingface.co/spaces/ought/raft-leaderboard), there are three main steps:
|
11 |
+
|
12 |
+
1. Generate predictions on the unlabeled test set of each task
|
13 |
+
2. Validate the predictions are compatible with the evaluation framework
|
14 |
+
3. Push the predictions to the Hub!
|
15 |
+
|
16 |
+
See the instructions below for more details.
|
17 |
+
|
18 |
+
### Rules
|
19 |
+
|
20 |
+
1. To prevent overfitting to the public leaderboard, we only evaluate **one submission per week**. You can push predictions to the Hub as many times as you wish, but we will only evaluate the most recent commit in a given week.
|
21 |
+
2. Transfer or meta-learning using other datasets, including further pre-training on other corpora, is allowed.
|
22 |
+
3. Use of unlabeled test data is allowed, as is it always available in the applied setting. For example, further pre-training using the unlabeled data for a task would be permitted.
|
23 |
+
4. Systems may be augmented with information retrieved from the internet, e.g. via automated web searches.
|
24 |
+
|
25 |
+
### Submission file format
|
26 |
+
|
27 |
+
For each task in RAFT, you should create a CSV file called `predictions.csv` with your model's predictions on the unlabeled test set. Each file should have exactly 2 columns:
|
28 |
+
|
29 |
+
* ID (int)
|
30 |
+
* Label (string)
|
31 |
+
|
32 |
+
See the dummy predictions in the `data` folder for examples with the expected format. Each `predictions.csv` file should be stored in the task's subfolder in `data` and at the end you should have something like the following:
|
33 |
+
|
34 |
+
```
|
35 |
+
data
|
36 |
+
├── ade_corpus_v2
|
37 |
+
│ ├── predictions.csv
|
38 |
+
│ └── task.json
|
39 |
+
├── banking_77
|
40 |
+
│ ├── predictions.csv
|
41 |
+
│ └── task.json
|
42 |
+
├── neurips_impact_statement_risks
|
43 |
+
│ ├── predictions.csv
|
44 |
+
│ └── task.json
|
45 |
+
├── one_stop_english
|
46 |
+
│ ├── predictions.csv
|
47 |
+
│ └── task.json
|
48 |
+
├── overruling
|
49 |
+
│ ├── predictions.csv
|
50 |
+
│ └── task.json
|
51 |
+
├── semiconductor_org_types
|
52 |
+
│ ├── predictions.csv
|
53 |
+
│ └── task.json
|
54 |
+
├── systematic_review_inclusion
|
55 |
+
│ ├── predictions.csv
|
56 |
+
│ └── task.json
|
57 |
+
├── tai_safety_research
|
58 |
+
│ ├── predictions.csv
|
59 |
+
│ └── task.json
|
60 |
+
├── terms_of_service
|
61 |
+
│ ├── predictions.csv
|
62 |
+
│ └── task.json
|
63 |
+
├── tweet_eval_hate
|
64 |
+
│ ├── predictions.csv
|
65 |
+
│ └── task.json
|
66 |
+
└── twitter_complaints
|
67 |
+
├── predictions.csv
|
68 |
+
└── task.json
|
69 |
+
```
|
70 |
+
|
71 |
+
### Validate your submission
|
72 |
+
|
73 |
+
To ensure that your submission files are correctly formatted, run the following command from the root of the repository:
|
74 |
+
|
75 |
+
```
|
76 |
+
python cli.py validate
|
77 |
+
```
|
78 |
+
|
79 |
+
If everything is correct, you should see the following message:
|
80 |
+
|
81 |
+
```
|
82 |
+
All submission files validated! ✨ 🚀 ✨
|
83 |
+
Now you can make a submission 🤗
|
84 |
+
```
|
85 |
+
|
86 |
+
### Push your submission to the Hugging Face Hub!
|
87 |
+
|
88 |
+
The final step is to commit your files and push them to the Hub:
|
89 |
+
|
90 |
+
```bash
|
91 |
+
git add .
|
92 |
+
git commit -m "Some commit message"
|
93 |
+
git push -f origin HEAD:main
|
94 |
+
```
|
{{cookiecutter.repo_name}}/cli.py
ADDED
@@ -0,0 +1,115 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import datetime
|
2 |
+
import subprocess
|
3 |
+
from pathlib import Path
|
4 |
+
|
5 |
+
import pandas as pd
|
6 |
+
import typer
|
7 |
+
from click.utils import echo
|
8 |
+
from datasets import get_dataset_config_names, load_dataset
|
9 |
+
|
10 |
+
CSV_SCHEMA = {
|
11 |
+
"banking_77": (5000, 2),
|
12 |
+
"overruling": (2350, 2),
|
13 |
+
"semiconductor_org_types": (449, 2),
|
14 |
+
"ade_corpus_v2": (5000, 2),
|
15 |
+
"twitter_complaints": (3399, 2),
|
16 |
+
"neurips_impact_statement_risks": (150, 2),
|
17 |
+
"systematic_review_inclusion": (2244, 2),
|
18 |
+
"terms_of_service": (5000, 2),
|
19 |
+
"tai_safety_research": (1639, 2),
|
20 |
+
"one_stop_english": (518, 2),
|
21 |
+
"tweet_eval_hate": (2966, 2),
|
22 |
+
}
|
23 |
+
|
24 |
+
app = typer.Typer()
|
25 |
+
|
26 |
+
|
27 |
+
@app.command()
|
28 |
+
def install():
|
29 |
+
typer.echo("Installing dependencies ...")
|
30 |
+
try:
|
31 |
+
p = subprocess.run(
|
32 |
+
"pip install --upgrade pip".split(),
|
33 |
+
stderr=subprocess.PIPE,
|
34 |
+
stdout=subprocess.PIPE,
|
35 |
+
check=True,
|
36 |
+
encoding="utf-8",
|
37 |
+
)
|
38 |
+
except subprocess.CalledProcessError as exc:
|
39 |
+
raise EnvironmentError(exc.stderr)
|
40 |
+
|
41 |
+
try:
|
42 |
+
p = subprocess.run(
|
43 |
+
"pip install --upgrade -r requirements.txt".split(),
|
44 |
+
stderr=subprocess.PIPE,
|
45 |
+
stdout=subprocess.PIPE,
|
46 |
+
check=True,
|
47 |
+
encoding="utf-8",
|
48 |
+
)
|
49 |
+
except subprocess.CalledProcessError as exc:
|
50 |
+
raise EnvironmentError(exc.stderr)
|
51 |
+
|
52 |
+
typer.echo("Success!")
|
53 |
+
|
54 |
+
|
55 |
+
@app.command()
|
56 |
+
def validate():
|
57 |
+
tasks = get_dataset_config_names("ought/raft")
|
58 |
+
|
59 |
+
# Check that all the expected files exist
|
60 |
+
prediction_files = list(Path("data").rglob("*.csv"))
|
61 |
+
mismatched_files = set(tasks).symmetric_difference(set([f.parent.name for f in prediction_files]))
|
62 |
+
if mismatched_files:
|
63 |
+
raise ValueError(f"Incorrect number of files! Expected {len(tasks)} files, but got {len(prediction_files)}.")
|
64 |
+
|
65 |
+
# Check all files have the expected shape (number of rows, number of columns)
|
66 |
+
# TODO(lewtun): Add a check for the IDs per file
|
67 |
+
shape_errors = []
|
68 |
+
column_errors = []
|
69 |
+
for prediction_file in prediction_files:
|
70 |
+
df = pd.read_csv(prediction_file)
|
71 |
+
incorrect_shape = df.shape != CSV_SCHEMA[prediction_file.parent.name]
|
72 |
+
if incorrect_shape:
|
73 |
+
shape_errors.append(prediction_file)
|
74 |
+
incorrect_columns = sorted(df.columns) != ["ID", "Label"]
|
75 |
+
if incorrect_columns:
|
76 |
+
column_errors.append(prediction_file)
|
77 |
+
|
78 |
+
if shape_errors:
|
79 |
+
raise ValueError(f"Incorrect CSV shapes in files: {shape_errors}")
|
80 |
+
|
81 |
+
if column_errors:
|
82 |
+
raise ValueError(f"Incorrect CSV columns in files: {column_errors}")
|
83 |
+
|
84 |
+
# Check we can load the dataset for each task
|
85 |
+
load_errors = []
|
86 |
+
for task in tasks:
|
87 |
+
try:
|
88 |
+
_ = load_dataset("../{{cookiecutter.repo_name}}", task)
|
89 |
+
except Exception as e:
|
90 |
+
load_errors.append(e)
|
91 |
+
|
92 |
+
if load_errors:
|
93 |
+
raise ValueError(f"Could not load predictions! Errors: {load_errors}")
|
94 |
+
|
95 |
+
typer.echo("All submission files validated! ✨ 🚀 ✨")
|
96 |
+
typer.echo("Now you can make a submission 🤗")
|
97 |
+
|
98 |
+
|
99 |
+
@app.command()
|
100 |
+
def submit():
|
101 |
+
subprocess.call("git pull origin main".split())
|
102 |
+
subprocess.call(["git", "add", "."])
|
103 |
+
subprocess.call(["git", "commit", "-m", "Submission"])
|
104 |
+
subprocess.call(["git", "push"])
|
105 |
+
|
106 |
+
today = datetime.date.today()
|
107 |
+
# MON = 0, SUN = 6 -> SUN = 0 .. SAT = 6
|
108 |
+
idx = (today.weekday() + 1) % 7
|
109 |
+
sun = today + datetime.timedelta(7 - idx)
|
110 |
+
typer.echo("Submission successful! 🎉 🥳 🎉")
|
111 |
+
typer.echo(f"Your submission will be evaulated on {sun:%A %d %B %Y} ⏳")
|
112 |
+
|
113 |
+
|
114 |
+
if __name__ == "__main__":
|
115 |
+
app()
|
{{cookiecutter.repo_name}}/data/ade_corpus_v2/predictions.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
{{cookiecutter.repo_name}}/data/ade_corpus_v2/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "ade_corpus_v2", "description": "", "data_columns": ["Sentence", "ID"], "label_columns": {"Label": ["ADE-related", "not ADE-related"]}}
|
{{cookiecutter.repo_name}}/data/banking_77/predictions.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
{{cookiecutter.repo_name}}/data/banking_77/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "banking_77", "description": "", "data_columns": ["Query", "ID"], "label_columns": {"Label": ["Refund_not_showing_up", "activate_my_card", "age_limit", "apple_pay_or_google_pay", "atm_support", "automatic_top_up", "balance_not_updated_after_bank_transfer", "balance_not_updated_after_cheque_or_cash_deposit", "beneficiary_not_allowed", "cancel_transfer", "card_about_to_expire", "card_acceptance", "card_arrival", "card_delivery_estimate", "card_linking", "card_not_working", "card_payment_fee_charged", "card_payment_not_recognised", "card_payment_wrong_exchange_rate", "card_swallowed", "cash_withdrawal_charge", "cash_withdrawal_not_recognised", "change_pin", "compromised_card", "contactless_not_working", "country_support", "declined_card_payment", "declined_cash_withdrawal", "declined_transfer", "direct_debit_payment_not_recognised", "disposable_card_limits", "edit_personal_details", "exchange_charge", "exchange_rate", "exchange_via_app", "extra_charge_on_statement", "failed_transfer", "fiat_currency_support", "get_disposable_virtual_card", "get_physical_card", "getting_spare_card", "getting_virtual_card", "lost_or_stolen_card", "lost_or_stolen_phone", "order_physical_card", "passcode_forgotten", "pending_card_payment", "pending_cash_withdrawal", "pending_top_up", "pending_transfer", "pin_blocked", "receiving_money", "request_refund", "reverted_card_payment?", "supported_cards_and_currencies", "terminate_account", "top_up_by_bank_transfer_charge", "top_up_by_card_charge", "top_up_by_cash_or_cheque", "top_up_failed", "top_up_limits", "top_up_reverted", "topping_up_by_card", "transaction_charged_twice", "transfer_fee_charged", "transfer_into_account", "transfer_not_received_by_recipient", "transfer_timing", "unable_to_verify_identity", "verify_my_identity", "verify_source_of_funds", "verify_top_up", "virtual_card_not_working", "visa_or_mastercard", "why_verify_identity", "wrong_amount_of_cash_received", "wrong_exchange_rate_for_cash_withdrawal"]}}
|
{{cookiecutter.repo_name}}/data/neurips_impact_statement_risks/predictions.csv
ADDED
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ID,Label
|
2 |
+
50,doesn't mention a harmful application
|
3 |
+
51,mentions a harmful application
|
4 |
+
52,doesn't mention a harmful application
|
5 |
+
53,mentions a harmful application
|
6 |
+
54,mentions a harmful application
|
7 |
+
55,doesn't mention a harmful application
|
8 |
+
56,doesn't mention a harmful application
|
9 |
+
57,doesn't mention a harmful application
|
10 |
+
58,doesn't mention a harmful application
|
11 |
+
59,mentions a harmful application
|
12 |
+
60,mentions a harmful application
|
13 |
+
61,doesn't mention a harmful application
|
14 |
+
62,doesn't mention a harmful application
|
15 |
+
63,mentions a harmful application
|
16 |
+
64,mentions a harmful application
|
17 |
+
65,doesn't mention a harmful application
|
18 |
+
66,doesn't mention a harmful application
|
19 |
+
67,mentions a harmful application
|
20 |
+
68,doesn't mention a harmful application
|
21 |
+
69,doesn't mention a harmful application
|
22 |
+
70,mentions a harmful application
|
23 |
+
71,mentions a harmful application
|
24 |
+
72,doesn't mention a harmful application
|
25 |
+
73,doesn't mention a harmful application
|
26 |
+
74,mentions a harmful application
|
27 |
+
75,mentions a harmful application
|
28 |
+
76,mentions a harmful application
|
29 |
+
77,doesn't mention a harmful application
|
30 |
+
78,mentions a harmful application
|
31 |
+
79,mentions a harmful application
|
32 |
+
80,doesn't mention a harmful application
|
33 |
+
81,doesn't mention a harmful application
|
34 |
+
82,doesn't mention a harmful application
|
35 |
+
83,mentions a harmful application
|
36 |
+
84,mentions a harmful application
|
37 |
+
85,doesn't mention a harmful application
|
38 |
+
86,mentions a harmful application
|
39 |
+
87,doesn't mention a harmful application
|
40 |
+
88,mentions a harmful application
|
41 |
+
89,mentions a harmful application
|
42 |
+
90,doesn't mention a harmful application
|
43 |
+
91,mentions a harmful application
|
44 |
+
92,mentions a harmful application
|
45 |
+
93,mentions a harmful application
|
46 |
+
94,mentions a harmful application
|
47 |
+
95,mentions a harmful application
|
48 |
+
96,doesn't mention a harmful application
|
49 |
+
97,doesn't mention a harmful application
|
50 |
+
98,mentions a harmful application
|
51 |
+
99,mentions a harmful application
|
52 |
+
100,doesn't mention a harmful application
|
53 |
+
101,doesn't mention a harmful application
|
54 |
+
102,doesn't mention a harmful application
|
55 |
+
103,mentions a harmful application
|
56 |
+
104,mentions a harmful application
|
57 |
+
105,mentions a harmful application
|
58 |
+
106,mentions a harmful application
|
59 |
+
107,doesn't mention a harmful application
|
60 |
+
108,doesn't mention a harmful application
|
61 |
+
109,doesn't mention a harmful application
|
62 |
+
110,mentions a harmful application
|
63 |
+
111,doesn't mention a harmful application
|
64 |
+
112,mentions a harmful application
|
65 |
+
113,mentions a harmful application
|
66 |
+
114,doesn't mention a harmful application
|
67 |
+
115,mentions a harmful application
|
68 |
+
116,mentions a harmful application
|
69 |
+
117,mentions a harmful application
|
70 |
+
118,doesn't mention a harmful application
|
71 |
+
119,mentions a harmful application
|
72 |
+
120,doesn't mention a harmful application
|
73 |
+
121,doesn't mention a harmful application
|
74 |
+
122,doesn't mention a harmful application
|
75 |
+
123,mentions a harmful application
|
76 |
+
124,doesn't mention a harmful application
|
77 |
+
125,doesn't mention a harmful application
|
78 |
+
126,mentions a harmful application
|
79 |
+
127,doesn't mention a harmful application
|
80 |
+
128,mentions a harmful application
|
81 |
+
129,mentions a harmful application
|
82 |
+
130,doesn't mention a harmful application
|
83 |
+
131,doesn't mention a harmful application
|
84 |
+
132,mentions a harmful application
|
85 |
+
133,doesn't mention a harmful application
|
86 |
+
134,mentions a harmful application
|
87 |
+
135,mentions a harmful application
|
88 |
+
136,doesn't mention a harmful application
|
89 |
+
137,mentions a harmful application
|
90 |
+
138,mentions a harmful application
|
91 |
+
139,mentions a harmful application
|
92 |
+
140,doesn't mention a harmful application
|
93 |
+
141,mentions a harmful application
|
94 |
+
142,doesn't mention a harmful application
|
95 |
+
143,mentions a harmful application
|
96 |
+
144,doesn't mention a harmful application
|
97 |
+
145,mentions a harmful application
|
98 |
+
146,mentions a harmful application
|
99 |
+
147,doesn't mention a harmful application
|
100 |
+
148,mentions a harmful application
|
101 |
+
149,mentions a harmful application
|
102 |
+
150,doesn't mention a harmful application
|
103 |
+
151,mentions a harmful application
|
104 |
+
152,doesn't mention a harmful application
|
105 |
+
153,mentions a harmful application
|
106 |
+
154,doesn't mention a harmful application
|
107 |
+
155,mentions a harmful application
|
108 |
+
156,doesn't mention a harmful application
|
109 |
+
157,mentions a harmful application
|
110 |
+
158,mentions a harmful application
|
111 |
+
159,mentions a harmful application
|
112 |
+
160,doesn't mention a harmful application
|
113 |
+
161,mentions a harmful application
|
114 |
+
162,doesn't mention a harmful application
|
115 |
+
163,mentions a harmful application
|
116 |
+
164,doesn't mention a harmful application
|
117 |
+
165,doesn't mention a harmful application
|
118 |
+
166,doesn't mention a harmful application
|
119 |
+
167,doesn't mention a harmful application
|
120 |
+
168,doesn't mention a harmful application
|
121 |
+
169,doesn't mention a harmful application
|
122 |
+
170,doesn't mention a harmful application
|
123 |
+
171,doesn't mention a harmful application
|
124 |
+
172,mentions a harmful application
|
125 |
+
173,doesn't mention a harmful application
|
126 |
+
174,mentions a harmful application
|
127 |
+
175,doesn't mention a harmful application
|
128 |
+
176,doesn't mention a harmful application
|
129 |
+
177,mentions a harmful application
|
130 |
+
178,mentions a harmful application
|
131 |
+
179,doesn't mention a harmful application
|
132 |
+
180,mentions a harmful application
|
133 |
+
181,doesn't mention a harmful application
|
134 |
+
182,doesn't mention a harmful application
|
135 |
+
183,mentions a harmful application
|
136 |
+
184,mentions a harmful application
|
137 |
+
185,mentions a harmful application
|
138 |
+
186,doesn't mention a harmful application
|
139 |
+
187,doesn't mention a harmful application
|
140 |
+
188,mentions a harmful application
|
141 |
+
189,mentions a harmful application
|
142 |
+
190,doesn't mention a harmful application
|
143 |
+
191,mentions a harmful application
|
144 |
+
192,doesn't mention a harmful application
|
145 |
+
193,mentions a harmful application
|
146 |
+
194,doesn't mention a harmful application
|
147 |
+
195,doesn't mention a harmful application
|
148 |
+
196,doesn't mention a harmful application
|
149 |
+
197,mentions a harmful application
|
150 |
+
198,mentions a harmful application
|
151 |
+
199,doesn't mention a harmful application
|
{{cookiecutter.repo_name}}/data/neurips_impact_statement_risks/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "neurips_impact_statement_risks", "description": "", "data_columns": ["Paper title", "Paper link", "Impact statement", "ID"], "label_columns": {"Label": ["doesn't mention a harmful application", "mentions a harmful application"]}}
|
{{cookiecutter.repo_name}}/data/one_stop_english/predictions.csv
ADDED
@@ -0,0 +1,519 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ID,Label
|
2 |
+
50,advanced
|
3 |
+
51,elementary
|
4 |
+
52,advanced
|
5 |
+
53,intermediate
|
6 |
+
54,elementary
|
7 |
+
55,elementary
|
8 |
+
56,advanced
|
9 |
+
57,advanced
|
10 |
+
58,advanced
|
11 |
+
59,advanced
|
12 |
+
60,elementary
|
13 |
+
61,intermediate
|
14 |
+
62,elementary
|
15 |
+
63,advanced
|
16 |
+
64,advanced
|
17 |
+
65,intermediate
|
18 |
+
66,intermediate
|
19 |
+
67,elementary
|
20 |
+
68,elementary
|
21 |
+
69,advanced
|
22 |
+
70,advanced
|
23 |
+
71,elementary
|
24 |
+
72,advanced
|
25 |
+
73,advanced
|
26 |
+
74,intermediate
|
27 |
+
75,elementary
|
28 |
+
76,elementary
|
29 |
+
77,advanced
|
30 |
+
78,advanced
|
31 |
+
79,elementary
|
32 |
+
80,elementary
|
33 |
+
81,intermediate
|
34 |
+
82,intermediate
|
35 |
+
83,elementary
|
36 |
+
84,advanced
|
37 |
+
85,intermediate
|
38 |
+
86,elementary
|
39 |
+
87,intermediate
|
40 |
+
88,elementary
|
41 |
+
89,intermediate
|
42 |
+
90,advanced
|
43 |
+
91,advanced
|
44 |
+
92,advanced
|
45 |
+
93,elementary
|
46 |
+
94,elementary
|
47 |
+
95,advanced
|
48 |
+
96,intermediate
|
49 |
+
97,elementary
|
50 |
+
98,advanced
|
51 |
+
99,elementary
|
52 |
+
100,intermediate
|
53 |
+
101,intermediate
|
54 |
+
102,elementary
|
55 |
+
103,intermediate
|
56 |
+
104,advanced
|
57 |
+
105,elementary
|
58 |
+
106,elementary
|
59 |
+
107,intermediate
|
60 |
+
108,elementary
|
61 |
+
109,elementary
|
62 |
+
110,elementary
|
63 |
+
111,advanced
|
64 |
+
112,advanced
|
65 |
+
113,elementary
|
66 |
+
114,elementary
|
67 |
+
115,advanced
|
68 |
+
116,advanced
|
69 |
+
117,advanced
|
70 |
+
118,elementary
|
71 |
+
119,intermediate
|
72 |
+
120,elementary
|
73 |
+
121,intermediate
|
74 |
+
122,intermediate
|
75 |
+
123,intermediate
|
76 |
+
124,elementary
|
77 |
+
125,intermediate
|
78 |
+
126,elementary
|
79 |
+
127,advanced
|
80 |
+
128,intermediate
|
81 |
+
129,advanced
|
82 |
+
130,advanced
|
83 |
+
131,elementary
|
84 |
+
132,advanced
|
85 |
+
133,intermediate
|
86 |
+
134,intermediate
|
87 |
+
135,elementary
|
88 |
+
136,elementary
|
89 |
+
137,advanced
|
90 |
+
138,elementary
|
91 |
+
139,elementary
|
92 |
+
140,intermediate
|
93 |
+
141,intermediate
|
94 |
+
142,elementary
|
95 |
+
143,intermediate
|
96 |
+
144,intermediate
|
97 |
+
145,advanced
|
98 |
+
146,elementary
|
99 |
+
147,advanced
|
100 |
+
148,advanced
|
101 |
+
149,intermediate
|
102 |
+
150,advanced
|
103 |
+
151,elementary
|
104 |
+
152,intermediate
|
105 |
+
153,intermediate
|
106 |
+
154,advanced
|
107 |
+
155,advanced
|
108 |
+
156,elementary
|
109 |
+
157,advanced
|
110 |
+
158,elementary
|
111 |
+
159,elementary
|
112 |
+
160,advanced
|
113 |
+
161,advanced
|
114 |
+
162,elementary
|
115 |
+
163,intermediate
|
116 |
+
164,advanced
|
117 |
+
165,elementary
|
118 |
+
166,intermediate
|
119 |
+
167,intermediate
|
120 |
+
168,elementary
|
121 |
+
169,advanced
|
122 |
+
170,elementary
|
123 |
+
171,elementary
|
124 |
+
172,elementary
|
125 |
+
173,advanced
|
126 |
+
174,intermediate
|
127 |
+
175,elementary
|
128 |
+
176,intermediate
|
129 |
+
177,intermediate
|
130 |
+
178,advanced
|
131 |
+
179,elementary
|
132 |
+
180,intermediate
|
133 |
+
181,advanced
|
134 |
+
182,elementary
|
135 |
+
183,elementary
|
136 |
+
184,advanced
|
137 |
+
185,elementary
|
138 |
+
186,elementary
|
139 |
+
187,intermediate
|
140 |
+
188,advanced
|
141 |
+
189,elementary
|
142 |
+
190,intermediate
|
143 |
+
191,advanced
|
144 |
+
192,elementary
|
145 |
+
193,advanced
|
146 |
+
194,elementary
|
147 |
+
195,advanced
|
148 |
+
196,elementary
|
149 |
+
197,elementary
|
150 |
+
198,elementary
|
151 |
+
199,intermediate
|
152 |
+
200,advanced
|
153 |
+
201,elementary
|
154 |
+
202,advanced
|
155 |
+
203,elementary
|
156 |
+
204,advanced
|
157 |
+
205,advanced
|
158 |
+
206,advanced
|
159 |
+
207,advanced
|
160 |
+
208,advanced
|
161 |
+
209,intermediate
|
162 |
+
210,advanced
|
163 |
+
211,intermediate
|
164 |
+
212,intermediate
|
165 |
+
213,advanced
|
166 |
+
214,intermediate
|
167 |
+
215,advanced
|
168 |
+
216,intermediate
|
169 |
+
217,elementary
|
170 |
+
218,intermediate
|
171 |
+
219,advanced
|
172 |
+
220,elementary
|
173 |
+
221,advanced
|
174 |
+
222,advanced
|
175 |
+
223,intermediate
|
176 |
+
224,elementary
|
177 |
+
225,elementary
|
178 |
+
226,intermediate
|
179 |
+
227,advanced
|
180 |
+
228,elementary
|
181 |
+
229,advanced
|
182 |
+
230,advanced
|
183 |
+
231,elementary
|
184 |
+
232,elementary
|
185 |
+
233,elementary
|
186 |
+
234,advanced
|
187 |
+
235,advanced
|
188 |
+
236,elementary
|
189 |
+
237,elementary
|
190 |
+
238,advanced
|
191 |
+
239,intermediate
|
192 |
+
240,elementary
|
193 |
+
241,advanced
|
194 |
+
242,elementary
|
195 |
+
243,advanced
|
196 |
+
244,advanced
|
197 |
+
245,advanced
|
198 |
+
246,elementary
|
199 |
+
247,elementary
|
200 |
+
248,advanced
|
201 |
+
249,intermediate
|
202 |
+
250,advanced
|
203 |
+
251,advanced
|
204 |
+
252,elementary
|
205 |
+
253,elementary
|
206 |
+
254,advanced
|
207 |
+
255,elementary
|
208 |
+
256,advanced
|
209 |
+
257,elementary
|
210 |
+
258,intermediate
|
211 |
+
259,advanced
|
212 |
+
260,intermediate
|
213 |
+
261,elementary
|
214 |
+
262,intermediate
|
215 |
+
263,intermediate
|
216 |
+
264,intermediate
|
217 |
+
265,intermediate
|
218 |
+
266,advanced
|
219 |
+
267,elementary
|
220 |
+
268,elementary
|
221 |
+
269,advanced
|
222 |
+
270,elementary
|
223 |
+
271,advanced
|
224 |
+
272,intermediate
|
225 |
+
273,advanced
|
226 |
+
274,elementary
|
227 |
+
275,elementary
|
228 |
+
276,intermediate
|
229 |
+
277,elementary
|
230 |
+
278,intermediate
|
231 |
+
279,elementary
|
232 |
+
280,elementary
|
233 |
+
281,intermediate
|
234 |
+
282,advanced
|
235 |
+
283,intermediate
|
236 |
+
284,intermediate
|
237 |
+
285,elementary
|
238 |
+
286,elementary
|
239 |
+
287,elementary
|
240 |
+
288,elementary
|
241 |
+
289,advanced
|
242 |
+
290,elementary
|
243 |
+
291,intermediate
|
244 |
+
292,intermediate
|
245 |
+
293,advanced
|
246 |
+
294,advanced
|
247 |
+
295,elementary
|
248 |
+
296,intermediate
|
249 |
+
297,advanced
|
250 |
+
298,elementary
|
251 |
+
299,intermediate
|
252 |
+
300,advanced
|
253 |
+
301,advanced
|
254 |
+
302,intermediate
|
255 |
+
303,intermediate
|
256 |
+
304,elementary
|
257 |
+
305,intermediate
|
258 |
+
306,elementary
|
259 |
+
307,intermediate
|
260 |
+
308,elementary
|
261 |
+
309,elementary
|
262 |
+
310,advanced
|
263 |
+
311,advanced
|
264 |
+
312,advanced
|
265 |
+
313,advanced
|
266 |
+
314,advanced
|
267 |
+
315,intermediate
|
268 |
+
316,elementary
|
269 |
+
317,advanced
|
270 |
+
318,elementary
|
271 |
+
319,elementary
|
272 |
+
320,advanced
|
273 |
+
321,intermediate
|
274 |
+
322,advanced
|
275 |
+
323,advanced
|
276 |
+
324,advanced
|
277 |
+
325,intermediate
|
278 |
+
326,intermediate
|
279 |
+
327,elementary
|
280 |
+
328,intermediate
|
281 |
+
329,elementary
|
282 |
+
330,intermediate
|
283 |
+
331,elementary
|
284 |
+
332,advanced
|
285 |
+
333,advanced
|
286 |
+
334,advanced
|
287 |
+
335,intermediate
|
288 |
+
336,intermediate
|
289 |
+
337,advanced
|
290 |
+
338,elementary
|
291 |
+
339,intermediate
|
292 |
+
340,elementary
|
293 |
+
341,intermediate
|
294 |
+
342,advanced
|
295 |
+
343,advanced
|
296 |
+
344,elementary
|
297 |
+
345,advanced
|
298 |
+
346,intermediate
|
299 |
+
347,advanced
|
300 |
+
348,elementary
|
301 |
+
349,elementary
|
302 |
+
350,advanced
|
303 |
+
351,advanced
|
304 |
+
352,intermediate
|
305 |
+
353,elementary
|
306 |
+
354,elementary
|
307 |
+
355,advanced
|
308 |
+
356,elementary
|
309 |
+
357,elementary
|
310 |
+
358,advanced
|
311 |
+
359,elementary
|
312 |
+
360,elementary
|
313 |
+
361,advanced
|
314 |
+
362,advanced
|
315 |
+
363,advanced
|
316 |
+
364,intermediate
|
317 |
+
365,elementary
|
318 |
+
366,intermediate
|
319 |
+
367,elementary
|
320 |
+
368,elementary
|
321 |
+
369,intermediate
|
322 |
+
370,elementary
|
323 |
+
371,advanced
|
324 |
+
372,intermediate
|
325 |
+
373,advanced
|
326 |
+
374,intermediate
|
327 |
+
375,elementary
|
328 |
+
376,elementary
|
329 |
+
377,elementary
|
330 |
+
378,advanced
|
331 |
+
379,intermediate
|
332 |
+
380,advanced
|
333 |
+
381,elementary
|
334 |
+
382,advanced
|
335 |
+
383,advanced
|
336 |
+
384,intermediate
|
337 |
+
385,advanced
|
338 |
+
386,elementary
|
339 |
+
387,elementary
|
340 |
+
388,elementary
|
341 |
+
389,elementary
|
342 |
+
390,intermediate
|
343 |
+
391,advanced
|
344 |
+
392,intermediate
|
345 |
+
393,advanced
|
346 |
+
394,advanced
|
347 |
+
395,intermediate
|
348 |
+
396,elementary
|
349 |
+
397,advanced
|
350 |
+
398,intermediate
|
351 |
+
399,advanced
|
352 |
+
400,elementary
|
353 |
+
401,intermediate
|
354 |
+
402,intermediate
|
355 |
+
403,elementary
|
356 |
+
404,intermediate
|
357 |
+
405,advanced
|
358 |
+
406,intermediate
|
359 |
+
407,advanced
|
360 |
+
408,elementary
|
361 |
+
409,elementary
|
362 |
+
410,elementary
|
363 |
+
411,advanced
|
364 |
+
412,advanced
|
365 |
+
413,intermediate
|
366 |
+
414,advanced
|
367 |
+
415,intermediate
|
368 |
+
416,advanced
|
369 |
+
417,intermediate
|
370 |
+
418,elementary
|
371 |
+
419,intermediate
|
372 |
+
420,elementary
|
373 |
+
421,intermediate
|
374 |
+
422,elementary
|
375 |
+
423,intermediate
|
376 |
+
424,elementary
|
377 |
+
425,intermediate
|
378 |
+
426,intermediate
|
379 |
+
427,elementary
|
380 |
+
428,elementary
|
381 |
+
429,advanced
|
382 |
+
430,elementary
|
383 |
+
431,intermediate
|
384 |
+
432,elementary
|
385 |
+
433,intermediate
|
386 |
+
434,elementary
|
387 |
+
435,advanced
|
388 |
+
436,elementary
|
389 |
+
437,advanced
|
390 |
+
438,intermediate
|
391 |
+
439,advanced
|
392 |
+
440,intermediate
|
393 |
+
441,intermediate
|
394 |
+
442,advanced
|
395 |
+
443,elementary
|
396 |
+
444,elementary
|
397 |
+
445,advanced
|
398 |
+
446,intermediate
|
399 |
+
447,elementary
|
400 |
+
448,intermediate
|
401 |
+
449,intermediate
|
402 |
+
450,advanced
|
403 |
+
451,advanced
|
404 |
+
452,elementary
|
405 |
+
453,intermediate
|
406 |
+
454,advanced
|
407 |
+
455,elementary
|
408 |
+
456,intermediate
|
409 |
+
457,elementary
|
410 |
+
458,elementary
|
411 |
+
459,advanced
|
412 |
+
460,elementary
|
413 |
+
461,advanced
|
414 |
+
462,intermediate
|
415 |
+
463,advanced
|
416 |
+
464,intermediate
|
417 |
+
465,advanced
|
418 |
+
466,elementary
|
419 |
+
467,advanced
|
420 |
+
468,advanced
|
421 |
+
469,advanced
|
422 |
+
470,intermediate
|
423 |
+
471,elementary
|
424 |
+
472,intermediate
|
425 |
+
473,intermediate
|
426 |
+
474,advanced
|
427 |
+
475,advanced
|
428 |
+
476,advanced
|
429 |
+
477,intermediate
|
430 |
+
478,elementary
|
431 |
+
479,intermediate
|
432 |
+
480,intermediate
|
433 |
+
481,advanced
|
434 |
+
482,intermediate
|
435 |
+
483,intermediate
|
436 |
+
484,elementary
|
437 |
+
485,intermediate
|
438 |
+
486,elementary
|
439 |
+
487,intermediate
|
440 |
+
488,advanced
|
441 |
+
489,elementary
|
442 |
+
490,intermediate
|
443 |
+
491,advanced
|
444 |
+
492,elementary
|
445 |
+
493,elementary
|
446 |
+
494,advanced
|
447 |
+
495,intermediate
|
448 |
+
496,elementary
|
449 |
+
497,intermediate
|
450 |
+
498,intermediate
|
451 |
+
499,intermediate
|
452 |
+
500,elementary
|
453 |
+
501,elementary
|
454 |
+
502,intermediate
|
455 |
+
503,elementary
|
456 |
+
504,elementary
|
457 |
+
505,elementary
|
458 |
+
506,elementary
|
459 |
+
507,elementary
|
460 |
+
508,intermediate
|
461 |
+
509,advanced
|
462 |
+
510,elementary
|
463 |
+
511,advanced
|
464 |
+
512,intermediate
|
465 |
+
513,elementary
|
466 |
+
514,intermediate
|
467 |
+
515,intermediate
|
468 |
+
516,intermediate
|
469 |
+
517,elementary
|
470 |
+
518,elementary
|
471 |
+
519,elementary
|
472 |
+
520,intermediate
|
473 |
+
521,advanced
|
474 |
+
522,advanced
|
475 |
+
523,intermediate
|
476 |
+
524,advanced
|
477 |
+
525,elementary
|
478 |
+
526,intermediate
|
479 |
+
527,elementary
|
480 |
+
528,intermediate
|
481 |
+
529,elementary
|
482 |
+
530,advanced
|
483 |
+
531,elementary
|
484 |
+
532,elementary
|
485 |
+
533,advanced
|
486 |
+
534,intermediate
|
487 |
+
535,elementary
|
488 |
+
536,intermediate
|
489 |
+
537,advanced
|
490 |
+
538,advanced
|
491 |
+
539,advanced
|
492 |
+
540,advanced
|
493 |
+
541,elementary
|
494 |
+
542,advanced
|
495 |
+
543,advanced
|
496 |
+
544,advanced
|
497 |
+
545,elementary
|
498 |
+
546,intermediate
|
499 |
+
547,intermediate
|
500 |
+
548,intermediate
|
501 |
+
549,intermediate
|
502 |
+
550,intermediate
|
503 |
+
551,intermediate
|
504 |
+
552,elementary
|
505 |
+
553,advanced
|
506 |
+
554,intermediate
|
507 |
+
555,advanced
|
508 |
+
556,advanced
|
509 |
+
557,advanced
|
510 |
+
558,advanced
|
511 |
+
559,advanced
|
512 |
+
560,elementary
|
513 |
+
561,advanced
|
514 |
+
562,advanced
|
515 |
+
563,elementary
|
516 |
+
564,advanced
|
517 |
+
565,intermediate
|
518 |
+
566,elementary
|
519 |
+
567,intermediate
|
{{cookiecutter.repo_name}}/data/one_stop_english/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "one_stop_english", "description": "", "data_columns": ["Article", "ID"], "label_columns": {"Label": ["advanced", "elementary", "intermediate"]}}
|
{{cookiecutter.repo_name}}/data/overruling/predictions.csv
ADDED
@@ -0,0 +1,2351 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ID,Label
|
2 |
+
50,not overruling
|
3 |
+
51,overruling
|
4 |
+
52,not overruling
|
5 |
+
53,overruling
|
6 |
+
54,overruling
|
7 |
+
55,not overruling
|
8 |
+
56,not overruling
|
9 |
+
57,not overruling
|
10 |
+
58,not overruling
|
11 |
+
59,overruling
|
12 |
+
60,overruling
|
13 |
+
61,not overruling
|
14 |
+
62,not overruling
|
15 |
+
63,overruling
|
16 |
+
64,overruling
|
17 |
+
65,not overruling
|
18 |
+
66,not overruling
|
19 |
+
67,overruling
|
20 |
+
68,not overruling
|
21 |
+
69,not overruling
|
22 |
+
70,overruling
|
23 |
+
71,overruling
|
24 |
+
72,not overruling
|
25 |
+
73,not overruling
|
26 |
+
74,overruling
|
27 |
+
75,overruling
|
28 |
+
76,overruling
|
29 |
+
77,not overruling
|
30 |
+
78,overruling
|
31 |
+
79,overruling
|
32 |
+
80,not overruling
|
33 |
+
81,not overruling
|
34 |
+
82,not overruling
|
35 |
+
83,overruling
|
36 |
+
84,overruling
|
37 |
+
85,not overruling
|
38 |
+
86,overruling
|
39 |
+
87,not overruling
|
40 |
+
88,overruling
|
41 |
+
89,overruling
|
42 |
+
90,not overruling
|
43 |
+
91,overruling
|
44 |
+
92,overruling
|
45 |
+
93,overruling
|
46 |
+
94,overruling
|
47 |
+
95,overruling
|
48 |
+
96,not overruling
|
49 |
+
97,not overruling
|
50 |
+
98,overruling
|
51 |
+
99,overruling
|
52 |
+
100,not overruling
|
53 |
+
101,not overruling
|
54 |
+
102,not overruling
|
55 |
+
103,overruling
|
56 |
+
104,overruling
|
57 |
+
105,overruling
|
58 |
+
106,overruling
|
59 |
+
107,not overruling
|
60 |
+
108,not overruling
|
61 |
+
109,not overruling
|
62 |
+
110,overruling
|
63 |
+
111,not overruling
|
64 |
+
112,overruling
|
65 |
+
113,overruling
|
66 |
+
114,not overruling
|
67 |
+
115,overruling
|
68 |
+
116,overruling
|
69 |
+
117,overruling
|
70 |
+
118,not overruling
|
71 |
+
119,overruling
|
72 |
+
120,not overruling
|
73 |
+
121,not overruling
|
74 |
+
122,not overruling
|
75 |
+
123,overruling
|
76 |
+
124,not overruling
|
77 |
+
125,not overruling
|
78 |
+
126,overruling
|
79 |
+
127,not overruling
|
80 |
+
128,overruling
|
81 |
+
129,overruling
|
82 |
+
130,not overruling
|
83 |
+
131,not overruling
|
84 |
+
132,overruling
|
85 |
+
133,not overruling
|
86 |
+
134,overruling
|
87 |
+
135,overruling
|
88 |
+
136,not overruling
|
89 |
+
137,overruling
|
90 |
+
138,overruling
|
91 |
+
139,overruling
|
92 |
+
140,not overruling
|
93 |
+
141,overruling
|
94 |
+
142,not overruling
|
95 |
+
143,overruling
|
96 |
+
144,not overruling
|
97 |
+
145,overruling
|
98 |
+
146,overruling
|
99 |
+
147,not overruling
|
100 |
+
148,overruling
|
101 |
+
149,overruling
|
102 |
+
150,not overruling
|
103 |
+
151,overruling
|
104 |
+
152,not overruling
|
105 |
+
153,overruling
|
106 |
+
154,not overruling
|
107 |
+
155,overruling
|
108 |
+
156,not overruling
|
109 |
+
157,overruling
|
110 |
+
158,overruling
|
111 |
+
159,overruling
|
112 |
+
160,not overruling
|
113 |
+
161,overruling
|
114 |
+
162,not overruling
|
115 |
+
163,overruling
|
116 |
+
164,not overruling
|
117 |
+
165,not overruling
|
118 |
+
166,not overruling
|
119 |
+
167,not overruling
|
120 |
+
168,not overruling
|
121 |
+
169,not overruling
|
122 |
+
170,not overruling
|
123 |
+
171,not overruling
|
124 |
+
172,overruling
|
125 |
+
173,not overruling
|
126 |
+
174,overruling
|
127 |
+
175,not overruling
|
128 |
+
176,not overruling
|
129 |
+
177,overruling
|
130 |
+
178,overruling
|
131 |
+
179,not overruling
|
132 |
+
180,overruling
|
133 |
+
181,not overruling
|
134 |
+
182,not overruling
|
135 |
+
183,overruling
|
136 |
+
184,overruling
|
137 |
+
185,overruling
|
138 |
+
186,not overruling
|
139 |
+
187,not overruling
|
140 |
+
188,overruling
|
141 |
+
189,overruling
|
142 |
+
190,not overruling
|
143 |
+
191,overruling
|
144 |
+
192,not overruling
|
145 |
+
193,overruling
|
146 |
+
194,not overruling
|
147 |
+
195,not overruling
|
148 |
+
196,not overruling
|
149 |
+
197,overruling
|
150 |
+
198,overruling
|
151 |
+
199,not overruling
|
152 |
+
200,not overruling
|
153 |
+
201,not overruling
|
154 |
+
202,overruling
|
155 |
+
203,overruling
|
156 |
+
204,not overruling
|
157 |
+
205,overruling
|
158 |
+
206,not overruling
|
159 |
+
207,overruling
|
160 |
+
208,not overruling
|
161 |
+
209,overruling
|
162 |
+
210,not overruling
|
163 |
+
211,overruling
|
164 |
+
212,overruling
|
165 |
+
213,not overruling
|
166 |
+
214,overruling
|
167 |
+
215,not overruling
|
168 |
+
216,not overruling
|
169 |
+
217,overruling
|
170 |
+
218,overruling
|
171 |
+
219,overruling
|
172 |
+
220,overruling
|
173 |
+
221,overruling
|
174 |
+
222,not overruling
|
175 |
+
223,overruling
|
176 |
+
224,overruling
|
177 |
+
225,overruling
|
178 |
+
226,overruling
|
179 |
+
227,not overruling
|
180 |
+
228,overruling
|
181 |
+
229,not overruling
|
182 |
+
230,not overruling
|
183 |
+
231,overruling
|
184 |
+
232,not overruling
|
185 |
+
233,overruling
|
186 |
+
234,not overruling
|
187 |
+
235,not overruling
|
188 |
+
236,overruling
|
189 |
+
237,overruling
|
190 |
+
238,overruling
|
191 |
+
239,overruling
|
192 |
+
240,not overruling
|
193 |
+
241,not overruling
|
194 |
+
242,not overruling
|
195 |
+
243,not overruling
|
196 |
+
244,not overruling
|
197 |
+
245,overruling
|
198 |
+
246,not overruling
|
199 |
+
247,overruling
|
200 |
+
248,overruling
|
201 |
+
249,not overruling
|
202 |
+
250,not overruling
|
203 |
+
251,not overruling
|
204 |
+
252,not overruling
|
205 |
+
253,overruling
|
206 |
+
254,overruling
|
207 |
+
255,overruling
|
208 |
+
256,not overruling
|
209 |
+
257,not overruling
|
210 |
+
258,not overruling
|
211 |
+
259,not overruling
|
212 |
+
260,overruling
|
213 |
+
261,overruling
|
214 |
+
262,not overruling
|
215 |
+
263,not overruling
|
216 |
+
264,overruling
|
217 |
+
265,not overruling
|
218 |
+
266,not overruling
|
219 |
+
267,overruling
|
220 |
+
268,overruling
|
221 |
+
269,not overruling
|
222 |
+
270,not overruling
|
223 |
+
271,overruling
|
224 |
+
272,overruling
|
225 |
+
273,not overruling
|
226 |
+
274,overruling
|
227 |
+
275,overruling
|
228 |
+
276,not overruling
|
229 |
+
277,overruling
|
230 |
+
278,overruling
|
231 |
+
279,not overruling
|
232 |
+
280,not overruling
|
233 |
+
281,not overruling
|
234 |
+
282,overruling
|
235 |
+
283,overruling
|
236 |
+
284,overruling
|
237 |
+
285,overruling
|
238 |
+
286,not overruling
|
239 |
+
287,not overruling
|
240 |
+
288,overruling
|
241 |
+
289,overruling
|
242 |
+
290,overruling
|
243 |
+
291,not overruling
|
244 |
+
292,not overruling
|
245 |
+
293,overruling
|
246 |
+
294,not overruling
|
247 |
+
295,not overruling
|
248 |
+
296,not overruling
|
249 |
+
297,overruling
|
250 |
+
298,overruling
|
251 |
+
299,overruling
|
252 |
+
300,overruling
|
253 |
+
301,not overruling
|
254 |
+
302,not overruling
|
255 |
+
303,not overruling
|
256 |
+
304,overruling
|
257 |
+
305,not overruling
|
258 |
+
306,not overruling
|
259 |
+
307,overruling
|
260 |
+
308,overruling
|
261 |
+
309,not overruling
|
262 |
+
310,not overruling
|
263 |
+
311,overruling
|
264 |
+
312,overruling
|
265 |
+
313,overruling
|
266 |
+
314,not overruling
|
267 |
+
315,not overruling
|
268 |
+
316,not overruling
|
269 |
+
317,not overruling
|
270 |
+
318,overruling
|
271 |
+
319,overruling
|
272 |
+
320,overruling
|
273 |
+
321,overruling
|
274 |
+
322,overruling
|
275 |
+
323,overruling
|
276 |
+
324,not overruling
|
277 |
+
325,overruling
|
278 |
+
326,overruling
|
279 |
+
327,overruling
|
280 |
+
328,not overruling
|
281 |
+
329,overruling
|
282 |
+
330,not overruling
|
283 |
+
331,not overruling
|
284 |
+
332,not overruling
|
285 |
+
333,overruling
|
286 |
+
334,overruling
|
287 |
+
335,not overruling
|
288 |
+
336,overruling
|
289 |
+
337,not overruling
|
290 |
+
338,not overruling
|
291 |
+
339,overruling
|
292 |
+
340,not overruling
|
293 |
+
341,overruling
|
294 |
+
342,overruling
|
295 |
+
343,overruling
|
296 |
+
344,not overruling
|
297 |
+
345,overruling
|
298 |
+
346,not overruling
|
299 |
+
347,not overruling
|
300 |
+
348,not overruling
|
301 |
+
349,overruling
|
302 |
+
350,not overruling
|
303 |
+
351,not overruling
|
304 |
+
352,not overruling
|
305 |
+
353,overruling
|
306 |
+
354,not overruling
|
307 |
+
355,not overruling
|
308 |
+
356,not overruling
|
309 |
+
357,overruling
|
310 |
+
358,not overruling
|
311 |
+
359,overruling
|
312 |
+
360,overruling
|
313 |
+
361,not overruling
|
314 |
+
362,overruling
|
315 |
+
363,not overruling
|
316 |
+
364,overruling
|
317 |
+
365,overruling
|
318 |
+
366,not overruling
|
319 |
+
367,overruling
|
320 |
+
368,overruling
|
321 |
+
369,overruling
|
322 |
+
370,overruling
|
323 |
+
371,overruling
|
324 |
+
372,overruling
|
325 |
+
373,overruling
|
326 |
+
374,overruling
|
327 |
+
375,not overruling
|
328 |
+
376,overruling
|
329 |
+
377,not overruling
|
330 |
+
378,overruling
|
331 |
+
379,overruling
|
332 |
+
380,overruling
|
333 |
+
381,overruling
|
334 |
+
382,not overruling
|
335 |
+
383,not overruling
|
336 |
+
384,not overruling
|
337 |
+
385,overruling
|
338 |
+
386,overruling
|
339 |
+
387,overruling
|
340 |
+
388,not overruling
|
341 |
+
389,overruling
|
342 |
+
390,overruling
|
343 |
+
391,not overruling
|
344 |
+
392,overruling
|
345 |
+
393,not overruling
|
346 |
+
394,not overruling
|
347 |
+
395,not overruling
|
348 |
+
396,not overruling
|
349 |
+
397,overruling
|
350 |
+
398,not overruling
|
351 |
+
399,not overruling
|
352 |
+
400,not overruling
|
353 |
+
401,overruling
|
354 |
+
402,overruling
|
355 |
+
403,not overruling
|
356 |
+
404,not overruling
|
357 |
+
405,not overruling
|
358 |
+
406,not overruling
|
359 |
+
407,not overruling
|
360 |
+
408,not overruling
|
361 |
+
409,overruling
|
362 |
+
410,not overruling
|
363 |
+
411,not overruling
|
364 |
+
412,overruling
|
365 |
+
413,not overruling
|
366 |
+
414,overruling
|
367 |
+
415,not overruling
|
368 |
+
416,not overruling
|
369 |
+
417,overruling
|
370 |
+
418,not overruling
|
371 |
+
419,not overruling
|
372 |
+
420,overruling
|
373 |
+
421,not overruling
|
374 |
+
422,not overruling
|
375 |
+
423,overruling
|
376 |
+
424,not overruling
|
377 |
+
425,not overruling
|
378 |
+
426,overruling
|
379 |
+
427,overruling
|
380 |
+
428,not overruling
|
381 |
+
429,overruling
|
382 |
+
430,not overruling
|
383 |
+
431,not overruling
|
384 |
+
432,overruling
|
385 |
+
433,overruling
|
386 |
+
434,overruling
|
387 |
+
435,overruling
|
388 |
+
436,overruling
|
389 |
+
437,not overruling
|
390 |
+
438,overruling
|
391 |
+
439,not overruling
|
392 |
+
440,overruling
|
393 |
+
441,not overruling
|
394 |
+
442,overruling
|
395 |
+
443,not overruling
|
396 |
+
444,overruling
|
397 |
+
445,not overruling
|
398 |
+
446,not overruling
|
399 |
+
447,not overruling
|
400 |
+
448,not overruling
|
401 |
+
449,not overruling
|
402 |
+
450,not overruling
|
403 |
+
451,not overruling
|
404 |
+
452,not overruling
|
405 |
+
453,overruling
|
406 |
+
454,not overruling
|
407 |
+
455,overruling
|
408 |
+
456,overruling
|
409 |
+
457,overruling
|
410 |
+
458,not overruling
|
411 |
+
459,not overruling
|
412 |
+
460,not overruling
|
413 |
+
461,overruling
|
414 |
+
462,overruling
|
415 |
+
463,overruling
|
416 |
+
464,overruling
|
417 |
+
465,not overruling
|
418 |
+
466,not overruling
|
419 |
+
467,overruling
|
420 |
+
468,overruling
|
421 |
+
469,overruling
|
422 |
+
470,overruling
|
423 |
+
471,not overruling
|
424 |
+
472,not overruling
|
425 |
+
473,overruling
|
426 |
+
474,not overruling
|
427 |
+
475,not overruling
|
428 |
+
476,overruling
|
429 |
+
477,overruling
|
430 |
+
478,overruling
|
431 |
+
479,not overruling
|
432 |
+
480,not overruling
|
433 |
+
481,not overruling
|
434 |
+
482,overruling
|
435 |
+
483,not overruling
|
436 |
+
484,not overruling
|
437 |
+
485,not overruling
|
438 |
+
486,not overruling
|
439 |
+
487,overruling
|
440 |
+
488,not overruling
|
441 |
+
489,overruling
|
442 |
+
490,not overruling
|
443 |
+
491,not overruling
|
444 |
+
492,not overruling
|
445 |
+
493,not overruling
|
446 |
+
494,overruling
|
447 |
+
495,not overruling
|
448 |
+
496,not overruling
|
449 |
+
497,not overruling
|
450 |
+
498,overruling
|
451 |
+
499,not overruling
|
452 |
+
500,not overruling
|
453 |
+
501,overruling
|
454 |
+
502,not overruling
|
455 |
+
503,overruling
|
456 |
+
504,overruling
|
457 |
+
505,overruling
|
458 |
+
506,overruling
|
459 |
+
507,not overruling
|
460 |
+
508,not overruling
|
461 |
+
509,overruling
|
462 |
+
510,overruling
|
463 |
+
511,not overruling
|
464 |
+
512,overruling
|
465 |
+
513,overruling
|
466 |
+
514,not overruling
|
467 |
+
515,overruling
|
468 |
+
516,overruling
|
469 |
+
517,not overruling
|
470 |
+
518,not overruling
|
471 |
+
519,not overruling
|
472 |
+
520,overruling
|
473 |
+
521,overruling
|
474 |
+
522,overruling
|
475 |
+
523,overruling
|
476 |
+
524,overruling
|
477 |
+
525,overruling
|
478 |
+
526,overruling
|
479 |
+
527,not overruling
|
480 |
+
528,overruling
|
481 |
+
529,overruling
|
482 |
+
530,not overruling
|
483 |
+
531,not overruling
|
484 |
+
532,overruling
|
485 |
+
533,overruling
|
486 |
+
534,overruling
|
487 |
+
535,not overruling
|
488 |
+
536,overruling
|
489 |
+
537,not overruling
|
490 |
+
538,not overruling
|
491 |
+
539,not overruling
|
492 |
+
540,not overruling
|
493 |
+
541,overruling
|
494 |
+
542,not overruling
|
495 |
+
543,overruling
|
496 |
+
544,not overruling
|
497 |
+
545,overruling
|
498 |
+
546,not overruling
|
499 |
+
547,overruling
|
500 |
+
548,not overruling
|
501 |
+
549,not overruling
|
502 |
+
550,not overruling
|
503 |
+
551,not overruling
|
504 |
+
552,not overruling
|
505 |
+
553,not overruling
|
506 |
+
554,overruling
|
507 |
+
555,overruling
|
508 |
+
556,not overruling
|
509 |
+
557,not overruling
|
510 |
+
558,not overruling
|
511 |
+
559,not overruling
|
512 |
+
560,not overruling
|
513 |
+
561,not overruling
|
514 |
+
562,overruling
|
515 |
+
563,not overruling
|
516 |
+
564,overruling
|
517 |
+
565,overruling
|
518 |
+
566,overruling
|
519 |
+
567,not overruling
|
520 |
+
568,not overruling
|
521 |
+
569,not overruling
|
522 |
+
570,not overruling
|
523 |
+
571,not overruling
|
524 |
+
572,not overruling
|
525 |
+
573,not overruling
|
526 |
+
574,overruling
|
527 |
+
575,overruling
|
528 |
+
576,not overruling
|
529 |
+
577,not overruling
|
530 |
+
578,not overruling
|
531 |
+
579,overruling
|
532 |
+
580,overruling
|
533 |
+
581,overruling
|
534 |
+
582,overruling
|
535 |
+
583,overruling
|
536 |
+
584,overruling
|
537 |
+
585,overruling
|
538 |
+
586,not overruling
|
539 |
+
587,not overruling
|
540 |
+
588,not overruling
|
541 |
+
589,not overruling
|
542 |
+
590,overruling
|
543 |
+
591,not overruling
|
544 |
+
592,overruling
|
545 |
+
593,not overruling
|
546 |
+
594,overruling
|
547 |
+
595,not overruling
|
548 |
+
596,overruling
|
549 |
+
597,overruling
|
550 |
+
598,overruling
|
551 |
+
599,not overruling
|
552 |
+
600,not overruling
|
553 |
+
601,not overruling
|
554 |
+
602,overruling
|
555 |
+
603,not overruling
|
556 |
+
604,not overruling
|
557 |
+
605,not overruling
|
558 |
+
606,not overruling
|
559 |
+
607,not overruling
|
560 |
+
608,not overruling
|
561 |
+
609,overruling
|
562 |
+
610,overruling
|
563 |
+
611,overruling
|
564 |
+
612,not overruling
|
565 |
+
613,overruling
|
566 |
+
614,overruling
|
567 |
+
615,not overruling
|
568 |
+
616,not overruling
|
569 |
+
617,overruling
|
570 |
+
618,overruling
|
571 |
+
619,overruling
|
572 |
+
620,overruling
|
573 |
+
621,not overruling
|
574 |
+
622,overruling
|
575 |
+
623,not overruling
|
576 |
+
624,overruling
|
577 |
+
625,not overruling
|
578 |
+
626,overruling
|
579 |
+
627,not overruling
|
580 |
+
628,not overruling
|
581 |
+
629,overruling
|
582 |
+
630,overruling
|
583 |
+
631,not overruling
|
584 |
+
632,not overruling
|
585 |
+
633,overruling
|
586 |
+
634,not overruling
|
587 |
+
635,not overruling
|
588 |
+
636,not overruling
|
589 |
+
637,not overruling
|
590 |
+
638,overruling
|
591 |
+
639,not overruling
|
592 |
+
640,not overruling
|
593 |
+
641,overruling
|
594 |
+
642,overruling
|
595 |
+
643,not overruling
|
596 |
+
644,not overruling
|
597 |
+
645,not overruling
|
598 |
+
646,not overruling
|
599 |
+
647,not overruling
|
600 |
+
648,overruling
|
601 |
+
649,not overruling
|
602 |
+
650,overruling
|
603 |
+
651,overruling
|
604 |
+
652,overruling
|
605 |
+
653,not overruling
|
606 |
+
654,overruling
|
607 |
+
655,overruling
|
608 |
+
656,overruling
|
609 |
+
657,overruling
|
610 |
+
658,not overruling
|
611 |
+
659,not overruling
|
612 |
+
660,overruling
|
613 |
+
661,not overruling
|
614 |
+
662,overruling
|
615 |
+
663,overruling
|
616 |
+
664,not overruling
|
617 |
+
665,not overruling
|
618 |
+
666,not overruling
|
619 |
+
667,not overruling
|
620 |
+
668,not overruling
|
621 |
+
669,not overruling
|
622 |
+
670,not overruling
|
623 |
+
671,overruling
|
624 |
+
672,not overruling
|
625 |
+
673,not overruling
|
626 |
+
674,not overruling
|
627 |
+
675,not overruling
|
628 |
+
676,overruling
|
629 |
+
677,not overruling
|
630 |
+
678,overruling
|
631 |
+
679,overruling
|
632 |
+
680,overruling
|
633 |
+
681,not overruling
|
634 |
+
682,overruling
|
635 |
+
683,overruling
|
636 |
+
684,not overruling
|
637 |
+
685,not overruling
|
638 |
+
686,overruling
|
639 |
+
687,overruling
|
640 |
+
688,not overruling
|
641 |
+
689,not overruling
|
642 |
+
690,overruling
|
643 |
+
691,overruling
|
644 |
+
692,not overruling
|
645 |
+
693,not overruling
|
646 |
+
694,overruling
|
647 |
+
695,not overruling
|
648 |
+
696,overruling
|
649 |
+
697,not overruling
|
650 |
+
698,overruling
|
651 |
+
699,not overruling
|
652 |
+
700,not overruling
|
653 |
+
701,not overruling
|
654 |
+
702,not overruling
|
655 |
+
703,not overruling
|
656 |
+
704,not overruling
|
657 |
+
705,not overruling
|
658 |
+
706,not overruling
|
659 |
+
707,overruling
|
660 |
+
708,overruling
|
661 |
+
709,not overruling
|
662 |
+
710,not overruling
|
663 |
+
711,overruling
|
664 |
+
712,not overruling
|
665 |
+
713,not overruling
|
666 |
+
714,not overruling
|
667 |
+
715,not overruling
|
668 |
+
716,not overruling
|
669 |
+
717,not overruling
|
670 |
+
718,overruling
|
671 |
+
719,not overruling
|
672 |
+
720,not overruling
|
673 |
+
721,overruling
|
674 |
+
722,overruling
|
675 |
+
723,overruling
|
676 |
+
724,not overruling
|
677 |
+
725,not overruling
|
678 |
+
726,not overruling
|
679 |
+
727,not overruling
|
680 |
+
728,not overruling
|
681 |
+
729,not overruling
|
682 |
+
730,overruling
|
683 |
+
731,overruling
|
684 |
+
732,overruling
|
685 |
+
733,overruling
|
686 |
+
734,not overruling
|
687 |
+
735,overruling
|
688 |
+
736,overruling
|
689 |
+
737,not overruling
|
690 |
+
738,overruling
|
691 |
+
739,not overruling
|
692 |
+
740,overruling
|
693 |
+
741,not overruling
|
694 |
+
742,not overruling
|
695 |
+
743,overruling
|
696 |
+
744,overruling
|
697 |
+
745,overruling
|
698 |
+
746,not overruling
|
699 |
+
747,overruling
|
700 |
+
748,not overruling
|
701 |
+
749,overruling
|
702 |
+
750,overruling
|
703 |
+
751,overruling
|
704 |
+
752,not overruling
|
705 |
+
753,overruling
|
706 |
+
754,overruling
|
707 |
+
755,overruling
|
708 |
+
756,overruling
|
709 |
+
757,not overruling
|
710 |
+
758,overruling
|
711 |
+
759,not overruling
|
712 |
+
760,not overruling
|
713 |
+
761,overruling
|
714 |
+
762,not overruling
|
715 |
+
763,not overruling
|
716 |
+
764,overruling
|
717 |
+
765,not overruling
|
718 |
+
766,overruling
|
719 |
+
767,not overruling
|
720 |
+
768,not overruling
|
721 |
+
769,not overruling
|
722 |
+
770,not overruling
|
723 |
+
771,not overruling
|
724 |
+
772,not overruling
|
725 |
+
773,not overruling
|
726 |
+
774,overruling
|
727 |
+
775,overruling
|
728 |
+
776,overruling
|
729 |
+
777,not overruling
|
730 |
+
778,overruling
|
731 |
+
779,overruling
|
732 |
+
780,overruling
|
733 |
+
781,not overruling
|
734 |
+
782,overruling
|
735 |
+
783,not overruling
|
736 |
+
784,not overruling
|
737 |
+
785,not overruling
|
738 |
+
786,not overruling
|
739 |
+
787,overruling
|
740 |
+
788,not overruling
|
741 |
+
789,overruling
|
742 |
+
790,not overruling
|
743 |
+
791,overruling
|
744 |
+
792,not overruling
|
745 |
+
793,not overruling
|
746 |
+
794,overruling
|
747 |
+
795,overruling
|
748 |
+
796,overruling
|
749 |
+
797,not overruling
|
750 |
+
798,not overruling
|
751 |
+
799,overruling
|
752 |
+
800,overruling
|
753 |
+
801,not overruling
|
754 |
+
802,overruling
|
755 |
+
803,not overruling
|
756 |
+
804,overruling
|
757 |
+
805,overruling
|
758 |
+
806,overruling
|
759 |
+
807,not overruling
|
760 |
+
808,overruling
|
761 |
+
809,not overruling
|
762 |
+
810,not overruling
|
763 |
+
811,overruling
|
764 |
+
812,overruling
|
765 |
+
813,not overruling
|
766 |
+
814,not overruling
|
767 |
+
815,not overruling
|
768 |
+
816,overruling
|
769 |
+
817,not overruling
|
770 |
+
818,not overruling
|
771 |
+
819,not overruling
|
772 |
+
820,overruling
|
773 |
+
821,overruling
|
774 |
+
822,overruling
|
775 |
+
823,overruling
|
776 |
+
824,overruling
|
777 |
+
825,overruling
|
778 |
+
826,overruling
|
779 |
+
827,overruling
|
780 |
+
828,not overruling
|
781 |
+
829,overruling
|
782 |
+
830,overruling
|
783 |
+
831,not overruling
|
784 |
+
832,overruling
|
785 |
+
833,overruling
|
786 |
+
834,overruling
|
787 |
+
835,not overruling
|
788 |
+
836,not overruling
|
789 |
+
837,overruling
|
790 |
+
838,overruling
|
791 |
+
839,not overruling
|
792 |
+
840,overruling
|
793 |
+
841,not overruling
|
794 |
+
842,not overruling
|
795 |
+
843,not overruling
|
796 |
+
844,overruling
|
797 |
+
845,not overruling
|
798 |
+
846,overruling
|
799 |
+
847,overruling
|
800 |
+
848,overruling
|
801 |
+
849,overruling
|
802 |
+
850,not overruling
|
803 |
+
851,overruling
|
804 |
+
852,not overruling
|
805 |
+
853,overruling
|
806 |
+
854,overruling
|
807 |
+
855,overruling
|
808 |
+
856,overruling
|
809 |
+
857,not overruling
|
810 |
+
858,not overruling
|
811 |
+
859,overruling
|
812 |
+
860,overruling
|
813 |
+
861,not overruling
|
814 |
+
862,overruling
|
815 |
+
863,overruling
|
816 |
+
864,not overruling
|
817 |
+
865,overruling
|
818 |
+
866,overruling
|
819 |
+
867,overruling
|
820 |
+
868,overruling
|
821 |
+
869,not overruling
|
822 |
+
870,overruling
|
823 |
+
871,overruling
|
824 |
+
872,not overruling
|
825 |
+
873,not overruling
|
826 |
+
874,not overruling
|
827 |
+
875,overruling
|
828 |
+
876,overruling
|
829 |
+
877,not overruling
|
830 |
+
878,not overruling
|
831 |
+
879,not overruling
|
832 |
+
880,not overruling
|
833 |
+
881,overruling
|
834 |
+
882,not overruling
|
835 |
+
883,overruling
|
836 |
+
884,overruling
|
837 |
+
885,overruling
|
838 |
+
886,not overruling
|
839 |
+
887,overruling
|
840 |
+
888,not overruling
|
841 |
+
889,not overruling
|
842 |
+
890,not overruling
|
843 |
+
891,overruling
|
844 |
+
892,not overruling
|
845 |
+
893,not overruling
|
846 |
+
894,not overruling
|
847 |
+
895,overruling
|
848 |
+
896,not overruling
|
849 |
+
897,not overruling
|
850 |
+
898,not overruling
|
851 |
+
899,not overruling
|
852 |
+
900,not overruling
|
853 |
+
901,not overruling
|
854 |
+
902,not overruling
|
855 |
+
903,not overruling
|
856 |
+
904,not overruling
|
857 |
+
905,overruling
|
858 |
+
906,overruling
|
859 |
+
907,overruling
|
860 |
+
908,overruling
|
861 |
+
909,overruling
|
862 |
+
910,not overruling
|
863 |
+
911,overruling
|
864 |
+
912,not overruling
|
865 |
+
913,overruling
|
866 |
+
914,overruling
|
867 |
+
915,not overruling
|
868 |
+
916,not overruling
|
869 |
+
917,overruling
|
870 |
+
918,not overruling
|
871 |
+
919,overruling
|
872 |
+
920,not overruling
|
873 |
+
921,not overruling
|
874 |
+
922,not overruling
|
875 |
+
923,not overruling
|
876 |
+
924,overruling
|
877 |
+
925,overruling
|
878 |
+
926,overruling
|
879 |
+
927,not overruling
|
880 |
+
928,not overruling
|
881 |
+
929,not overruling
|
882 |
+
930,overruling
|
883 |
+
931,overruling
|
884 |
+
932,overruling
|
885 |
+
933,not overruling
|
886 |
+
934,not overruling
|
887 |
+
935,not overruling
|
888 |
+
936,not overruling
|
889 |
+
937,not overruling
|
890 |
+
938,overruling
|
891 |
+
939,overruling
|
892 |
+
940,overruling
|
893 |
+
941,overruling
|
894 |
+
942,overruling
|
895 |
+
943,not overruling
|
896 |
+
944,overruling
|
897 |
+
945,overruling
|
898 |
+
946,not overruling
|
899 |
+
947,overruling
|
900 |
+
948,overruling
|
901 |
+
949,overruling
|
902 |
+
950,overruling
|
903 |
+
951,not overruling
|
904 |
+
952,not overruling
|
905 |
+
953,not overruling
|
906 |
+
954,not overruling
|
907 |
+
955,overruling
|
908 |
+
956,not overruling
|
909 |
+
957,not overruling
|
910 |
+
958,not overruling
|
911 |
+
959,not overruling
|
912 |
+
960,not overruling
|
913 |
+
961,overruling
|
914 |
+
962,not overruling
|
915 |
+
963,not overruling
|
916 |
+
964,overruling
|
917 |
+
965,not overruling
|
918 |
+
966,not overruling
|
919 |
+
967,overruling
|
920 |
+
968,overruling
|
921 |
+
969,not overruling
|
922 |
+
970,not overruling
|
923 |
+
971,not overruling
|
924 |
+
972,overruling
|
925 |
+
973,overruling
|
926 |
+
974,overruling
|
927 |
+
975,overruling
|
928 |
+
976,not overruling
|
929 |
+
977,not overruling
|
930 |
+
978,overruling
|
931 |
+
979,overruling
|
932 |
+
980,not overruling
|
933 |
+
981,overruling
|
934 |
+
982,overruling
|
935 |
+
983,not overruling
|
936 |
+
984,overruling
|
937 |
+
985,not overruling
|
938 |
+
986,not overruling
|
939 |
+
987,not overruling
|
940 |
+
988,overruling
|
941 |
+
989,not overruling
|
942 |
+
990,not overruling
|
943 |
+
991,not overruling
|
944 |
+
992,overruling
|
945 |
+
993,overruling
|
946 |
+
994,not overruling
|
947 |
+
995,not overruling
|
948 |
+
996,overruling
|
949 |
+
997,overruling
|
950 |
+
998,overruling
|
951 |
+
999,overruling
|
952 |
+
1000,overruling
|
953 |
+
1001,not overruling
|
954 |
+
1002,overruling
|
955 |
+
1003,overruling
|
956 |
+
1004,overruling
|
957 |
+
1005,overruling
|
958 |
+
1006,not overruling
|
959 |
+
1007,not overruling
|
960 |
+
1008,overruling
|
961 |
+
1009,overruling
|
962 |
+
1010,overruling
|
963 |
+
1011,overruling
|
964 |
+
1012,not overruling
|
965 |
+
1013,overruling
|
966 |
+
1014,overruling
|
967 |
+
1015,not overruling
|
968 |
+
1016,overruling
|
969 |
+
1017,not overruling
|
970 |
+
1018,not overruling
|
971 |
+
1019,overruling
|
972 |
+
1020,not overruling
|
973 |
+
1021,overruling
|
974 |
+
1022,overruling
|
975 |
+
1023,not overruling
|
976 |
+
1024,not overruling
|
977 |
+
1025,overruling
|
978 |
+
1026,not overruling
|
979 |
+
1027,not overruling
|
980 |
+
1028,overruling
|
981 |
+
1029,not overruling
|
982 |
+
1030,not overruling
|
983 |
+
1031,overruling
|
984 |
+
1032,overruling
|
985 |
+
1033,overruling
|
986 |
+
1034,overruling
|
987 |
+
1035,overruling
|
988 |
+
1036,overruling
|
989 |
+
1037,overruling
|
990 |
+
1038,not overruling
|
991 |
+
1039,not overruling
|
992 |
+
1040,not overruling
|
993 |
+
1041,not overruling
|
994 |
+
1042,not overruling
|
995 |
+
1043,overruling
|
996 |
+
1044,overruling
|
997 |
+
1045,overruling
|
998 |
+
1046,not overruling
|
999 |
+
1047,not overruling
|
1000 |
+
1048,overruling
|
1001 |
+
1049,not overruling
|
1002 |
+
1050,overruling
|
1003 |
+
1051,overruling
|
1004 |
+
1052,overruling
|
1005 |
+
1053,not overruling
|
1006 |
+
1054,overruling
|
1007 |
+
1055,overruling
|
1008 |
+
1056,overruling
|
1009 |
+
1057,overruling
|
1010 |
+
1058,not overruling
|
1011 |
+
1059,overruling
|
1012 |
+
1060,not overruling
|
1013 |
+
1061,not overruling
|
1014 |
+
1062,overruling
|
1015 |
+
1063,overruling
|
1016 |
+
1064,overruling
|
1017 |
+
1065,not overruling
|
1018 |
+
1066,overruling
|
1019 |
+
1067,overruling
|
1020 |
+
1068,overruling
|
1021 |
+
1069,not overruling
|
1022 |
+
1070,not overruling
|
1023 |
+
1071,not overruling
|
1024 |
+
1072,overruling
|
1025 |
+
1073,not overruling
|
1026 |
+
1074,not overruling
|
1027 |
+
1075,overruling
|
1028 |
+
1076,not overruling
|
1029 |
+
1077,overruling
|
1030 |
+
1078,not overruling
|
1031 |
+
1079,not overruling
|
1032 |
+
1080,overruling
|
1033 |
+
1081,overruling
|
1034 |
+
1082,overruling
|
1035 |
+
1083,overruling
|
1036 |
+
1084,not overruling
|
1037 |
+
1085,not overruling
|
1038 |
+
1086,not overruling
|
1039 |
+
1087,not overruling
|
1040 |
+
1088,overruling
|
1041 |
+
1089,overruling
|
1042 |
+
1090,overruling
|
1043 |
+
1091,not overruling
|
1044 |
+
1092,overruling
|
1045 |
+
1093,overruling
|
1046 |
+
1094,overruling
|
1047 |
+
1095,not overruling
|
1048 |
+
1096,not overruling
|
1049 |
+
1097,overruling
|
1050 |
+
1098,overruling
|
1051 |
+
1099,overruling
|
1052 |
+
1100,overruling
|
1053 |
+
1101,overruling
|
1054 |
+
1102,overruling
|
1055 |
+
1103,not overruling
|
1056 |
+
1104,not overruling
|
1057 |
+
1105,overruling
|
1058 |
+
1106,overruling
|
1059 |
+
1107,not overruling
|
1060 |
+
1108,not overruling
|
1061 |
+
1109,not overruling
|
1062 |
+
1110,not overruling
|
1063 |
+
1111,overruling
|
1064 |
+
1112,overruling
|
1065 |
+
1113,overruling
|
1066 |
+
1114,not overruling
|
1067 |
+
1115,overruling
|
1068 |
+
1116,overruling
|
1069 |
+
1117,overruling
|
1070 |
+
1118,overruling
|
1071 |
+
1119,not overruling
|
1072 |
+
1120,overruling
|
1073 |
+
1121,not overruling
|
1074 |
+
1122,overruling
|
1075 |
+
1123,overruling
|
1076 |
+
1124,overruling
|
1077 |
+
1125,not overruling
|
1078 |
+
1126,overruling
|
1079 |
+
1127,not overruling
|
1080 |
+
1128,overruling
|
1081 |
+
1129,overruling
|
1082 |
+
1130,overruling
|
1083 |
+
1131,overruling
|
1084 |
+
1132,overruling
|
1085 |
+
1133,not overruling
|
1086 |
+
1134,overruling
|
1087 |
+
1135,overruling
|
1088 |
+
1136,overruling
|
1089 |
+
1137,overruling
|
1090 |
+
1138,not overruling
|
1091 |
+
1139,not overruling
|
1092 |
+
1140,not overruling
|
1093 |
+
1141,overruling
|
1094 |
+
1142,not overruling
|
1095 |
+
1143,overruling
|
1096 |
+
1144,overruling
|
1097 |
+
1145,overruling
|
1098 |
+
1146,overruling
|
1099 |
+
1147,overruling
|
1100 |
+
1148,not overruling
|
1101 |
+
1149,overruling
|
1102 |
+
1150,not overruling
|
1103 |
+
1151,overruling
|
1104 |
+
1152,overruling
|
1105 |
+
1153,overruling
|
1106 |
+
1154,not overruling
|
1107 |
+
1155,overruling
|
1108 |
+
1156,overruling
|
1109 |
+
1157,not overruling
|
1110 |
+
1158,not overruling
|
1111 |
+
1159,overruling
|
1112 |
+
1160,not overruling
|
1113 |
+
1161,overruling
|
1114 |
+
1162,not overruling
|
1115 |
+
1163,not overruling
|
1116 |
+
1164,overruling
|
1117 |
+
1165,not overruling
|
1118 |
+
1166,not overruling
|
1119 |
+
1167,overruling
|
1120 |
+
1168,overruling
|
1121 |
+
1169,overruling
|
1122 |
+
1170,overruling
|
1123 |
+
1171,not overruling
|
1124 |
+
1172,not overruling
|
1125 |
+
1173,not overruling
|
1126 |
+
1174,overruling
|
1127 |
+
1175,overruling
|
1128 |
+
1176,not overruling
|
1129 |
+
1177,overruling
|
1130 |
+
1178,overruling
|
1131 |
+
1179,not overruling
|
1132 |
+
1180,overruling
|
1133 |
+
1181,not overruling
|
1134 |
+
1182,overruling
|
1135 |
+
1183,overruling
|
1136 |
+
1184,overruling
|
1137 |
+
1185,not overruling
|
1138 |
+
1186,not overruling
|
1139 |
+
1187,overruling
|
1140 |
+
1188,overruling
|
1141 |
+
1189,not overruling
|
1142 |
+
1190,overruling
|
1143 |
+
1191,overruling
|
1144 |
+
1192,not overruling
|
1145 |
+
1193,not overruling
|
1146 |
+
1194,not overruling
|
1147 |
+
1195,overruling
|
1148 |
+
1196,not overruling
|
1149 |
+
1197,overruling
|
1150 |
+
1198,not overruling
|
1151 |
+
1199,not overruling
|
1152 |
+
1200,overruling
|
1153 |
+
1201,not overruling
|
1154 |
+
1202,not overruling
|
1155 |
+
1203,overruling
|
1156 |
+
1204,not overruling
|
1157 |
+
1205,not overruling
|
1158 |
+
1206,overruling
|
1159 |
+
1207,overruling
|
1160 |
+
1208,not overruling
|
1161 |
+
1209,not overruling
|
1162 |
+
1210,overruling
|
1163 |
+
1211,overruling
|
1164 |
+
1212,not overruling
|
1165 |
+
1213,overruling
|
1166 |
+
1214,not overruling
|
1167 |
+
1215,overruling
|
1168 |
+
1216,not overruling
|
1169 |
+
1217,not overruling
|
1170 |
+
1218,not overruling
|
1171 |
+
1219,overruling
|
1172 |
+
1220,not overruling
|
1173 |
+
1221,not overruling
|
1174 |
+
1222,not overruling
|
1175 |
+
1223,not overruling
|
1176 |
+
1224,not overruling
|
1177 |
+
1225,not overruling
|
1178 |
+
1226,overruling
|
1179 |
+
1227,not overruling
|
1180 |
+
1228,not overruling
|
1181 |
+
1229,overruling
|
1182 |
+
1230,overruling
|
1183 |
+
1231,overruling
|
1184 |
+
1232,overruling
|
1185 |
+
1233,overruling
|
1186 |
+
1234,not overruling
|
1187 |
+
1235,not overruling
|
1188 |
+
1236,overruling
|
1189 |
+
1237,overruling
|
1190 |
+
1238,overruling
|
1191 |
+
1239,overruling
|
1192 |
+
1240,not overruling
|
1193 |
+
1241,not overruling
|
1194 |
+
1242,overruling
|
1195 |
+
1243,overruling
|
1196 |
+
1244,not overruling
|
1197 |
+
1245,overruling
|
1198 |
+
1246,not overruling
|
1199 |
+
1247,overruling
|
1200 |
+
1248,not overruling
|
1201 |
+
1249,overruling
|
1202 |
+
1250,not overruling
|
1203 |
+
1251,overruling
|
1204 |
+
1252,overruling
|
1205 |
+
1253,overruling
|
1206 |
+
1254,overruling
|
1207 |
+
1255,overruling
|
1208 |
+
1256,overruling
|
1209 |
+
1257,not overruling
|
1210 |
+
1258,not overruling
|
1211 |
+
1259,not overruling
|
1212 |
+
1260,overruling
|
1213 |
+
1261,overruling
|
1214 |
+
1262,overruling
|
1215 |
+
1263,overruling
|
1216 |
+
1264,not overruling
|
1217 |
+
1265,overruling
|
1218 |
+
1266,not overruling
|
1219 |
+
1267,overruling
|
1220 |
+
1268,not overruling
|
1221 |
+
1269,overruling
|
1222 |
+
1270,overruling
|
1223 |
+
1271,not overruling
|
1224 |
+
1272,not overruling
|
1225 |
+
1273,overruling
|
1226 |
+
1274,overruling
|
1227 |
+
1275,not overruling
|
1228 |
+
1276,overruling
|
1229 |
+
1277,not overruling
|
1230 |
+
1278,not overruling
|
1231 |
+
1279,not overruling
|
1232 |
+
1280,not overruling
|
1233 |
+
1281,overruling
|
1234 |
+
1282,not overruling
|
1235 |
+
1283,overruling
|
1236 |
+
1284,not overruling
|
1237 |
+
1285,not overruling
|
1238 |
+
1286,not overruling
|
1239 |
+
1287,not overruling
|
1240 |
+
1288,not overruling
|
1241 |
+
1289,not overruling
|
1242 |
+
1290,not overruling
|
1243 |
+
1291,overruling
|
1244 |
+
1292,not overruling
|
1245 |
+
1293,overruling
|
1246 |
+
1294,not overruling
|
1247 |
+
1295,overruling
|
1248 |
+
1296,not overruling
|
1249 |
+
1297,not overruling
|
1250 |
+
1298,overruling
|
1251 |
+
1299,overruling
|
1252 |
+
1300,overruling
|
1253 |
+
1301,overruling
|
1254 |
+
1302,overruling
|
1255 |
+
1303,not overruling
|
1256 |
+
1304,not overruling
|
1257 |
+
1305,overruling
|
1258 |
+
1306,overruling
|
1259 |
+
1307,overruling
|
1260 |
+
1308,overruling
|
1261 |
+
1309,overruling
|
1262 |
+
1310,overruling
|
1263 |
+
1311,overruling
|
1264 |
+
1312,not overruling
|
1265 |
+
1313,overruling
|
1266 |
+
1314,not overruling
|
1267 |
+
1315,overruling
|
1268 |
+
1316,not overruling
|
1269 |
+
1317,not overruling
|
1270 |
+
1318,overruling
|
1271 |
+
1319,overruling
|
1272 |
+
1320,overruling
|
1273 |
+
1321,not overruling
|
1274 |
+
1322,overruling
|
1275 |
+
1323,overruling
|
1276 |
+
1324,not overruling
|
1277 |
+
1325,overruling
|
1278 |
+
1326,not overruling
|
1279 |
+
1327,overruling
|
1280 |
+
1328,not overruling
|
1281 |
+
1329,not overruling
|
1282 |
+
1330,not overruling
|
1283 |
+
1331,not overruling
|
1284 |
+
1332,overruling
|
1285 |
+
1333,overruling
|
1286 |
+
1334,overruling
|
1287 |
+
1335,not overruling
|
1288 |
+
1336,overruling
|
1289 |
+
1337,not overruling
|
1290 |
+
1338,not overruling
|
1291 |
+
1339,not overruling
|
1292 |
+
1340,not overruling
|
1293 |
+
1341,overruling
|
1294 |
+
1342,not overruling
|
1295 |
+
1343,not overruling
|
1296 |
+
1344,not overruling
|
1297 |
+
1345,not overruling
|
1298 |
+
1346,overruling
|
1299 |
+
1347,overruling
|
1300 |
+
1348,not overruling
|
1301 |
+
1349,not overruling
|
1302 |
+
1350,not overruling
|
1303 |
+
1351,not overruling
|
1304 |
+
1352,overruling
|
1305 |
+
1353,overruling
|
1306 |
+
1354,overruling
|
1307 |
+
1355,not overruling
|
1308 |
+
1356,overruling
|
1309 |
+
1357,overruling
|
1310 |
+
1358,not overruling
|
1311 |
+
1359,overruling
|
1312 |
+
1360,overruling
|
1313 |
+
1361,not overruling
|
1314 |
+
1362,overruling
|
1315 |
+
1363,not overruling
|
1316 |
+
1364,overruling
|
1317 |
+
1365,not overruling
|
1318 |
+
1366,not overruling
|
1319 |
+
1367,not overruling
|
1320 |
+
1368,not overruling
|
1321 |
+
1369,overruling
|
1322 |
+
1370,overruling
|
1323 |
+
1371,overruling
|
1324 |
+
1372,overruling
|
1325 |
+
1373,not overruling
|
1326 |
+
1374,not overruling
|
1327 |
+
1375,overruling
|
1328 |
+
1376,not overruling
|
1329 |
+
1377,overruling
|
1330 |
+
1378,not overruling
|
1331 |
+
1379,overruling
|
1332 |
+
1380,overruling
|
1333 |
+
1381,overruling
|
1334 |
+
1382,overruling
|
1335 |
+
1383,not overruling
|
1336 |
+
1384,overruling
|
1337 |
+
1385,overruling
|
1338 |
+
1386,overruling
|
1339 |
+
1387,overruling
|
1340 |
+
1388,overruling
|
1341 |
+
1389,not overruling
|
1342 |
+
1390,overruling
|
1343 |
+
1391,overruling
|
1344 |
+
1392,not overruling
|
1345 |
+
1393,not overruling
|
1346 |
+
1394,not overruling
|
1347 |
+
1395,overruling
|
1348 |
+
1396,overruling
|
1349 |
+
1397,overruling
|
1350 |
+
1398,not overruling
|
1351 |
+
1399,overruling
|
1352 |
+
1400,not overruling
|
1353 |
+
1401,overruling
|
1354 |
+
1402,overruling
|
1355 |
+
1403,overruling
|
1356 |
+
1404,not overruling
|
1357 |
+
1405,not overruling
|
1358 |
+
1406,overruling
|
1359 |
+
1407,not overruling
|
1360 |
+
1408,not overruling
|
1361 |
+
1409,overruling
|
1362 |
+
1410,not overruling
|
1363 |
+
1411,not overruling
|
1364 |
+
1412,overruling
|
1365 |
+
1413,not overruling
|
1366 |
+
1414,not overruling
|
1367 |
+
1415,overruling
|
1368 |
+
1416,overruling
|
1369 |
+
1417,overruling
|
1370 |
+
1418,not overruling
|
1371 |
+
1419,not overruling
|
1372 |
+
1420,not overruling
|
1373 |
+
1421,not overruling
|
1374 |
+
1422,not overruling
|
1375 |
+
1423,not overruling
|
1376 |
+
1424,overruling
|
1377 |
+
1425,not overruling
|
1378 |
+
1426,not overruling
|
1379 |
+
1427,not overruling
|
1380 |
+
1428,overruling
|
1381 |
+
1429,overruling
|
1382 |
+
1430,not overruling
|
1383 |
+
1431,not overruling
|
1384 |
+
1432,overruling
|
1385 |
+
1433,not overruling
|
1386 |
+
1434,overruling
|
1387 |
+
1435,not overruling
|
1388 |
+
1436,overruling
|
1389 |
+
1437,overruling
|
1390 |
+
1438,overruling
|
1391 |
+
1439,not overruling
|
1392 |
+
1440,overruling
|
1393 |
+
1441,not overruling
|
1394 |
+
1442,overruling
|
1395 |
+
1443,overruling
|
1396 |
+
1444,not overruling
|
1397 |
+
1445,not overruling
|
1398 |
+
1446,overruling
|
1399 |
+
1447,overruling
|
1400 |
+
1448,overruling
|
1401 |
+
1449,not overruling
|
1402 |
+
1450,not overruling
|
1403 |
+
1451,not overruling
|
1404 |
+
1452,not overruling
|
1405 |
+
1453,overruling
|
1406 |
+
1454,not overruling
|
1407 |
+
1455,not overruling
|
1408 |
+
1456,overruling
|
1409 |
+
1457,not overruling
|
1410 |
+
1458,overruling
|
1411 |
+
1459,overruling
|
1412 |
+
1460,overruling
|
1413 |
+
1461,overruling
|
1414 |
+
1462,not overruling
|
1415 |
+
1463,overruling
|
1416 |
+
1464,not overruling
|
1417 |
+
1465,overruling
|
1418 |
+
1466,overruling
|
1419 |
+
1467,not overruling
|
1420 |
+
1468,not overruling
|
1421 |
+
1469,not overruling
|
1422 |
+
1470,not overruling
|
1423 |
+
1471,overruling
|
1424 |
+
1472,not overruling
|
1425 |
+
1473,overruling
|
1426 |
+
1474,overruling
|
1427 |
+
1475,overruling
|
1428 |
+
1476,not overruling
|
1429 |
+
1477,not overruling
|
1430 |
+
1478,overruling
|
1431 |
+
1479,overruling
|
1432 |
+
1480,not overruling
|
1433 |
+
1481,not overruling
|
1434 |
+
1482,overruling
|
1435 |
+
1483,overruling
|
1436 |
+
1484,overruling
|
1437 |
+
1485,overruling
|
1438 |
+
1486,not overruling
|
1439 |
+
1487,not overruling
|
1440 |
+
1488,overruling
|
1441 |
+
1489,not overruling
|
1442 |
+
1490,overruling
|
1443 |
+
1491,overruling
|
1444 |
+
1492,overruling
|
1445 |
+
1493,overruling
|
1446 |
+
1494,overruling
|
1447 |
+
1495,overruling
|
1448 |
+
1496,overruling
|
1449 |
+
1497,not overruling
|
1450 |
+
1498,not overruling
|
1451 |
+
1499,not overruling
|
1452 |
+
1500,not overruling
|
1453 |
+
1501,overruling
|
1454 |
+
1502,not overruling
|
1455 |
+
1503,overruling
|
1456 |
+
1504,overruling
|
1457 |
+
1505,not overruling
|
1458 |
+
1506,overruling
|
1459 |
+
1507,not overruling
|
1460 |
+
1508,overruling
|
1461 |
+
1509,overruling
|
1462 |
+
1510,not overruling
|
1463 |
+
1511,overruling
|
1464 |
+
1512,overruling
|
1465 |
+
1513,not overruling
|
1466 |
+
1514,not overruling
|
1467 |
+
1515,overruling
|
1468 |
+
1516,not overruling
|
1469 |
+
1517,not overruling
|
1470 |
+
1518,not overruling
|
1471 |
+
1519,overruling
|
1472 |
+
1520,overruling
|
1473 |
+
1521,not overruling
|
1474 |
+
1522,overruling
|
1475 |
+
1523,not overruling
|
1476 |
+
1524,overruling
|
1477 |
+
1525,overruling
|
1478 |
+
1526,overruling
|
1479 |
+
1527,overruling
|
1480 |
+
1528,overruling
|
1481 |
+
1529,not overruling
|
1482 |
+
1530,not overruling
|
1483 |
+
1531,not overruling
|
1484 |
+
1532,not overruling
|
1485 |
+
1533,not overruling
|
1486 |
+
1534,overruling
|
1487 |
+
1535,not overruling
|
1488 |
+
1536,not overruling
|
1489 |
+
1537,overruling
|
1490 |
+
1538,not overruling
|
1491 |
+
1539,overruling
|
1492 |
+
1540,overruling
|
1493 |
+
1541,overruling
|
1494 |
+
1542,not overruling
|
1495 |
+
1543,not overruling
|
1496 |
+
1544,not overruling
|
1497 |
+
1545,not overruling
|
1498 |
+
1546,not overruling
|
1499 |
+
1547,not overruling
|
1500 |
+
1548,not overruling
|
1501 |
+
1549,overruling
|
1502 |
+
1550,not overruling
|
1503 |
+
1551,not overruling
|
1504 |
+
1552,not overruling
|
1505 |
+
1553,overruling
|
1506 |
+
1554,not overruling
|
1507 |
+
1555,not overruling
|
1508 |
+
1556,overruling
|
1509 |
+
1557,overruling
|
1510 |
+
1558,overruling
|
1511 |
+
1559,not overruling
|
1512 |
+
1560,overruling
|
1513 |
+
1561,overruling
|
1514 |
+
1562,overruling
|
1515 |
+
1563,not overruling
|
1516 |
+
1564,overruling
|
1517 |
+
1565,overruling
|
1518 |
+
1566,overruling
|
1519 |
+
1567,not overruling
|
1520 |
+
1568,not overruling
|
1521 |
+
1569,not overruling
|
1522 |
+
1570,not overruling
|
1523 |
+
1571,overruling
|
1524 |
+
1572,not overruling
|
1525 |
+
1573,not overruling
|
1526 |
+
1574,not overruling
|
1527 |
+
1575,not overruling
|
1528 |
+
1576,not overruling
|
1529 |
+
1577,not overruling
|
1530 |
+
1578,overruling
|
1531 |
+
1579,overruling
|
1532 |
+
1580,overruling
|
1533 |
+
1581,not overruling
|
1534 |
+
1582,not overruling
|
1535 |
+
1583,overruling
|
1536 |
+
1584,not overruling
|
1537 |
+
1585,overruling
|
1538 |
+
1586,not overruling
|
1539 |
+
1587,overruling
|
1540 |
+
1588,overruling
|
1541 |
+
1589,overruling
|
1542 |
+
1590,not overruling
|
1543 |
+
1591,not overruling
|
1544 |
+
1592,overruling
|
1545 |
+
1593,not overruling
|
1546 |
+
1594,not overruling
|
1547 |
+
1595,not overruling
|
1548 |
+
1596,overruling
|
1549 |
+
1597,not overruling
|
1550 |
+
1598,not overruling
|
1551 |
+
1599,not overruling
|
1552 |
+
1600,not overruling
|
1553 |
+
1601,not overruling
|
1554 |
+
1602,overruling
|
1555 |
+
1603,not overruling
|
1556 |
+
1604,overruling
|
1557 |
+
1605,overruling
|
1558 |
+
1606,overruling
|
1559 |
+
1607,overruling
|
1560 |
+
1608,overruling
|
1561 |
+
1609,not overruling
|
1562 |
+
1610,overruling
|
1563 |
+
1611,overruling
|
1564 |
+
1612,not overruling
|
1565 |
+
1613,overruling
|
1566 |
+
1614,not overruling
|
1567 |
+
1615,not overruling
|
1568 |
+
1616,not overruling
|
1569 |
+
1617,overruling
|
1570 |
+
1618,overruling
|
1571 |
+
1619,not overruling
|
1572 |
+
1620,overruling
|
1573 |
+
1621,overruling
|
1574 |
+
1622,overruling
|
1575 |
+
1623,not overruling
|
1576 |
+
1624,overruling
|
1577 |
+
1625,not overruling
|
1578 |
+
1626,not overruling
|
1579 |
+
1627,overruling
|
1580 |
+
1628,not overruling
|
1581 |
+
1629,overruling
|
1582 |
+
1630,not overruling
|
1583 |
+
1631,overruling
|
1584 |
+
1632,not overruling
|
1585 |
+
1633,not overruling
|
1586 |
+
1634,not overruling
|
1587 |
+
1635,overruling
|
1588 |
+
1636,overruling
|
1589 |
+
1637,overruling
|
1590 |
+
1638,not overruling
|
1591 |
+
1639,overruling
|
1592 |
+
1640,overruling
|
1593 |
+
1641,overruling
|
1594 |
+
1642,overruling
|
1595 |
+
1643,overruling
|
1596 |
+
1644,not overruling
|
1597 |
+
1645,not overruling
|
1598 |
+
1646,not overruling
|
1599 |
+
1647,not overruling
|
1600 |
+
1648,overruling
|
1601 |
+
1649,not overruling
|
1602 |
+
1650,not overruling
|
1603 |
+
1651,overruling
|
1604 |
+
1652,not overruling
|
1605 |
+
1653,overruling
|
1606 |
+
1654,not overruling
|
1607 |
+
1655,not overruling
|
1608 |
+
1656,overruling
|
1609 |
+
1657,not overruling
|
1610 |
+
1658,not overruling
|
1611 |
+
1659,not overruling
|
1612 |
+
1660,not overruling
|
1613 |
+
1661,overruling
|
1614 |
+
1662,not overruling
|
1615 |
+
1663,not overruling
|
1616 |
+
1664,not overruling
|
1617 |
+
1665,not overruling
|
1618 |
+
1666,not overruling
|
1619 |
+
1667,overruling
|
1620 |
+
1668,overruling
|
1621 |
+
1669,not overruling
|
1622 |
+
1670,overruling
|
1623 |
+
1671,overruling
|
1624 |
+
1672,not overruling
|
1625 |
+
1673,overruling
|
1626 |
+
1674,not overruling
|
1627 |
+
1675,not overruling
|
1628 |
+
1676,overruling
|
1629 |
+
1677,not overruling
|
1630 |
+
1678,overruling
|
1631 |
+
1679,not overruling
|
1632 |
+
1680,overruling
|
1633 |
+
1681,not overruling
|
1634 |
+
1682,overruling
|
1635 |
+
1683,overruling
|
1636 |
+
1684,overruling
|
1637 |
+
1685,not overruling
|
1638 |
+
1686,not overruling
|
1639 |
+
1687,not overruling
|
1640 |
+
1688,overruling
|
1641 |
+
1689,overruling
|
1642 |
+
1690,overruling
|
1643 |
+
1691,overruling
|
1644 |
+
1692,not overruling
|
1645 |
+
1693,not overruling
|
1646 |
+
1694,overruling
|
1647 |
+
1695,overruling
|
1648 |
+
1696,overruling
|
1649 |
+
1697,not overruling
|
1650 |
+
1698,not overruling
|
1651 |
+
1699,overruling
|
1652 |
+
1700,overruling
|
1653 |
+
1701,overruling
|
1654 |
+
1702,overruling
|
1655 |
+
1703,not overruling
|
1656 |
+
1704,not overruling
|
1657 |
+
1705,not overruling
|
1658 |
+
1706,overruling
|
1659 |
+
1707,not overruling
|
1660 |
+
1708,overruling
|
1661 |
+
1709,not overruling
|
1662 |
+
1710,not overruling
|
1663 |
+
1711,not overruling
|
1664 |
+
1712,not overruling
|
1665 |
+
1713,overruling
|
1666 |
+
1714,overruling
|
1667 |
+
1715,overruling
|
1668 |
+
1716,not overruling
|
1669 |
+
1717,overruling
|
1670 |
+
1718,overruling
|
1671 |
+
1719,not overruling
|
1672 |
+
1720,overruling
|
1673 |
+
1721,not overruling
|
1674 |
+
1722,overruling
|
1675 |
+
1723,not overruling
|
1676 |
+
1724,not overruling
|
1677 |
+
1725,overruling
|
1678 |
+
1726,overruling
|
1679 |
+
1727,not overruling
|
1680 |
+
1728,not overruling
|
1681 |
+
1729,not overruling
|
1682 |
+
1730,overruling
|
1683 |
+
1731,not overruling
|
1684 |
+
1732,not overruling
|
1685 |
+
1733,overruling
|
1686 |
+
1734,overruling
|
1687 |
+
1735,not overruling
|
1688 |
+
1736,not overruling
|
1689 |
+
1737,overruling
|
1690 |
+
1738,overruling
|
1691 |
+
1739,overruling
|
1692 |
+
1740,overruling
|
1693 |
+
1741,not overruling
|
1694 |
+
1742,not overruling
|
1695 |
+
1743,not overruling
|
1696 |
+
1744,not overruling
|
1697 |
+
1745,not overruling
|
1698 |
+
1746,overruling
|
1699 |
+
1747,overruling
|
1700 |
+
1748,not overruling
|
1701 |
+
1749,overruling
|
1702 |
+
1750,overruling
|
1703 |
+
1751,not overruling
|
1704 |
+
1752,overruling
|
1705 |
+
1753,not overruling
|
1706 |
+
1754,overruling
|
1707 |
+
1755,not overruling
|
1708 |
+
1756,not overruling
|
1709 |
+
1757,not overruling
|
1710 |
+
1758,not overruling
|
1711 |
+
1759,not overruling
|
1712 |
+
1760,not overruling
|
1713 |
+
1761,overruling
|
1714 |
+
1762,not overruling
|
1715 |
+
1763,overruling
|
1716 |
+
1764,not overruling
|
1717 |
+
1765,not overruling
|
1718 |
+
1766,not overruling
|
1719 |
+
1767,overruling
|
1720 |
+
1768,not overruling
|
1721 |
+
1769,not overruling
|
1722 |
+
1770,not overruling
|
1723 |
+
1771,not overruling
|
1724 |
+
1772,not overruling
|
1725 |
+
1773,not overruling
|
1726 |
+
1774,overruling
|
1727 |
+
1775,overruling
|
1728 |
+
1776,not overruling
|
1729 |
+
1777,overruling
|
1730 |
+
1778,overruling
|
1731 |
+
1779,overruling
|
1732 |
+
1780,not overruling
|
1733 |
+
1781,not overruling
|
1734 |
+
1782,overruling
|
1735 |
+
1783,overruling
|
1736 |
+
1784,not overruling
|
1737 |
+
1785,overruling
|
1738 |
+
1786,overruling
|
1739 |
+
1787,overruling
|
1740 |
+
1788,not overruling
|
1741 |
+
1789,overruling
|
1742 |
+
1790,overruling
|
1743 |
+
1791,overruling
|
1744 |
+
1792,not overruling
|
1745 |
+
1793,not overruling
|
1746 |
+
1794,overruling
|
1747 |
+
1795,not overruling
|
1748 |
+
1796,not overruling
|
1749 |
+
1797,overruling
|
1750 |
+
1798,overruling
|
1751 |
+
1799,not overruling
|
1752 |
+
1800,overruling
|
1753 |
+
1801,overruling
|
1754 |
+
1802,not overruling
|
1755 |
+
1803,overruling
|
1756 |
+
1804,overruling
|
1757 |
+
1805,overruling
|
1758 |
+
1806,overruling
|
1759 |
+
1807,not overruling
|
1760 |
+
1808,not overruling
|
1761 |
+
1809,not overruling
|
1762 |
+
1810,overruling
|
1763 |
+
1811,overruling
|
1764 |
+
1812,not overruling
|
1765 |
+
1813,not overruling
|
1766 |
+
1814,overruling
|
1767 |
+
1815,overruling
|
1768 |
+
1816,overruling
|
1769 |
+
1817,overruling
|
1770 |
+
1818,overruling
|
1771 |
+
1819,overruling
|
1772 |
+
1820,overruling
|
1773 |
+
1821,overruling
|
1774 |
+
1822,overruling
|
1775 |
+
1823,overruling
|
1776 |
+
1824,not overruling
|
1777 |
+
1825,overruling
|
1778 |
+
1826,not overruling
|
1779 |
+
1827,overruling
|
1780 |
+
1828,not overruling
|
1781 |
+
1829,not overruling
|
1782 |
+
1830,overruling
|
1783 |
+
1831,overruling
|
1784 |
+
1832,not overruling
|
1785 |
+
1833,overruling
|
1786 |
+
1834,overruling
|
1787 |
+
1835,overruling
|
1788 |
+
1836,overruling
|
1789 |
+
1837,not overruling
|
1790 |
+
1838,not overruling
|
1791 |
+
1839,not overruling
|
1792 |
+
1840,overruling
|
1793 |
+
1841,overruling
|
1794 |
+
1842,overruling
|
1795 |
+
1843,not overruling
|
1796 |
+
1844,not overruling
|
1797 |
+
1845,not overruling
|
1798 |
+
1846,not overruling
|
1799 |
+
1847,not overruling
|
1800 |
+
1848,overruling
|
1801 |
+
1849,not overruling
|
1802 |
+
1850,not overruling
|
1803 |
+
1851,overruling
|
1804 |
+
1852,overruling
|
1805 |
+
1853,not overruling
|
1806 |
+
1854,not overruling
|
1807 |
+
1855,not overruling
|
1808 |
+
1856,overruling
|
1809 |
+
1857,not overruling
|
1810 |
+
1858,not overruling
|
1811 |
+
1859,not overruling
|
1812 |
+
1860,overruling
|
1813 |
+
1861,not overruling
|
1814 |
+
1862,not overruling
|
1815 |
+
1863,overruling
|
1816 |
+
1864,overruling
|
1817 |
+
1865,overruling
|
1818 |
+
1866,not overruling
|
1819 |
+
1867,not overruling
|
1820 |
+
1868,not overruling
|
1821 |
+
1869,overruling
|
1822 |
+
1870,overruling
|
1823 |
+
1871,overruling
|
1824 |
+
1872,overruling
|
1825 |
+
1873,overruling
|
1826 |
+
1874,not overruling
|
1827 |
+
1875,overruling
|
1828 |
+
1876,not overruling
|
1829 |
+
1877,overruling
|
1830 |
+
1878,not overruling
|
1831 |
+
1879,overruling
|
1832 |
+
1880,overruling
|
1833 |
+
1881,not overruling
|
1834 |
+
1882,not overruling
|
1835 |
+
1883,overruling
|
1836 |
+
1884,overruling
|
1837 |
+
1885,overruling
|
1838 |
+
1886,overruling
|
1839 |
+
1887,overruling
|
1840 |
+
1888,overruling
|
1841 |
+
1889,not overruling
|
1842 |
+
1890,not overruling
|
1843 |
+
1891,overruling
|
1844 |
+
1892,not overruling
|
1845 |
+
1893,overruling
|
1846 |
+
1894,overruling
|
1847 |
+
1895,not overruling
|
1848 |
+
1896,not overruling
|
1849 |
+
1897,overruling
|
1850 |
+
1898,overruling
|
1851 |
+
1899,overruling
|
1852 |
+
1900,not overruling
|
1853 |
+
1901,not overruling
|
1854 |
+
1902,not overruling
|
1855 |
+
1903,not overruling
|
1856 |
+
1904,overruling
|
1857 |
+
1905,overruling
|
1858 |
+
1906,not overruling
|
1859 |
+
1907,not overruling
|
1860 |
+
1908,overruling
|
1861 |
+
1909,not overruling
|
1862 |
+
1910,not overruling
|
1863 |
+
1911,not overruling
|
1864 |
+
1912,not overruling
|
1865 |
+
1913,overruling
|
1866 |
+
1914,not overruling
|
1867 |
+
1915,overruling
|
1868 |
+
1916,overruling
|
1869 |
+
1917,overruling
|
1870 |
+
1918,not overruling
|
1871 |
+
1919,not overruling
|
1872 |
+
1920,not overruling
|
1873 |
+
1921,not overruling
|
1874 |
+
1922,not overruling
|
1875 |
+
1923,overruling
|
1876 |
+
1924,overruling
|
1877 |
+
1925,not overruling
|
1878 |
+
1926,overruling
|
1879 |
+
1927,not overruling
|
1880 |
+
1928,not overruling
|
1881 |
+
1929,overruling
|
1882 |
+
1930,overruling
|
1883 |
+
1931,not overruling
|
1884 |
+
1932,not overruling
|
1885 |
+
1933,not overruling
|
1886 |
+
1934,not overruling
|
1887 |
+
1935,not overruling
|
1888 |
+
1936,not overruling
|
1889 |
+
1937,overruling
|
1890 |
+
1938,overruling
|
1891 |
+
1939,overruling
|
1892 |
+
1940,not overruling
|
1893 |
+
1941,not overruling
|
1894 |
+
1942,not overruling
|
1895 |
+
1943,overruling
|
1896 |
+
1944,overruling
|
1897 |
+
1945,overruling
|
1898 |
+
1946,not overruling
|
1899 |
+
1947,overruling
|
1900 |
+
1948,not overruling
|
1901 |
+
1949,overruling
|
1902 |
+
1950,not overruling
|
1903 |
+
1951,not overruling
|
1904 |
+
1952,not overruling
|
1905 |
+
1953,not overruling
|
1906 |
+
1954,not overruling
|
1907 |
+
1955,not overruling
|
1908 |
+
1956,not overruling
|
1909 |
+
1957,not overruling
|
1910 |
+
1958,not overruling
|
1911 |
+
1959,overruling
|
1912 |
+
1960,not overruling
|
1913 |
+
1961,overruling
|
1914 |
+
1962,not overruling
|
1915 |
+
1963,not overruling
|
1916 |
+
1964,overruling
|
1917 |
+
1965,not overruling
|
1918 |
+
1966,overruling
|
1919 |
+
1967,overruling
|
1920 |
+
1968,not overruling
|
1921 |
+
1969,not overruling
|
1922 |
+
1970,overruling
|
1923 |
+
1971,not overruling
|
1924 |
+
1972,overruling
|
1925 |
+
1973,overruling
|
1926 |
+
1974,not overruling
|
1927 |
+
1975,not overruling
|
1928 |
+
1976,overruling
|
1929 |
+
1977,not overruling
|
1930 |
+
1978,not overruling
|
1931 |
+
1979,not overruling
|
1932 |
+
1980,overruling
|
1933 |
+
1981,not overruling
|
1934 |
+
1982,not overruling
|
1935 |
+
1983,overruling
|
1936 |
+
1984,not overruling
|
1937 |
+
1985,overruling
|
1938 |
+
1986,not overruling
|
1939 |
+
1987,not overruling
|
1940 |
+
1988,overruling
|
1941 |
+
1989,not overruling
|
1942 |
+
1990,overruling
|
1943 |
+
1991,not overruling
|
1944 |
+
1992,overruling
|
1945 |
+
1993,overruling
|
1946 |
+
1994,overruling
|
1947 |
+
1995,overruling
|
1948 |
+
1996,not overruling
|
1949 |
+
1997,overruling
|
1950 |
+
1998,overruling
|
1951 |
+
1999,overruling
|
1952 |
+
2000,not overruling
|
1953 |
+
2001,not overruling
|
1954 |
+
2002,overruling
|
1955 |
+
2003,not overruling
|
1956 |
+
2004,not overruling
|
1957 |
+
2005,not overruling
|
1958 |
+
2006,not overruling
|
1959 |
+
2007,not overruling
|
1960 |
+
2008,not overruling
|
1961 |
+
2009,not overruling
|
1962 |
+
2010,not overruling
|
1963 |
+
2011,not overruling
|
1964 |
+
2012,not overruling
|
1965 |
+
2013,overruling
|
1966 |
+
2014,not overruling
|
1967 |
+
2015,overruling
|
1968 |
+
2016,overruling
|
1969 |
+
2017,not overruling
|
1970 |
+
2018,not overruling
|
1971 |
+
2019,overruling
|
1972 |
+
2020,overruling
|
1973 |
+
2021,overruling
|
1974 |
+
2022,overruling
|
1975 |
+
2023,overruling
|
1976 |
+
2024,overruling
|
1977 |
+
2025,overruling
|
1978 |
+
2026,not overruling
|
1979 |
+
2027,not overruling
|
1980 |
+
2028,not overruling
|
1981 |
+
2029,overruling
|
1982 |
+
2030,overruling
|
1983 |
+
2031,not overruling
|
1984 |
+
2032,not overruling
|
1985 |
+
2033,overruling
|
1986 |
+
2034,overruling
|
1987 |
+
2035,overruling
|
1988 |
+
2036,overruling
|
1989 |
+
2037,overruling
|
1990 |
+
2038,overruling
|
1991 |
+
2039,overruling
|
1992 |
+
2040,not overruling
|
1993 |
+
2041,not overruling
|
1994 |
+
2042,overruling
|
1995 |
+
2043,overruling
|
1996 |
+
2044,not overruling
|
1997 |
+
2045,overruling
|
1998 |
+
2046,not overruling
|
1999 |
+
2047,not overruling
|
2000 |
+
2048,not overruling
|
2001 |
+
2049,not overruling
|
2002 |
+
2050,not overruling
|
2003 |
+
2051,not overruling
|
2004 |
+
2052,overruling
|
2005 |
+
2053,overruling
|
2006 |
+
2054,overruling
|
2007 |
+
2055,not overruling
|
2008 |
+
2056,not overruling
|
2009 |
+
2057,not overruling
|
2010 |
+
2058,overruling
|
2011 |
+
2059,not overruling
|
2012 |
+
2060,not overruling
|
2013 |
+
2061,not overruling
|
2014 |
+
2062,overruling
|
2015 |
+
2063,overruling
|
2016 |
+
2064,not overruling
|
2017 |
+
2065,not overruling
|
2018 |
+
2066,overruling
|
2019 |
+
2067,not overruling
|
2020 |
+
2068,overruling
|
2021 |
+
2069,not overruling
|
2022 |
+
2070,not overruling
|
2023 |
+
2071,overruling
|
2024 |
+
2072,overruling
|
2025 |
+
2073,not overruling
|
2026 |
+
2074,not overruling
|
2027 |
+
2075,overruling
|
2028 |
+
2076,overruling
|
2029 |
+
2077,not overruling
|
2030 |
+
2078,not overruling
|
2031 |
+
2079,not overruling
|
2032 |
+
2080,not overruling
|
2033 |
+
2081,overruling
|
2034 |
+
2082,not overruling
|
2035 |
+
2083,not overruling
|
2036 |
+
2084,overruling
|
2037 |
+
2085,not overruling
|
2038 |
+
2086,not overruling
|
2039 |
+
2087,overruling
|
2040 |
+
2088,not overruling
|
2041 |
+
2089,not overruling
|
2042 |
+
2090,overruling
|
2043 |
+
2091,not overruling
|
2044 |
+
2092,not overruling
|
2045 |
+
2093,not overruling
|
2046 |
+
2094,overruling
|
2047 |
+
2095,overruling
|
2048 |
+
2096,not overruling
|
2049 |
+
2097,not overruling
|
2050 |
+
2098,not overruling
|
2051 |
+
2099,overruling
|
2052 |
+
2100,not overruling
|
2053 |
+
2101,overruling
|
2054 |
+
2102,not overruling
|
2055 |
+
2103,overruling
|
2056 |
+
2104,not overruling
|
2057 |
+
2105,overruling
|
2058 |
+
2106,not overruling
|
2059 |
+
2107,overruling
|
2060 |
+
2108,not overruling
|
2061 |
+
2109,overruling
|
2062 |
+
2110,overruling
|
2063 |
+
2111,not overruling
|
2064 |
+
2112,overruling
|
2065 |
+
2113,not overruling
|
2066 |
+
2114,not overruling
|
2067 |
+
2115,not overruling
|
2068 |
+
2116,not overruling
|
2069 |
+
2117,not overruling
|
2070 |
+
2118,overruling
|
2071 |
+
2119,overruling
|
2072 |
+
2120,overruling
|
2073 |
+
2121,overruling
|
2074 |
+
2122,overruling
|
2075 |
+
2123,overruling
|
2076 |
+
2124,overruling
|
2077 |
+
2125,not overruling
|
2078 |
+
2126,overruling
|
2079 |
+
2127,overruling
|
2080 |
+
2128,not overruling
|
2081 |
+
2129,overruling
|
2082 |
+
2130,overruling
|
2083 |
+
2131,overruling
|
2084 |
+
2132,overruling
|
2085 |
+
2133,overruling
|
2086 |
+
2134,overruling
|
2087 |
+
2135,not overruling
|
2088 |
+
2136,not overruling
|
2089 |
+
2137,not overruling
|
2090 |
+
2138,overruling
|
2091 |
+
2139,overruling
|
2092 |
+
2140,not overruling
|
2093 |
+
2141,not overruling
|
2094 |
+
2142,overruling
|
2095 |
+
2143,overruling
|
2096 |
+
2144,not overruling
|
2097 |
+
2145,not overruling
|
2098 |
+
2146,not overruling
|
2099 |
+
2147,not overruling
|
2100 |
+
2148,overruling
|
2101 |
+
2149,not overruling
|
2102 |
+
2150,overruling
|
2103 |
+
2151,not overruling
|
2104 |
+
2152,overruling
|
2105 |
+
2153,not overruling
|
2106 |
+
2154,overruling
|
2107 |
+
2155,not overruling
|
2108 |
+
2156,not overruling
|
2109 |
+
2157,overruling
|
2110 |
+
2158,not overruling
|
2111 |
+
2159,not overruling
|
2112 |
+
2160,overruling
|
2113 |
+
2161,overruling
|
2114 |
+
2162,not overruling
|
2115 |
+
2163,not overruling
|
2116 |
+
2164,overruling
|
2117 |
+
2165,not overruling
|
2118 |
+
2166,not overruling
|
2119 |
+
2167,not overruling
|
2120 |
+
2168,not overruling
|
2121 |
+
2169,not overruling
|
2122 |
+
2170,not overruling
|
2123 |
+
2171,overruling
|
2124 |
+
2172,not overruling
|
2125 |
+
2173,overruling
|
2126 |
+
2174,overruling
|
2127 |
+
2175,not overruling
|
2128 |
+
2176,overruling
|
2129 |
+
2177,overruling
|
2130 |
+
2178,overruling
|
2131 |
+
2179,not overruling
|
2132 |
+
2180,overruling
|
2133 |
+
2181,overruling
|
2134 |
+
2182,not overruling
|
2135 |
+
2183,not overruling
|
2136 |
+
2184,overruling
|
2137 |
+
2185,overruling
|
2138 |
+
2186,overruling
|
2139 |
+
2187,not overruling
|
2140 |
+
2188,overruling
|
2141 |
+
2189,overruling
|
2142 |
+
2190,not overruling
|
2143 |
+
2191,overruling
|
2144 |
+
2192,not overruling
|
2145 |
+
2193,not overruling
|
2146 |
+
2194,overruling
|
2147 |
+
2195,overruling
|
2148 |
+
2196,overruling
|
2149 |
+
2197,not overruling
|
2150 |
+
2198,overruling
|
2151 |
+
2199,overruling
|
2152 |
+
2200,not overruling
|
2153 |
+
2201,not overruling
|
2154 |
+
2202,not overruling
|
2155 |
+
2203,overruling
|
2156 |
+
2204,not overruling
|
2157 |
+
2205,overruling
|
2158 |
+
2206,overruling
|
2159 |
+
2207,not overruling
|
2160 |
+
2208,overruling
|
2161 |
+
2209,not overruling
|
2162 |
+
2210,not overruling
|
2163 |
+
2211,overruling
|
2164 |
+
2212,overruling
|
2165 |
+
2213,not overruling
|
2166 |
+
2214,overruling
|
2167 |
+
2215,not overruling
|
2168 |
+
2216,not overruling
|
2169 |
+
2217,not overruling
|
2170 |
+
2218,not overruling
|
2171 |
+
2219,not overruling
|
2172 |
+
2220,not overruling
|
2173 |
+
2221,not overruling
|
2174 |
+
2222,not overruling
|
2175 |
+
2223,overruling
|
2176 |
+
2224,not overruling
|
2177 |
+
2225,overruling
|
2178 |
+
2226,overruling
|
2179 |
+
2227,overruling
|
2180 |
+
2228,overruling
|
2181 |
+
2229,overruling
|
2182 |
+
2230,overruling
|
2183 |
+
2231,not overruling
|
2184 |
+
2232,overruling
|
2185 |
+
2233,overruling
|
2186 |
+
2234,overruling
|
2187 |
+
2235,not overruling
|
2188 |
+
2236,overruling
|
2189 |
+
2237,overruling
|
2190 |
+
2238,overruling
|
2191 |
+
2239,not overruling
|
2192 |
+
2240,overruling
|
2193 |
+
2241,overruling
|
2194 |
+
2242,overruling
|
2195 |
+
2243,overruling
|
2196 |
+
2244,overruling
|
2197 |
+
2245,not overruling
|
2198 |
+
2246,not overruling
|
2199 |
+
2247,not overruling
|
2200 |
+
2248,not overruling
|
2201 |
+
2249,not overruling
|
2202 |
+
2250,overruling
|
2203 |
+
2251,overruling
|
2204 |
+
2252,overruling
|
2205 |
+
2253,not overruling
|
2206 |
+
2254,not overruling
|
2207 |
+
2255,overruling
|
2208 |
+
2256,not overruling
|
2209 |
+
2257,overruling
|
2210 |
+
2258,overruling
|
2211 |
+
2259,not overruling
|
2212 |
+
2260,not overruling
|
2213 |
+
2261,overruling
|
2214 |
+
2262,not overruling
|
2215 |
+
2263,overruling
|
2216 |
+
2264,not overruling
|
2217 |
+
2265,not overruling
|
2218 |
+
2266,not overruling
|
2219 |
+
2267,overruling
|
2220 |
+
2268,not overruling
|
2221 |
+
2269,overruling
|
2222 |
+
2270,overruling
|
2223 |
+
2271,overruling
|
2224 |
+
2272,not overruling
|
2225 |
+
2273,not overruling
|
2226 |
+
2274,overruling
|
2227 |
+
2275,overruling
|
2228 |
+
2276,not overruling
|
2229 |
+
2277,overruling
|
2230 |
+
2278,not overruling
|
2231 |
+
2279,not overruling
|
2232 |
+
2280,not overruling
|
2233 |
+
2281,overruling
|
2234 |
+
2282,not overruling
|
2235 |
+
2283,overruling
|
2236 |
+
2284,overruling
|
2237 |
+
2285,overruling
|
2238 |
+
2286,overruling
|
2239 |
+
2287,not overruling
|
2240 |
+
2288,overruling
|
2241 |
+
2289,overruling
|
2242 |
+
2290,overruling
|
2243 |
+
2291,not overruling
|
2244 |
+
2292,overruling
|
2245 |
+
2293,overruling
|
2246 |
+
2294,overruling
|
2247 |
+
2295,not overruling
|
2248 |
+
2296,overruling
|
2249 |
+
2297,not overruling
|
2250 |
+
2298,overruling
|
2251 |
+
2299,not overruling
|
2252 |
+
2300,not overruling
|
2253 |
+
2301,overruling
|
2254 |
+
2302,overruling
|
2255 |
+
2303,overruling
|
2256 |
+
2304,overruling
|
2257 |
+
2305,overruling
|
2258 |
+
2306,overruling
|
2259 |
+
2307,overruling
|
2260 |
+
2308,overruling
|
2261 |
+
2309,not overruling
|
2262 |
+
2310,overruling
|
2263 |
+
2311,overruling
|
2264 |
+
2312,not overruling
|
2265 |
+
2313,overruling
|
2266 |
+
2314,overruling
|
2267 |
+
2315,overruling
|
2268 |
+
2316,not overruling
|
2269 |
+
2317,not overruling
|
2270 |
+
2318,not overruling
|
2271 |
+
2319,overruling
|
2272 |
+
2320,not overruling
|
2273 |
+
2321,overruling
|
2274 |
+
2322,not overruling
|
2275 |
+
2323,overruling
|
2276 |
+
2324,not overruling
|
2277 |
+
2325,not overruling
|
2278 |
+
2326,not overruling
|
2279 |
+
2327,not overruling
|
2280 |
+
2328,overruling
|
2281 |
+
2329,not overruling
|
2282 |
+
2330,not overruling
|
2283 |
+
2331,not overruling
|
2284 |
+
2332,not overruling
|
2285 |
+
2333,overruling
|
2286 |
+
2334,overruling
|
2287 |
+
2335,not overruling
|
2288 |
+
2336,not overruling
|
2289 |
+
2337,overruling
|
2290 |
+
2338,not overruling
|
2291 |
+
2339,overruling
|
2292 |
+
2340,overruling
|
2293 |
+
2341,overruling
|
2294 |
+
2342,overruling
|
2295 |
+
2343,not overruling
|
2296 |
+
2344,overruling
|
2297 |
+
2345,not overruling
|
2298 |
+
2346,overruling
|
2299 |
+
2347,overruling
|
2300 |
+
2348,overruling
|
2301 |
+
2349,overruling
|
2302 |
+
2350,overruling
|
2303 |
+
2351,overruling
|
2304 |
+
2352,not overruling
|
2305 |
+
2353,not overruling
|
2306 |
+
2354,overruling
|
2307 |
+
2355,overruling
|
2308 |
+
2356,not overruling
|
2309 |
+
2357,overruling
|
2310 |
+
2358,not overruling
|
2311 |
+
2359,overruling
|
2312 |
+
2360,not overruling
|
2313 |
+
2361,not overruling
|
2314 |
+
2362,not overruling
|
2315 |
+
2363,not overruling
|
2316 |
+
2364,overruling
|
2317 |
+
2365,overruling
|
2318 |
+
2366,not overruling
|
2319 |
+
2367,overruling
|
2320 |
+
2368,overruling
|
2321 |
+
2369,not overruling
|
2322 |
+
2370,overruling
|
2323 |
+
2371,overruling
|
2324 |
+
2372,not overruling
|
2325 |
+
2373,overruling
|
2326 |
+
2374,not overruling
|
2327 |
+
2375,not overruling
|
2328 |
+
2376,not overruling
|
2329 |
+
2377,not overruling
|
2330 |
+
2378,overruling
|
2331 |
+
2379,not overruling
|
2332 |
+
2380,not overruling
|
2333 |
+
2381,not overruling
|
2334 |
+
2382,overruling
|
2335 |
+
2383,overruling
|
2336 |
+
2384,overruling
|
2337 |
+
2385,not overruling
|
2338 |
+
2386,overruling
|
2339 |
+
2387,overruling
|
2340 |
+
2388,overruling
|
2341 |
+
2389,not overruling
|
2342 |
+
2390,overruling
|
2343 |
+
2391,overruling
|
2344 |
+
2392,not overruling
|
2345 |
+
2393,not overruling
|
2346 |
+
2394,overruling
|
2347 |
+
2395,overruling
|
2348 |
+
2396,overruling
|
2349 |
+
2397,overruling
|
2350 |
+
2398,not overruling
|
2351 |
+
2399,not overruling
|
{{cookiecutter.repo_name}}/data/overruling/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "overruling", "description": "", "data_columns": ["Sentence", "ID"], "label_columns": {"Label": ["not overruling", "overruling"]}}
|
{{cookiecutter.repo_name}}/data/semiconductor_org_types/predictions.csv
ADDED
@@ -0,0 +1,450 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ID,Label
|
2 |
+
50,company
|
3 |
+
51,research institute
|
4 |
+
52,company
|
5 |
+
53,university
|
6 |
+
54,research institute
|
7 |
+
55,research institute
|
8 |
+
56,company
|
9 |
+
57,company
|
10 |
+
58,company
|
11 |
+
59,company
|
12 |
+
60,research institute
|
13 |
+
61,university
|
14 |
+
62,research institute
|
15 |
+
63,company
|
16 |
+
64,company
|
17 |
+
65,university
|
18 |
+
66,university
|
19 |
+
67,research institute
|
20 |
+
68,research institute
|
21 |
+
69,company
|
22 |
+
70,company
|
23 |
+
71,research institute
|
24 |
+
72,company
|
25 |
+
73,company
|
26 |
+
74,university
|
27 |
+
75,research institute
|
28 |
+
76,research institute
|
29 |
+
77,company
|
30 |
+
78,company
|
31 |
+
79,research institute
|
32 |
+
80,research institute
|
33 |
+
81,university
|
34 |
+
82,university
|
35 |
+
83,research institute
|
36 |
+
84,company
|
37 |
+
85,university
|
38 |
+
86,research institute
|
39 |
+
87,university
|
40 |
+
88,research institute
|
41 |
+
89,university
|
42 |
+
90,company
|
43 |
+
91,company
|
44 |
+
92,company
|
45 |
+
93,research institute
|
46 |
+
94,research institute
|
47 |
+
95,company
|
48 |
+
96,university
|
49 |
+
97,research institute
|
50 |
+
98,company
|
51 |
+
99,research institute
|
52 |
+
100,university
|
53 |
+
101,university
|
54 |
+
102,research institute
|
55 |
+
103,university
|
56 |
+
104,company
|
57 |
+
105,research institute
|
58 |
+
106,research institute
|
59 |
+
107,university
|
60 |
+
108,research institute
|
61 |
+
109,research institute
|
62 |
+
110,research institute
|
63 |
+
111,company
|
64 |
+
112,company
|
65 |
+
113,research institute
|
66 |
+
114,research institute
|
67 |
+
115,company
|
68 |
+
116,company
|
69 |
+
117,company
|
70 |
+
118,research institute
|
71 |
+
119,university
|
72 |
+
120,research institute
|
73 |
+
121,university
|
74 |
+
122,university
|
75 |
+
123,university
|
76 |
+
124,research institute
|
77 |
+
125,university
|
78 |
+
126,research institute
|
79 |
+
127,company
|
80 |
+
128,university
|
81 |
+
129,company
|
82 |
+
130,company
|
83 |
+
131,research institute
|
84 |
+
132,company
|
85 |
+
133,university
|
86 |
+
134,university
|
87 |
+
135,research institute
|
88 |
+
136,research institute
|
89 |
+
137,company
|
90 |
+
138,research institute
|
91 |
+
139,research institute
|
92 |
+
140,university
|
93 |
+
141,university
|
94 |
+
142,research institute
|
95 |
+
143,university
|
96 |
+
144,university
|
97 |
+
145,company
|
98 |
+
146,research institute
|
99 |
+
147,company
|
100 |
+
148,company
|
101 |
+
149,university
|
102 |
+
150,company
|
103 |
+
151,research institute
|
104 |
+
152,university
|
105 |
+
153,university
|
106 |
+
154,company
|
107 |
+
155,company
|
108 |
+
156,research institute
|
109 |
+
157,company
|
110 |
+
158,research institute
|
111 |
+
159,research institute
|
112 |
+
160,company
|
113 |
+
161,company
|
114 |
+
162,research institute
|
115 |
+
163,university
|
116 |
+
164,company
|
117 |
+
165,research institute
|
118 |
+
166,university
|
119 |
+
167,university
|
120 |
+
168,research institute
|
121 |
+
169,company
|
122 |
+
170,research institute
|
123 |
+
171,research institute
|
124 |
+
172,research institute
|
125 |
+
173,company
|
126 |
+
174,university
|
127 |
+
175,research institute
|
128 |
+
176,university
|
129 |
+
177,university
|
130 |
+
178,company
|
131 |
+
179,research institute
|
132 |
+
180,university
|
133 |
+
181,company
|
134 |
+
182,research institute
|
135 |
+
183,research institute
|
136 |
+
184,company
|
137 |
+
185,research institute
|
138 |
+
186,research institute
|
139 |
+
187,university
|
140 |
+
188,company
|
141 |
+
189,research institute
|
142 |
+
190,university
|
143 |
+
191,company
|
144 |
+
192,research institute
|
145 |
+
193,company
|
146 |
+
194,research institute
|
147 |
+
195,company
|
148 |
+
196,research institute
|
149 |
+
197,research institute
|
150 |
+
198,research institute
|
151 |
+
199,university
|
152 |
+
200,company
|
153 |
+
201,research institute
|
154 |
+
202,company
|
155 |
+
203,research institute
|
156 |
+
204,company
|
157 |
+
205,company
|
158 |
+
206,company
|
159 |
+
207,company
|
160 |
+
208,company
|
161 |
+
209,university
|
162 |
+
210,company
|
163 |
+
211,university
|
164 |
+
212,university
|
165 |
+
213,company
|
166 |
+
214,university
|
167 |
+
215,company
|
168 |
+
216,university
|
169 |
+
217,research institute
|
170 |
+
218,university
|
171 |
+
219,company
|
172 |
+
220,research institute
|
173 |
+
221,company
|
174 |
+
222,company
|
175 |
+
223,university
|
176 |
+
224,research institute
|
177 |
+
225,research institute
|
178 |
+
226,university
|
179 |
+
227,company
|
180 |
+
228,research institute
|
181 |
+
229,company
|
182 |
+
230,company
|
183 |
+
231,research institute
|
184 |
+
232,research institute
|
185 |
+
233,research institute
|
186 |
+
234,company
|
187 |
+
235,company
|
188 |
+
236,research institute
|
189 |
+
237,research institute
|
190 |
+
238,company
|
191 |
+
239,university
|
192 |
+
240,research institute
|
193 |
+
241,company
|
194 |
+
242,research institute
|
195 |
+
243,company
|
196 |
+
244,company
|
197 |
+
245,company
|
198 |
+
246,research institute
|
199 |
+
247,research institute
|
200 |
+
248,company
|
201 |
+
249,university
|
202 |
+
250,company
|
203 |
+
251,company
|
204 |
+
252,research institute
|
205 |
+
253,research institute
|
206 |
+
254,company
|
207 |
+
255,research institute
|
208 |
+
256,company
|
209 |
+
257,research institute
|
210 |
+
258,university
|
211 |
+
259,company
|
212 |
+
260,university
|
213 |
+
261,research institute
|
214 |
+
262,university
|
215 |
+
263,university
|
216 |
+
264,university
|
217 |
+
265,university
|
218 |
+
266,company
|
219 |
+
267,research institute
|
220 |
+
268,research institute
|
221 |
+
269,company
|
222 |
+
270,research institute
|
223 |
+
271,company
|
224 |
+
272,university
|
225 |
+
273,company
|
226 |
+
274,research institute
|
227 |
+
275,research institute
|
228 |
+
276,university
|
229 |
+
277,research institute
|
230 |
+
278,university
|
231 |
+
279,research institute
|
232 |
+
280,research institute
|
233 |
+
281,university
|
234 |
+
282,company
|
235 |
+
283,university
|
236 |
+
284,university
|
237 |
+
285,research institute
|
238 |
+
286,research institute
|
239 |
+
287,research institute
|
240 |
+
288,research institute
|
241 |
+
289,company
|
242 |
+
290,research institute
|
243 |
+
291,university
|
244 |
+
292,university
|
245 |
+
293,company
|
246 |
+
294,company
|
247 |
+
295,research institute
|
248 |
+
296,university
|
249 |
+
297,company
|
250 |
+
298,research institute
|
251 |
+
299,university
|
252 |
+
300,company
|
253 |
+
301,company
|
254 |
+
302,university
|
255 |
+
303,university
|
256 |
+
304,research institute
|
257 |
+
305,university
|
258 |
+
306,research institute
|
259 |
+
307,university
|
260 |
+
308,research institute
|
261 |
+
309,research institute
|
262 |
+
310,company
|
263 |
+
311,company
|
264 |
+
312,company
|
265 |
+
313,company
|
266 |
+
314,company
|
267 |
+
315,university
|
268 |
+
316,research institute
|
269 |
+
317,company
|
270 |
+
318,research institute
|
271 |
+
319,research institute
|
272 |
+
320,company
|
273 |
+
321,university
|
274 |
+
322,company
|
275 |
+
323,company
|
276 |
+
324,company
|
277 |
+
325,university
|
278 |
+
326,university
|
279 |
+
327,research institute
|
280 |
+
328,university
|
281 |
+
329,research institute
|
282 |
+
330,university
|
283 |
+
331,research institute
|
284 |
+
332,company
|
285 |
+
333,company
|
286 |
+
334,company
|
287 |
+
335,university
|
288 |
+
336,university
|
289 |
+
337,company
|
290 |
+
338,research institute
|
291 |
+
339,university
|
292 |
+
340,research institute
|
293 |
+
341,university
|
294 |
+
342,company
|
295 |
+
343,company
|
296 |
+
344,research institute
|
297 |
+
345,company
|
298 |
+
346,university
|
299 |
+
347,company
|
300 |
+
348,research institute
|
301 |
+
349,research institute
|
302 |
+
350,company
|
303 |
+
351,company
|
304 |
+
352,university
|
305 |
+
353,research institute
|
306 |
+
354,research institute
|
307 |
+
355,company
|
308 |
+
356,research institute
|
309 |
+
357,research institute
|
310 |
+
358,company
|
311 |
+
359,research institute
|
312 |
+
360,research institute
|
313 |
+
361,company
|
314 |
+
362,company
|
315 |
+
363,company
|
316 |
+
364,university
|
317 |
+
365,research institute
|
318 |
+
366,university
|
319 |
+
367,research institute
|
320 |
+
368,research institute
|
321 |
+
369,university
|
322 |
+
370,research institute
|
323 |
+
371,company
|
324 |
+
372,university
|
325 |
+
373,company
|
326 |
+
374,university
|
327 |
+
375,research institute
|
328 |
+
376,research institute
|
329 |
+
377,research institute
|
330 |
+
378,company
|
331 |
+
379,university
|
332 |
+
380,company
|
333 |
+
381,research institute
|
334 |
+
382,company
|
335 |
+
383,company
|
336 |
+
384,university
|
337 |
+
385,company
|
338 |
+
386,research institute
|
339 |
+
387,research institute
|
340 |
+
388,research institute
|
341 |
+
389,research institute
|
342 |
+
390,university
|
343 |
+
391,company
|
344 |
+
392,university
|
345 |
+
393,company
|
346 |
+
394,company
|
347 |
+
395,university
|
348 |
+
396,research institute
|
349 |
+
397,company
|
350 |
+
398,university
|
351 |
+
399,company
|
352 |
+
400,research institute
|
353 |
+
401,university
|
354 |
+
402,university
|
355 |
+
403,research institute
|
356 |
+
404,university
|
357 |
+
405,company
|
358 |
+
406,university
|
359 |
+
407,company
|
360 |
+
408,research institute
|
361 |
+
409,research institute
|
362 |
+
410,research institute
|
363 |
+
411,company
|
364 |
+
412,company
|
365 |
+
413,university
|
366 |
+
414,company
|
367 |
+
415,university
|
368 |
+
416,company
|
369 |
+
417,university
|
370 |
+
418,research institute
|
371 |
+
419,university
|
372 |
+
420,research institute
|
373 |
+
421,university
|
374 |
+
422,research institute
|
375 |
+
423,university
|
376 |
+
424,research institute
|
377 |
+
425,university
|
378 |
+
426,university
|
379 |
+
427,research institute
|
380 |
+
428,research institute
|
381 |
+
429,company
|
382 |
+
430,research institute
|
383 |
+
431,university
|
384 |
+
432,research institute
|
385 |
+
433,university
|
386 |
+
434,research institute
|
387 |
+
435,company
|
388 |
+
436,research institute
|
389 |
+
437,company
|
390 |
+
438,university
|
391 |
+
439,company
|
392 |
+
440,university
|
393 |
+
441,university
|
394 |
+
442,company
|
395 |
+
443,research institute
|
396 |
+
444,research institute
|
397 |
+
445,company
|
398 |
+
446,university
|
399 |
+
447,research institute
|
400 |
+
448,university
|
401 |
+
449,university
|
402 |
+
450,company
|
403 |
+
451,company
|
404 |
+
452,research institute
|
405 |
+
453,university
|
406 |
+
454,company
|
407 |
+
455,research institute
|
408 |
+
456,university
|
409 |
+
457,research institute
|
410 |
+
458,research institute
|
411 |
+
459,company
|
412 |
+
460,research institute
|
413 |
+
461,company
|
414 |
+
462,university
|
415 |
+
463,company
|
416 |
+
464,university
|
417 |
+
465,company
|
418 |
+
466,research institute
|
419 |
+
467,company
|
420 |
+
468,company
|
421 |
+
469,company
|
422 |
+
470,university
|
423 |
+
471,research institute
|
424 |
+
472,university
|
425 |
+
473,university
|
426 |
+
474,company
|
427 |
+
475,company
|
428 |
+
476,company
|
429 |
+
477,university
|
430 |
+
478,research institute
|
431 |
+
479,university
|
432 |
+
480,university
|
433 |
+
481,company
|
434 |
+
482,university
|
435 |
+
483,university
|
436 |
+
484,research institute
|
437 |
+
485,university
|
438 |
+
486,research institute
|
439 |
+
487,university
|
440 |
+
488,company
|
441 |
+
489,research institute
|
442 |
+
490,university
|
443 |
+
491,company
|
444 |
+
492,research institute
|
445 |
+
493,research institute
|
446 |
+
494,company
|
447 |
+
495,university
|
448 |
+
496,research institute
|
449 |
+
497,university
|
450 |
+
498,university
|
{{cookiecutter.repo_name}}/data/semiconductor_org_types/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "semiconductor_org_types", "description": "", "data_columns": ["Paper title", "Organization name", "ID"], "label_columns": {"Label": ["company", "research institute", "university"]}}
|
{{cookiecutter.repo_name}}/data/systematic_review_inclusion/predictions.csv
ADDED
@@ -0,0 +1,2245 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ID,Label
|
2 |
+
50,included
|
3 |
+
51,not included
|
4 |
+
52,included
|
5 |
+
53,not included
|
6 |
+
54,not included
|
7 |
+
55,included
|
8 |
+
56,included
|
9 |
+
57,included
|
10 |
+
58,included
|
11 |
+
59,not included
|
12 |
+
60,not included
|
13 |
+
61,included
|
14 |
+
62,included
|
15 |
+
63,not included
|
16 |
+
64,not included
|
17 |
+
65,included
|
18 |
+
66,included
|
19 |
+
67,not included
|
20 |
+
68,included
|
21 |
+
69,included
|
22 |
+
70,not included
|
23 |
+
71,not included
|
24 |
+
72,included
|
25 |
+
73,included
|
26 |
+
74,not included
|
27 |
+
75,not included
|
28 |
+
76,not included
|
29 |
+
77,included
|
30 |
+
78,not included
|
31 |
+
79,not included
|
32 |
+
80,included
|
33 |
+
81,included
|
34 |
+
82,included
|
35 |
+
83,not included
|
36 |
+
84,not included
|
37 |
+
85,included
|
38 |
+
86,not included
|
39 |
+
87,included
|
40 |
+
88,not included
|
41 |
+
89,not included
|
42 |
+
90,included
|
43 |
+
91,not included
|
44 |
+
92,not included
|
45 |
+
93,not included
|
46 |
+
94,not included
|
47 |
+
95,not included
|
48 |
+
96,included
|
49 |
+
97,included
|
50 |
+
98,not included
|
51 |
+
99,not included
|
52 |
+
100,included
|
53 |
+
101,included
|
54 |
+
102,included
|
55 |
+
103,not included
|
56 |
+
104,not included
|
57 |
+
105,not included
|
58 |
+
106,not included
|
59 |
+
107,included
|
60 |
+
108,included
|
61 |
+
109,included
|
62 |
+
110,not included
|
63 |
+
111,included
|
64 |
+
112,not included
|
65 |
+
113,not included
|
66 |
+
114,included
|
67 |
+
115,not included
|
68 |
+
116,not included
|
69 |
+
117,not included
|
70 |
+
118,included
|
71 |
+
119,not included
|
72 |
+
120,included
|
73 |
+
121,included
|
74 |
+
122,included
|
75 |
+
123,not included
|
76 |
+
124,included
|
77 |
+
125,included
|
78 |
+
126,not included
|
79 |
+
127,included
|
80 |
+
128,not included
|
81 |
+
129,not included
|
82 |
+
130,included
|
83 |
+
131,included
|
84 |
+
132,not included
|
85 |
+
133,included
|
86 |
+
134,not included
|
87 |
+
135,not included
|
88 |
+
136,included
|
89 |
+
137,not included
|
90 |
+
138,not included
|
91 |
+
139,not included
|
92 |
+
140,included
|
93 |
+
141,not included
|
94 |
+
142,included
|
95 |
+
143,not included
|
96 |
+
144,included
|
97 |
+
145,not included
|
98 |
+
146,not included
|
99 |
+
147,included
|
100 |
+
148,not included
|
101 |
+
149,not included
|
102 |
+
150,included
|
103 |
+
151,not included
|
104 |
+
152,included
|
105 |
+
153,not included
|
106 |
+
154,included
|
107 |
+
155,not included
|
108 |
+
156,included
|
109 |
+
157,not included
|
110 |
+
158,not included
|
111 |
+
159,not included
|
112 |
+
160,included
|
113 |
+
161,not included
|
114 |
+
162,included
|
115 |
+
163,not included
|
116 |
+
164,included
|
117 |
+
165,included
|
118 |
+
166,included
|
119 |
+
167,included
|
120 |
+
168,included
|
121 |
+
169,included
|
122 |
+
170,included
|
123 |
+
171,included
|
124 |
+
172,not included
|
125 |
+
173,included
|
126 |
+
174,not included
|
127 |
+
175,included
|
128 |
+
176,included
|
129 |
+
177,not included
|
130 |
+
178,not included
|
131 |
+
179,included
|
132 |
+
180,not included
|
133 |
+
181,included
|
134 |
+
182,included
|
135 |
+
183,not included
|
136 |
+
184,not included
|
137 |
+
185,not included
|
138 |
+
186,included
|
139 |
+
187,included
|
140 |
+
188,not included
|
141 |
+
189,not included
|
142 |
+
190,included
|
143 |
+
191,not included
|
144 |
+
192,included
|
145 |
+
193,not included
|
146 |
+
194,included
|
147 |
+
195,included
|
148 |
+
196,included
|
149 |
+
197,not included
|
150 |
+
198,not included
|
151 |
+
199,included
|
152 |
+
200,included
|
153 |
+
201,included
|
154 |
+
202,not included
|
155 |
+
203,not included
|
156 |
+
204,included
|
157 |
+
205,not included
|
158 |
+
206,included
|
159 |
+
207,not included
|
160 |
+
208,included
|
161 |
+
209,not included
|
162 |
+
210,included
|
163 |
+
211,not included
|
164 |
+
212,not included
|
165 |
+
213,included
|
166 |
+
214,not included
|
167 |
+
215,included
|
168 |
+
216,included
|
169 |
+
217,not included
|
170 |
+
218,not included
|
171 |
+
219,not included
|
172 |
+
220,not included
|
173 |
+
221,not included
|
174 |
+
222,included
|
175 |
+
223,not included
|
176 |
+
224,not included
|
177 |
+
225,not included
|
178 |
+
226,not included
|
179 |
+
227,included
|
180 |
+
228,not included
|
181 |
+
229,included
|
182 |
+
230,included
|
183 |
+
231,not included
|
184 |
+
232,included
|
185 |
+
233,not included
|
186 |
+
234,included
|
187 |
+
235,included
|
188 |
+
236,not included
|
189 |
+
237,not included
|
190 |
+
238,not included
|
191 |
+
239,not included
|
192 |
+
240,included
|
193 |
+
241,included
|
194 |
+
242,included
|
195 |
+
243,included
|
196 |
+
244,included
|
197 |
+
245,not included
|
198 |
+
246,included
|
199 |
+
247,not included
|
200 |
+
248,not included
|
201 |
+
249,included
|
202 |
+
250,included
|
203 |
+
251,included
|
204 |
+
252,included
|
205 |
+
253,not included
|
206 |
+
254,not included
|
207 |
+
255,not included
|
208 |
+
256,included
|
209 |
+
257,included
|
210 |
+
258,included
|
211 |
+
259,included
|
212 |
+
260,not included
|
213 |
+
261,not included
|
214 |
+
262,included
|
215 |
+
263,included
|
216 |
+
264,not included
|
217 |
+
265,included
|
218 |
+
266,included
|
219 |
+
267,not included
|
220 |
+
268,not included
|
221 |
+
269,included
|
222 |
+
270,included
|
223 |
+
271,not included
|
224 |
+
272,not included
|
225 |
+
273,included
|
226 |
+
274,not included
|
227 |
+
275,not included
|
228 |
+
276,included
|
229 |
+
277,not included
|
230 |
+
278,not included
|
231 |
+
279,included
|
232 |
+
280,included
|
233 |
+
281,included
|
234 |
+
282,not included
|
235 |
+
283,not included
|
236 |
+
284,not included
|
237 |
+
285,not included
|
238 |
+
286,included
|
239 |
+
287,included
|
240 |
+
288,not included
|
241 |
+
289,not included
|
242 |
+
290,not included
|
243 |
+
291,included
|
244 |
+
292,included
|
245 |
+
293,not included
|
246 |
+
294,included
|
247 |
+
295,included
|
248 |
+
296,included
|
249 |
+
297,not included
|
250 |
+
298,not included
|
251 |
+
299,not included
|
252 |
+
300,not included
|
253 |
+
301,included
|
254 |
+
302,included
|
255 |
+
303,included
|
256 |
+
304,not included
|
257 |
+
305,included
|
258 |
+
306,included
|
259 |
+
307,not included
|
260 |
+
308,not included
|
261 |
+
309,included
|
262 |
+
310,included
|
263 |
+
311,not included
|
264 |
+
312,not included
|
265 |
+
313,not included
|
266 |
+
314,included
|
267 |
+
315,included
|
268 |
+
316,included
|
269 |
+
317,included
|
270 |
+
318,not included
|
271 |
+
319,not included
|
272 |
+
320,not included
|
273 |
+
321,not included
|
274 |
+
322,not included
|
275 |
+
323,not included
|
276 |
+
324,included
|
277 |
+
325,not included
|
278 |
+
326,not included
|
279 |
+
327,not included
|
280 |
+
328,included
|
281 |
+
329,not included
|
282 |
+
330,included
|
283 |
+
331,included
|
284 |
+
332,included
|
285 |
+
333,not included
|
286 |
+
334,not included
|
287 |
+
335,included
|
288 |
+
336,not included
|
289 |
+
337,included
|
290 |
+
338,included
|
291 |
+
339,not included
|
292 |
+
340,included
|
293 |
+
341,not included
|
294 |
+
342,not included
|
295 |
+
343,not included
|
296 |
+
344,included
|
297 |
+
345,not included
|
298 |
+
346,included
|
299 |
+
347,included
|
300 |
+
348,included
|
301 |
+
349,not included
|
302 |
+
350,included
|
303 |
+
351,included
|
304 |
+
352,included
|
305 |
+
353,not included
|
306 |
+
354,included
|
307 |
+
355,included
|
308 |
+
356,included
|
309 |
+
357,not included
|
310 |
+
358,included
|
311 |
+
359,not included
|
312 |
+
360,not included
|
313 |
+
361,included
|
314 |
+
362,not included
|
315 |
+
363,included
|
316 |
+
364,not included
|
317 |
+
365,not included
|
318 |
+
366,included
|
319 |
+
367,not included
|
320 |
+
368,not included
|
321 |
+
369,not included
|
322 |
+
370,not included
|
323 |
+
371,not included
|
324 |
+
372,not included
|
325 |
+
373,not included
|
326 |
+
374,not included
|
327 |
+
375,included
|
328 |
+
376,not included
|
329 |
+
377,included
|
330 |
+
378,not included
|
331 |
+
379,not included
|
332 |
+
380,not included
|
333 |
+
381,not included
|
334 |
+
382,included
|
335 |
+
383,included
|
336 |
+
384,included
|
337 |
+
385,not included
|
338 |
+
386,not included
|
339 |
+
387,not included
|
340 |
+
388,included
|
341 |
+
389,not included
|
342 |
+
390,not included
|
343 |
+
391,included
|
344 |
+
392,not included
|
345 |
+
393,included
|
346 |
+
394,included
|
347 |
+
395,included
|
348 |
+
396,included
|
349 |
+
397,not included
|
350 |
+
398,included
|
351 |
+
399,included
|
352 |
+
400,included
|
353 |
+
401,not included
|
354 |
+
402,not included
|
355 |
+
403,included
|
356 |
+
404,included
|
357 |
+
405,included
|
358 |
+
406,included
|
359 |
+
407,included
|
360 |
+
408,included
|
361 |
+
409,not included
|
362 |
+
410,included
|
363 |
+
411,included
|
364 |
+
412,not included
|
365 |
+
413,included
|
366 |
+
414,not included
|
367 |
+
415,included
|
368 |
+
416,included
|
369 |
+
417,not included
|
370 |
+
418,included
|
371 |
+
419,included
|
372 |
+
420,not included
|
373 |
+
421,included
|
374 |
+
422,included
|
375 |
+
423,not included
|
376 |
+
424,included
|
377 |
+
425,included
|
378 |
+
426,not included
|
379 |
+
427,not included
|
380 |
+
428,included
|
381 |
+
429,not included
|
382 |
+
430,included
|
383 |
+
431,included
|
384 |
+
432,not included
|
385 |
+
433,not included
|
386 |
+
434,not included
|
387 |
+
435,not included
|
388 |
+
436,not included
|
389 |
+
437,included
|
390 |
+
438,not included
|
391 |
+
439,included
|
392 |
+
440,not included
|
393 |
+
441,included
|
394 |
+
442,not included
|
395 |
+
443,included
|
396 |
+
444,not included
|
397 |
+
445,included
|
398 |
+
446,included
|
399 |
+
447,included
|
400 |
+
448,included
|
401 |
+
449,included
|
402 |
+
450,included
|
403 |
+
451,included
|
404 |
+
452,included
|
405 |
+
453,not included
|
406 |
+
454,included
|
407 |
+
455,not included
|
408 |
+
456,not included
|
409 |
+
457,not included
|
410 |
+
458,included
|
411 |
+
459,included
|
412 |
+
460,included
|
413 |
+
461,not included
|
414 |
+
462,not included
|
415 |
+
463,not included
|
416 |
+
464,not included
|
417 |
+
465,included
|
418 |
+
466,included
|
419 |
+
467,not included
|
420 |
+
468,not included
|
421 |
+
469,not included
|
422 |
+
470,not included
|
423 |
+
471,included
|
424 |
+
472,included
|
425 |
+
473,not included
|
426 |
+
474,included
|
427 |
+
475,included
|
428 |
+
476,not included
|
429 |
+
477,not included
|
430 |
+
478,not included
|
431 |
+
479,included
|
432 |
+
480,included
|
433 |
+
481,included
|
434 |
+
482,not included
|
435 |
+
483,included
|
436 |
+
484,included
|
437 |
+
485,included
|
438 |
+
486,included
|
439 |
+
487,not included
|
440 |
+
488,included
|
441 |
+
489,not included
|
442 |
+
490,included
|
443 |
+
491,included
|
444 |
+
492,included
|
445 |
+
493,included
|
446 |
+
494,not included
|
447 |
+
495,included
|
448 |
+
496,included
|
449 |
+
497,included
|
450 |
+
498,not included
|
451 |
+
499,included
|
452 |
+
500,included
|
453 |
+
501,not included
|
454 |
+
502,included
|
455 |
+
503,not included
|
456 |
+
504,not included
|
457 |
+
505,not included
|
458 |
+
506,not included
|
459 |
+
507,included
|
460 |
+
508,included
|
461 |
+
509,not included
|
462 |
+
510,not included
|
463 |
+
511,included
|
464 |
+
512,not included
|
465 |
+
513,not included
|
466 |
+
514,included
|
467 |
+
515,not included
|
468 |
+
516,not included
|
469 |
+
517,included
|
470 |
+
518,included
|
471 |
+
519,included
|
472 |
+
520,not included
|
473 |
+
521,not included
|
474 |
+
522,not included
|
475 |
+
523,not included
|
476 |
+
524,not included
|
477 |
+
525,not included
|
478 |
+
526,not included
|
479 |
+
527,included
|
480 |
+
528,not included
|
481 |
+
529,not included
|
482 |
+
530,included
|
483 |
+
531,included
|
484 |
+
532,not included
|
485 |
+
533,not included
|
486 |
+
534,not included
|
487 |
+
535,included
|
488 |
+
536,not included
|
489 |
+
537,included
|
490 |
+
538,included
|
491 |
+
539,included
|
492 |
+
540,included
|
493 |
+
541,not included
|
494 |
+
542,included
|
495 |
+
543,not included
|
496 |
+
544,included
|
497 |
+
545,not included
|
498 |
+
546,included
|
499 |
+
547,not included
|
500 |
+
548,included
|
501 |
+
549,included
|
502 |
+
550,included
|
503 |
+
551,included
|
504 |
+
552,included
|
505 |
+
553,included
|
506 |
+
554,not included
|
507 |
+
555,not included
|
508 |
+
556,included
|
509 |
+
557,included
|
510 |
+
558,included
|
511 |
+
559,included
|
512 |
+
560,included
|
513 |
+
561,included
|
514 |
+
562,not included
|
515 |
+
563,included
|
516 |
+
564,not included
|
517 |
+
565,not included
|
518 |
+
566,not included
|
519 |
+
567,included
|
520 |
+
568,included
|
521 |
+
569,included
|
522 |
+
570,included
|
523 |
+
571,included
|
524 |
+
572,included
|
525 |
+
573,included
|
526 |
+
574,not included
|
527 |
+
575,not included
|
528 |
+
576,included
|
529 |
+
577,included
|
530 |
+
578,included
|
531 |
+
579,not included
|
532 |
+
580,not included
|
533 |
+
581,not included
|
534 |
+
582,not included
|
535 |
+
583,not included
|
536 |
+
584,not included
|
537 |
+
585,not included
|
538 |
+
586,included
|
539 |
+
587,included
|
540 |
+
588,included
|
541 |
+
589,included
|
542 |
+
590,not included
|
543 |
+
591,included
|
544 |
+
592,not included
|
545 |
+
593,included
|
546 |
+
594,not included
|
547 |
+
595,included
|
548 |
+
596,not included
|
549 |
+
597,not included
|
550 |
+
598,not included
|
551 |
+
599,included
|
552 |
+
600,included
|
553 |
+
601,included
|
554 |
+
602,not included
|
555 |
+
603,included
|
556 |
+
604,included
|
557 |
+
605,included
|
558 |
+
606,included
|
559 |
+
607,included
|
560 |
+
608,included
|
561 |
+
609,not included
|
562 |
+
610,not included
|
563 |
+
611,not included
|
564 |
+
612,included
|
565 |
+
613,not included
|
566 |
+
614,not included
|
567 |
+
615,included
|
568 |
+
616,included
|
569 |
+
617,not included
|
570 |
+
618,not included
|
571 |
+
619,not included
|
572 |
+
620,not included
|
573 |
+
621,included
|
574 |
+
622,not included
|
575 |
+
623,included
|
576 |
+
624,not included
|
577 |
+
625,included
|
578 |
+
626,not included
|
579 |
+
627,included
|
580 |
+
628,included
|
581 |
+
629,not included
|
582 |
+
630,not included
|
583 |
+
631,included
|
584 |
+
632,included
|
585 |
+
633,not included
|
586 |
+
634,included
|
587 |
+
635,included
|
588 |
+
636,included
|
589 |
+
637,included
|
590 |
+
638,not included
|
591 |
+
639,included
|
592 |
+
640,included
|
593 |
+
641,not included
|
594 |
+
642,not included
|
595 |
+
643,included
|
596 |
+
644,included
|
597 |
+
645,included
|
598 |
+
646,included
|
599 |
+
647,included
|
600 |
+
648,not included
|
601 |
+
649,included
|
602 |
+
650,not included
|
603 |
+
651,not included
|
604 |
+
652,not included
|
605 |
+
653,included
|
606 |
+
654,not included
|
607 |
+
655,not included
|
608 |
+
656,not included
|
609 |
+
657,not included
|
610 |
+
658,included
|
611 |
+
659,included
|
612 |
+
660,not included
|
613 |
+
661,included
|
614 |
+
662,not included
|
615 |
+
663,not included
|
616 |
+
664,included
|
617 |
+
665,included
|
618 |
+
666,included
|
619 |
+
667,included
|
620 |
+
668,included
|
621 |
+
669,included
|
622 |
+
670,included
|
623 |
+
671,not included
|
624 |
+
672,included
|
625 |
+
673,included
|
626 |
+
674,included
|
627 |
+
675,included
|
628 |
+
676,not included
|
629 |
+
677,included
|
630 |
+
678,not included
|
631 |
+
679,not included
|
632 |
+
680,not included
|
633 |
+
681,included
|
634 |
+
682,not included
|
635 |
+
683,not included
|
636 |
+
684,included
|
637 |
+
685,included
|
638 |
+
686,not included
|
639 |
+
687,not included
|
640 |
+
688,included
|
641 |
+
689,included
|
642 |
+
690,not included
|
643 |
+
691,not included
|
644 |
+
692,included
|
645 |
+
693,included
|
646 |
+
694,not included
|
647 |
+
695,included
|
648 |
+
696,not included
|
649 |
+
697,included
|
650 |
+
698,not included
|
651 |
+
699,included
|
652 |
+
700,included
|
653 |
+
701,included
|
654 |
+
702,included
|
655 |
+
703,included
|
656 |
+
704,included
|
657 |
+
705,included
|
658 |
+
706,included
|
659 |
+
707,not included
|
660 |
+
708,not included
|
661 |
+
709,included
|
662 |
+
710,included
|
663 |
+
711,not included
|
664 |
+
712,included
|
665 |
+
713,included
|
666 |
+
714,included
|
667 |
+
715,included
|
668 |
+
716,included
|
669 |
+
717,included
|
670 |
+
718,not included
|
671 |
+
719,included
|
672 |
+
720,included
|
673 |
+
721,not included
|
674 |
+
722,not included
|
675 |
+
723,not included
|
676 |
+
724,included
|
677 |
+
725,included
|
678 |
+
726,included
|
679 |
+
727,included
|
680 |
+
728,included
|
681 |
+
729,included
|
682 |
+
730,not included
|
683 |
+
731,not included
|
684 |
+
732,not included
|
685 |
+
733,not included
|
686 |
+
734,included
|
687 |
+
735,not included
|
688 |
+
736,not included
|
689 |
+
737,included
|
690 |
+
738,not included
|
691 |
+
739,included
|
692 |
+
740,not included
|
693 |
+
741,included
|
694 |
+
742,included
|
695 |
+
743,not included
|
696 |
+
744,not included
|
697 |
+
745,not included
|
698 |
+
746,included
|
699 |
+
747,not included
|
700 |
+
748,included
|
701 |
+
749,not included
|
702 |
+
750,not included
|
703 |
+
751,not included
|
704 |
+
752,included
|
705 |
+
753,not included
|
706 |
+
754,not included
|
707 |
+
755,not included
|
708 |
+
756,not included
|
709 |
+
757,included
|
710 |
+
758,not included
|
711 |
+
759,included
|
712 |
+
760,included
|
713 |
+
761,not included
|
714 |
+
762,included
|
715 |
+
763,included
|
716 |
+
764,not included
|
717 |
+
765,included
|
718 |
+
766,not included
|
719 |
+
767,included
|
720 |
+
768,included
|
721 |
+
769,included
|
722 |
+
770,included
|
723 |
+
771,included
|
724 |
+
772,included
|
725 |
+
773,included
|
726 |
+
774,not included
|
727 |
+
775,not included
|
728 |
+
776,not included
|
729 |
+
777,included
|
730 |
+
778,not included
|
731 |
+
779,not included
|
732 |
+
780,not included
|
733 |
+
781,included
|
734 |
+
782,not included
|
735 |
+
783,included
|
736 |
+
784,included
|
737 |
+
785,included
|
738 |
+
786,included
|
739 |
+
787,not included
|
740 |
+
788,included
|
741 |
+
789,not included
|
742 |
+
790,included
|
743 |
+
791,not included
|
744 |
+
792,included
|
745 |
+
793,included
|
746 |
+
794,not included
|
747 |
+
795,not included
|
748 |
+
796,not included
|
749 |
+
797,included
|
750 |
+
798,included
|
751 |
+
799,not included
|
752 |
+
800,not included
|
753 |
+
801,included
|
754 |
+
802,not included
|
755 |
+
803,included
|
756 |
+
804,not included
|
757 |
+
805,not included
|
758 |
+
806,not included
|
759 |
+
807,included
|
760 |
+
808,not included
|
761 |
+
809,included
|
762 |
+
810,included
|
763 |
+
811,not included
|
764 |
+
812,not included
|
765 |
+
813,included
|
766 |
+
814,included
|
767 |
+
815,included
|
768 |
+
816,not included
|
769 |
+
817,included
|
770 |
+
818,included
|
771 |
+
819,included
|
772 |
+
820,not included
|
773 |
+
821,not included
|
774 |
+
822,not included
|
775 |
+
823,not included
|
776 |
+
824,not included
|
777 |
+
825,not included
|
778 |
+
826,not included
|
779 |
+
827,not included
|
780 |
+
828,included
|
781 |
+
829,not included
|
782 |
+
830,not included
|
783 |
+
831,included
|
784 |
+
832,not included
|
785 |
+
833,not included
|
786 |
+
834,not included
|
787 |
+
835,included
|
788 |
+
836,included
|
789 |
+
837,not included
|
790 |
+
838,not included
|
791 |
+
839,included
|
792 |
+
840,not included
|
793 |
+
841,included
|
794 |
+
842,included
|
795 |
+
843,included
|
796 |
+
844,not included
|
797 |
+
845,included
|
798 |
+
846,not included
|
799 |
+
847,not included
|
800 |
+
848,not included
|
801 |
+
849,not included
|
802 |
+
850,included
|
803 |
+
851,not included
|
804 |
+
852,included
|
805 |
+
853,not included
|
806 |
+
854,not included
|
807 |
+
855,not included
|
808 |
+
856,not included
|
809 |
+
857,included
|
810 |
+
858,included
|
811 |
+
859,not included
|
812 |
+
860,not included
|
813 |
+
861,included
|
814 |
+
862,not included
|
815 |
+
863,not included
|
816 |
+
864,included
|
817 |
+
865,not included
|
818 |
+
866,not included
|
819 |
+
867,not included
|
820 |
+
868,not included
|
821 |
+
869,included
|
822 |
+
870,not included
|
823 |
+
871,not included
|
824 |
+
872,included
|
825 |
+
873,included
|
826 |
+
874,included
|
827 |
+
875,not included
|
828 |
+
876,not included
|
829 |
+
877,included
|
830 |
+
878,included
|
831 |
+
879,included
|
832 |
+
880,included
|
833 |
+
881,not included
|
834 |
+
882,included
|
835 |
+
883,not included
|
836 |
+
884,not included
|
837 |
+
885,not included
|
838 |
+
886,included
|
839 |
+
887,not included
|
840 |
+
888,included
|
841 |
+
889,included
|
842 |
+
890,included
|
843 |
+
891,not included
|
844 |
+
892,included
|
845 |
+
893,included
|
846 |
+
894,included
|
847 |
+
895,not included
|
848 |
+
896,included
|
849 |
+
897,included
|
850 |
+
898,included
|
851 |
+
899,included
|
852 |
+
900,included
|
853 |
+
901,included
|
854 |
+
902,included
|
855 |
+
903,included
|
856 |
+
904,included
|
857 |
+
905,not included
|
858 |
+
906,not included
|
859 |
+
907,not included
|
860 |
+
908,not included
|
861 |
+
909,not included
|
862 |
+
910,included
|
863 |
+
911,not included
|
864 |
+
912,included
|
865 |
+
913,not included
|
866 |
+
914,not included
|
867 |
+
915,included
|
868 |
+
916,included
|
869 |
+
917,not included
|
870 |
+
918,included
|
871 |
+
919,not included
|
872 |
+
920,included
|
873 |
+
921,included
|
874 |
+
922,included
|
875 |
+
923,included
|
876 |
+
924,not included
|
877 |
+
925,not included
|
878 |
+
926,not included
|
879 |
+
927,included
|
880 |
+
928,included
|
881 |
+
929,included
|
882 |
+
930,not included
|
883 |
+
931,not included
|
884 |
+
932,not included
|
885 |
+
933,included
|
886 |
+
934,included
|
887 |
+
935,included
|
888 |
+
936,included
|
889 |
+
937,included
|
890 |
+
938,not included
|
891 |
+
939,not included
|
892 |
+
940,not included
|
893 |
+
941,not included
|
894 |
+
942,not included
|
895 |
+
943,included
|
896 |
+
944,not included
|
897 |
+
945,not included
|
898 |
+
946,included
|
899 |
+
947,not included
|
900 |
+
948,not included
|
901 |
+
949,not included
|
902 |
+
950,not included
|
903 |
+
951,included
|
904 |
+
952,included
|
905 |
+
953,included
|
906 |
+
954,included
|
907 |
+
955,not included
|
908 |
+
956,included
|
909 |
+
957,included
|
910 |
+
958,included
|
911 |
+
959,included
|
912 |
+
960,included
|
913 |
+
961,not included
|
914 |
+
962,included
|
915 |
+
963,included
|
916 |
+
964,not included
|
917 |
+
965,included
|
918 |
+
966,included
|
919 |
+
967,not included
|
920 |
+
968,not included
|
921 |
+
969,included
|
922 |
+
970,included
|
923 |
+
971,included
|
924 |
+
972,not included
|
925 |
+
973,not included
|
926 |
+
974,not included
|
927 |
+
975,not included
|
928 |
+
976,included
|
929 |
+
977,included
|
930 |
+
978,not included
|
931 |
+
979,not included
|
932 |
+
980,included
|
933 |
+
981,not included
|
934 |
+
982,not included
|
935 |
+
983,included
|
936 |
+
984,not included
|
937 |
+
985,included
|
938 |
+
986,included
|
939 |
+
987,included
|
940 |
+
988,not included
|
941 |
+
989,included
|
942 |
+
990,included
|
943 |
+
991,included
|
944 |
+
992,not included
|
945 |
+
993,not included
|
946 |
+
994,included
|
947 |
+
995,included
|
948 |
+
996,not included
|
949 |
+
997,not included
|
950 |
+
998,not included
|
951 |
+
999,not included
|
952 |
+
1000,not included
|
953 |
+
1001,included
|
954 |
+
1002,not included
|
955 |
+
1003,not included
|
956 |
+
1004,not included
|
957 |
+
1005,not included
|
958 |
+
1006,included
|
959 |
+
1007,included
|
960 |
+
1008,not included
|
961 |
+
1009,not included
|
962 |
+
1010,not included
|
963 |
+
1011,not included
|
964 |
+
1012,included
|
965 |
+
1013,not included
|
966 |
+
1014,not included
|
967 |
+
1015,included
|
968 |
+
1016,not included
|
969 |
+
1017,included
|
970 |
+
1018,included
|
971 |
+
1019,not included
|
972 |
+
1020,included
|
973 |
+
1021,not included
|
974 |
+
1022,not included
|
975 |
+
1023,included
|
976 |
+
1024,included
|
977 |
+
1025,not included
|
978 |
+
1026,included
|
979 |
+
1027,included
|
980 |
+
1028,not included
|
981 |
+
1029,included
|
982 |
+
1030,included
|
983 |
+
1031,not included
|
984 |
+
1032,not included
|
985 |
+
1033,not included
|
986 |
+
1034,not included
|
987 |
+
1035,not included
|
988 |
+
1036,not included
|
989 |
+
1037,not included
|
990 |
+
1038,included
|
991 |
+
1039,included
|
992 |
+
1040,included
|
993 |
+
1041,included
|
994 |
+
1042,included
|
995 |
+
1043,not included
|
996 |
+
1044,not included
|
997 |
+
1045,not included
|
998 |
+
1046,included
|
999 |
+
1047,included
|
1000 |
+
1048,not included
|
1001 |
+
1049,included
|
1002 |
+
1050,not included
|
1003 |
+
1051,not included
|
1004 |
+
1052,not included
|
1005 |
+
1053,included
|
1006 |
+
1054,not included
|
1007 |
+
1055,not included
|
1008 |
+
1056,not included
|
1009 |
+
1057,not included
|
1010 |
+
1058,included
|
1011 |
+
1059,not included
|
1012 |
+
1060,included
|
1013 |
+
1061,included
|
1014 |
+
1062,not included
|
1015 |
+
1063,not included
|
1016 |
+
1064,not included
|
1017 |
+
1065,included
|
1018 |
+
1066,not included
|
1019 |
+
1067,not included
|
1020 |
+
1068,not included
|
1021 |
+
1069,included
|
1022 |
+
1070,included
|
1023 |
+
1071,included
|
1024 |
+
1072,not included
|
1025 |
+
1073,included
|
1026 |
+
1074,included
|
1027 |
+
1075,not included
|
1028 |
+
1076,included
|
1029 |
+
1077,not included
|
1030 |
+
1078,included
|
1031 |
+
1079,included
|
1032 |
+
1080,not included
|
1033 |
+
1081,not included
|
1034 |
+
1082,not included
|
1035 |
+
1083,not included
|
1036 |
+
1084,included
|
1037 |
+
1085,included
|
1038 |
+
1086,included
|
1039 |
+
1087,included
|
1040 |
+
1088,not included
|
1041 |
+
1089,not included
|
1042 |
+
1090,not included
|
1043 |
+
1091,included
|
1044 |
+
1092,not included
|
1045 |
+
1093,not included
|
1046 |
+
1094,not included
|
1047 |
+
1095,included
|
1048 |
+
1096,included
|
1049 |
+
1097,not included
|
1050 |
+
1098,not included
|
1051 |
+
1099,not included
|
1052 |
+
1100,not included
|
1053 |
+
1101,not included
|
1054 |
+
1102,not included
|
1055 |
+
1103,included
|
1056 |
+
1104,included
|
1057 |
+
1105,not included
|
1058 |
+
1106,not included
|
1059 |
+
1107,included
|
1060 |
+
1108,included
|
1061 |
+
1109,included
|
1062 |
+
1110,included
|
1063 |
+
1111,not included
|
1064 |
+
1112,not included
|
1065 |
+
1113,not included
|
1066 |
+
1114,included
|
1067 |
+
1115,not included
|
1068 |
+
1116,not included
|
1069 |
+
1117,not included
|
1070 |
+
1118,not included
|
1071 |
+
1119,included
|
1072 |
+
1120,not included
|
1073 |
+
1121,included
|
1074 |
+
1122,not included
|
1075 |
+
1123,not included
|
1076 |
+
1124,not included
|
1077 |
+
1125,included
|
1078 |
+
1126,not included
|
1079 |
+
1127,included
|
1080 |
+
1128,not included
|
1081 |
+
1129,not included
|
1082 |
+
1130,not included
|
1083 |
+
1131,not included
|
1084 |
+
1132,not included
|
1085 |
+
1133,included
|
1086 |
+
1134,not included
|
1087 |
+
1135,not included
|
1088 |
+
1136,not included
|
1089 |
+
1137,not included
|
1090 |
+
1138,included
|
1091 |
+
1139,included
|
1092 |
+
1140,included
|
1093 |
+
1141,not included
|
1094 |
+
1142,included
|
1095 |
+
1143,not included
|
1096 |
+
1144,not included
|
1097 |
+
1145,not included
|
1098 |
+
1146,not included
|
1099 |
+
1147,not included
|
1100 |
+
1148,included
|
1101 |
+
1149,not included
|
1102 |
+
1150,included
|
1103 |
+
1151,not included
|
1104 |
+
1152,not included
|
1105 |
+
1153,not included
|
1106 |
+
1154,included
|
1107 |
+
1155,not included
|
1108 |
+
1156,not included
|
1109 |
+
1157,included
|
1110 |
+
1158,included
|
1111 |
+
1159,not included
|
1112 |
+
1160,included
|
1113 |
+
1161,not included
|
1114 |
+
1162,included
|
1115 |
+
1163,included
|
1116 |
+
1164,not included
|
1117 |
+
1165,included
|
1118 |
+
1166,included
|
1119 |
+
1167,not included
|
1120 |
+
1168,not included
|
1121 |
+
1169,not included
|
1122 |
+
1170,not included
|
1123 |
+
1171,included
|
1124 |
+
1172,included
|
1125 |
+
1173,included
|
1126 |
+
1174,not included
|
1127 |
+
1175,not included
|
1128 |
+
1176,included
|
1129 |
+
1177,not included
|
1130 |
+
1178,not included
|
1131 |
+
1179,included
|
1132 |
+
1180,not included
|
1133 |
+
1181,included
|
1134 |
+
1182,not included
|
1135 |
+
1183,not included
|
1136 |
+
1184,not included
|
1137 |
+
1185,included
|
1138 |
+
1186,included
|
1139 |
+
1187,not included
|
1140 |
+
1188,not included
|
1141 |
+
1189,included
|
1142 |
+
1190,not included
|
1143 |
+
1191,not included
|
1144 |
+
1192,included
|
1145 |
+
1193,included
|
1146 |
+
1194,included
|
1147 |
+
1195,not included
|
1148 |
+
1196,included
|
1149 |
+
1197,not included
|
1150 |
+
1198,included
|
1151 |
+
1199,included
|
1152 |
+
1200,not included
|
1153 |
+
1201,included
|
1154 |
+
1202,included
|
1155 |
+
1203,not included
|
1156 |
+
1204,included
|
1157 |
+
1205,included
|
1158 |
+
1206,not included
|
1159 |
+
1207,not included
|
1160 |
+
1208,included
|
1161 |
+
1209,included
|
1162 |
+
1210,not included
|
1163 |
+
1211,not included
|
1164 |
+
1212,included
|
1165 |
+
1213,not included
|
1166 |
+
1214,included
|
1167 |
+
1215,not included
|
1168 |
+
1216,included
|
1169 |
+
1217,included
|
1170 |
+
1218,included
|
1171 |
+
1219,not included
|
1172 |
+
1220,included
|
1173 |
+
1221,included
|
1174 |
+
1222,included
|
1175 |
+
1223,included
|
1176 |
+
1224,included
|
1177 |
+
1225,included
|
1178 |
+
1226,not included
|
1179 |
+
1227,included
|
1180 |
+
1228,included
|
1181 |
+
1229,not included
|
1182 |
+
1230,not included
|
1183 |
+
1231,not included
|
1184 |
+
1232,not included
|
1185 |
+
1233,not included
|
1186 |
+
1234,included
|
1187 |
+
1235,included
|
1188 |
+
1236,not included
|
1189 |
+
1237,not included
|
1190 |
+
1238,not included
|
1191 |
+
1239,not included
|
1192 |
+
1240,included
|
1193 |
+
1241,included
|
1194 |
+
1242,not included
|
1195 |
+
1243,not included
|
1196 |
+
1244,included
|
1197 |
+
1245,not included
|
1198 |
+
1246,included
|
1199 |
+
1247,not included
|
1200 |
+
1248,included
|
1201 |
+
1249,not included
|
1202 |
+
1250,included
|
1203 |
+
1251,not included
|
1204 |
+
1252,not included
|
1205 |
+
1253,not included
|
1206 |
+
1254,not included
|
1207 |
+
1255,not included
|
1208 |
+
1256,not included
|
1209 |
+
1257,included
|
1210 |
+
1258,included
|
1211 |
+
1259,included
|
1212 |
+
1260,not included
|
1213 |
+
1261,not included
|
1214 |
+
1262,not included
|
1215 |
+
1263,not included
|
1216 |
+
1264,included
|
1217 |
+
1265,not included
|
1218 |
+
1266,included
|
1219 |
+
1267,not included
|
1220 |
+
1268,included
|
1221 |
+
1269,not included
|
1222 |
+
1270,not included
|
1223 |
+
1271,included
|
1224 |
+
1272,included
|
1225 |
+
1273,not included
|
1226 |
+
1274,not included
|
1227 |
+
1275,included
|
1228 |
+
1276,not included
|
1229 |
+
1277,included
|
1230 |
+
1278,included
|
1231 |
+
1279,included
|
1232 |
+
1280,included
|
1233 |
+
1281,not included
|
1234 |
+
1282,included
|
1235 |
+
1283,not included
|
1236 |
+
1284,included
|
1237 |
+
1285,included
|
1238 |
+
1286,included
|
1239 |
+
1287,included
|
1240 |
+
1288,included
|
1241 |
+
1289,included
|
1242 |
+
1290,included
|
1243 |
+
1291,not included
|
1244 |
+
1292,included
|
1245 |
+
1293,not included
|
1246 |
+
1294,included
|
1247 |
+
1295,not included
|
1248 |
+
1296,included
|
1249 |
+
1297,included
|
1250 |
+
1298,not included
|
1251 |
+
1299,not included
|
1252 |
+
1300,not included
|
1253 |
+
1301,not included
|
1254 |
+
1302,not included
|
1255 |
+
1303,included
|
1256 |
+
1304,included
|
1257 |
+
1305,not included
|
1258 |
+
1306,not included
|
1259 |
+
1307,not included
|
1260 |
+
1308,not included
|
1261 |
+
1309,not included
|
1262 |
+
1310,not included
|
1263 |
+
1311,not included
|
1264 |
+
1312,included
|
1265 |
+
1313,not included
|
1266 |
+
1314,included
|
1267 |
+
1315,not included
|
1268 |
+
1316,included
|
1269 |
+
1317,included
|
1270 |
+
1318,not included
|
1271 |
+
1319,not included
|
1272 |
+
1320,not included
|
1273 |
+
1321,included
|
1274 |
+
1322,not included
|
1275 |
+
1323,not included
|
1276 |
+
1324,included
|
1277 |
+
1325,not included
|
1278 |
+
1326,included
|
1279 |
+
1327,not included
|
1280 |
+
1328,included
|
1281 |
+
1329,included
|
1282 |
+
1330,included
|
1283 |
+
1331,included
|
1284 |
+
1332,not included
|
1285 |
+
1333,not included
|
1286 |
+
1334,not included
|
1287 |
+
1335,included
|
1288 |
+
1336,not included
|
1289 |
+
1337,included
|
1290 |
+
1338,included
|
1291 |
+
1339,included
|
1292 |
+
1340,included
|
1293 |
+
1341,not included
|
1294 |
+
1342,included
|
1295 |
+
1343,included
|
1296 |
+
1344,included
|
1297 |
+
1345,included
|
1298 |
+
1346,not included
|
1299 |
+
1347,not included
|
1300 |
+
1348,included
|
1301 |
+
1349,included
|
1302 |
+
1350,included
|
1303 |
+
1351,included
|
1304 |
+
1352,not included
|
1305 |
+
1353,not included
|
1306 |
+
1354,not included
|
1307 |
+
1355,included
|
1308 |
+
1356,not included
|
1309 |
+
1357,not included
|
1310 |
+
1358,included
|
1311 |
+
1359,not included
|
1312 |
+
1360,not included
|
1313 |
+
1361,included
|
1314 |
+
1362,not included
|
1315 |
+
1363,included
|
1316 |
+
1364,not included
|
1317 |
+
1365,included
|
1318 |
+
1366,included
|
1319 |
+
1367,included
|
1320 |
+
1368,included
|
1321 |
+
1369,not included
|
1322 |
+
1370,not included
|
1323 |
+
1371,not included
|
1324 |
+
1372,not included
|
1325 |
+
1373,included
|
1326 |
+
1374,included
|
1327 |
+
1375,not included
|
1328 |
+
1376,included
|
1329 |
+
1377,not included
|
1330 |
+
1378,included
|
1331 |
+
1379,not included
|
1332 |
+
1380,not included
|
1333 |
+
1381,not included
|
1334 |
+
1382,not included
|
1335 |
+
1383,included
|
1336 |
+
1384,not included
|
1337 |
+
1385,not included
|
1338 |
+
1386,not included
|
1339 |
+
1387,not included
|
1340 |
+
1388,not included
|
1341 |
+
1389,included
|
1342 |
+
1390,not included
|
1343 |
+
1391,not included
|
1344 |
+
1392,included
|
1345 |
+
1393,included
|
1346 |
+
1394,included
|
1347 |
+
1395,not included
|
1348 |
+
1396,not included
|
1349 |
+
1397,not included
|
1350 |
+
1398,included
|
1351 |
+
1399,not included
|
1352 |
+
1400,included
|
1353 |
+
1401,not included
|
1354 |
+
1402,not included
|
1355 |
+
1403,not included
|
1356 |
+
1404,included
|
1357 |
+
1405,included
|
1358 |
+
1406,not included
|
1359 |
+
1407,included
|
1360 |
+
1408,included
|
1361 |
+
1409,not included
|
1362 |
+
1410,included
|
1363 |
+
1411,included
|
1364 |
+
1412,not included
|
1365 |
+
1413,included
|
1366 |
+
1414,included
|
1367 |
+
1415,not included
|
1368 |
+
1416,not included
|
1369 |
+
1417,not included
|
1370 |
+
1418,included
|
1371 |
+
1419,included
|
1372 |
+
1420,included
|
1373 |
+
1421,included
|
1374 |
+
1422,included
|
1375 |
+
1423,included
|
1376 |
+
1424,not included
|
1377 |
+
1425,included
|
1378 |
+
1426,included
|
1379 |
+
1427,included
|
1380 |
+
1428,not included
|
1381 |
+
1429,not included
|
1382 |
+
1430,included
|
1383 |
+
1431,included
|
1384 |
+
1432,not included
|
1385 |
+
1433,included
|
1386 |
+
1434,not included
|
1387 |
+
1435,included
|
1388 |
+
1436,not included
|
1389 |
+
1437,not included
|
1390 |
+
1438,not included
|
1391 |
+
1439,included
|
1392 |
+
1440,not included
|
1393 |
+
1441,included
|
1394 |
+
1442,not included
|
1395 |
+
1443,not included
|
1396 |
+
1444,included
|
1397 |
+
1445,included
|
1398 |
+
1446,not included
|
1399 |
+
1447,not included
|
1400 |
+
1448,not included
|
1401 |
+
1449,included
|
1402 |
+
1450,included
|
1403 |
+
1451,included
|
1404 |
+
1452,included
|
1405 |
+
1453,not included
|
1406 |
+
1454,included
|
1407 |
+
1455,included
|
1408 |
+
1456,not included
|
1409 |
+
1457,included
|
1410 |
+
1458,not included
|
1411 |
+
1459,not included
|
1412 |
+
1460,not included
|
1413 |
+
1461,not included
|
1414 |
+
1462,included
|
1415 |
+
1463,not included
|
1416 |
+
1464,included
|
1417 |
+
1465,not included
|
1418 |
+
1466,not included
|
1419 |
+
1467,included
|
1420 |
+
1468,included
|
1421 |
+
1469,included
|
1422 |
+
1470,included
|
1423 |
+
1471,not included
|
1424 |
+
1472,included
|
1425 |
+
1473,not included
|
1426 |
+
1474,not included
|
1427 |
+
1475,not included
|
1428 |
+
1476,included
|
1429 |
+
1477,included
|
1430 |
+
1478,not included
|
1431 |
+
1479,not included
|
1432 |
+
1480,included
|
1433 |
+
1481,included
|
1434 |
+
1482,not included
|
1435 |
+
1483,not included
|
1436 |
+
1484,not included
|
1437 |
+
1485,not included
|
1438 |
+
1486,included
|
1439 |
+
1487,included
|
1440 |
+
1488,not included
|
1441 |
+
1489,included
|
1442 |
+
1490,not included
|
1443 |
+
1491,not included
|
1444 |
+
1492,not included
|
1445 |
+
1493,not included
|
1446 |
+
1494,not included
|
1447 |
+
1495,not included
|
1448 |
+
1496,not included
|
1449 |
+
1497,included
|
1450 |
+
1498,included
|
1451 |
+
1499,included
|
1452 |
+
1500,included
|
1453 |
+
1501,not included
|
1454 |
+
1502,included
|
1455 |
+
1503,not included
|
1456 |
+
1504,not included
|
1457 |
+
1505,included
|
1458 |
+
1506,not included
|
1459 |
+
1507,included
|
1460 |
+
1508,not included
|
1461 |
+
1509,not included
|
1462 |
+
1510,included
|
1463 |
+
1511,not included
|
1464 |
+
1512,not included
|
1465 |
+
1513,included
|
1466 |
+
1514,included
|
1467 |
+
1515,not included
|
1468 |
+
1516,included
|
1469 |
+
1517,included
|
1470 |
+
1518,included
|
1471 |
+
1519,not included
|
1472 |
+
1520,not included
|
1473 |
+
1521,included
|
1474 |
+
1522,not included
|
1475 |
+
1523,included
|
1476 |
+
1524,not included
|
1477 |
+
1525,not included
|
1478 |
+
1526,not included
|
1479 |
+
1527,not included
|
1480 |
+
1528,not included
|
1481 |
+
1529,included
|
1482 |
+
1530,included
|
1483 |
+
1531,included
|
1484 |
+
1532,included
|
1485 |
+
1533,included
|
1486 |
+
1534,not included
|
1487 |
+
1535,included
|
1488 |
+
1536,included
|
1489 |
+
1537,not included
|
1490 |
+
1538,included
|
1491 |
+
1539,not included
|
1492 |
+
1540,not included
|
1493 |
+
1541,not included
|
1494 |
+
1542,included
|
1495 |
+
1543,included
|
1496 |
+
1544,included
|
1497 |
+
1545,included
|
1498 |
+
1546,included
|
1499 |
+
1547,included
|
1500 |
+
1548,included
|
1501 |
+
1549,not included
|
1502 |
+
1550,included
|
1503 |
+
1551,included
|
1504 |
+
1552,included
|
1505 |
+
1553,not included
|
1506 |
+
1554,included
|
1507 |
+
1555,included
|
1508 |
+
1556,not included
|
1509 |
+
1557,not included
|
1510 |
+
1558,not included
|
1511 |
+
1559,included
|
1512 |
+
1560,not included
|
1513 |
+
1561,not included
|
1514 |
+
1562,not included
|
1515 |
+
1563,included
|
1516 |
+
1564,not included
|
1517 |
+
1565,not included
|
1518 |
+
1566,not included
|
1519 |
+
1567,included
|
1520 |
+
1568,included
|
1521 |
+
1569,included
|
1522 |
+
1570,included
|
1523 |
+
1571,not included
|
1524 |
+
1572,included
|
1525 |
+
1573,included
|
1526 |
+
1574,included
|
1527 |
+
1575,included
|
1528 |
+
1576,included
|
1529 |
+
1577,included
|
1530 |
+
1578,not included
|
1531 |
+
1579,not included
|
1532 |
+
1580,not included
|
1533 |
+
1581,included
|
1534 |
+
1582,included
|
1535 |
+
1583,not included
|
1536 |
+
1584,included
|
1537 |
+
1585,not included
|
1538 |
+
1586,included
|
1539 |
+
1587,not included
|
1540 |
+
1588,not included
|
1541 |
+
1589,not included
|
1542 |
+
1590,included
|
1543 |
+
1591,included
|
1544 |
+
1592,not included
|
1545 |
+
1593,included
|
1546 |
+
1594,included
|
1547 |
+
1595,included
|
1548 |
+
1596,not included
|
1549 |
+
1597,included
|
1550 |
+
1598,included
|
1551 |
+
1599,included
|
1552 |
+
1600,included
|
1553 |
+
1601,included
|
1554 |
+
1602,not included
|
1555 |
+
1603,included
|
1556 |
+
1604,not included
|
1557 |
+
1605,not included
|
1558 |
+
1606,not included
|
1559 |
+
1607,not included
|
1560 |
+
1608,not included
|
1561 |
+
1609,included
|
1562 |
+
1610,not included
|
1563 |
+
1611,not included
|
1564 |
+
1612,included
|
1565 |
+
1613,not included
|
1566 |
+
1614,included
|
1567 |
+
1615,included
|
1568 |
+
1616,included
|
1569 |
+
1617,not included
|
1570 |
+
1618,not included
|
1571 |
+
1619,included
|
1572 |
+
1620,not included
|
1573 |
+
1621,not included
|
1574 |
+
1622,not included
|
1575 |
+
1623,included
|
1576 |
+
1624,not included
|
1577 |
+
1625,included
|
1578 |
+
1626,included
|
1579 |
+
1627,not included
|
1580 |
+
1628,included
|
1581 |
+
1629,not included
|
1582 |
+
1630,included
|
1583 |
+
1631,not included
|
1584 |
+
1632,included
|
1585 |
+
1633,included
|
1586 |
+
1634,included
|
1587 |
+
1635,not included
|
1588 |
+
1636,not included
|
1589 |
+
1637,not included
|
1590 |
+
1638,included
|
1591 |
+
1639,not included
|
1592 |
+
1640,not included
|
1593 |
+
1641,not included
|
1594 |
+
1642,not included
|
1595 |
+
1643,not included
|
1596 |
+
1644,included
|
1597 |
+
1645,included
|
1598 |
+
1646,included
|
1599 |
+
1647,included
|
1600 |
+
1648,not included
|
1601 |
+
1649,included
|
1602 |
+
1650,included
|
1603 |
+
1651,not included
|
1604 |
+
1652,included
|
1605 |
+
1653,not included
|
1606 |
+
1654,included
|
1607 |
+
1655,included
|
1608 |
+
1656,not included
|
1609 |
+
1657,included
|
1610 |
+
1658,included
|
1611 |
+
1659,included
|
1612 |
+
1660,included
|
1613 |
+
1661,not included
|
1614 |
+
1662,included
|
1615 |
+
1663,included
|
1616 |
+
1664,included
|
1617 |
+
1665,included
|
1618 |
+
1666,included
|
1619 |
+
1667,not included
|
1620 |
+
1668,not included
|
1621 |
+
1669,included
|
1622 |
+
1670,not included
|
1623 |
+
1671,not included
|
1624 |
+
1672,included
|
1625 |
+
1673,not included
|
1626 |
+
1674,included
|
1627 |
+
1675,included
|
1628 |
+
1676,not included
|
1629 |
+
1677,included
|
1630 |
+
1678,not included
|
1631 |
+
1679,included
|
1632 |
+
1680,not included
|
1633 |
+
1681,included
|
1634 |
+
1682,not included
|
1635 |
+
1683,not included
|
1636 |
+
1684,not included
|
1637 |
+
1685,included
|
1638 |
+
1686,included
|
1639 |
+
1687,included
|
1640 |
+
1688,not included
|
1641 |
+
1689,not included
|
1642 |
+
1690,not included
|
1643 |
+
1691,not included
|
1644 |
+
1692,included
|
1645 |
+
1693,included
|
1646 |
+
1694,not included
|
1647 |
+
1695,not included
|
1648 |
+
1696,not included
|
1649 |
+
1697,included
|
1650 |
+
1698,included
|
1651 |
+
1699,not included
|
1652 |
+
1700,not included
|
1653 |
+
1701,not included
|
1654 |
+
1702,not included
|
1655 |
+
1703,included
|
1656 |
+
1704,included
|
1657 |
+
1705,included
|
1658 |
+
1706,not included
|
1659 |
+
1707,included
|
1660 |
+
1708,not included
|
1661 |
+
1709,included
|
1662 |
+
1710,included
|
1663 |
+
1711,included
|
1664 |
+
1712,included
|
1665 |
+
1713,not included
|
1666 |
+
1714,not included
|
1667 |
+
1715,not included
|
1668 |
+
1716,included
|
1669 |
+
1717,not included
|
1670 |
+
1718,not included
|
1671 |
+
1719,included
|
1672 |
+
1720,not included
|
1673 |
+
1721,included
|
1674 |
+
1722,not included
|
1675 |
+
1723,included
|
1676 |
+
1724,included
|
1677 |
+
1725,not included
|
1678 |
+
1726,not included
|
1679 |
+
1727,included
|
1680 |
+
1728,included
|
1681 |
+
1729,included
|
1682 |
+
1730,not included
|
1683 |
+
1731,included
|
1684 |
+
1732,included
|
1685 |
+
1733,not included
|
1686 |
+
1734,not included
|
1687 |
+
1735,included
|
1688 |
+
1736,included
|
1689 |
+
1737,not included
|
1690 |
+
1738,not included
|
1691 |
+
1739,not included
|
1692 |
+
1740,not included
|
1693 |
+
1741,included
|
1694 |
+
1742,included
|
1695 |
+
1743,included
|
1696 |
+
1744,included
|
1697 |
+
1745,included
|
1698 |
+
1746,not included
|
1699 |
+
1747,not included
|
1700 |
+
1748,included
|
1701 |
+
1749,not included
|
1702 |
+
1750,not included
|
1703 |
+
1751,included
|
1704 |
+
1752,not included
|
1705 |
+
1753,included
|
1706 |
+
1754,not included
|
1707 |
+
1755,included
|
1708 |
+
1756,included
|
1709 |
+
1757,included
|
1710 |
+
1758,included
|
1711 |
+
1759,included
|
1712 |
+
1760,included
|
1713 |
+
1761,not included
|
1714 |
+
1762,included
|
1715 |
+
1763,not included
|
1716 |
+
1764,included
|
1717 |
+
1765,included
|
1718 |
+
1766,included
|
1719 |
+
1767,not included
|
1720 |
+
1768,included
|
1721 |
+
1769,included
|
1722 |
+
1770,included
|
1723 |
+
1771,included
|
1724 |
+
1772,included
|
1725 |
+
1773,included
|
1726 |
+
1774,not included
|
1727 |
+
1775,not included
|
1728 |
+
1776,included
|
1729 |
+
1777,not included
|
1730 |
+
1778,not included
|
1731 |
+
1779,not included
|
1732 |
+
1780,included
|
1733 |
+
1781,included
|
1734 |
+
1782,not included
|
1735 |
+
1783,not included
|
1736 |
+
1784,included
|
1737 |
+
1785,not included
|
1738 |
+
1786,not included
|
1739 |
+
1787,not included
|
1740 |
+
1788,included
|
1741 |
+
1789,not included
|
1742 |
+
1790,not included
|
1743 |
+
1791,not included
|
1744 |
+
1792,included
|
1745 |
+
1793,included
|
1746 |
+
1794,not included
|
1747 |
+
1795,included
|
1748 |
+
1796,included
|
1749 |
+
1797,not included
|
1750 |
+
1798,not included
|
1751 |
+
1799,included
|
1752 |
+
1800,not included
|
1753 |
+
1801,not included
|
1754 |
+
1802,included
|
1755 |
+
1803,not included
|
1756 |
+
1804,not included
|
1757 |
+
1805,not included
|
1758 |
+
1806,not included
|
1759 |
+
1807,included
|
1760 |
+
1808,included
|
1761 |
+
1809,included
|
1762 |
+
1810,not included
|
1763 |
+
1811,not included
|
1764 |
+
1812,included
|
1765 |
+
1813,included
|
1766 |
+
1814,not included
|
1767 |
+
1815,not included
|
1768 |
+
1816,not included
|
1769 |
+
1817,not included
|
1770 |
+
1818,not included
|
1771 |
+
1819,not included
|
1772 |
+
1820,not included
|
1773 |
+
1821,not included
|
1774 |
+
1822,not included
|
1775 |
+
1823,not included
|
1776 |
+
1824,included
|
1777 |
+
1825,not included
|
1778 |
+
1826,included
|
1779 |
+
1827,not included
|
1780 |
+
1828,included
|
1781 |
+
1829,included
|
1782 |
+
1830,not included
|
1783 |
+
1831,not included
|
1784 |
+
1832,included
|
1785 |
+
1833,not included
|
1786 |
+
1834,not included
|
1787 |
+
1835,not included
|
1788 |
+
1836,not included
|
1789 |
+
1837,included
|
1790 |
+
1838,included
|
1791 |
+
1839,included
|
1792 |
+
1840,not included
|
1793 |
+
1841,not included
|
1794 |
+
1842,not included
|
1795 |
+
1843,included
|
1796 |
+
1844,included
|
1797 |
+
1845,included
|
1798 |
+
1846,included
|
1799 |
+
1847,included
|
1800 |
+
1848,not included
|
1801 |
+
1849,included
|
1802 |
+
1850,included
|
1803 |
+
1851,not included
|
1804 |
+
1852,not included
|
1805 |
+
1853,included
|
1806 |
+
1854,included
|
1807 |
+
1855,included
|
1808 |
+
1856,not included
|
1809 |
+
1857,included
|
1810 |
+
1858,included
|
1811 |
+
1859,included
|
1812 |
+
1860,not included
|
1813 |
+
1861,included
|
1814 |
+
1862,included
|
1815 |
+
1863,not included
|
1816 |
+
1864,not included
|
1817 |
+
1865,not included
|
1818 |
+
1866,included
|
1819 |
+
1867,included
|
1820 |
+
1868,included
|
1821 |
+
1869,not included
|
1822 |
+
1870,not included
|
1823 |
+
1871,not included
|
1824 |
+
1872,not included
|
1825 |
+
1873,not included
|
1826 |
+
1874,included
|
1827 |
+
1875,not included
|
1828 |
+
1876,included
|
1829 |
+
1877,not included
|
1830 |
+
1878,included
|
1831 |
+
1879,not included
|
1832 |
+
1880,not included
|
1833 |
+
1881,included
|
1834 |
+
1882,included
|
1835 |
+
1883,not included
|
1836 |
+
1884,not included
|
1837 |
+
1885,not included
|
1838 |
+
1886,not included
|
1839 |
+
1887,not included
|
1840 |
+
1888,not included
|
1841 |
+
1889,included
|
1842 |
+
1890,included
|
1843 |
+
1891,not included
|
1844 |
+
1892,included
|
1845 |
+
1893,not included
|
1846 |
+
1894,not included
|
1847 |
+
1895,included
|
1848 |
+
1896,included
|
1849 |
+
1897,not included
|
1850 |
+
1898,not included
|
1851 |
+
1899,not included
|
1852 |
+
1900,included
|
1853 |
+
1901,included
|
1854 |
+
1902,included
|
1855 |
+
1903,included
|
1856 |
+
1904,not included
|
1857 |
+
1905,not included
|
1858 |
+
1906,included
|
1859 |
+
1907,included
|
1860 |
+
1908,not included
|
1861 |
+
1909,included
|
1862 |
+
1910,included
|
1863 |
+
1911,included
|
1864 |
+
1912,included
|
1865 |
+
1913,not included
|
1866 |
+
1914,included
|
1867 |
+
1915,not included
|
1868 |
+
1916,not included
|
1869 |
+
1917,not included
|
1870 |
+
1918,included
|
1871 |
+
1919,included
|
1872 |
+
1920,included
|
1873 |
+
1921,included
|
1874 |
+
1922,included
|
1875 |
+
1923,not included
|
1876 |
+
1924,not included
|
1877 |
+
1925,included
|
1878 |
+
1926,not included
|
1879 |
+
1927,included
|
1880 |
+
1928,included
|
1881 |
+
1929,not included
|
1882 |
+
1930,not included
|
1883 |
+
1931,included
|
1884 |
+
1932,included
|
1885 |
+
1933,included
|
1886 |
+
1934,included
|
1887 |
+
1935,included
|
1888 |
+
1936,included
|
1889 |
+
1937,not included
|
1890 |
+
1938,not included
|
1891 |
+
1939,not included
|
1892 |
+
1940,included
|
1893 |
+
1941,included
|
1894 |
+
1942,included
|
1895 |
+
1943,not included
|
1896 |
+
1944,not included
|
1897 |
+
1945,not included
|
1898 |
+
1946,included
|
1899 |
+
1947,not included
|
1900 |
+
1948,included
|
1901 |
+
1949,not included
|
1902 |
+
1950,included
|
1903 |
+
1951,included
|
1904 |
+
1952,included
|
1905 |
+
1953,included
|
1906 |
+
1954,included
|
1907 |
+
1955,included
|
1908 |
+
1956,included
|
1909 |
+
1957,included
|
1910 |
+
1958,included
|
1911 |
+
1959,not included
|
1912 |
+
1960,included
|
1913 |
+
1961,not included
|
1914 |
+
1962,included
|
1915 |
+
1963,included
|
1916 |
+
1964,not included
|
1917 |
+
1965,included
|
1918 |
+
1966,not included
|
1919 |
+
1967,not included
|
1920 |
+
1968,included
|
1921 |
+
1969,included
|
1922 |
+
1970,not included
|
1923 |
+
1971,included
|
1924 |
+
1972,not included
|
1925 |
+
1973,not included
|
1926 |
+
1974,included
|
1927 |
+
1975,included
|
1928 |
+
1976,not included
|
1929 |
+
1977,included
|
1930 |
+
1978,included
|
1931 |
+
1979,included
|
1932 |
+
1980,not included
|
1933 |
+
1981,included
|
1934 |
+
1982,included
|
1935 |
+
1983,not included
|
1936 |
+
1984,included
|
1937 |
+
1985,not included
|
1938 |
+
1986,included
|
1939 |
+
1987,included
|
1940 |
+
1988,not included
|
1941 |
+
1989,included
|
1942 |
+
1990,not included
|
1943 |
+
1991,included
|
1944 |
+
1992,not included
|
1945 |
+
1993,not included
|
1946 |
+
1994,not included
|
1947 |
+
1995,not included
|
1948 |
+
1996,included
|
1949 |
+
1997,not included
|
1950 |
+
1998,not included
|
1951 |
+
1999,not included
|
1952 |
+
2000,included
|
1953 |
+
2001,included
|
1954 |
+
2002,not included
|
1955 |
+
2003,included
|
1956 |
+
2004,included
|
1957 |
+
2005,included
|
1958 |
+
2006,included
|
1959 |
+
2007,included
|
1960 |
+
2008,included
|
1961 |
+
2009,included
|
1962 |
+
2010,included
|
1963 |
+
2011,included
|
1964 |
+
2012,included
|
1965 |
+
2013,not included
|
1966 |
+
2014,included
|
1967 |
+
2015,not included
|
1968 |
+
2016,not included
|
1969 |
+
2017,included
|
1970 |
+
2018,included
|
1971 |
+
2019,not included
|
1972 |
+
2020,not included
|
1973 |
+
2021,not included
|
1974 |
+
2022,not included
|
1975 |
+
2023,not included
|
1976 |
+
2024,not included
|
1977 |
+
2025,not included
|
1978 |
+
2026,included
|
1979 |
+
2027,included
|
1980 |
+
2028,included
|
1981 |
+
2029,not included
|
1982 |
+
2030,not included
|
1983 |
+
2031,included
|
1984 |
+
2032,included
|
1985 |
+
2033,not included
|
1986 |
+
2034,not included
|
1987 |
+
2035,not included
|
1988 |
+
2036,not included
|
1989 |
+
2037,not included
|
1990 |
+
2038,not included
|
1991 |
+
2039,not included
|
1992 |
+
2040,included
|
1993 |
+
2041,included
|
1994 |
+
2042,not included
|
1995 |
+
2043,not included
|
1996 |
+
2044,included
|
1997 |
+
2045,not included
|
1998 |
+
2046,included
|
1999 |
+
2047,included
|
2000 |
+
2048,included
|
2001 |
+
2049,included
|
2002 |
+
2050,included
|
2003 |
+
2051,included
|
2004 |
+
2052,not included
|
2005 |
+
2053,not included
|
2006 |
+
2054,not included
|
2007 |
+
2055,included
|
2008 |
+
2056,included
|
2009 |
+
2057,included
|
2010 |
+
2058,not included
|
2011 |
+
2059,included
|
2012 |
+
2060,included
|
2013 |
+
2061,included
|
2014 |
+
2062,not included
|
2015 |
+
2063,not included
|
2016 |
+
2064,included
|
2017 |
+
2065,included
|
2018 |
+
2066,not included
|
2019 |
+
2067,included
|
2020 |
+
2068,not included
|
2021 |
+
2069,included
|
2022 |
+
2070,included
|
2023 |
+
2071,not included
|
2024 |
+
2072,not included
|
2025 |
+
2073,included
|
2026 |
+
2074,included
|
2027 |
+
2075,not included
|
2028 |
+
2076,not included
|
2029 |
+
2077,included
|
2030 |
+
2078,included
|
2031 |
+
2079,included
|
2032 |
+
2080,included
|
2033 |
+
2081,not included
|
2034 |
+
2082,included
|
2035 |
+
2083,included
|
2036 |
+
2084,not included
|
2037 |
+
2085,included
|
2038 |
+
2086,included
|
2039 |
+
2087,not included
|
2040 |
+
2088,included
|
2041 |
+
2089,included
|
2042 |
+
2090,not included
|
2043 |
+
2091,included
|
2044 |
+
2092,included
|
2045 |
+
2093,included
|
2046 |
+
2094,not included
|
2047 |
+
2095,not included
|
2048 |
+
2096,included
|
2049 |
+
2097,included
|
2050 |
+
2098,included
|
2051 |
+
2099,not included
|
2052 |
+
2100,included
|
2053 |
+
2101,not included
|
2054 |
+
2102,included
|
2055 |
+
2103,not included
|
2056 |
+
2104,included
|
2057 |
+
2105,not included
|
2058 |
+
2106,included
|
2059 |
+
2107,not included
|
2060 |
+
2108,included
|
2061 |
+
2109,not included
|
2062 |
+
2110,not included
|
2063 |
+
2111,included
|
2064 |
+
2112,not included
|
2065 |
+
2113,included
|
2066 |
+
2114,included
|
2067 |
+
2115,included
|
2068 |
+
2116,included
|
2069 |
+
2117,included
|
2070 |
+
2118,not included
|
2071 |
+
2119,not included
|
2072 |
+
2120,not included
|
2073 |
+
2121,not included
|
2074 |
+
2122,not included
|
2075 |
+
2123,not included
|
2076 |
+
2124,not included
|
2077 |
+
2125,included
|
2078 |
+
2126,not included
|
2079 |
+
2127,not included
|
2080 |
+
2128,included
|
2081 |
+
2129,not included
|
2082 |
+
2130,not included
|
2083 |
+
2131,not included
|
2084 |
+
2132,not included
|
2085 |
+
2133,not included
|
2086 |
+
2134,not included
|
2087 |
+
2135,included
|
2088 |
+
2136,included
|
2089 |
+
2137,included
|
2090 |
+
2138,not included
|
2091 |
+
2139,not included
|
2092 |
+
2140,included
|
2093 |
+
2141,included
|
2094 |
+
2142,not included
|
2095 |
+
2143,not included
|
2096 |
+
2144,included
|
2097 |
+
2145,included
|
2098 |
+
2146,included
|
2099 |
+
2147,included
|
2100 |
+
2148,not included
|
2101 |
+
2149,included
|
2102 |
+
2150,not included
|
2103 |
+
2151,included
|
2104 |
+
2152,not included
|
2105 |
+
2153,included
|
2106 |
+
2154,not included
|
2107 |
+
2155,included
|
2108 |
+
2156,included
|
2109 |
+
2157,not included
|
2110 |
+
2158,included
|
2111 |
+
2159,included
|
2112 |
+
2160,not included
|
2113 |
+
2161,not included
|
2114 |
+
2162,included
|
2115 |
+
2163,included
|
2116 |
+
2164,not included
|
2117 |
+
2165,included
|
2118 |
+
2166,included
|
2119 |
+
2167,included
|
2120 |
+
2168,included
|
2121 |
+
2169,included
|
2122 |
+
2170,included
|
2123 |
+
2171,not included
|
2124 |
+
2172,included
|
2125 |
+
2173,not included
|
2126 |
+
2174,not included
|
2127 |
+
2175,included
|
2128 |
+
2176,not included
|
2129 |
+
2177,not included
|
2130 |
+
2178,not included
|
2131 |
+
2179,included
|
2132 |
+
2180,not included
|
2133 |
+
2181,not included
|
2134 |
+
2182,included
|
2135 |
+
2183,included
|
2136 |
+
2184,not included
|
2137 |
+
2185,not included
|
2138 |
+
2186,not included
|
2139 |
+
2187,included
|
2140 |
+
2188,not included
|
2141 |
+
2189,not included
|
2142 |
+
2190,included
|
2143 |
+
2191,not included
|
2144 |
+
2192,included
|
2145 |
+
2193,included
|
2146 |
+
2194,not included
|
2147 |
+
2195,not included
|
2148 |
+
2196,not included
|
2149 |
+
2197,included
|
2150 |
+
2198,not included
|
2151 |
+
2199,not included
|
2152 |
+
2200,included
|
2153 |
+
2201,included
|
2154 |
+
2202,included
|
2155 |
+
2203,not included
|
2156 |
+
2204,included
|
2157 |
+
2205,not included
|
2158 |
+
2206,not included
|
2159 |
+
2207,included
|
2160 |
+
2208,not included
|
2161 |
+
2209,included
|
2162 |
+
2210,included
|
2163 |
+
2211,not included
|
2164 |
+
2212,not included
|
2165 |
+
2213,included
|
2166 |
+
2214,not included
|
2167 |
+
2215,included
|
2168 |
+
2216,included
|
2169 |
+
2217,included
|
2170 |
+
2218,included
|
2171 |
+
2219,included
|
2172 |
+
2220,included
|
2173 |
+
2221,included
|
2174 |
+
2222,included
|
2175 |
+
2223,not included
|
2176 |
+
2224,included
|
2177 |
+
2225,not included
|
2178 |
+
2226,not included
|
2179 |
+
2227,not included
|
2180 |
+
2228,not included
|
2181 |
+
2229,not included
|
2182 |
+
2230,not included
|
2183 |
+
2231,included
|
2184 |
+
2232,not included
|
2185 |
+
2233,not included
|
2186 |
+
2234,not included
|
2187 |
+
2235,included
|
2188 |
+
2236,not included
|
2189 |
+
2237,not included
|
2190 |
+
2238,not included
|
2191 |
+
2239,included
|
2192 |
+
2240,not included
|
2193 |
+
2241,not included
|
2194 |
+
2242,not included
|
2195 |
+
2243,not included
|
2196 |
+
2244,not included
|
2197 |
+
2245,included
|
2198 |
+
2246,included
|
2199 |
+
2247,included
|
2200 |
+
2248,included
|
2201 |
+
2249,included
|
2202 |
+
2250,not included
|
2203 |
+
2251,not included
|
2204 |
+
2252,not included
|
2205 |
+
2253,included
|
2206 |
+
2254,included
|
2207 |
+
2255,not included
|
2208 |
+
2256,included
|
2209 |
+
2257,not included
|
2210 |
+
2258,not included
|
2211 |
+
2259,included
|
2212 |
+
2260,included
|
2213 |
+
2261,not included
|
2214 |
+
2262,included
|
2215 |
+
2263,not included
|
2216 |
+
2264,included
|
2217 |
+
2265,included
|
2218 |
+
2266,included
|
2219 |
+
2267,not included
|
2220 |
+
2268,included
|
2221 |
+
2269,not included
|
2222 |
+
2270,not included
|
2223 |
+
2271,not included
|
2224 |
+
2272,included
|
2225 |
+
2273,included
|
2226 |
+
2274,not included
|
2227 |
+
2275,not included
|
2228 |
+
2276,included
|
2229 |
+
2277,not included
|
2230 |
+
2278,included
|
2231 |
+
2279,included
|
2232 |
+
2280,included
|
2233 |
+
2281,not included
|
2234 |
+
2282,included
|
2235 |
+
2283,not included
|
2236 |
+
2284,not included
|
2237 |
+
2285,not included
|
2238 |
+
2286,not included
|
2239 |
+
2287,included
|
2240 |
+
2288,not included
|
2241 |
+
2289,not included
|
2242 |
+
2290,not included
|
2243 |
+
2291,included
|
2244 |
+
2292,not included
|
2245 |
+
2293,not included
|
{{cookiecutter.repo_name}}/data/systematic_review_inclusion/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "systematic_review_inclusion", "description": "", "data_columns": ["Title", "Abstract", "Authors", "Journal", "ID"], "label_columns": {"Label": ["included", "not included"]}}
|
{{cookiecutter.repo_name}}/data/tai_safety_research/predictions.csv
ADDED
@@ -0,0 +1,1640 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ID,Label
|
2 |
+
50,TAI safety research
|
3 |
+
51,not TAI safety research
|
4 |
+
52,TAI safety research
|
5 |
+
53,not TAI safety research
|
6 |
+
54,not TAI safety research
|
7 |
+
55,TAI safety research
|
8 |
+
56,TAI safety research
|
9 |
+
57,TAI safety research
|
10 |
+
58,TAI safety research
|
11 |
+
59,not TAI safety research
|
12 |
+
60,not TAI safety research
|
13 |
+
61,TAI safety research
|
14 |
+
62,TAI safety research
|
15 |
+
63,not TAI safety research
|
16 |
+
64,not TAI safety research
|
17 |
+
65,TAI safety research
|
18 |
+
66,TAI safety research
|
19 |
+
67,not TAI safety research
|
20 |
+
68,TAI safety research
|
21 |
+
69,TAI safety research
|
22 |
+
70,not TAI safety research
|
23 |
+
71,not TAI safety research
|
24 |
+
72,TAI safety research
|
25 |
+
73,TAI safety research
|
26 |
+
74,not TAI safety research
|
27 |
+
75,not TAI safety research
|
28 |
+
76,not TAI safety research
|
29 |
+
77,TAI safety research
|
30 |
+
78,not TAI safety research
|
31 |
+
79,not TAI safety research
|
32 |
+
80,TAI safety research
|
33 |
+
81,TAI safety research
|
34 |
+
82,TAI safety research
|
35 |
+
83,not TAI safety research
|
36 |
+
84,not TAI safety research
|
37 |
+
85,TAI safety research
|
38 |
+
86,not TAI safety research
|
39 |
+
87,TAI safety research
|
40 |
+
88,not TAI safety research
|
41 |
+
89,not TAI safety research
|
42 |
+
90,TAI safety research
|
43 |
+
91,not TAI safety research
|
44 |
+
92,not TAI safety research
|
45 |
+
93,not TAI safety research
|
46 |
+
94,not TAI safety research
|
47 |
+
95,not TAI safety research
|
48 |
+
96,TAI safety research
|
49 |
+
97,TAI safety research
|
50 |
+
98,not TAI safety research
|
51 |
+
99,not TAI safety research
|
52 |
+
100,TAI safety research
|
53 |
+
101,TAI safety research
|
54 |
+
102,TAI safety research
|
55 |
+
103,not TAI safety research
|
56 |
+
104,not TAI safety research
|
57 |
+
105,not TAI safety research
|
58 |
+
106,not TAI safety research
|
59 |
+
107,TAI safety research
|
60 |
+
108,TAI safety research
|
61 |
+
109,TAI safety research
|
62 |
+
110,not TAI safety research
|
63 |
+
111,TAI safety research
|
64 |
+
112,not TAI safety research
|
65 |
+
113,not TAI safety research
|
66 |
+
114,TAI safety research
|
67 |
+
115,not TAI safety research
|
68 |
+
116,not TAI safety research
|
69 |
+
117,not TAI safety research
|
70 |
+
118,TAI safety research
|
71 |
+
119,not TAI safety research
|
72 |
+
120,TAI safety research
|
73 |
+
121,TAI safety research
|
74 |
+
122,TAI safety research
|
75 |
+
123,not TAI safety research
|
76 |
+
124,TAI safety research
|
77 |
+
125,TAI safety research
|
78 |
+
126,not TAI safety research
|
79 |
+
127,TAI safety research
|
80 |
+
128,not TAI safety research
|
81 |
+
129,not TAI safety research
|
82 |
+
130,TAI safety research
|
83 |
+
131,TAI safety research
|
84 |
+
132,not TAI safety research
|
85 |
+
133,TAI safety research
|
86 |
+
134,not TAI safety research
|
87 |
+
135,not TAI safety research
|
88 |
+
136,TAI safety research
|
89 |
+
137,not TAI safety research
|
90 |
+
138,not TAI safety research
|
91 |
+
139,not TAI safety research
|
92 |
+
140,TAI safety research
|
93 |
+
141,not TAI safety research
|
94 |
+
142,TAI safety research
|
95 |
+
143,not TAI safety research
|
96 |
+
144,TAI safety research
|
97 |
+
145,not TAI safety research
|
98 |
+
146,not TAI safety research
|
99 |
+
147,TAI safety research
|
100 |
+
148,not TAI safety research
|
101 |
+
149,not TAI safety research
|
102 |
+
150,TAI safety research
|
103 |
+
151,not TAI safety research
|
104 |
+
152,TAI safety research
|
105 |
+
153,not TAI safety research
|
106 |
+
154,TAI safety research
|
107 |
+
155,not TAI safety research
|
108 |
+
156,TAI safety research
|
109 |
+
157,not TAI safety research
|
110 |
+
158,not TAI safety research
|
111 |
+
159,not TAI safety research
|
112 |
+
160,TAI safety research
|
113 |
+
161,not TAI safety research
|
114 |
+
162,TAI safety research
|
115 |
+
163,not TAI safety research
|
116 |
+
164,TAI safety research
|
117 |
+
165,TAI safety research
|
118 |
+
166,TAI safety research
|
119 |
+
167,TAI safety research
|
120 |
+
168,TAI safety research
|
121 |
+
169,TAI safety research
|
122 |
+
170,TAI safety research
|
123 |
+
171,TAI safety research
|
124 |
+
172,not TAI safety research
|
125 |
+
173,TAI safety research
|
126 |
+
174,not TAI safety research
|
127 |
+
175,TAI safety research
|
128 |
+
176,TAI safety research
|
129 |
+
177,not TAI safety research
|
130 |
+
178,not TAI safety research
|
131 |
+
179,TAI safety research
|
132 |
+
180,not TAI safety research
|
133 |
+
181,TAI safety research
|
134 |
+
182,TAI safety research
|
135 |
+
183,not TAI safety research
|
136 |
+
184,not TAI safety research
|
137 |
+
185,not TAI safety research
|
138 |
+
186,TAI safety research
|
139 |
+
187,TAI safety research
|
140 |
+
188,not TAI safety research
|
141 |
+
189,not TAI safety research
|
142 |
+
190,TAI safety research
|
143 |
+
191,not TAI safety research
|
144 |
+
192,TAI safety research
|
145 |
+
193,not TAI safety research
|
146 |
+
194,TAI safety research
|
147 |
+
195,TAI safety research
|
148 |
+
196,TAI safety research
|
149 |
+
197,not TAI safety research
|
150 |
+
198,not TAI safety research
|
151 |
+
199,TAI safety research
|
152 |
+
200,TAI safety research
|
153 |
+
201,TAI safety research
|
154 |
+
202,not TAI safety research
|
155 |
+
203,not TAI safety research
|
156 |
+
204,TAI safety research
|
157 |
+
205,not TAI safety research
|
158 |
+
206,TAI safety research
|
159 |
+
207,not TAI safety research
|
160 |
+
208,TAI safety research
|
161 |
+
209,not TAI safety research
|
162 |
+
210,TAI safety research
|
163 |
+
211,not TAI safety research
|
164 |
+
212,not TAI safety research
|
165 |
+
213,TAI safety research
|
166 |
+
214,not TAI safety research
|
167 |
+
215,TAI safety research
|
168 |
+
216,TAI safety research
|
169 |
+
217,not TAI safety research
|
170 |
+
218,not TAI safety research
|
171 |
+
219,not TAI safety research
|
172 |
+
220,not TAI safety research
|
173 |
+
221,not TAI safety research
|
174 |
+
222,TAI safety research
|
175 |
+
223,not TAI safety research
|
176 |
+
224,not TAI safety research
|
177 |
+
225,not TAI safety research
|
178 |
+
226,not TAI safety research
|
179 |
+
227,TAI safety research
|
180 |
+
228,not TAI safety research
|
181 |
+
229,TAI safety research
|
182 |
+
230,TAI safety research
|
183 |
+
231,not TAI safety research
|
184 |
+
232,TAI safety research
|
185 |
+
233,not TAI safety research
|
186 |
+
234,TAI safety research
|
187 |
+
235,TAI safety research
|
188 |
+
236,not TAI safety research
|
189 |
+
237,not TAI safety research
|
190 |
+
238,not TAI safety research
|
191 |
+
239,not TAI safety research
|
192 |
+
240,TAI safety research
|
193 |
+
241,TAI safety research
|
194 |
+
242,TAI safety research
|
195 |
+
243,TAI safety research
|
196 |
+
244,TAI safety research
|
197 |
+
245,not TAI safety research
|
198 |
+
246,TAI safety research
|
199 |
+
247,not TAI safety research
|
200 |
+
248,not TAI safety research
|
201 |
+
249,TAI safety research
|
202 |
+
250,TAI safety research
|
203 |
+
251,TAI safety research
|
204 |
+
252,TAI safety research
|
205 |
+
253,not TAI safety research
|
206 |
+
254,not TAI safety research
|
207 |
+
255,not TAI safety research
|
208 |
+
256,TAI safety research
|
209 |
+
257,TAI safety research
|
210 |
+
258,TAI safety research
|
211 |
+
259,TAI safety research
|
212 |
+
260,not TAI safety research
|
213 |
+
261,not TAI safety research
|
214 |
+
262,TAI safety research
|
215 |
+
263,TAI safety research
|
216 |
+
264,not TAI safety research
|
217 |
+
265,TAI safety research
|
218 |
+
266,TAI safety research
|
219 |
+
267,not TAI safety research
|
220 |
+
268,not TAI safety research
|
221 |
+
269,TAI safety research
|
222 |
+
270,TAI safety research
|
223 |
+
271,not TAI safety research
|
224 |
+
272,not TAI safety research
|
225 |
+
273,TAI safety research
|
226 |
+
274,not TAI safety research
|
227 |
+
275,not TAI safety research
|
228 |
+
276,TAI safety research
|
229 |
+
277,not TAI safety research
|
230 |
+
278,not TAI safety research
|
231 |
+
279,TAI safety research
|
232 |
+
280,TAI safety research
|
233 |
+
281,TAI safety research
|
234 |
+
282,not TAI safety research
|
235 |
+
283,not TAI safety research
|
236 |
+
284,not TAI safety research
|
237 |
+
285,not TAI safety research
|
238 |
+
286,TAI safety research
|
239 |
+
287,TAI safety research
|
240 |
+
288,not TAI safety research
|
241 |
+
289,not TAI safety research
|
242 |
+
290,not TAI safety research
|
243 |
+
291,TAI safety research
|
244 |
+
292,TAI safety research
|
245 |
+
293,not TAI safety research
|
246 |
+
294,TAI safety research
|
247 |
+
295,TAI safety research
|
248 |
+
296,TAI safety research
|
249 |
+
297,not TAI safety research
|
250 |
+
298,not TAI safety research
|
251 |
+
299,not TAI safety research
|
252 |
+
300,not TAI safety research
|
253 |
+
301,TAI safety research
|
254 |
+
302,TAI safety research
|
255 |
+
303,TAI safety research
|
256 |
+
304,not TAI safety research
|
257 |
+
305,TAI safety research
|
258 |
+
306,TAI safety research
|
259 |
+
307,not TAI safety research
|
260 |
+
308,not TAI safety research
|
261 |
+
309,TAI safety research
|
262 |
+
310,TAI safety research
|
263 |
+
311,not TAI safety research
|
264 |
+
312,not TAI safety research
|
265 |
+
313,not TAI safety research
|
266 |
+
314,TAI safety research
|
267 |
+
315,TAI safety research
|
268 |
+
316,TAI safety research
|
269 |
+
317,TAI safety research
|
270 |
+
318,not TAI safety research
|
271 |
+
319,not TAI safety research
|
272 |
+
320,not TAI safety research
|
273 |
+
321,not TAI safety research
|
274 |
+
322,not TAI safety research
|
275 |
+
323,not TAI safety research
|
276 |
+
324,TAI safety research
|
277 |
+
325,not TAI safety research
|
278 |
+
326,not TAI safety research
|
279 |
+
327,not TAI safety research
|
280 |
+
328,TAI safety research
|
281 |
+
329,not TAI safety research
|
282 |
+
330,TAI safety research
|
283 |
+
331,TAI safety research
|
284 |
+
332,TAI safety research
|
285 |
+
333,not TAI safety research
|
286 |
+
334,not TAI safety research
|
287 |
+
335,TAI safety research
|
288 |
+
336,not TAI safety research
|
289 |
+
337,TAI safety research
|
290 |
+
338,TAI safety research
|
291 |
+
339,not TAI safety research
|
292 |
+
340,TAI safety research
|
293 |
+
341,not TAI safety research
|
294 |
+
342,not TAI safety research
|
295 |
+
343,not TAI safety research
|
296 |
+
344,TAI safety research
|
297 |
+
345,not TAI safety research
|
298 |
+
346,TAI safety research
|
299 |
+
347,TAI safety research
|
300 |
+
348,TAI safety research
|
301 |
+
349,not TAI safety research
|
302 |
+
350,TAI safety research
|
303 |
+
351,TAI safety research
|
304 |
+
352,TAI safety research
|
305 |
+
353,not TAI safety research
|
306 |
+
354,TAI safety research
|
307 |
+
355,TAI safety research
|
308 |
+
356,TAI safety research
|
309 |
+
357,not TAI safety research
|
310 |
+
358,TAI safety research
|
311 |
+
359,not TAI safety research
|
312 |
+
360,not TAI safety research
|
313 |
+
361,TAI safety research
|
314 |
+
362,not TAI safety research
|
315 |
+
363,TAI safety research
|
316 |
+
364,not TAI safety research
|
317 |
+
365,not TAI safety research
|
318 |
+
366,TAI safety research
|
319 |
+
367,not TAI safety research
|
320 |
+
368,not TAI safety research
|
321 |
+
369,not TAI safety research
|
322 |
+
370,not TAI safety research
|
323 |
+
371,not TAI safety research
|
324 |
+
372,not TAI safety research
|
325 |
+
373,not TAI safety research
|
326 |
+
374,not TAI safety research
|
327 |
+
375,TAI safety research
|
328 |
+
376,not TAI safety research
|
329 |
+
377,TAI safety research
|
330 |
+
378,not TAI safety research
|
331 |
+
379,not TAI safety research
|
332 |
+
380,not TAI safety research
|
333 |
+
381,not TAI safety research
|
334 |
+
382,TAI safety research
|
335 |
+
383,TAI safety research
|
336 |
+
384,TAI safety research
|
337 |
+
385,not TAI safety research
|
338 |
+
386,not TAI safety research
|
339 |
+
387,not TAI safety research
|
340 |
+
388,TAI safety research
|
341 |
+
389,not TAI safety research
|
342 |
+
390,not TAI safety research
|
343 |
+
391,TAI safety research
|
344 |
+
392,not TAI safety research
|
345 |
+
393,TAI safety research
|
346 |
+
394,TAI safety research
|
347 |
+
395,TAI safety research
|
348 |
+
396,TAI safety research
|
349 |
+
397,not TAI safety research
|
350 |
+
398,TAI safety research
|
351 |
+
399,TAI safety research
|
352 |
+
400,TAI safety research
|
353 |
+
401,not TAI safety research
|
354 |
+
402,not TAI safety research
|
355 |
+
403,TAI safety research
|
356 |
+
404,TAI safety research
|
357 |
+
405,TAI safety research
|
358 |
+
406,TAI safety research
|
359 |
+
407,TAI safety research
|
360 |
+
408,TAI safety research
|
361 |
+
409,not TAI safety research
|
362 |
+
410,TAI safety research
|
363 |
+
411,TAI safety research
|
364 |
+
412,not TAI safety research
|
365 |
+
413,TAI safety research
|
366 |
+
414,not TAI safety research
|
367 |
+
415,TAI safety research
|
368 |
+
416,TAI safety research
|
369 |
+
417,not TAI safety research
|
370 |
+
418,TAI safety research
|
371 |
+
419,TAI safety research
|
372 |
+
420,not TAI safety research
|
373 |
+
421,TAI safety research
|
374 |
+
422,TAI safety research
|
375 |
+
423,not TAI safety research
|
376 |
+
424,TAI safety research
|
377 |
+
425,TAI safety research
|
378 |
+
426,not TAI safety research
|
379 |
+
427,not TAI safety research
|
380 |
+
428,TAI safety research
|
381 |
+
429,not TAI safety research
|
382 |
+
430,TAI safety research
|
383 |
+
431,TAI safety research
|
384 |
+
432,not TAI safety research
|
385 |
+
433,not TAI safety research
|
386 |
+
434,not TAI safety research
|
387 |
+
435,not TAI safety research
|
388 |
+
436,not TAI safety research
|
389 |
+
437,TAI safety research
|
390 |
+
438,not TAI safety research
|
391 |
+
439,TAI safety research
|
392 |
+
440,not TAI safety research
|
393 |
+
441,TAI safety research
|
394 |
+
442,not TAI safety research
|
395 |
+
443,TAI safety research
|
396 |
+
444,not TAI safety research
|
397 |
+
445,TAI safety research
|
398 |
+
446,TAI safety research
|
399 |
+
447,TAI safety research
|
400 |
+
448,TAI safety research
|
401 |
+
449,TAI safety research
|
402 |
+
450,TAI safety research
|
403 |
+
451,TAI safety research
|
404 |
+
452,TAI safety research
|
405 |
+
453,not TAI safety research
|
406 |
+
454,TAI safety research
|
407 |
+
455,not TAI safety research
|
408 |
+
456,not TAI safety research
|
409 |
+
457,not TAI safety research
|
410 |
+
458,TAI safety research
|
411 |
+
459,TAI safety research
|
412 |
+
460,TAI safety research
|
413 |
+
461,not TAI safety research
|
414 |
+
462,not TAI safety research
|
415 |
+
463,not TAI safety research
|
416 |
+
464,not TAI safety research
|
417 |
+
465,TAI safety research
|
418 |
+
466,TAI safety research
|
419 |
+
467,not TAI safety research
|
420 |
+
468,not TAI safety research
|
421 |
+
469,not TAI safety research
|
422 |
+
470,not TAI safety research
|
423 |
+
471,TAI safety research
|
424 |
+
472,TAI safety research
|
425 |
+
473,not TAI safety research
|
426 |
+
474,TAI safety research
|
427 |
+
475,TAI safety research
|
428 |
+
476,not TAI safety research
|
429 |
+
477,not TAI safety research
|
430 |
+
478,not TAI safety research
|
431 |
+
479,TAI safety research
|
432 |
+
480,TAI safety research
|
433 |
+
481,TAI safety research
|
434 |
+
482,not TAI safety research
|
435 |
+
483,TAI safety research
|
436 |
+
484,TAI safety research
|
437 |
+
485,TAI safety research
|
438 |
+
486,TAI safety research
|
439 |
+
487,not TAI safety research
|
440 |
+
488,TAI safety research
|
441 |
+
489,not TAI safety research
|
442 |
+
490,TAI safety research
|
443 |
+
491,TAI safety research
|
444 |
+
492,TAI safety research
|
445 |
+
493,TAI safety research
|
446 |
+
494,not TAI safety research
|
447 |
+
495,TAI safety research
|
448 |
+
496,TAI safety research
|
449 |
+
497,TAI safety research
|
450 |
+
498,not TAI safety research
|
451 |
+
499,TAI safety research
|
452 |
+
500,TAI safety research
|
453 |
+
501,not TAI safety research
|
454 |
+
502,TAI safety research
|
455 |
+
503,not TAI safety research
|
456 |
+
504,not TAI safety research
|
457 |
+
505,not TAI safety research
|
458 |
+
506,not TAI safety research
|
459 |
+
507,TAI safety research
|
460 |
+
508,TAI safety research
|
461 |
+
509,not TAI safety research
|
462 |
+
510,not TAI safety research
|
463 |
+
511,TAI safety research
|
464 |
+
512,not TAI safety research
|
465 |
+
513,not TAI safety research
|
466 |
+
514,TAI safety research
|
467 |
+
515,not TAI safety research
|
468 |
+
516,not TAI safety research
|
469 |
+
517,TAI safety research
|
470 |
+
518,TAI safety research
|
471 |
+
519,TAI safety research
|
472 |
+
520,not TAI safety research
|
473 |
+
521,not TAI safety research
|
474 |
+
522,not TAI safety research
|
475 |
+
523,not TAI safety research
|
476 |
+
524,not TAI safety research
|
477 |
+
525,not TAI safety research
|
478 |
+
526,not TAI safety research
|
479 |
+
527,TAI safety research
|
480 |
+
528,not TAI safety research
|
481 |
+
529,not TAI safety research
|
482 |
+
530,TAI safety research
|
483 |
+
531,TAI safety research
|
484 |
+
532,not TAI safety research
|
485 |
+
533,not TAI safety research
|
486 |
+
534,not TAI safety research
|
487 |
+
535,TAI safety research
|
488 |
+
536,not TAI safety research
|
489 |
+
537,TAI safety research
|
490 |
+
538,TAI safety research
|
491 |
+
539,TAI safety research
|
492 |
+
540,TAI safety research
|
493 |
+
541,not TAI safety research
|
494 |
+
542,TAI safety research
|
495 |
+
543,not TAI safety research
|
496 |
+
544,TAI safety research
|
497 |
+
545,not TAI safety research
|
498 |
+
546,TAI safety research
|
499 |
+
547,not TAI safety research
|
500 |
+
548,TAI safety research
|
501 |
+
549,TAI safety research
|
502 |
+
550,TAI safety research
|
503 |
+
551,TAI safety research
|
504 |
+
552,TAI safety research
|
505 |
+
553,TAI safety research
|
506 |
+
554,not TAI safety research
|
507 |
+
555,not TAI safety research
|
508 |
+
556,TAI safety research
|
509 |
+
557,TAI safety research
|
510 |
+
558,TAI safety research
|
511 |
+
559,TAI safety research
|
512 |
+
560,TAI safety research
|
513 |
+
561,TAI safety research
|
514 |
+
562,not TAI safety research
|
515 |
+
563,TAI safety research
|
516 |
+
564,not TAI safety research
|
517 |
+
565,not TAI safety research
|
518 |
+
566,not TAI safety research
|
519 |
+
567,TAI safety research
|
520 |
+
568,TAI safety research
|
521 |
+
569,TAI safety research
|
522 |
+
570,TAI safety research
|
523 |
+
571,TAI safety research
|
524 |
+
572,TAI safety research
|
525 |
+
573,TAI safety research
|
526 |
+
574,not TAI safety research
|
527 |
+
575,not TAI safety research
|
528 |
+
576,TAI safety research
|
529 |
+
577,TAI safety research
|
530 |
+
578,TAI safety research
|
531 |
+
579,not TAI safety research
|
532 |
+
580,not TAI safety research
|
533 |
+
581,not TAI safety research
|
534 |
+
582,not TAI safety research
|
535 |
+
583,not TAI safety research
|
536 |
+
584,not TAI safety research
|
537 |
+
585,not TAI safety research
|
538 |
+
586,TAI safety research
|
539 |
+
587,TAI safety research
|
540 |
+
588,TAI safety research
|
541 |
+
589,TAI safety research
|
542 |
+
590,not TAI safety research
|
543 |
+
591,TAI safety research
|
544 |
+
592,not TAI safety research
|
545 |
+
593,TAI safety research
|
546 |
+
594,not TAI safety research
|
547 |
+
595,TAI safety research
|
548 |
+
596,not TAI safety research
|
549 |
+
597,not TAI safety research
|
550 |
+
598,not TAI safety research
|
551 |
+
599,TAI safety research
|
552 |
+
600,TAI safety research
|
553 |
+
601,TAI safety research
|
554 |
+
602,not TAI safety research
|
555 |
+
603,TAI safety research
|
556 |
+
604,TAI safety research
|
557 |
+
605,TAI safety research
|
558 |
+
606,TAI safety research
|
559 |
+
607,TAI safety research
|
560 |
+
608,TAI safety research
|
561 |
+
609,not TAI safety research
|
562 |
+
610,not TAI safety research
|
563 |
+
611,not TAI safety research
|
564 |
+
612,TAI safety research
|
565 |
+
613,not TAI safety research
|
566 |
+
614,not TAI safety research
|
567 |
+
615,TAI safety research
|
568 |
+
616,TAI safety research
|
569 |
+
617,not TAI safety research
|
570 |
+
618,not TAI safety research
|
571 |
+
619,not TAI safety research
|
572 |
+
620,not TAI safety research
|
573 |
+
621,TAI safety research
|
574 |
+
622,not TAI safety research
|
575 |
+
623,TAI safety research
|
576 |
+
624,not TAI safety research
|
577 |
+
625,TAI safety research
|
578 |
+
626,not TAI safety research
|
579 |
+
627,TAI safety research
|
580 |
+
628,TAI safety research
|
581 |
+
629,not TAI safety research
|
582 |
+
630,not TAI safety research
|
583 |
+
631,TAI safety research
|
584 |
+
632,TAI safety research
|
585 |
+
633,not TAI safety research
|
586 |
+
634,TAI safety research
|
587 |
+
635,TAI safety research
|
588 |
+
636,TAI safety research
|
589 |
+
637,TAI safety research
|
590 |
+
638,not TAI safety research
|
591 |
+
639,TAI safety research
|
592 |
+
640,TAI safety research
|
593 |
+
641,not TAI safety research
|
594 |
+
642,not TAI safety research
|
595 |
+
643,TAI safety research
|
596 |
+
644,TAI safety research
|
597 |
+
645,TAI safety research
|
598 |
+
646,TAI safety research
|
599 |
+
647,TAI safety research
|
600 |
+
648,not TAI safety research
|
601 |
+
649,TAI safety research
|
602 |
+
650,not TAI safety research
|
603 |
+
651,not TAI safety research
|
604 |
+
652,not TAI safety research
|
605 |
+
653,TAI safety research
|
606 |
+
654,not TAI safety research
|
607 |
+
655,not TAI safety research
|
608 |
+
656,not TAI safety research
|
609 |
+
657,not TAI safety research
|
610 |
+
658,TAI safety research
|
611 |
+
659,TAI safety research
|
612 |
+
660,not TAI safety research
|
613 |
+
661,TAI safety research
|
614 |
+
662,not TAI safety research
|
615 |
+
663,not TAI safety research
|
616 |
+
664,TAI safety research
|
617 |
+
665,TAI safety research
|
618 |
+
666,TAI safety research
|
619 |
+
667,TAI safety research
|
620 |
+
668,TAI safety research
|
621 |
+
669,TAI safety research
|
622 |
+
670,TAI safety research
|
623 |
+
671,not TAI safety research
|
624 |
+
672,TAI safety research
|
625 |
+
673,TAI safety research
|
626 |
+
674,TAI safety research
|
627 |
+
675,TAI safety research
|
628 |
+
676,not TAI safety research
|
629 |
+
677,TAI safety research
|
630 |
+
678,not TAI safety research
|
631 |
+
679,not TAI safety research
|
632 |
+
680,not TAI safety research
|
633 |
+
681,TAI safety research
|
634 |
+
682,not TAI safety research
|
635 |
+
683,not TAI safety research
|
636 |
+
684,TAI safety research
|
637 |
+
685,TAI safety research
|
638 |
+
686,not TAI safety research
|
639 |
+
687,not TAI safety research
|
640 |
+
688,TAI safety research
|
641 |
+
689,TAI safety research
|
642 |
+
690,not TAI safety research
|
643 |
+
691,not TAI safety research
|
644 |
+
692,TAI safety research
|
645 |
+
693,TAI safety research
|
646 |
+
694,not TAI safety research
|
647 |
+
695,TAI safety research
|
648 |
+
696,not TAI safety research
|
649 |
+
697,TAI safety research
|
650 |
+
698,not TAI safety research
|
651 |
+
699,TAI safety research
|
652 |
+
700,TAI safety research
|
653 |
+
701,TAI safety research
|
654 |
+
702,TAI safety research
|
655 |
+
703,TAI safety research
|
656 |
+
704,TAI safety research
|
657 |
+
705,TAI safety research
|
658 |
+
706,TAI safety research
|
659 |
+
707,not TAI safety research
|
660 |
+
708,not TAI safety research
|
661 |
+
709,TAI safety research
|
662 |
+
710,TAI safety research
|
663 |
+
711,not TAI safety research
|
664 |
+
712,TAI safety research
|
665 |
+
713,TAI safety research
|
666 |
+
714,TAI safety research
|
667 |
+
715,TAI safety research
|
668 |
+
716,TAI safety research
|
669 |
+
717,TAI safety research
|
670 |
+
718,not TAI safety research
|
671 |
+
719,TAI safety research
|
672 |
+
720,TAI safety research
|
673 |
+
721,not TAI safety research
|
674 |
+
722,not TAI safety research
|
675 |
+
723,not TAI safety research
|
676 |
+
724,TAI safety research
|
677 |
+
725,TAI safety research
|
678 |
+
726,TAI safety research
|
679 |
+
727,TAI safety research
|
680 |
+
728,TAI safety research
|
681 |
+
729,TAI safety research
|
682 |
+
730,not TAI safety research
|
683 |
+
731,not TAI safety research
|
684 |
+
732,not TAI safety research
|
685 |
+
733,not TAI safety research
|
686 |
+
734,TAI safety research
|
687 |
+
735,not TAI safety research
|
688 |
+
736,not TAI safety research
|
689 |
+
737,TAI safety research
|
690 |
+
738,not TAI safety research
|
691 |
+
739,TAI safety research
|
692 |
+
740,not TAI safety research
|
693 |
+
741,TAI safety research
|
694 |
+
742,TAI safety research
|
695 |
+
743,not TAI safety research
|
696 |
+
744,not TAI safety research
|
697 |
+
745,not TAI safety research
|
698 |
+
746,TAI safety research
|
699 |
+
747,not TAI safety research
|
700 |
+
748,TAI safety research
|
701 |
+
749,not TAI safety research
|
702 |
+
750,not TAI safety research
|
703 |
+
751,not TAI safety research
|
704 |
+
752,TAI safety research
|
705 |
+
753,not TAI safety research
|
706 |
+
754,not TAI safety research
|
707 |
+
755,not TAI safety research
|
708 |
+
756,not TAI safety research
|
709 |
+
757,TAI safety research
|
710 |
+
758,not TAI safety research
|
711 |
+
759,TAI safety research
|
712 |
+
760,TAI safety research
|
713 |
+
761,not TAI safety research
|
714 |
+
762,TAI safety research
|
715 |
+
763,TAI safety research
|
716 |
+
764,not TAI safety research
|
717 |
+
765,TAI safety research
|
718 |
+
766,not TAI safety research
|
719 |
+
767,TAI safety research
|
720 |
+
768,TAI safety research
|
721 |
+
769,TAI safety research
|
722 |
+
770,TAI safety research
|
723 |
+
771,TAI safety research
|
724 |
+
772,TAI safety research
|
725 |
+
773,TAI safety research
|
726 |
+
774,not TAI safety research
|
727 |
+
775,not TAI safety research
|
728 |
+
776,not TAI safety research
|
729 |
+
777,TAI safety research
|
730 |
+
778,not TAI safety research
|
731 |
+
779,not TAI safety research
|
732 |
+
780,not TAI safety research
|
733 |
+
781,TAI safety research
|
734 |
+
782,not TAI safety research
|
735 |
+
783,TAI safety research
|
736 |
+
784,TAI safety research
|
737 |
+
785,TAI safety research
|
738 |
+
786,TAI safety research
|
739 |
+
787,not TAI safety research
|
740 |
+
788,TAI safety research
|
741 |
+
789,not TAI safety research
|
742 |
+
790,TAI safety research
|
743 |
+
791,not TAI safety research
|
744 |
+
792,TAI safety research
|
745 |
+
793,TAI safety research
|
746 |
+
794,not TAI safety research
|
747 |
+
795,not TAI safety research
|
748 |
+
796,not TAI safety research
|
749 |
+
797,TAI safety research
|
750 |
+
798,TAI safety research
|
751 |
+
799,not TAI safety research
|
752 |
+
800,not TAI safety research
|
753 |
+
801,TAI safety research
|
754 |
+
802,not TAI safety research
|
755 |
+
803,TAI safety research
|
756 |
+
804,not TAI safety research
|
757 |
+
805,not TAI safety research
|
758 |
+
806,not TAI safety research
|
759 |
+
807,TAI safety research
|
760 |
+
808,not TAI safety research
|
761 |
+
809,TAI safety research
|
762 |
+
810,TAI safety research
|
763 |
+
811,not TAI safety research
|
764 |
+
812,not TAI safety research
|
765 |
+
813,TAI safety research
|
766 |
+
814,TAI safety research
|
767 |
+
815,TAI safety research
|
768 |
+
816,not TAI safety research
|
769 |
+
817,TAI safety research
|
770 |
+
818,TAI safety research
|
771 |
+
819,TAI safety research
|
772 |
+
820,not TAI safety research
|
773 |
+
821,not TAI safety research
|
774 |
+
822,not TAI safety research
|
775 |
+
823,not TAI safety research
|
776 |
+
824,not TAI safety research
|
777 |
+
825,not TAI safety research
|
778 |
+
826,not TAI safety research
|
779 |
+
827,not TAI safety research
|
780 |
+
828,TAI safety research
|
781 |
+
829,not TAI safety research
|
782 |
+
830,not TAI safety research
|
783 |
+
831,TAI safety research
|
784 |
+
832,not TAI safety research
|
785 |
+
833,not TAI safety research
|
786 |
+
834,not TAI safety research
|
787 |
+
835,TAI safety research
|
788 |
+
836,TAI safety research
|
789 |
+
837,not TAI safety research
|
790 |
+
838,not TAI safety research
|
791 |
+
839,TAI safety research
|
792 |
+
840,not TAI safety research
|
793 |
+
841,TAI safety research
|
794 |
+
842,TAI safety research
|
795 |
+
843,TAI safety research
|
796 |
+
844,not TAI safety research
|
797 |
+
845,TAI safety research
|
798 |
+
846,not TAI safety research
|
799 |
+
847,not TAI safety research
|
800 |
+
848,not TAI safety research
|
801 |
+
849,not TAI safety research
|
802 |
+
850,TAI safety research
|
803 |
+
851,not TAI safety research
|
804 |
+
852,TAI safety research
|
805 |
+
853,not TAI safety research
|
806 |
+
854,not TAI safety research
|
807 |
+
855,not TAI safety research
|
808 |
+
856,not TAI safety research
|
809 |
+
857,TAI safety research
|
810 |
+
858,TAI safety research
|
811 |
+
859,not TAI safety research
|
812 |
+
860,not TAI safety research
|
813 |
+
861,TAI safety research
|
814 |
+
862,not TAI safety research
|
815 |
+
863,not TAI safety research
|
816 |
+
864,TAI safety research
|
817 |
+
865,not TAI safety research
|
818 |
+
866,not TAI safety research
|
819 |
+
867,not TAI safety research
|
820 |
+
868,not TAI safety research
|
821 |
+
869,TAI safety research
|
822 |
+
870,not TAI safety research
|
823 |
+
871,not TAI safety research
|
824 |
+
872,TAI safety research
|
825 |
+
873,TAI safety research
|
826 |
+
874,TAI safety research
|
827 |
+
875,not TAI safety research
|
828 |
+
876,not TAI safety research
|
829 |
+
877,TAI safety research
|
830 |
+
878,TAI safety research
|
831 |
+
879,TAI safety research
|
832 |
+
880,TAI safety research
|
833 |
+
881,not TAI safety research
|
834 |
+
882,TAI safety research
|
835 |
+
883,not TAI safety research
|
836 |
+
884,not TAI safety research
|
837 |
+
885,not TAI safety research
|
838 |
+
886,TAI safety research
|
839 |
+
887,not TAI safety research
|
840 |
+
888,TAI safety research
|
841 |
+
889,TAI safety research
|
842 |
+
890,TAI safety research
|
843 |
+
891,not TAI safety research
|
844 |
+
892,TAI safety research
|
845 |
+
893,TAI safety research
|
846 |
+
894,TAI safety research
|
847 |
+
895,not TAI safety research
|
848 |
+
896,TAI safety research
|
849 |
+
897,TAI safety research
|
850 |
+
898,TAI safety research
|
851 |
+
899,TAI safety research
|
852 |
+
900,TAI safety research
|
853 |
+
901,TAI safety research
|
854 |
+
902,TAI safety research
|
855 |
+
903,TAI safety research
|
856 |
+
904,TAI safety research
|
857 |
+
905,not TAI safety research
|
858 |
+
906,not TAI safety research
|
859 |
+
907,not TAI safety research
|
860 |
+
908,not TAI safety research
|
861 |
+
909,not TAI safety research
|
862 |
+
910,TAI safety research
|
863 |
+
911,not TAI safety research
|
864 |
+
912,TAI safety research
|
865 |
+
913,not TAI safety research
|
866 |
+
914,not TAI safety research
|
867 |
+
915,TAI safety research
|
868 |
+
916,TAI safety research
|
869 |
+
917,not TAI safety research
|
870 |
+
918,TAI safety research
|
871 |
+
919,not TAI safety research
|
872 |
+
920,TAI safety research
|
873 |
+
921,TAI safety research
|
874 |
+
922,TAI safety research
|
875 |
+
923,TAI safety research
|
876 |
+
924,not TAI safety research
|
877 |
+
925,not TAI safety research
|
878 |
+
926,not TAI safety research
|
879 |
+
927,TAI safety research
|
880 |
+
928,TAI safety research
|
881 |
+
929,TAI safety research
|
882 |
+
930,not TAI safety research
|
883 |
+
931,not TAI safety research
|
884 |
+
932,not TAI safety research
|
885 |
+
933,TAI safety research
|
886 |
+
934,TAI safety research
|
887 |
+
935,TAI safety research
|
888 |
+
936,TAI safety research
|
889 |
+
937,TAI safety research
|
890 |
+
938,not TAI safety research
|
891 |
+
939,not TAI safety research
|
892 |
+
940,not TAI safety research
|
893 |
+
941,not TAI safety research
|
894 |
+
942,not TAI safety research
|
895 |
+
943,TAI safety research
|
896 |
+
944,not TAI safety research
|
897 |
+
945,not TAI safety research
|
898 |
+
946,TAI safety research
|
899 |
+
947,not TAI safety research
|
900 |
+
948,not TAI safety research
|
901 |
+
949,not TAI safety research
|
902 |
+
950,not TAI safety research
|
903 |
+
951,TAI safety research
|
904 |
+
952,TAI safety research
|
905 |
+
953,TAI safety research
|
906 |
+
954,TAI safety research
|
907 |
+
955,not TAI safety research
|
908 |
+
956,TAI safety research
|
909 |
+
957,TAI safety research
|
910 |
+
958,TAI safety research
|
911 |
+
959,TAI safety research
|
912 |
+
960,TAI safety research
|
913 |
+
961,not TAI safety research
|
914 |
+
962,TAI safety research
|
915 |
+
963,TAI safety research
|
916 |
+
964,not TAI safety research
|
917 |
+
965,TAI safety research
|
918 |
+
966,TAI safety research
|
919 |
+
967,not TAI safety research
|
920 |
+
968,not TAI safety research
|
921 |
+
969,TAI safety research
|
922 |
+
970,TAI safety research
|
923 |
+
971,TAI safety research
|
924 |
+
972,not TAI safety research
|
925 |
+
973,not TAI safety research
|
926 |
+
974,not TAI safety research
|
927 |
+
975,not TAI safety research
|
928 |
+
976,TAI safety research
|
929 |
+
977,TAI safety research
|
930 |
+
978,not TAI safety research
|
931 |
+
979,not TAI safety research
|
932 |
+
980,TAI safety research
|
933 |
+
981,not TAI safety research
|
934 |
+
982,not TAI safety research
|
935 |
+
983,TAI safety research
|
936 |
+
984,not TAI safety research
|
937 |
+
985,TAI safety research
|
938 |
+
986,TAI safety research
|
939 |
+
987,TAI safety research
|
940 |
+
988,not TAI safety research
|
941 |
+
989,TAI safety research
|
942 |
+
990,TAI safety research
|
943 |
+
991,TAI safety research
|
944 |
+
992,not TAI safety research
|
945 |
+
993,not TAI safety research
|
946 |
+
994,TAI safety research
|
947 |
+
995,TAI safety research
|
948 |
+
996,not TAI safety research
|
949 |
+
997,not TAI safety research
|
950 |
+
998,not TAI safety research
|
951 |
+
999,not TAI safety research
|
952 |
+
1000,not TAI safety research
|
953 |
+
1001,TAI safety research
|
954 |
+
1002,not TAI safety research
|
955 |
+
1003,not TAI safety research
|
956 |
+
1004,not TAI safety research
|
957 |
+
1005,not TAI safety research
|
958 |
+
1006,TAI safety research
|
959 |
+
1007,TAI safety research
|
960 |
+
1008,not TAI safety research
|
961 |
+
1009,not TAI safety research
|
962 |
+
1010,not TAI safety research
|
963 |
+
1011,not TAI safety research
|
964 |
+
1012,TAI safety research
|
965 |
+
1013,not TAI safety research
|
966 |
+
1014,not TAI safety research
|
967 |
+
1015,TAI safety research
|
968 |
+
1016,not TAI safety research
|
969 |
+
1017,TAI safety research
|
970 |
+
1018,TAI safety research
|
971 |
+
1019,not TAI safety research
|
972 |
+
1020,TAI safety research
|
973 |
+
1021,not TAI safety research
|
974 |
+
1022,not TAI safety research
|
975 |
+
1023,TAI safety research
|
976 |
+
1024,TAI safety research
|
977 |
+
1025,not TAI safety research
|
978 |
+
1026,TAI safety research
|
979 |
+
1027,TAI safety research
|
980 |
+
1028,not TAI safety research
|
981 |
+
1029,TAI safety research
|
982 |
+
1030,TAI safety research
|
983 |
+
1031,not TAI safety research
|
984 |
+
1032,not TAI safety research
|
985 |
+
1033,not TAI safety research
|
986 |
+
1034,not TAI safety research
|
987 |
+
1035,not TAI safety research
|
988 |
+
1036,not TAI safety research
|
989 |
+
1037,not TAI safety research
|
990 |
+
1038,TAI safety research
|
991 |
+
1039,TAI safety research
|
992 |
+
1040,TAI safety research
|
993 |
+
1041,TAI safety research
|
994 |
+
1042,TAI safety research
|
995 |
+
1043,not TAI safety research
|
996 |
+
1044,not TAI safety research
|
997 |
+
1045,not TAI safety research
|
998 |
+
1046,TAI safety research
|
999 |
+
1047,TAI safety research
|
1000 |
+
1048,not TAI safety research
|
1001 |
+
1049,TAI safety research
|
1002 |
+
1050,not TAI safety research
|
1003 |
+
1051,not TAI safety research
|
1004 |
+
1052,not TAI safety research
|
1005 |
+
1053,TAI safety research
|
1006 |
+
1054,not TAI safety research
|
1007 |
+
1055,not TAI safety research
|
1008 |
+
1056,not TAI safety research
|
1009 |
+
1057,not TAI safety research
|
1010 |
+
1058,TAI safety research
|
1011 |
+
1059,not TAI safety research
|
1012 |
+
1060,TAI safety research
|
1013 |
+
1061,TAI safety research
|
1014 |
+
1062,not TAI safety research
|
1015 |
+
1063,not TAI safety research
|
1016 |
+
1064,not TAI safety research
|
1017 |
+
1065,TAI safety research
|
1018 |
+
1066,not TAI safety research
|
1019 |
+
1067,not TAI safety research
|
1020 |
+
1068,not TAI safety research
|
1021 |
+
1069,TAI safety research
|
1022 |
+
1070,TAI safety research
|
1023 |
+
1071,TAI safety research
|
1024 |
+
1072,not TAI safety research
|
1025 |
+
1073,TAI safety research
|
1026 |
+
1074,TAI safety research
|
1027 |
+
1075,not TAI safety research
|
1028 |
+
1076,TAI safety research
|
1029 |
+
1077,not TAI safety research
|
1030 |
+
1078,TAI safety research
|
1031 |
+
1079,TAI safety research
|
1032 |
+
1080,not TAI safety research
|
1033 |
+
1081,not TAI safety research
|
1034 |
+
1082,not TAI safety research
|
1035 |
+
1083,not TAI safety research
|
1036 |
+
1084,TAI safety research
|
1037 |
+
1085,TAI safety research
|
1038 |
+
1086,TAI safety research
|
1039 |
+
1087,TAI safety research
|
1040 |
+
1088,not TAI safety research
|
1041 |
+
1089,not TAI safety research
|
1042 |
+
1090,not TAI safety research
|
1043 |
+
1091,TAI safety research
|
1044 |
+
1092,not TAI safety research
|
1045 |
+
1093,not TAI safety research
|
1046 |
+
1094,not TAI safety research
|
1047 |
+
1095,TAI safety research
|
1048 |
+
1096,TAI safety research
|
1049 |
+
1097,not TAI safety research
|
1050 |
+
1098,not TAI safety research
|
1051 |
+
1099,not TAI safety research
|
1052 |
+
1100,not TAI safety research
|
1053 |
+
1101,not TAI safety research
|
1054 |
+
1102,not TAI safety research
|
1055 |
+
1103,TAI safety research
|
1056 |
+
1104,TAI safety research
|
1057 |
+
1105,not TAI safety research
|
1058 |
+
1106,not TAI safety research
|
1059 |
+
1107,TAI safety research
|
1060 |
+
1108,TAI safety research
|
1061 |
+
1109,TAI safety research
|
1062 |
+
1110,TAI safety research
|
1063 |
+
1111,not TAI safety research
|
1064 |
+
1112,not TAI safety research
|
1065 |
+
1113,not TAI safety research
|
1066 |
+
1114,TAI safety research
|
1067 |
+
1115,not TAI safety research
|
1068 |
+
1116,not TAI safety research
|
1069 |
+
1117,not TAI safety research
|
1070 |
+
1118,not TAI safety research
|
1071 |
+
1119,TAI safety research
|
1072 |
+
1120,not TAI safety research
|
1073 |
+
1121,TAI safety research
|
1074 |
+
1122,not TAI safety research
|
1075 |
+
1123,not TAI safety research
|
1076 |
+
1124,not TAI safety research
|
1077 |
+
1125,TAI safety research
|
1078 |
+
1126,not TAI safety research
|
1079 |
+
1127,TAI safety research
|
1080 |
+
1128,not TAI safety research
|
1081 |
+
1129,not TAI safety research
|
1082 |
+
1130,not TAI safety research
|
1083 |
+
1131,not TAI safety research
|
1084 |
+
1132,not TAI safety research
|
1085 |
+
1133,TAI safety research
|
1086 |
+
1134,not TAI safety research
|
1087 |
+
1135,not TAI safety research
|
1088 |
+
1136,not TAI safety research
|
1089 |
+
1137,not TAI safety research
|
1090 |
+
1138,TAI safety research
|
1091 |
+
1139,TAI safety research
|
1092 |
+
1140,TAI safety research
|
1093 |
+
1141,not TAI safety research
|
1094 |
+
1142,TAI safety research
|
1095 |
+
1143,not TAI safety research
|
1096 |
+
1144,not TAI safety research
|
1097 |
+
1145,not TAI safety research
|
1098 |
+
1146,not TAI safety research
|
1099 |
+
1147,not TAI safety research
|
1100 |
+
1148,TAI safety research
|
1101 |
+
1149,not TAI safety research
|
1102 |
+
1150,TAI safety research
|
1103 |
+
1151,not TAI safety research
|
1104 |
+
1152,not TAI safety research
|
1105 |
+
1153,not TAI safety research
|
1106 |
+
1154,TAI safety research
|
1107 |
+
1155,not TAI safety research
|
1108 |
+
1156,not TAI safety research
|
1109 |
+
1157,TAI safety research
|
1110 |
+
1158,TAI safety research
|
1111 |
+
1159,not TAI safety research
|
1112 |
+
1160,TAI safety research
|
1113 |
+
1161,not TAI safety research
|
1114 |
+
1162,TAI safety research
|
1115 |
+
1163,TAI safety research
|
1116 |
+
1164,not TAI safety research
|
1117 |
+
1165,TAI safety research
|
1118 |
+
1166,TAI safety research
|
1119 |
+
1167,not TAI safety research
|
1120 |
+
1168,not TAI safety research
|
1121 |
+
1169,not TAI safety research
|
1122 |
+
1170,not TAI safety research
|
1123 |
+
1171,TAI safety research
|
1124 |
+
1172,TAI safety research
|
1125 |
+
1173,TAI safety research
|
1126 |
+
1174,not TAI safety research
|
1127 |
+
1175,not TAI safety research
|
1128 |
+
1176,TAI safety research
|
1129 |
+
1177,not TAI safety research
|
1130 |
+
1178,not TAI safety research
|
1131 |
+
1179,TAI safety research
|
1132 |
+
1180,not TAI safety research
|
1133 |
+
1181,TAI safety research
|
1134 |
+
1182,not TAI safety research
|
1135 |
+
1183,not TAI safety research
|
1136 |
+
1184,not TAI safety research
|
1137 |
+
1185,TAI safety research
|
1138 |
+
1186,TAI safety research
|
1139 |
+
1187,not TAI safety research
|
1140 |
+
1188,not TAI safety research
|
1141 |
+
1189,TAI safety research
|
1142 |
+
1190,not TAI safety research
|
1143 |
+
1191,not TAI safety research
|
1144 |
+
1192,TAI safety research
|
1145 |
+
1193,TAI safety research
|
1146 |
+
1194,TAI safety research
|
1147 |
+
1195,not TAI safety research
|
1148 |
+
1196,TAI safety research
|
1149 |
+
1197,not TAI safety research
|
1150 |
+
1198,TAI safety research
|
1151 |
+
1199,TAI safety research
|
1152 |
+
1200,not TAI safety research
|
1153 |
+
1201,TAI safety research
|
1154 |
+
1202,TAI safety research
|
1155 |
+
1203,not TAI safety research
|
1156 |
+
1204,TAI safety research
|
1157 |
+
1205,TAI safety research
|
1158 |
+
1206,not TAI safety research
|
1159 |
+
1207,not TAI safety research
|
1160 |
+
1208,TAI safety research
|
1161 |
+
1209,TAI safety research
|
1162 |
+
1210,not TAI safety research
|
1163 |
+
1211,not TAI safety research
|
1164 |
+
1212,TAI safety research
|
1165 |
+
1213,not TAI safety research
|
1166 |
+
1214,TAI safety research
|
1167 |
+
1215,not TAI safety research
|
1168 |
+
1216,TAI safety research
|
1169 |
+
1217,TAI safety research
|
1170 |
+
1218,TAI safety research
|
1171 |
+
1219,not TAI safety research
|
1172 |
+
1220,TAI safety research
|
1173 |
+
1221,TAI safety research
|
1174 |
+
1222,TAI safety research
|
1175 |
+
1223,TAI safety research
|
1176 |
+
1224,TAI safety research
|
1177 |
+
1225,TAI safety research
|
1178 |
+
1226,not TAI safety research
|
1179 |
+
1227,TAI safety research
|
1180 |
+
1228,TAI safety research
|
1181 |
+
1229,not TAI safety research
|
1182 |
+
1230,not TAI safety research
|
1183 |
+
1231,not TAI safety research
|
1184 |
+
1232,not TAI safety research
|
1185 |
+
1233,not TAI safety research
|
1186 |
+
1234,TAI safety research
|
1187 |
+
1235,TAI safety research
|
1188 |
+
1236,not TAI safety research
|
1189 |
+
1237,not TAI safety research
|
1190 |
+
1238,not TAI safety research
|
1191 |
+
1239,not TAI safety research
|
1192 |
+
1240,TAI safety research
|
1193 |
+
1241,TAI safety research
|
1194 |
+
1242,not TAI safety research
|
1195 |
+
1243,not TAI safety research
|
1196 |
+
1244,TAI safety research
|
1197 |
+
1245,not TAI safety research
|
1198 |
+
1246,TAI safety research
|
1199 |
+
1247,not TAI safety research
|
1200 |
+
1248,TAI safety research
|
1201 |
+
1249,not TAI safety research
|
1202 |
+
1250,TAI safety research
|
1203 |
+
1251,not TAI safety research
|
1204 |
+
1252,not TAI safety research
|
1205 |
+
1253,not TAI safety research
|
1206 |
+
1254,not TAI safety research
|
1207 |
+
1255,not TAI safety research
|
1208 |
+
1256,not TAI safety research
|
1209 |
+
1257,TAI safety research
|
1210 |
+
1258,TAI safety research
|
1211 |
+
1259,TAI safety research
|
1212 |
+
1260,not TAI safety research
|
1213 |
+
1261,not TAI safety research
|
1214 |
+
1262,not TAI safety research
|
1215 |
+
1263,not TAI safety research
|
1216 |
+
1264,TAI safety research
|
1217 |
+
1265,not TAI safety research
|
1218 |
+
1266,TAI safety research
|
1219 |
+
1267,not TAI safety research
|
1220 |
+
1268,TAI safety research
|
1221 |
+
1269,not TAI safety research
|
1222 |
+
1270,not TAI safety research
|
1223 |
+
1271,TAI safety research
|
1224 |
+
1272,TAI safety research
|
1225 |
+
1273,not TAI safety research
|
1226 |
+
1274,not TAI safety research
|
1227 |
+
1275,TAI safety research
|
1228 |
+
1276,not TAI safety research
|
1229 |
+
1277,TAI safety research
|
1230 |
+
1278,TAI safety research
|
1231 |
+
1279,TAI safety research
|
1232 |
+
1280,TAI safety research
|
1233 |
+
1281,not TAI safety research
|
1234 |
+
1282,TAI safety research
|
1235 |
+
1283,not TAI safety research
|
1236 |
+
1284,TAI safety research
|
1237 |
+
1285,TAI safety research
|
1238 |
+
1286,TAI safety research
|
1239 |
+
1287,TAI safety research
|
1240 |
+
1288,TAI safety research
|
1241 |
+
1289,TAI safety research
|
1242 |
+
1290,TAI safety research
|
1243 |
+
1291,not TAI safety research
|
1244 |
+
1292,TAI safety research
|
1245 |
+
1293,not TAI safety research
|
1246 |
+
1294,TAI safety research
|
1247 |
+
1295,not TAI safety research
|
1248 |
+
1296,TAI safety research
|
1249 |
+
1297,TAI safety research
|
1250 |
+
1298,not TAI safety research
|
1251 |
+
1299,not TAI safety research
|
1252 |
+
1300,not TAI safety research
|
1253 |
+
1301,not TAI safety research
|
1254 |
+
1302,not TAI safety research
|
1255 |
+
1303,TAI safety research
|
1256 |
+
1304,TAI safety research
|
1257 |
+
1305,not TAI safety research
|
1258 |
+
1306,not TAI safety research
|
1259 |
+
1307,not TAI safety research
|
1260 |
+
1308,not TAI safety research
|
1261 |
+
1309,not TAI safety research
|
1262 |
+
1310,not TAI safety research
|
1263 |
+
1311,not TAI safety research
|
1264 |
+
1312,TAI safety research
|
1265 |
+
1313,not TAI safety research
|
1266 |
+
1314,TAI safety research
|
1267 |
+
1315,not TAI safety research
|
1268 |
+
1316,TAI safety research
|
1269 |
+
1317,TAI safety research
|
1270 |
+
1318,not TAI safety research
|
1271 |
+
1319,not TAI safety research
|
1272 |
+
1320,not TAI safety research
|
1273 |
+
1321,TAI safety research
|
1274 |
+
1322,not TAI safety research
|
1275 |
+
1323,not TAI safety research
|
1276 |
+
1324,TAI safety research
|
1277 |
+
1325,not TAI safety research
|
1278 |
+
1326,TAI safety research
|
1279 |
+
1327,not TAI safety research
|
1280 |
+
1328,TAI safety research
|
1281 |
+
1329,TAI safety research
|
1282 |
+
1330,TAI safety research
|
1283 |
+
1331,TAI safety research
|
1284 |
+
1332,not TAI safety research
|
1285 |
+
1333,not TAI safety research
|
1286 |
+
1334,not TAI safety research
|
1287 |
+
1335,TAI safety research
|
1288 |
+
1336,not TAI safety research
|
1289 |
+
1337,TAI safety research
|
1290 |
+
1338,TAI safety research
|
1291 |
+
1339,TAI safety research
|
1292 |
+
1340,TAI safety research
|
1293 |
+
1341,not TAI safety research
|
1294 |
+
1342,TAI safety research
|
1295 |
+
1343,TAI safety research
|
1296 |
+
1344,TAI safety research
|
1297 |
+
1345,TAI safety research
|
1298 |
+
1346,not TAI safety research
|
1299 |
+
1347,not TAI safety research
|
1300 |
+
1348,TAI safety research
|
1301 |
+
1349,TAI safety research
|
1302 |
+
1350,TAI safety research
|
1303 |
+
1351,TAI safety research
|
1304 |
+
1352,not TAI safety research
|
1305 |
+
1353,not TAI safety research
|
1306 |
+
1354,not TAI safety research
|
1307 |
+
1355,TAI safety research
|
1308 |
+
1356,not TAI safety research
|
1309 |
+
1357,not TAI safety research
|
1310 |
+
1358,TAI safety research
|
1311 |
+
1359,not TAI safety research
|
1312 |
+
1360,not TAI safety research
|
1313 |
+
1361,TAI safety research
|
1314 |
+
1362,not TAI safety research
|
1315 |
+
1363,TAI safety research
|
1316 |
+
1364,not TAI safety research
|
1317 |
+
1365,TAI safety research
|
1318 |
+
1366,TAI safety research
|
1319 |
+
1367,TAI safety research
|
1320 |
+
1368,TAI safety research
|
1321 |
+
1369,not TAI safety research
|
1322 |
+
1370,not TAI safety research
|
1323 |
+
1371,not TAI safety research
|
1324 |
+
1372,not TAI safety research
|
1325 |
+
1373,TAI safety research
|
1326 |
+
1374,TAI safety research
|
1327 |
+
1375,not TAI safety research
|
1328 |
+
1376,TAI safety research
|
1329 |
+
1377,not TAI safety research
|
1330 |
+
1378,TAI safety research
|
1331 |
+
1379,not TAI safety research
|
1332 |
+
1380,not TAI safety research
|
1333 |
+
1381,not TAI safety research
|
1334 |
+
1382,not TAI safety research
|
1335 |
+
1383,TAI safety research
|
1336 |
+
1384,not TAI safety research
|
1337 |
+
1385,not TAI safety research
|
1338 |
+
1386,not TAI safety research
|
1339 |
+
1387,not TAI safety research
|
1340 |
+
1388,not TAI safety research
|
1341 |
+
1389,TAI safety research
|
1342 |
+
1390,not TAI safety research
|
1343 |
+
1391,not TAI safety research
|
1344 |
+
1392,TAI safety research
|
1345 |
+
1393,TAI safety research
|
1346 |
+
1394,TAI safety research
|
1347 |
+
1395,not TAI safety research
|
1348 |
+
1396,not TAI safety research
|
1349 |
+
1397,not TAI safety research
|
1350 |
+
1398,TAI safety research
|
1351 |
+
1399,not TAI safety research
|
1352 |
+
1400,TAI safety research
|
1353 |
+
1401,not TAI safety research
|
1354 |
+
1402,not TAI safety research
|
1355 |
+
1403,not TAI safety research
|
1356 |
+
1404,TAI safety research
|
1357 |
+
1405,TAI safety research
|
1358 |
+
1406,not TAI safety research
|
1359 |
+
1407,TAI safety research
|
1360 |
+
1408,TAI safety research
|
1361 |
+
1409,not TAI safety research
|
1362 |
+
1410,TAI safety research
|
1363 |
+
1411,TAI safety research
|
1364 |
+
1412,not TAI safety research
|
1365 |
+
1413,TAI safety research
|
1366 |
+
1414,TAI safety research
|
1367 |
+
1415,not TAI safety research
|
1368 |
+
1416,not TAI safety research
|
1369 |
+
1417,not TAI safety research
|
1370 |
+
1418,TAI safety research
|
1371 |
+
1419,TAI safety research
|
1372 |
+
1420,TAI safety research
|
1373 |
+
1421,TAI safety research
|
1374 |
+
1422,TAI safety research
|
1375 |
+
1423,TAI safety research
|
1376 |
+
1424,not TAI safety research
|
1377 |
+
1425,TAI safety research
|
1378 |
+
1426,TAI safety research
|
1379 |
+
1427,TAI safety research
|
1380 |
+
1428,not TAI safety research
|
1381 |
+
1429,not TAI safety research
|
1382 |
+
1430,TAI safety research
|
1383 |
+
1431,TAI safety research
|
1384 |
+
1432,not TAI safety research
|
1385 |
+
1433,TAI safety research
|
1386 |
+
1434,not TAI safety research
|
1387 |
+
1435,TAI safety research
|
1388 |
+
1436,not TAI safety research
|
1389 |
+
1437,not TAI safety research
|
1390 |
+
1438,not TAI safety research
|
1391 |
+
1439,TAI safety research
|
1392 |
+
1440,not TAI safety research
|
1393 |
+
1441,TAI safety research
|
1394 |
+
1442,not TAI safety research
|
1395 |
+
1443,not TAI safety research
|
1396 |
+
1444,TAI safety research
|
1397 |
+
1445,TAI safety research
|
1398 |
+
1446,not TAI safety research
|
1399 |
+
1447,not TAI safety research
|
1400 |
+
1448,not TAI safety research
|
1401 |
+
1449,TAI safety research
|
1402 |
+
1450,TAI safety research
|
1403 |
+
1451,TAI safety research
|
1404 |
+
1452,TAI safety research
|
1405 |
+
1453,not TAI safety research
|
1406 |
+
1454,TAI safety research
|
1407 |
+
1455,TAI safety research
|
1408 |
+
1456,not TAI safety research
|
1409 |
+
1457,TAI safety research
|
1410 |
+
1458,not TAI safety research
|
1411 |
+
1459,not TAI safety research
|
1412 |
+
1460,not TAI safety research
|
1413 |
+
1461,not TAI safety research
|
1414 |
+
1462,TAI safety research
|
1415 |
+
1463,not TAI safety research
|
1416 |
+
1464,TAI safety research
|
1417 |
+
1465,not TAI safety research
|
1418 |
+
1466,not TAI safety research
|
1419 |
+
1467,TAI safety research
|
1420 |
+
1468,TAI safety research
|
1421 |
+
1469,TAI safety research
|
1422 |
+
1470,TAI safety research
|
1423 |
+
1471,not TAI safety research
|
1424 |
+
1472,TAI safety research
|
1425 |
+
1473,not TAI safety research
|
1426 |
+
1474,not TAI safety research
|
1427 |
+
1475,not TAI safety research
|
1428 |
+
1476,TAI safety research
|
1429 |
+
1477,TAI safety research
|
1430 |
+
1478,not TAI safety research
|
1431 |
+
1479,not TAI safety research
|
1432 |
+
1480,TAI safety research
|
1433 |
+
1481,TAI safety research
|
1434 |
+
1482,not TAI safety research
|
1435 |
+
1483,not TAI safety research
|
1436 |
+
1484,not TAI safety research
|
1437 |
+
1485,not TAI safety research
|
1438 |
+
1486,TAI safety research
|
1439 |
+
1487,TAI safety research
|
1440 |
+
1488,not TAI safety research
|
1441 |
+
1489,TAI safety research
|
1442 |
+
1490,not TAI safety research
|
1443 |
+
1491,not TAI safety research
|
1444 |
+
1492,not TAI safety research
|
1445 |
+
1493,not TAI safety research
|
1446 |
+
1494,not TAI safety research
|
1447 |
+
1495,not TAI safety research
|
1448 |
+
1496,not TAI safety research
|
1449 |
+
1497,TAI safety research
|
1450 |
+
1498,TAI safety research
|
1451 |
+
1499,TAI safety research
|
1452 |
+
1500,TAI safety research
|
1453 |
+
1501,not TAI safety research
|
1454 |
+
1502,TAI safety research
|
1455 |
+
1503,not TAI safety research
|
1456 |
+
1504,not TAI safety research
|
1457 |
+
1505,TAI safety research
|
1458 |
+
1506,not TAI safety research
|
1459 |
+
1507,TAI safety research
|
1460 |
+
1508,not TAI safety research
|
1461 |
+
1509,not TAI safety research
|
1462 |
+
1510,TAI safety research
|
1463 |
+
1511,not TAI safety research
|
1464 |
+
1512,not TAI safety research
|
1465 |
+
1513,TAI safety research
|
1466 |
+
1514,TAI safety research
|
1467 |
+
1515,not TAI safety research
|
1468 |
+
1516,TAI safety research
|
1469 |
+
1517,TAI safety research
|
1470 |
+
1518,TAI safety research
|
1471 |
+
1519,not TAI safety research
|
1472 |
+
1520,not TAI safety research
|
1473 |
+
1521,TAI safety research
|
1474 |
+
1522,not TAI safety research
|
1475 |
+
1523,TAI safety research
|
1476 |
+
1524,not TAI safety research
|
1477 |
+
1525,not TAI safety research
|
1478 |
+
1526,not TAI safety research
|
1479 |
+
1527,not TAI safety research
|
1480 |
+
1528,not TAI safety research
|
1481 |
+
1529,TAI safety research
|
1482 |
+
1530,TAI safety research
|
1483 |
+
1531,TAI safety research
|
1484 |
+
1532,TAI safety research
|
1485 |
+
1533,TAI safety research
|
1486 |
+
1534,not TAI safety research
|
1487 |
+
1535,TAI safety research
|
1488 |
+
1536,TAI safety research
|
1489 |
+
1537,not TAI safety research
|
1490 |
+
1538,TAI safety research
|
1491 |
+
1539,not TAI safety research
|
1492 |
+
1540,not TAI safety research
|
1493 |
+
1541,not TAI safety research
|
1494 |
+
1542,TAI safety research
|
1495 |
+
1543,TAI safety research
|
1496 |
+
1544,TAI safety research
|
1497 |
+
1545,TAI safety research
|
1498 |
+
1546,TAI safety research
|
1499 |
+
1547,TAI safety research
|
1500 |
+
1548,TAI safety research
|
1501 |
+
1549,not TAI safety research
|
1502 |
+
1550,TAI safety research
|
1503 |
+
1551,TAI safety research
|
1504 |
+
1552,TAI safety research
|
1505 |
+
1553,not TAI safety research
|
1506 |
+
1554,TAI safety research
|
1507 |
+
1555,TAI safety research
|
1508 |
+
1556,not TAI safety research
|
1509 |
+
1557,not TAI safety research
|
1510 |
+
1558,not TAI safety research
|
1511 |
+
1559,TAI safety research
|
1512 |
+
1560,not TAI safety research
|
1513 |
+
1561,not TAI safety research
|
1514 |
+
1562,not TAI safety research
|
1515 |
+
1563,TAI safety research
|
1516 |
+
1564,not TAI safety research
|
1517 |
+
1565,not TAI safety research
|
1518 |
+
1566,not TAI safety research
|
1519 |
+
1567,TAI safety research
|
1520 |
+
1568,TAI safety research
|
1521 |
+
1569,TAI safety research
|
1522 |
+
1570,TAI safety research
|
1523 |
+
1571,not TAI safety research
|
1524 |
+
1572,TAI safety research
|
1525 |
+
1573,TAI safety research
|
1526 |
+
1574,TAI safety research
|
1527 |
+
1575,TAI safety research
|
1528 |
+
1576,TAI safety research
|
1529 |
+
1577,TAI safety research
|
1530 |
+
1578,not TAI safety research
|
1531 |
+
1579,not TAI safety research
|
1532 |
+
1580,not TAI safety research
|
1533 |
+
1581,TAI safety research
|
1534 |
+
1582,TAI safety research
|
1535 |
+
1583,not TAI safety research
|
1536 |
+
1584,TAI safety research
|
1537 |
+
1585,not TAI safety research
|
1538 |
+
1586,TAI safety research
|
1539 |
+
1587,not TAI safety research
|
1540 |
+
1588,not TAI safety research
|
1541 |
+
1589,not TAI safety research
|
1542 |
+
1590,TAI safety research
|
1543 |
+
1591,TAI safety research
|
1544 |
+
1592,not TAI safety research
|
1545 |
+
1593,TAI safety research
|
1546 |
+
1594,TAI safety research
|
1547 |
+
1595,TAI safety research
|
1548 |
+
1596,not TAI safety research
|
1549 |
+
1597,TAI safety research
|
1550 |
+
1598,TAI safety research
|
1551 |
+
1599,TAI safety research
|
1552 |
+
1600,TAI safety research
|
1553 |
+
1601,TAI safety research
|
1554 |
+
1602,not TAI safety research
|
1555 |
+
1603,TAI safety research
|
1556 |
+
1604,not TAI safety research
|
1557 |
+
1605,not TAI safety research
|
1558 |
+
1606,not TAI safety research
|
1559 |
+
1607,not TAI safety research
|
1560 |
+
1608,not TAI safety research
|
1561 |
+
1609,TAI safety research
|
1562 |
+
1610,not TAI safety research
|
1563 |
+
1611,not TAI safety research
|
1564 |
+
1612,TAI safety research
|
1565 |
+
1613,not TAI safety research
|
1566 |
+
1614,TAI safety research
|
1567 |
+
1615,TAI safety research
|
1568 |
+
1616,TAI safety research
|
1569 |
+
1617,not TAI safety research
|
1570 |
+
1618,not TAI safety research
|
1571 |
+
1619,TAI safety research
|
1572 |
+
1620,not TAI safety research
|
1573 |
+
1621,not TAI safety research
|
1574 |
+
1622,not TAI safety research
|
1575 |
+
1623,TAI safety research
|
1576 |
+
1624,not TAI safety research
|
1577 |
+
1625,TAI safety research
|
1578 |
+
1626,TAI safety research
|
1579 |
+
1627,not TAI safety research
|
1580 |
+
1628,TAI safety research
|
1581 |
+
1629,not TAI safety research
|
1582 |
+
1630,TAI safety research
|
1583 |
+
1631,not TAI safety research
|
1584 |
+
1632,TAI safety research
|
1585 |
+
1633,TAI safety research
|
1586 |
+
1634,TAI safety research
|
1587 |
+
1635,not TAI safety research
|
1588 |
+
1636,not TAI safety research
|
1589 |
+
1637,not TAI safety research
|
1590 |
+
1638,TAI safety research
|
1591 |
+
1639,not TAI safety research
|
1592 |
+
1640,not TAI safety research
|
1593 |
+
1641,not TAI safety research
|
1594 |
+
1642,not TAI safety research
|
1595 |
+
1643,not TAI safety research
|
1596 |
+
1644,TAI safety research
|
1597 |
+
1645,TAI safety research
|
1598 |
+
1646,TAI safety research
|
1599 |
+
1647,TAI safety research
|
1600 |
+
1648,not TAI safety research
|
1601 |
+
1649,TAI safety research
|
1602 |
+
1650,TAI safety research
|
1603 |
+
1651,not TAI safety research
|
1604 |
+
1652,TAI safety research
|
1605 |
+
1653,not TAI safety research
|
1606 |
+
1654,TAI safety research
|
1607 |
+
1655,TAI safety research
|
1608 |
+
1656,not TAI safety research
|
1609 |
+
1657,TAI safety research
|
1610 |
+
1658,TAI safety research
|
1611 |
+
1659,TAI safety research
|
1612 |
+
1660,TAI safety research
|
1613 |
+
1661,not TAI safety research
|
1614 |
+
1662,TAI safety research
|
1615 |
+
1663,TAI safety research
|
1616 |
+
1664,TAI safety research
|
1617 |
+
1665,TAI safety research
|
1618 |
+
1666,TAI safety research
|
1619 |
+
1667,not TAI safety research
|
1620 |
+
1668,not TAI safety research
|
1621 |
+
1669,TAI safety research
|
1622 |
+
1670,not TAI safety research
|
1623 |
+
1671,not TAI safety research
|
1624 |
+
1672,TAI safety research
|
1625 |
+
1673,not TAI safety research
|
1626 |
+
1674,TAI safety research
|
1627 |
+
1675,TAI safety research
|
1628 |
+
1676,not TAI safety research
|
1629 |
+
1677,TAI safety research
|
1630 |
+
1678,not TAI safety research
|
1631 |
+
1679,TAI safety research
|
1632 |
+
1680,not TAI safety research
|
1633 |
+
1681,TAI safety research
|
1634 |
+
1682,not TAI safety research
|
1635 |
+
1683,not TAI safety research
|
1636 |
+
1684,not TAI safety research
|
1637 |
+
1685,TAI safety research
|
1638 |
+
1686,TAI safety research
|
1639 |
+
1687,TAI safety research
|
1640 |
+
1688,not TAI safety research
|
{{cookiecutter.repo_name}}/data/tai_safety_research/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "tai_safety_research", "description": "", "data_columns": ["Title", "Abstract Note", "Url", "Publication Year", "Item Type", "Author", "Publication Title", "ID"], "label_columns": {"Label": ["TAI safety research", "not TAI safety research"]}}
|
{{cookiecutter.repo_name}}/data/terms_of_service/predictions.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
{{cookiecutter.repo_name}}/data/terms_of_service/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "terms_of_service", "description": "", "data_columns": ["Sentence", "ID"], "label_columns": {"Label": ["not potentially unfair", "potentially unfair"]}}
|
{{cookiecutter.repo_name}}/data/tweet_eval_hate/predictions.csv
ADDED
@@ -0,0 +1,2967 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ID,Label
|
2 |
+
50,hate speech
|
3 |
+
51,not hate speech
|
4 |
+
52,hate speech
|
5 |
+
53,not hate speech
|
6 |
+
54,not hate speech
|
7 |
+
55,hate speech
|
8 |
+
56,hate speech
|
9 |
+
57,hate speech
|
10 |
+
58,hate speech
|
11 |
+
59,not hate speech
|
12 |
+
60,not hate speech
|
13 |
+
61,hate speech
|
14 |
+
62,hate speech
|
15 |
+
63,not hate speech
|
16 |
+
64,not hate speech
|
17 |
+
65,hate speech
|
18 |
+
66,hate speech
|
19 |
+
67,not hate speech
|
20 |
+
68,hate speech
|
21 |
+
69,hate speech
|
22 |
+
70,not hate speech
|
23 |
+
71,not hate speech
|
24 |
+
72,hate speech
|
25 |
+
73,hate speech
|
26 |
+
74,not hate speech
|
27 |
+
75,not hate speech
|
28 |
+
76,not hate speech
|
29 |
+
77,hate speech
|
30 |
+
78,not hate speech
|
31 |
+
79,not hate speech
|
32 |
+
80,hate speech
|
33 |
+
81,hate speech
|
34 |
+
82,hate speech
|
35 |
+
83,not hate speech
|
36 |
+
84,not hate speech
|
37 |
+
85,hate speech
|
38 |
+
86,not hate speech
|
39 |
+
87,hate speech
|
40 |
+
88,not hate speech
|
41 |
+
89,not hate speech
|
42 |
+
90,hate speech
|
43 |
+
91,not hate speech
|
44 |
+
92,not hate speech
|
45 |
+
93,not hate speech
|
46 |
+
94,not hate speech
|
47 |
+
95,not hate speech
|
48 |
+
96,hate speech
|
49 |
+
97,hate speech
|
50 |
+
98,not hate speech
|
51 |
+
99,not hate speech
|
52 |
+
100,hate speech
|
53 |
+
101,hate speech
|
54 |
+
102,hate speech
|
55 |
+
103,not hate speech
|
56 |
+
104,not hate speech
|
57 |
+
105,not hate speech
|
58 |
+
106,not hate speech
|
59 |
+
107,hate speech
|
60 |
+
108,hate speech
|
61 |
+
109,hate speech
|
62 |
+
110,not hate speech
|
63 |
+
111,hate speech
|
64 |
+
112,not hate speech
|
65 |
+
113,not hate speech
|
66 |
+
114,hate speech
|
67 |
+
115,not hate speech
|
68 |
+
116,not hate speech
|
69 |
+
117,not hate speech
|
70 |
+
118,hate speech
|
71 |
+
119,not hate speech
|
72 |
+
120,hate speech
|
73 |
+
121,hate speech
|
74 |
+
122,hate speech
|
75 |
+
123,not hate speech
|
76 |
+
124,hate speech
|
77 |
+
125,hate speech
|
78 |
+
126,not hate speech
|
79 |
+
127,hate speech
|
80 |
+
128,not hate speech
|
81 |
+
129,not hate speech
|
82 |
+
130,hate speech
|
83 |
+
131,hate speech
|
84 |
+
132,not hate speech
|
85 |
+
133,hate speech
|
86 |
+
134,not hate speech
|
87 |
+
135,not hate speech
|
88 |
+
136,hate speech
|
89 |
+
137,not hate speech
|
90 |
+
138,not hate speech
|
91 |
+
139,not hate speech
|
92 |
+
140,hate speech
|
93 |
+
141,not hate speech
|
94 |
+
142,hate speech
|
95 |
+
143,not hate speech
|
96 |
+
144,hate speech
|
97 |
+
145,not hate speech
|
98 |
+
146,not hate speech
|
99 |
+
147,hate speech
|
100 |
+
148,not hate speech
|
101 |
+
149,not hate speech
|
102 |
+
150,hate speech
|
103 |
+
151,not hate speech
|
104 |
+
152,hate speech
|
105 |
+
153,not hate speech
|
106 |
+
154,hate speech
|
107 |
+
155,not hate speech
|
108 |
+
156,hate speech
|
109 |
+
157,not hate speech
|
110 |
+
158,not hate speech
|
111 |
+
159,not hate speech
|
112 |
+
160,hate speech
|
113 |
+
161,not hate speech
|
114 |
+
162,hate speech
|
115 |
+
163,not hate speech
|
116 |
+
164,hate speech
|
117 |
+
165,hate speech
|
118 |
+
166,hate speech
|
119 |
+
167,hate speech
|
120 |
+
168,hate speech
|
121 |
+
169,hate speech
|
122 |
+
170,hate speech
|
123 |
+
171,hate speech
|
124 |
+
172,not hate speech
|
125 |
+
173,hate speech
|
126 |
+
174,not hate speech
|
127 |
+
175,hate speech
|
128 |
+
176,hate speech
|
129 |
+
177,not hate speech
|
130 |
+
178,not hate speech
|
131 |
+
179,hate speech
|
132 |
+
180,not hate speech
|
133 |
+
181,hate speech
|
134 |
+
182,hate speech
|
135 |
+
183,not hate speech
|
136 |
+
184,not hate speech
|
137 |
+
185,not hate speech
|
138 |
+
186,hate speech
|
139 |
+
187,hate speech
|
140 |
+
188,not hate speech
|
141 |
+
189,not hate speech
|
142 |
+
190,hate speech
|
143 |
+
191,not hate speech
|
144 |
+
192,hate speech
|
145 |
+
193,not hate speech
|
146 |
+
194,hate speech
|
147 |
+
195,hate speech
|
148 |
+
196,hate speech
|
149 |
+
197,not hate speech
|
150 |
+
198,not hate speech
|
151 |
+
199,hate speech
|
152 |
+
200,hate speech
|
153 |
+
201,hate speech
|
154 |
+
202,not hate speech
|
155 |
+
203,not hate speech
|
156 |
+
204,hate speech
|
157 |
+
205,not hate speech
|
158 |
+
206,hate speech
|
159 |
+
207,not hate speech
|
160 |
+
208,hate speech
|
161 |
+
209,not hate speech
|
162 |
+
210,hate speech
|
163 |
+
211,not hate speech
|
164 |
+
212,not hate speech
|
165 |
+
213,hate speech
|
166 |
+
214,not hate speech
|
167 |
+
215,hate speech
|
168 |
+
216,hate speech
|
169 |
+
217,not hate speech
|
170 |
+
218,not hate speech
|
171 |
+
219,not hate speech
|
172 |
+
220,not hate speech
|
173 |
+
221,not hate speech
|
174 |
+
222,hate speech
|
175 |
+
223,not hate speech
|
176 |
+
224,not hate speech
|
177 |
+
225,not hate speech
|
178 |
+
226,not hate speech
|
179 |
+
227,hate speech
|
180 |
+
228,not hate speech
|
181 |
+
229,hate speech
|
182 |
+
230,hate speech
|
183 |
+
231,not hate speech
|
184 |
+
232,hate speech
|
185 |
+
233,not hate speech
|
186 |
+
234,hate speech
|
187 |
+
235,hate speech
|
188 |
+
236,not hate speech
|
189 |
+
237,not hate speech
|
190 |
+
238,not hate speech
|
191 |
+
239,not hate speech
|
192 |
+
240,hate speech
|
193 |
+
241,hate speech
|
194 |
+
242,hate speech
|
195 |
+
243,hate speech
|
196 |
+
244,hate speech
|
197 |
+
245,not hate speech
|
198 |
+
246,hate speech
|
199 |
+
247,not hate speech
|
200 |
+
248,not hate speech
|
201 |
+
249,hate speech
|
202 |
+
250,hate speech
|
203 |
+
251,hate speech
|
204 |
+
252,hate speech
|
205 |
+
253,not hate speech
|
206 |
+
254,not hate speech
|
207 |
+
255,not hate speech
|
208 |
+
256,hate speech
|
209 |
+
257,hate speech
|
210 |
+
258,hate speech
|
211 |
+
259,hate speech
|
212 |
+
260,not hate speech
|
213 |
+
261,not hate speech
|
214 |
+
262,hate speech
|
215 |
+
263,hate speech
|
216 |
+
264,not hate speech
|
217 |
+
265,hate speech
|
218 |
+
266,hate speech
|
219 |
+
267,not hate speech
|
220 |
+
268,not hate speech
|
221 |
+
269,hate speech
|
222 |
+
270,hate speech
|
223 |
+
271,not hate speech
|
224 |
+
272,not hate speech
|
225 |
+
273,hate speech
|
226 |
+
274,not hate speech
|
227 |
+
275,not hate speech
|
228 |
+
276,hate speech
|
229 |
+
277,not hate speech
|
230 |
+
278,not hate speech
|
231 |
+
279,hate speech
|
232 |
+
280,hate speech
|
233 |
+
281,hate speech
|
234 |
+
282,not hate speech
|
235 |
+
283,not hate speech
|
236 |
+
284,not hate speech
|
237 |
+
285,not hate speech
|
238 |
+
286,hate speech
|
239 |
+
287,hate speech
|
240 |
+
288,not hate speech
|
241 |
+
289,not hate speech
|
242 |
+
290,not hate speech
|
243 |
+
291,hate speech
|
244 |
+
292,hate speech
|
245 |
+
293,not hate speech
|
246 |
+
294,hate speech
|
247 |
+
295,hate speech
|
248 |
+
296,hate speech
|
249 |
+
297,not hate speech
|
250 |
+
298,not hate speech
|
251 |
+
299,not hate speech
|
252 |
+
300,not hate speech
|
253 |
+
301,hate speech
|
254 |
+
302,hate speech
|
255 |
+
303,hate speech
|
256 |
+
304,not hate speech
|
257 |
+
305,hate speech
|
258 |
+
306,hate speech
|
259 |
+
307,not hate speech
|
260 |
+
308,not hate speech
|
261 |
+
309,hate speech
|
262 |
+
310,hate speech
|
263 |
+
311,not hate speech
|
264 |
+
312,not hate speech
|
265 |
+
313,not hate speech
|
266 |
+
314,hate speech
|
267 |
+
315,hate speech
|
268 |
+
316,hate speech
|
269 |
+
317,hate speech
|
270 |
+
318,not hate speech
|
271 |
+
319,not hate speech
|
272 |
+
320,not hate speech
|
273 |
+
321,not hate speech
|
274 |
+
322,not hate speech
|
275 |
+
323,not hate speech
|
276 |
+
324,hate speech
|
277 |
+
325,not hate speech
|
278 |
+
326,not hate speech
|
279 |
+
327,not hate speech
|
280 |
+
328,hate speech
|
281 |
+
329,not hate speech
|
282 |
+
330,hate speech
|
283 |
+
331,hate speech
|
284 |
+
332,hate speech
|
285 |
+
333,not hate speech
|
286 |
+
334,not hate speech
|
287 |
+
335,hate speech
|
288 |
+
336,not hate speech
|
289 |
+
337,hate speech
|
290 |
+
338,hate speech
|
291 |
+
339,not hate speech
|
292 |
+
340,hate speech
|
293 |
+
341,not hate speech
|
294 |
+
342,not hate speech
|
295 |
+
343,not hate speech
|
296 |
+
344,hate speech
|
297 |
+
345,not hate speech
|
298 |
+
346,hate speech
|
299 |
+
347,hate speech
|
300 |
+
348,hate speech
|
301 |
+
349,not hate speech
|
302 |
+
350,hate speech
|
303 |
+
351,hate speech
|
304 |
+
352,hate speech
|
305 |
+
353,not hate speech
|
306 |
+
354,hate speech
|
307 |
+
355,hate speech
|
308 |
+
356,hate speech
|
309 |
+
357,not hate speech
|
310 |
+
358,hate speech
|
311 |
+
359,not hate speech
|
312 |
+
360,not hate speech
|
313 |
+
361,hate speech
|
314 |
+
362,not hate speech
|
315 |
+
363,hate speech
|
316 |
+
364,not hate speech
|
317 |
+
365,not hate speech
|
318 |
+
366,hate speech
|
319 |
+
367,not hate speech
|
320 |
+
368,not hate speech
|
321 |
+
369,not hate speech
|
322 |
+
370,not hate speech
|
323 |
+
371,not hate speech
|
324 |
+
372,not hate speech
|
325 |
+
373,not hate speech
|
326 |
+
374,not hate speech
|
327 |
+
375,hate speech
|
328 |
+
376,not hate speech
|
329 |
+
377,hate speech
|
330 |
+
378,not hate speech
|
331 |
+
379,not hate speech
|
332 |
+
380,not hate speech
|
333 |
+
381,not hate speech
|
334 |
+
382,hate speech
|
335 |
+
383,hate speech
|
336 |
+
384,hate speech
|
337 |
+
385,not hate speech
|
338 |
+
386,not hate speech
|
339 |
+
387,not hate speech
|
340 |
+
388,hate speech
|
341 |
+
389,not hate speech
|
342 |
+
390,not hate speech
|
343 |
+
391,hate speech
|
344 |
+
392,not hate speech
|
345 |
+
393,hate speech
|
346 |
+
394,hate speech
|
347 |
+
395,hate speech
|
348 |
+
396,hate speech
|
349 |
+
397,not hate speech
|
350 |
+
398,hate speech
|
351 |
+
399,hate speech
|
352 |
+
400,hate speech
|
353 |
+
401,not hate speech
|
354 |
+
402,not hate speech
|
355 |
+
403,hate speech
|
356 |
+
404,hate speech
|
357 |
+
405,hate speech
|
358 |
+
406,hate speech
|
359 |
+
407,hate speech
|
360 |
+
408,hate speech
|
361 |
+
409,not hate speech
|
362 |
+
410,hate speech
|
363 |
+
411,hate speech
|
364 |
+
412,not hate speech
|
365 |
+
413,hate speech
|
366 |
+
414,not hate speech
|
367 |
+
415,hate speech
|
368 |
+
416,hate speech
|
369 |
+
417,not hate speech
|
370 |
+
418,hate speech
|
371 |
+
419,hate speech
|
372 |
+
420,not hate speech
|
373 |
+
421,hate speech
|
374 |
+
422,hate speech
|
375 |
+
423,not hate speech
|
376 |
+
424,hate speech
|
377 |
+
425,hate speech
|
378 |
+
426,not hate speech
|
379 |
+
427,not hate speech
|
380 |
+
428,hate speech
|
381 |
+
429,not hate speech
|
382 |
+
430,hate speech
|
383 |
+
431,hate speech
|
384 |
+
432,not hate speech
|
385 |
+
433,not hate speech
|
386 |
+
434,not hate speech
|
387 |
+
435,not hate speech
|
388 |
+
436,not hate speech
|
389 |
+
437,hate speech
|
390 |
+
438,not hate speech
|
391 |
+
439,hate speech
|
392 |
+
440,not hate speech
|
393 |
+
441,hate speech
|
394 |
+
442,not hate speech
|
395 |
+
443,hate speech
|
396 |
+
444,not hate speech
|
397 |
+
445,hate speech
|
398 |
+
446,hate speech
|
399 |
+
447,hate speech
|
400 |
+
448,hate speech
|
401 |
+
449,hate speech
|
402 |
+
450,hate speech
|
403 |
+
451,hate speech
|
404 |
+
452,hate speech
|
405 |
+
453,not hate speech
|
406 |
+
454,hate speech
|
407 |
+
455,not hate speech
|
408 |
+
456,not hate speech
|
409 |
+
457,not hate speech
|
410 |
+
458,hate speech
|
411 |
+
459,hate speech
|
412 |
+
460,hate speech
|
413 |
+
461,not hate speech
|
414 |
+
462,not hate speech
|
415 |
+
463,not hate speech
|
416 |
+
464,not hate speech
|
417 |
+
465,hate speech
|
418 |
+
466,hate speech
|
419 |
+
467,not hate speech
|
420 |
+
468,not hate speech
|
421 |
+
469,not hate speech
|
422 |
+
470,not hate speech
|
423 |
+
471,hate speech
|
424 |
+
472,hate speech
|
425 |
+
473,not hate speech
|
426 |
+
474,hate speech
|
427 |
+
475,hate speech
|
428 |
+
476,not hate speech
|
429 |
+
477,not hate speech
|
430 |
+
478,not hate speech
|
431 |
+
479,hate speech
|
432 |
+
480,hate speech
|
433 |
+
481,hate speech
|
434 |
+
482,not hate speech
|
435 |
+
483,hate speech
|
436 |
+
484,hate speech
|
437 |
+
485,hate speech
|
438 |
+
486,hate speech
|
439 |
+
487,not hate speech
|
440 |
+
488,hate speech
|
441 |
+
489,not hate speech
|
442 |
+
490,hate speech
|
443 |
+
491,hate speech
|
444 |
+
492,hate speech
|
445 |
+
493,hate speech
|
446 |
+
494,not hate speech
|
447 |
+
495,hate speech
|
448 |
+
496,hate speech
|
449 |
+
497,hate speech
|
450 |
+
498,not hate speech
|
451 |
+
499,hate speech
|
452 |
+
500,hate speech
|
453 |
+
501,not hate speech
|
454 |
+
502,hate speech
|
455 |
+
503,not hate speech
|
456 |
+
504,not hate speech
|
457 |
+
505,not hate speech
|
458 |
+
506,not hate speech
|
459 |
+
507,hate speech
|
460 |
+
508,hate speech
|
461 |
+
509,not hate speech
|
462 |
+
510,not hate speech
|
463 |
+
511,hate speech
|
464 |
+
512,not hate speech
|
465 |
+
513,not hate speech
|
466 |
+
514,hate speech
|
467 |
+
515,not hate speech
|
468 |
+
516,not hate speech
|
469 |
+
517,hate speech
|
470 |
+
518,hate speech
|
471 |
+
519,hate speech
|
472 |
+
520,not hate speech
|
473 |
+
521,not hate speech
|
474 |
+
522,not hate speech
|
475 |
+
523,not hate speech
|
476 |
+
524,not hate speech
|
477 |
+
525,not hate speech
|
478 |
+
526,not hate speech
|
479 |
+
527,hate speech
|
480 |
+
528,not hate speech
|
481 |
+
529,not hate speech
|
482 |
+
530,hate speech
|
483 |
+
531,hate speech
|
484 |
+
532,not hate speech
|
485 |
+
533,not hate speech
|
486 |
+
534,not hate speech
|
487 |
+
535,hate speech
|
488 |
+
536,not hate speech
|
489 |
+
537,hate speech
|
490 |
+
538,hate speech
|
491 |
+
539,hate speech
|
492 |
+
540,hate speech
|
493 |
+
541,not hate speech
|
494 |
+
542,hate speech
|
495 |
+
543,not hate speech
|
496 |
+
544,hate speech
|
497 |
+
545,not hate speech
|
498 |
+
546,hate speech
|
499 |
+
547,not hate speech
|
500 |
+
548,hate speech
|
501 |
+
549,hate speech
|
502 |
+
550,hate speech
|
503 |
+
551,hate speech
|
504 |
+
552,hate speech
|
505 |
+
553,hate speech
|
506 |
+
554,not hate speech
|
507 |
+
555,not hate speech
|
508 |
+
556,hate speech
|
509 |
+
557,hate speech
|
510 |
+
558,hate speech
|
511 |
+
559,hate speech
|
512 |
+
560,hate speech
|
513 |
+
561,hate speech
|
514 |
+
562,not hate speech
|
515 |
+
563,hate speech
|
516 |
+
564,not hate speech
|
517 |
+
565,not hate speech
|
518 |
+
566,not hate speech
|
519 |
+
567,hate speech
|
520 |
+
568,hate speech
|
521 |
+
569,hate speech
|
522 |
+
570,hate speech
|
523 |
+
571,hate speech
|
524 |
+
572,hate speech
|
525 |
+
573,hate speech
|
526 |
+
574,not hate speech
|
527 |
+
575,not hate speech
|
528 |
+
576,hate speech
|
529 |
+
577,hate speech
|
530 |
+
578,hate speech
|
531 |
+
579,not hate speech
|
532 |
+
580,not hate speech
|
533 |
+
581,not hate speech
|
534 |
+
582,not hate speech
|
535 |
+
583,not hate speech
|
536 |
+
584,not hate speech
|
537 |
+
585,not hate speech
|
538 |
+
586,hate speech
|
539 |
+
587,hate speech
|
540 |
+
588,hate speech
|
541 |
+
589,hate speech
|
542 |
+
590,not hate speech
|
543 |
+
591,hate speech
|
544 |
+
592,not hate speech
|
545 |
+
593,hate speech
|
546 |
+
594,not hate speech
|
547 |
+
595,hate speech
|
548 |
+
596,not hate speech
|
549 |
+
597,not hate speech
|
550 |
+
598,not hate speech
|
551 |
+
599,hate speech
|
552 |
+
600,hate speech
|
553 |
+
601,hate speech
|
554 |
+
602,not hate speech
|
555 |
+
603,hate speech
|
556 |
+
604,hate speech
|
557 |
+
605,hate speech
|
558 |
+
606,hate speech
|
559 |
+
607,hate speech
|
560 |
+
608,hate speech
|
561 |
+
609,not hate speech
|
562 |
+
610,not hate speech
|
563 |
+
611,not hate speech
|
564 |
+
612,hate speech
|
565 |
+
613,not hate speech
|
566 |
+
614,not hate speech
|
567 |
+
615,hate speech
|
568 |
+
616,hate speech
|
569 |
+
617,not hate speech
|
570 |
+
618,not hate speech
|
571 |
+
619,not hate speech
|
572 |
+
620,not hate speech
|
573 |
+
621,hate speech
|
574 |
+
622,not hate speech
|
575 |
+
623,hate speech
|
576 |
+
624,not hate speech
|
577 |
+
625,hate speech
|
578 |
+
626,not hate speech
|
579 |
+
627,hate speech
|
580 |
+
628,hate speech
|
581 |
+
629,not hate speech
|
582 |
+
630,not hate speech
|
583 |
+
631,hate speech
|
584 |
+
632,hate speech
|
585 |
+
633,not hate speech
|
586 |
+
634,hate speech
|
587 |
+
635,hate speech
|
588 |
+
636,hate speech
|
589 |
+
637,hate speech
|
590 |
+
638,not hate speech
|
591 |
+
639,hate speech
|
592 |
+
640,hate speech
|
593 |
+
641,not hate speech
|
594 |
+
642,not hate speech
|
595 |
+
643,hate speech
|
596 |
+
644,hate speech
|
597 |
+
645,hate speech
|
598 |
+
646,hate speech
|
599 |
+
647,hate speech
|
600 |
+
648,not hate speech
|
601 |
+
649,hate speech
|
602 |
+
650,not hate speech
|
603 |
+
651,not hate speech
|
604 |
+
652,not hate speech
|
605 |
+
653,hate speech
|
606 |
+
654,not hate speech
|
607 |
+
655,not hate speech
|
608 |
+
656,not hate speech
|
609 |
+
657,not hate speech
|
610 |
+
658,hate speech
|
611 |
+
659,hate speech
|
612 |
+
660,not hate speech
|
613 |
+
661,hate speech
|
614 |
+
662,not hate speech
|
615 |
+
663,not hate speech
|
616 |
+
664,hate speech
|
617 |
+
665,hate speech
|
618 |
+
666,hate speech
|
619 |
+
667,hate speech
|
620 |
+
668,hate speech
|
621 |
+
669,hate speech
|
622 |
+
670,hate speech
|
623 |
+
671,not hate speech
|
624 |
+
672,hate speech
|
625 |
+
673,hate speech
|
626 |
+
674,hate speech
|
627 |
+
675,hate speech
|
628 |
+
676,not hate speech
|
629 |
+
677,hate speech
|
630 |
+
678,not hate speech
|
631 |
+
679,not hate speech
|
632 |
+
680,not hate speech
|
633 |
+
681,hate speech
|
634 |
+
682,not hate speech
|
635 |
+
683,not hate speech
|
636 |
+
684,hate speech
|
637 |
+
685,hate speech
|
638 |
+
686,not hate speech
|
639 |
+
687,not hate speech
|
640 |
+
688,hate speech
|
641 |
+
689,hate speech
|
642 |
+
690,not hate speech
|
643 |
+
691,not hate speech
|
644 |
+
692,hate speech
|
645 |
+
693,hate speech
|
646 |
+
694,not hate speech
|
647 |
+
695,hate speech
|
648 |
+
696,not hate speech
|
649 |
+
697,hate speech
|
650 |
+
698,not hate speech
|
651 |
+
699,hate speech
|
652 |
+
700,hate speech
|
653 |
+
701,hate speech
|
654 |
+
702,hate speech
|
655 |
+
703,hate speech
|
656 |
+
704,hate speech
|
657 |
+
705,hate speech
|
658 |
+
706,hate speech
|
659 |
+
707,not hate speech
|
660 |
+
708,not hate speech
|
661 |
+
709,hate speech
|
662 |
+
710,hate speech
|
663 |
+
711,not hate speech
|
664 |
+
712,hate speech
|
665 |
+
713,hate speech
|
666 |
+
714,hate speech
|
667 |
+
715,hate speech
|
668 |
+
716,hate speech
|
669 |
+
717,hate speech
|
670 |
+
718,not hate speech
|
671 |
+
719,hate speech
|
672 |
+
720,hate speech
|
673 |
+
721,not hate speech
|
674 |
+
722,not hate speech
|
675 |
+
723,not hate speech
|
676 |
+
724,hate speech
|
677 |
+
725,hate speech
|
678 |
+
726,hate speech
|
679 |
+
727,hate speech
|
680 |
+
728,hate speech
|
681 |
+
729,hate speech
|
682 |
+
730,not hate speech
|
683 |
+
731,not hate speech
|
684 |
+
732,not hate speech
|
685 |
+
733,not hate speech
|
686 |
+
734,hate speech
|
687 |
+
735,not hate speech
|
688 |
+
736,not hate speech
|
689 |
+
737,hate speech
|
690 |
+
738,not hate speech
|
691 |
+
739,hate speech
|
692 |
+
740,not hate speech
|
693 |
+
741,hate speech
|
694 |
+
742,hate speech
|
695 |
+
743,not hate speech
|
696 |
+
744,not hate speech
|
697 |
+
745,not hate speech
|
698 |
+
746,hate speech
|
699 |
+
747,not hate speech
|
700 |
+
748,hate speech
|
701 |
+
749,not hate speech
|
702 |
+
750,not hate speech
|
703 |
+
751,not hate speech
|
704 |
+
752,hate speech
|
705 |
+
753,not hate speech
|
706 |
+
754,not hate speech
|
707 |
+
755,not hate speech
|
708 |
+
756,not hate speech
|
709 |
+
757,hate speech
|
710 |
+
758,not hate speech
|
711 |
+
759,hate speech
|
712 |
+
760,hate speech
|
713 |
+
761,not hate speech
|
714 |
+
762,hate speech
|
715 |
+
763,hate speech
|
716 |
+
764,not hate speech
|
717 |
+
765,hate speech
|
718 |
+
766,not hate speech
|
719 |
+
767,hate speech
|
720 |
+
768,hate speech
|
721 |
+
769,hate speech
|
722 |
+
770,hate speech
|
723 |
+
771,hate speech
|
724 |
+
772,hate speech
|
725 |
+
773,hate speech
|
726 |
+
774,not hate speech
|
727 |
+
775,not hate speech
|
728 |
+
776,not hate speech
|
729 |
+
777,hate speech
|
730 |
+
778,not hate speech
|
731 |
+
779,not hate speech
|
732 |
+
780,not hate speech
|
733 |
+
781,hate speech
|
734 |
+
782,not hate speech
|
735 |
+
783,hate speech
|
736 |
+
784,hate speech
|
737 |
+
785,hate speech
|
738 |
+
786,hate speech
|
739 |
+
787,not hate speech
|
740 |
+
788,hate speech
|
741 |
+
789,not hate speech
|
742 |
+
790,hate speech
|
743 |
+
791,not hate speech
|
744 |
+
792,hate speech
|
745 |
+
793,hate speech
|
746 |
+
794,not hate speech
|
747 |
+
795,not hate speech
|
748 |
+
796,not hate speech
|
749 |
+
797,hate speech
|
750 |
+
798,hate speech
|
751 |
+
799,not hate speech
|
752 |
+
800,not hate speech
|
753 |
+
801,hate speech
|
754 |
+
802,not hate speech
|
755 |
+
803,hate speech
|
756 |
+
804,not hate speech
|
757 |
+
805,not hate speech
|
758 |
+
806,not hate speech
|
759 |
+
807,hate speech
|
760 |
+
808,not hate speech
|
761 |
+
809,hate speech
|
762 |
+
810,hate speech
|
763 |
+
811,not hate speech
|
764 |
+
812,not hate speech
|
765 |
+
813,hate speech
|
766 |
+
814,hate speech
|
767 |
+
815,hate speech
|
768 |
+
816,not hate speech
|
769 |
+
817,hate speech
|
770 |
+
818,hate speech
|
771 |
+
819,hate speech
|
772 |
+
820,not hate speech
|
773 |
+
821,not hate speech
|
774 |
+
822,not hate speech
|
775 |
+
823,not hate speech
|
776 |
+
824,not hate speech
|
777 |
+
825,not hate speech
|
778 |
+
826,not hate speech
|
779 |
+
827,not hate speech
|
780 |
+
828,hate speech
|
781 |
+
829,not hate speech
|
782 |
+
830,not hate speech
|
783 |
+
831,hate speech
|
784 |
+
832,not hate speech
|
785 |
+
833,not hate speech
|
786 |
+
834,not hate speech
|
787 |
+
835,hate speech
|
788 |
+
836,hate speech
|
789 |
+
837,not hate speech
|
790 |
+
838,not hate speech
|
791 |
+
839,hate speech
|
792 |
+
840,not hate speech
|
793 |
+
841,hate speech
|
794 |
+
842,hate speech
|
795 |
+
843,hate speech
|
796 |
+
844,not hate speech
|
797 |
+
845,hate speech
|
798 |
+
846,not hate speech
|
799 |
+
847,not hate speech
|
800 |
+
848,not hate speech
|
801 |
+
849,not hate speech
|
802 |
+
850,hate speech
|
803 |
+
851,not hate speech
|
804 |
+
852,hate speech
|
805 |
+
853,not hate speech
|
806 |
+
854,not hate speech
|
807 |
+
855,not hate speech
|
808 |
+
856,not hate speech
|
809 |
+
857,hate speech
|
810 |
+
858,hate speech
|
811 |
+
859,not hate speech
|
812 |
+
860,not hate speech
|
813 |
+
861,hate speech
|
814 |
+
862,not hate speech
|
815 |
+
863,not hate speech
|
816 |
+
864,hate speech
|
817 |
+
865,not hate speech
|
818 |
+
866,not hate speech
|
819 |
+
867,not hate speech
|
820 |
+
868,not hate speech
|
821 |
+
869,hate speech
|
822 |
+
870,not hate speech
|
823 |
+
871,not hate speech
|
824 |
+
872,hate speech
|
825 |
+
873,hate speech
|
826 |
+
874,hate speech
|
827 |
+
875,not hate speech
|
828 |
+
876,not hate speech
|
829 |
+
877,hate speech
|
830 |
+
878,hate speech
|
831 |
+
879,hate speech
|
832 |
+
880,hate speech
|
833 |
+
881,not hate speech
|
834 |
+
882,hate speech
|
835 |
+
883,not hate speech
|
836 |
+
884,not hate speech
|
837 |
+
885,not hate speech
|
838 |
+
886,hate speech
|
839 |
+
887,not hate speech
|
840 |
+
888,hate speech
|
841 |
+
889,hate speech
|
842 |
+
890,hate speech
|
843 |
+
891,not hate speech
|
844 |
+
892,hate speech
|
845 |
+
893,hate speech
|
846 |
+
894,hate speech
|
847 |
+
895,not hate speech
|
848 |
+
896,hate speech
|
849 |
+
897,hate speech
|
850 |
+
898,hate speech
|
851 |
+
899,hate speech
|
852 |
+
900,hate speech
|
853 |
+
901,hate speech
|
854 |
+
902,hate speech
|
855 |
+
903,hate speech
|
856 |
+
904,hate speech
|
857 |
+
905,not hate speech
|
858 |
+
906,not hate speech
|
859 |
+
907,not hate speech
|
860 |
+
908,not hate speech
|
861 |
+
909,not hate speech
|
862 |
+
910,hate speech
|
863 |
+
911,not hate speech
|
864 |
+
912,hate speech
|
865 |
+
913,not hate speech
|
866 |
+
914,not hate speech
|
867 |
+
915,hate speech
|
868 |
+
916,hate speech
|
869 |
+
917,not hate speech
|
870 |
+
918,hate speech
|
871 |
+
919,not hate speech
|
872 |
+
920,hate speech
|
873 |
+
921,hate speech
|
874 |
+
922,hate speech
|
875 |
+
923,hate speech
|
876 |
+
924,not hate speech
|
877 |
+
925,not hate speech
|
878 |
+
926,not hate speech
|
879 |
+
927,hate speech
|
880 |
+
928,hate speech
|
881 |
+
929,hate speech
|
882 |
+
930,not hate speech
|
883 |
+
931,not hate speech
|
884 |
+
932,not hate speech
|
885 |
+
933,hate speech
|
886 |
+
934,hate speech
|
887 |
+
935,hate speech
|
888 |
+
936,hate speech
|
889 |
+
937,hate speech
|
890 |
+
938,not hate speech
|
891 |
+
939,not hate speech
|
892 |
+
940,not hate speech
|
893 |
+
941,not hate speech
|
894 |
+
942,not hate speech
|
895 |
+
943,hate speech
|
896 |
+
944,not hate speech
|
897 |
+
945,not hate speech
|
898 |
+
946,hate speech
|
899 |
+
947,not hate speech
|
900 |
+
948,not hate speech
|
901 |
+
949,not hate speech
|
902 |
+
950,not hate speech
|
903 |
+
951,hate speech
|
904 |
+
952,hate speech
|
905 |
+
953,hate speech
|
906 |
+
954,hate speech
|
907 |
+
955,not hate speech
|
908 |
+
956,hate speech
|
909 |
+
957,hate speech
|
910 |
+
958,hate speech
|
911 |
+
959,hate speech
|
912 |
+
960,hate speech
|
913 |
+
961,not hate speech
|
914 |
+
962,hate speech
|
915 |
+
963,hate speech
|
916 |
+
964,not hate speech
|
917 |
+
965,hate speech
|
918 |
+
966,hate speech
|
919 |
+
967,not hate speech
|
920 |
+
968,not hate speech
|
921 |
+
969,hate speech
|
922 |
+
970,hate speech
|
923 |
+
971,hate speech
|
924 |
+
972,not hate speech
|
925 |
+
973,not hate speech
|
926 |
+
974,not hate speech
|
927 |
+
975,not hate speech
|
928 |
+
976,hate speech
|
929 |
+
977,hate speech
|
930 |
+
978,not hate speech
|
931 |
+
979,not hate speech
|
932 |
+
980,hate speech
|
933 |
+
981,not hate speech
|
934 |
+
982,not hate speech
|
935 |
+
983,hate speech
|
936 |
+
984,not hate speech
|
937 |
+
985,hate speech
|
938 |
+
986,hate speech
|
939 |
+
987,hate speech
|
940 |
+
988,not hate speech
|
941 |
+
989,hate speech
|
942 |
+
990,hate speech
|
943 |
+
991,hate speech
|
944 |
+
992,not hate speech
|
945 |
+
993,not hate speech
|
946 |
+
994,hate speech
|
947 |
+
995,hate speech
|
948 |
+
996,not hate speech
|
949 |
+
997,not hate speech
|
950 |
+
998,not hate speech
|
951 |
+
999,not hate speech
|
952 |
+
1000,not hate speech
|
953 |
+
1001,hate speech
|
954 |
+
1002,not hate speech
|
955 |
+
1003,not hate speech
|
956 |
+
1004,not hate speech
|
957 |
+
1005,not hate speech
|
958 |
+
1006,hate speech
|
959 |
+
1007,hate speech
|
960 |
+
1008,not hate speech
|
961 |
+
1009,not hate speech
|
962 |
+
1010,not hate speech
|
963 |
+
1011,not hate speech
|
964 |
+
1012,hate speech
|
965 |
+
1013,not hate speech
|
966 |
+
1014,not hate speech
|
967 |
+
1015,hate speech
|
968 |
+
1016,not hate speech
|
969 |
+
1017,hate speech
|
970 |
+
1018,hate speech
|
971 |
+
1019,not hate speech
|
972 |
+
1020,hate speech
|
973 |
+
1021,not hate speech
|
974 |
+
1022,not hate speech
|
975 |
+
1023,hate speech
|
976 |
+
1024,hate speech
|
977 |
+
1025,not hate speech
|
978 |
+
1026,hate speech
|
979 |
+
1027,hate speech
|
980 |
+
1028,not hate speech
|
981 |
+
1029,hate speech
|
982 |
+
1030,hate speech
|
983 |
+
1031,not hate speech
|
984 |
+
1032,not hate speech
|
985 |
+
1033,not hate speech
|
986 |
+
1034,not hate speech
|
987 |
+
1035,not hate speech
|
988 |
+
1036,not hate speech
|
989 |
+
1037,not hate speech
|
990 |
+
1038,hate speech
|
991 |
+
1039,hate speech
|
992 |
+
1040,hate speech
|
993 |
+
1041,hate speech
|
994 |
+
1042,hate speech
|
995 |
+
1043,not hate speech
|
996 |
+
1044,not hate speech
|
997 |
+
1045,not hate speech
|
998 |
+
1046,hate speech
|
999 |
+
1047,hate speech
|
1000 |
+
1048,not hate speech
|
1001 |
+
1049,hate speech
|
1002 |
+
1050,not hate speech
|
1003 |
+
1051,not hate speech
|
1004 |
+
1052,not hate speech
|
1005 |
+
1053,hate speech
|
1006 |
+
1054,not hate speech
|
1007 |
+
1055,not hate speech
|
1008 |
+
1056,not hate speech
|
1009 |
+
1057,not hate speech
|
1010 |
+
1058,hate speech
|
1011 |
+
1059,not hate speech
|
1012 |
+
1060,hate speech
|
1013 |
+
1061,hate speech
|
1014 |
+
1062,not hate speech
|
1015 |
+
1063,not hate speech
|
1016 |
+
1064,not hate speech
|
1017 |
+
1065,hate speech
|
1018 |
+
1066,not hate speech
|
1019 |
+
1067,not hate speech
|
1020 |
+
1068,not hate speech
|
1021 |
+
1069,hate speech
|
1022 |
+
1070,hate speech
|
1023 |
+
1071,hate speech
|
1024 |
+
1072,not hate speech
|
1025 |
+
1073,hate speech
|
1026 |
+
1074,hate speech
|
1027 |
+
1075,not hate speech
|
1028 |
+
1076,hate speech
|
1029 |
+
1077,not hate speech
|
1030 |
+
1078,hate speech
|
1031 |
+
1079,hate speech
|
1032 |
+
1080,not hate speech
|
1033 |
+
1081,not hate speech
|
1034 |
+
1082,not hate speech
|
1035 |
+
1083,not hate speech
|
1036 |
+
1084,hate speech
|
1037 |
+
1085,hate speech
|
1038 |
+
1086,hate speech
|
1039 |
+
1087,hate speech
|
1040 |
+
1088,not hate speech
|
1041 |
+
1089,not hate speech
|
1042 |
+
1090,not hate speech
|
1043 |
+
1091,hate speech
|
1044 |
+
1092,not hate speech
|
1045 |
+
1093,not hate speech
|
1046 |
+
1094,not hate speech
|
1047 |
+
1095,hate speech
|
1048 |
+
1096,hate speech
|
1049 |
+
1097,not hate speech
|
1050 |
+
1098,not hate speech
|
1051 |
+
1099,not hate speech
|
1052 |
+
1100,not hate speech
|
1053 |
+
1101,not hate speech
|
1054 |
+
1102,not hate speech
|
1055 |
+
1103,hate speech
|
1056 |
+
1104,hate speech
|
1057 |
+
1105,not hate speech
|
1058 |
+
1106,not hate speech
|
1059 |
+
1107,hate speech
|
1060 |
+
1108,hate speech
|
1061 |
+
1109,hate speech
|
1062 |
+
1110,hate speech
|
1063 |
+
1111,not hate speech
|
1064 |
+
1112,not hate speech
|
1065 |
+
1113,not hate speech
|
1066 |
+
1114,hate speech
|
1067 |
+
1115,not hate speech
|
1068 |
+
1116,not hate speech
|
1069 |
+
1117,not hate speech
|
1070 |
+
1118,not hate speech
|
1071 |
+
1119,hate speech
|
1072 |
+
1120,not hate speech
|
1073 |
+
1121,hate speech
|
1074 |
+
1122,not hate speech
|
1075 |
+
1123,not hate speech
|
1076 |
+
1124,not hate speech
|
1077 |
+
1125,hate speech
|
1078 |
+
1126,not hate speech
|
1079 |
+
1127,hate speech
|
1080 |
+
1128,not hate speech
|
1081 |
+
1129,not hate speech
|
1082 |
+
1130,not hate speech
|
1083 |
+
1131,not hate speech
|
1084 |
+
1132,not hate speech
|
1085 |
+
1133,hate speech
|
1086 |
+
1134,not hate speech
|
1087 |
+
1135,not hate speech
|
1088 |
+
1136,not hate speech
|
1089 |
+
1137,not hate speech
|
1090 |
+
1138,hate speech
|
1091 |
+
1139,hate speech
|
1092 |
+
1140,hate speech
|
1093 |
+
1141,not hate speech
|
1094 |
+
1142,hate speech
|
1095 |
+
1143,not hate speech
|
1096 |
+
1144,not hate speech
|
1097 |
+
1145,not hate speech
|
1098 |
+
1146,not hate speech
|
1099 |
+
1147,not hate speech
|
1100 |
+
1148,hate speech
|
1101 |
+
1149,not hate speech
|
1102 |
+
1150,hate speech
|
1103 |
+
1151,not hate speech
|
1104 |
+
1152,not hate speech
|
1105 |
+
1153,not hate speech
|
1106 |
+
1154,hate speech
|
1107 |
+
1155,not hate speech
|
1108 |
+
1156,not hate speech
|
1109 |
+
1157,hate speech
|
1110 |
+
1158,hate speech
|
1111 |
+
1159,not hate speech
|
1112 |
+
1160,hate speech
|
1113 |
+
1161,not hate speech
|
1114 |
+
1162,hate speech
|
1115 |
+
1163,hate speech
|
1116 |
+
1164,not hate speech
|
1117 |
+
1165,hate speech
|
1118 |
+
1166,hate speech
|
1119 |
+
1167,not hate speech
|
1120 |
+
1168,not hate speech
|
1121 |
+
1169,not hate speech
|
1122 |
+
1170,not hate speech
|
1123 |
+
1171,hate speech
|
1124 |
+
1172,hate speech
|
1125 |
+
1173,hate speech
|
1126 |
+
1174,not hate speech
|
1127 |
+
1175,not hate speech
|
1128 |
+
1176,hate speech
|
1129 |
+
1177,not hate speech
|
1130 |
+
1178,not hate speech
|
1131 |
+
1179,hate speech
|
1132 |
+
1180,not hate speech
|
1133 |
+
1181,hate speech
|
1134 |
+
1182,not hate speech
|
1135 |
+
1183,not hate speech
|
1136 |
+
1184,not hate speech
|
1137 |
+
1185,hate speech
|
1138 |
+
1186,hate speech
|
1139 |
+
1187,not hate speech
|
1140 |
+
1188,not hate speech
|
1141 |
+
1189,hate speech
|
1142 |
+
1190,not hate speech
|
1143 |
+
1191,not hate speech
|
1144 |
+
1192,hate speech
|
1145 |
+
1193,hate speech
|
1146 |
+
1194,hate speech
|
1147 |
+
1195,not hate speech
|
1148 |
+
1196,hate speech
|
1149 |
+
1197,not hate speech
|
1150 |
+
1198,hate speech
|
1151 |
+
1199,hate speech
|
1152 |
+
1200,not hate speech
|
1153 |
+
1201,hate speech
|
1154 |
+
1202,hate speech
|
1155 |
+
1203,not hate speech
|
1156 |
+
1204,hate speech
|
1157 |
+
1205,hate speech
|
1158 |
+
1206,not hate speech
|
1159 |
+
1207,not hate speech
|
1160 |
+
1208,hate speech
|
1161 |
+
1209,hate speech
|
1162 |
+
1210,not hate speech
|
1163 |
+
1211,not hate speech
|
1164 |
+
1212,hate speech
|
1165 |
+
1213,not hate speech
|
1166 |
+
1214,hate speech
|
1167 |
+
1215,not hate speech
|
1168 |
+
1216,hate speech
|
1169 |
+
1217,hate speech
|
1170 |
+
1218,hate speech
|
1171 |
+
1219,not hate speech
|
1172 |
+
1220,hate speech
|
1173 |
+
1221,hate speech
|
1174 |
+
1222,hate speech
|
1175 |
+
1223,hate speech
|
1176 |
+
1224,hate speech
|
1177 |
+
1225,hate speech
|
1178 |
+
1226,not hate speech
|
1179 |
+
1227,hate speech
|
1180 |
+
1228,hate speech
|
1181 |
+
1229,not hate speech
|
1182 |
+
1230,not hate speech
|
1183 |
+
1231,not hate speech
|
1184 |
+
1232,not hate speech
|
1185 |
+
1233,not hate speech
|
1186 |
+
1234,hate speech
|
1187 |
+
1235,hate speech
|
1188 |
+
1236,not hate speech
|
1189 |
+
1237,not hate speech
|
1190 |
+
1238,not hate speech
|
1191 |
+
1239,not hate speech
|
1192 |
+
1240,hate speech
|
1193 |
+
1241,hate speech
|
1194 |
+
1242,not hate speech
|
1195 |
+
1243,not hate speech
|
1196 |
+
1244,hate speech
|
1197 |
+
1245,not hate speech
|
1198 |
+
1246,hate speech
|
1199 |
+
1247,not hate speech
|
1200 |
+
1248,hate speech
|
1201 |
+
1249,not hate speech
|
1202 |
+
1250,hate speech
|
1203 |
+
1251,not hate speech
|
1204 |
+
1252,not hate speech
|
1205 |
+
1253,not hate speech
|
1206 |
+
1254,not hate speech
|
1207 |
+
1255,not hate speech
|
1208 |
+
1256,not hate speech
|
1209 |
+
1257,hate speech
|
1210 |
+
1258,hate speech
|
1211 |
+
1259,hate speech
|
1212 |
+
1260,not hate speech
|
1213 |
+
1261,not hate speech
|
1214 |
+
1262,not hate speech
|
1215 |
+
1263,not hate speech
|
1216 |
+
1264,hate speech
|
1217 |
+
1265,not hate speech
|
1218 |
+
1266,hate speech
|
1219 |
+
1267,not hate speech
|
1220 |
+
1268,hate speech
|
1221 |
+
1269,not hate speech
|
1222 |
+
1270,not hate speech
|
1223 |
+
1271,hate speech
|
1224 |
+
1272,hate speech
|
1225 |
+
1273,not hate speech
|
1226 |
+
1274,not hate speech
|
1227 |
+
1275,hate speech
|
1228 |
+
1276,not hate speech
|
1229 |
+
1277,hate speech
|
1230 |
+
1278,hate speech
|
1231 |
+
1279,hate speech
|
1232 |
+
1280,hate speech
|
1233 |
+
1281,not hate speech
|
1234 |
+
1282,hate speech
|
1235 |
+
1283,not hate speech
|
1236 |
+
1284,hate speech
|
1237 |
+
1285,hate speech
|
1238 |
+
1286,hate speech
|
1239 |
+
1287,hate speech
|
1240 |
+
1288,hate speech
|
1241 |
+
1289,hate speech
|
1242 |
+
1290,hate speech
|
1243 |
+
1291,not hate speech
|
1244 |
+
1292,hate speech
|
1245 |
+
1293,not hate speech
|
1246 |
+
1294,hate speech
|
1247 |
+
1295,not hate speech
|
1248 |
+
1296,hate speech
|
1249 |
+
1297,hate speech
|
1250 |
+
1298,not hate speech
|
1251 |
+
1299,not hate speech
|
1252 |
+
1300,not hate speech
|
1253 |
+
1301,not hate speech
|
1254 |
+
1302,not hate speech
|
1255 |
+
1303,hate speech
|
1256 |
+
1304,hate speech
|
1257 |
+
1305,not hate speech
|
1258 |
+
1306,not hate speech
|
1259 |
+
1307,not hate speech
|
1260 |
+
1308,not hate speech
|
1261 |
+
1309,not hate speech
|
1262 |
+
1310,not hate speech
|
1263 |
+
1311,not hate speech
|
1264 |
+
1312,hate speech
|
1265 |
+
1313,not hate speech
|
1266 |
+
1314,hate speech
|
1267 |
+
1315,not hate speech
|
1268 |
+
1316,hate speech
|
1269 |
+
1317,hate speech
|
1270 |
+
1318,not hate speech
|
1271 |
+
1319,not hate speech
|
1272 |
+
1320,not hate speech
|
1273 |
+
1321,hate speech
|
1274 |
+
1322,not hate speech
|
1275 |
+
1323,not hate speech
|
1276 |
+
1324,hate speech
|
1277 |
+
1325,not hate speech
|
1278 |
+
1326,hate speech
|
1279 |
+
1327,not hate speech
|
1280 |
+
1328,hate speech
|
1281 |
+
1329,hate speech
|
1282 |
+
1330,hate speech
|
1283 |
+
1331,hate speech
|
1284 |
+
1332,not hate speech
|
1285 |
+
1333,not hate speech
|
1286 |
+
1334,not hate speech
|
1287 |
+
1335,hate speech
|
1288 |
+
1336,not hate speech
|
1289 |
+
1337,hate speech
|
1290 |
+
1338,hate speech
|
1291 |
+
1339,hate speech
|
1292 |
+
1340,hate speech
|
1293 |
+
1341,not hate speech
|
1294 |
+
1342,hate speech
|
1295 |
+
1343,hate speech
|
1296 |
+
1344,hate speech
|
1297 |
+
1345,hate speech
|
1298 |
+
1346,not hate speech
|
1299 |
+
1347,not hate speech
|
1300 |
+
1348,hate speech
|
1301 |
+
1349,hate speech
|
1302 |
+
1350,hate speech
|
1303 |
+
1351,hate speech
|
1304 |
+
1352,not hate speech
|
1305 |
+
1353,not hate speech
|
1306 |
+
1354,not hate speech
|
1307 |
+
1355,hate speech
|
1308 |
+
1356,not hate speech
|
1309 |
+
1357,not hate speech
|
1310 |
+
1358,hate speech
|
1311 |
+
1359,not hate speech
|
1312 |
+
1360,not hate speech
|
1313 |
+
1361,hate speech
|
1314 |
+
1362,not hate speech
|
1315 |
+
1363,hate speech
|
1316 |
+
1364,not hate speech
|
1317 |
+
1365,hate speech
|
1318 |
+
1366,hate speech
|
1319 |
+
1367,hate speech
|
1320 |
+
1368,hate speech
|
1321 |
+
1369,not hate speech
|
1322 |
+
1370,not hate speech
|
1323 |
+
1371,not hate speech
|
1324 |
+
1372,not hate speech
|
1325 |
+
1373,hate speech
|
1326 |
+
1374,hate speech
|
1327 |
+
1375,not hate speech
|
1328 |
+
1376,hate speech
|
1329 |
+
1377,not hate speech
|
1330 |
+
1378,hate speech
|
1331 |
+
1379,not hate speech
|
1332 |
+
1380,not hate speech
|
1333 |
+
1381,not hate speech
|
1334 |
+
1382,not hate speech
|
1335 |
+
1383,hate speech
|
1336 |
+
1384,not hate speech
|
1337 |
+
1385,not hate speech
|
1338 |
+
1386,not hate speech
|
1339 |
+
1387,not hate speech
|
1340 |
+
1388,not hate speech
|
1341 |
+
1389,hate speech
|
1342 |
+
1390,not hate speech
|
1343 |
+
1391,not hate speech
|
1344 |
+
1392,hate speech
|
1345 |
+
1393,hate speech
|
1346 |
+
1394,hate speech
|
1347 |
+
1395,not hate speech
|
1348 |
+
1396,not hate speech
|
1349 |
+
1397,not hate speech
|
1350 |
+
1398,hate speech
|
1351 |
+
1399,not hate speech
|
1352 |
+
1400,hate speech
|
1353 |
+
1401,not hate speech
|
1354 |
+
1402,not hate speech
|
1355 |
+
1403,not hate speech
|
1356 |
+
1404,hate speech
|
1357 |
+
1405,hate speech
|
1358 |
+
1406,not hate speech
|
1359 |
+
1407,hate speech
|
1360 |
+
1408,hate speech
|
1361 |
+
1409,not hate speech
|
1362 |
+
1410,hate speech
|
1363 |
+
1411,hate speech
|
1364 |
+
1412,not hate speech
|
1365 |
+
1413,hate speech
|
1366 |
+
1414,hate speech
|
1367 |
+
1415,not hate speech
|
1368 |
+
1416,not hate speech
|
1369 |
+
1417,not hate speech
|
1370 |
+
1418,hate speech
|
1371 |
+
1419,hate speech
|
1372 |
+
1420,hate speech
|
1373 |
+
1421,hate speech
|
1374 |
+
1422,hate speech
|
1375 |
+
1423,hate speech
|
1376 |
+
1424,not hate speech
|
1377 |
+
1425,hate speech
|
1378 |
+
1426,hate speech
|
1379 |
+
1427,hate speech
|
1380 |
+
1428,not hate speech
|
1381 |
+
1429,not hate speech
|
1382 |
+
1430,hate speech
|
1383 |
+
1431,hate speech
|
1384 |
+
1432,not hate speech
|
1385 |
+
1433,hate speech
|
1386 |
+
1434,not hate speech
|
1387 |
+
1435,hate speech
|
1388 |
+
1436,not hate speech
|
1389 |
+
1437,not hate speech
|
1390 |
+
1438,not hate speech
|
1391 |
+
1439,hate speech
|
1392 |
+
1440,not hate speech
|
1393 |
+
1441,hate speech
|
1394 |
+
1442,not hate speech
|
1395 |
+
1443,not hate speech
|
1396 |
+
1444,hate speech
|
1397 |
+
1445,hate speech
|
1398 |
+
1446,not hate speech
|
1399 |
+
1447,not hate speech
|
1400 |
+
1448,not hate speech
|
1401 |
+
1449,hate speech
|
1402 |
+
1450,hate speech
|
1403 |
+
1451,hate speech
|
1404 |
+
1452,hate speech
|
1405 |
+
1453,not hate speech
|
1406 |
+
1454,hate speech
|
1407 |
+
1455,hate speech
|
1408 |
+
1456,not hate speech
|
1409 |
+
1457,hate speech
|
1410 |
+
1458,not hate speech
|
1411 |
+
1459,not hate speech
|
1412 |
+
1460,not hate speech
|
1413 |
+
1461,not hate speech
|
1414 |
+
1462,hate speech
|
1415 |
+
1463,not hate speech
|
1416 |
+
1464,hate speech
|
1417 |
+
1465,not hate speech
|
1418 |
+
1466,not hate speech
|
1419 |
+
1467,hate speech
|
1420 |
+
1468,hate speech
|
1421 |
+
1469,hate speech
|
1422 |
+
1470,hate speech
|
1423 |
+
1471,not hate speech
|
1424 |
+
1472,hate speech
|
1425 |
+
1473,not hate speech
|
1426 |
+
1474,not hate speech
|
1427 |
+
1475,not hate speech
|
1428 |
+
1476,hate speech
|
1429 |
+
1477,hate speech
|
1430 |
+
1478,not hate speech
|
1431 |
+
1479,not hate speech
|
1432 |
+
1480,hate speech
|
1433 |
+
1481,hate speech
|
1434 |
+
1482,not hate speech
|
1435 |
+
1483,not hate speech
|
1436 |
+
1484,not hate speech
|
1437 |
+
1485,not hate speech
|
1438 |
+
1486,hate speech
|
1439 |
+
1487,hate speech
|
1440 |
+
1488,not hate speech
|
1441 |
+
1489,hate speech
|
1442 |
+
1490,not hate speech
|
1443 |
+
1491,not hate speech
|
1444 |
+
1492,not hate speech
|
1445 |
+
1493,not hate speech
|
1446 |
+
1494,not hate speech
|
1447 |
+
1495,not hate speech
|
1448 |
+
1496,not hate speech
|
1449 |
+
1497,hate speech
|
1450 |
+
1498,hate speech
|
1451 |
+
1499,hate speech
|
1452 |
+
1500,hate speech
|
1453 |
+
1501,not hate speech
|
1454 |
+
1502,hate speech
|
1455 |
+
1503,not hate speech
|
1456 |
+
1504,not hate speech
|
1457 |
+
1505,hate speech
|
1458 |
+
1506,not hate speech
|
1459 |
+
1507,hate speech
|
1460 |
+
1508,not hate speech
|
1461 |
+
1509,not hate speech
|
1462 |
+
1510,hate speech
|
1463 |
+
1511,not hate speech
|
1464 |
+
1512,not hate speech
|
1465 |
+
1513,hate speech
|
1466 |
+
1514,hate speech
|
1467 |
+
1515,not hate speech
|
1468 |
+
1516,hate speech
|
1469 |
+
1517,hate speech
|
1470 |
+
1518,hate speech
|
1471 |
+
1519,not hate speech
|
1472 |
+
1520,not hate speech
|
1473 |
+
1521,hate speech
|
1474 |
+
1522,not hate speech
|
1475 |
+
1523,hate speech
|
1476 |
+
1524,not hate speech
|
1477 |
+
1525,not hate speech
|
1478 |
+
1526,not hate speech
|
1479 |
+
1527,not hate speech
|
1480 |
+
1528,not hate speech
|
1481 |
+
1529,hate speech
|
1482 |
+
1530,hate speech
|
1483 |
+
1531,hate speech
|
1484 |
+
1532,hate speech
|
1485 |
+
1533,hate speech
|
1486 |
+
1534,not hate speech
|
1487 |
+
1535,hate speech
|
1488 |
+
1536,hate speech
|
1489 |
+
1537,not hate speech
|
1490 |
+
1538,hate speech
|
1491 |
+
1539,not hate speech
|
1492 |
+
1540,not hate speech
|
1493 |
+
1541,not hate speech
|
1494 |
+
1542,hate speech
|
1495 |
+
1543,hate speech
|
1496 |
+
1544,hate speech
|
1497 |
+
1545,hate speech
|
1498 |
+
1546,hate speech
|
1499 |
+
1547,hate speech
|
1500 |
+
1548,hate speech
|
1501 |
+
1549,not hate speech
|
1502 |
+
1550,hate speech
|
1503 |
+
1551,hate speech
|
1504 |
+
1552,hate speech
|
1505 |
+
1553,not hate speech
|
1506 |
+
1554,hate speech
|
1507 |
+
1555,hate speech
|
1508 |
+
1556,not hate speech
|
1509 |
+
1557,not hate speech
|
1510 |
+
1558,not hate speech
|
1511 |
+
1559,hate speech
|
1512 |
+
1560,not hate speech
|
1513 |
+
1561,not hate speech
|
1514 |
+
1562,not hate speech
|
1515 |
+
1563,hate speech
|
1516 |
+
1564,not hate speech
|
1517 |
+
1565,not hate speech
|
1518 |
+
1566,not hate speech
|
1519 |
+
1567,hate speech
|
1520 |
+
1568,hate speech
|
1521 |
+
1569,hate speech
|
1522 |
+
1570,hate speech
|
1523 |
+
1571,not hate speech
|
1524 |
+
1572,hate speech
|
1525 |
+
1573,hate speech
|
1526 |
+
1574,hate speech
|
1527 |
+
1575,hate speech
|
1528 |
+
1576,hate speech
|
1529 |
+
1577,hate speech
|
1530 |
+
1578,not hate speech
|
1531 |
+
1579,not hate speech
|
1532 |
+
1580,not hate speech
|
1533 |
+
1581,hate speech
|
1534 |
+
1582,hate speech
|
1535 |
+
1583,not hate speech
|
1536 |
+
1584,hate speech
|
1537 |
+
1585,not hate speech
|
1538 |
+
1586,hate speech
|
1539 |
+
1587,not hate speech
|
1540 |
+
1588,not hate speech
|
1541 |
+
1589,not hate speech
|
1542 |
+
1590,hate speech
|
1543 |
+
1591,hate speech
|
1544 |
+
1592,not hate speech
|
1545 |
+
1593,hate speech
|
1546 |
+
1594,hate speech
|
1547 |
+
1595,hate speech
|
1548 |
+
1596,not hate speech
|
1549 |
+
1597,hate speech
|
1550 |
+
1598,hate speech
|
1551 |
+
1599,hate speech
|
1552 |
+
1600,hate speech
|
1553 |
+
1601,hate speech
|
1554 |
+
1602,not hate speech
|
1555 |
+
1603,hate speech
|
1556 |
+
1604,not hate speech
|
1557 |
+
1605,not hate speech
|
1558 |
+
1606,not hate speech
|
1559 |
+
1607,not hate speech
|
1560 |
+
1608,not hate speech
|
1561 |
+
1609,hate speech
|
1562 |
+
1610,not hate speech
|
1563 |
+
1611,not hate speech
|
1564 |
+
1612,hate speech
|
1565 |
+
1613,not hate speech
|
1566 |
+
1614,hate speech
|
1567 |
+
1615,hate speech
|
1568 |
+
1616,hate speech
|
1569 |
+
1617,not hate speech
|
1570 |
+
1618,not hate speech
|
1571 |
+
1619,hate speech
|
1572 |
+
1620,not hate speech
|
1573 |
+
1621,not hate speech
|
1574 |
+
1622,not hate speech
|
1575 |
+
1623,hate speech
|
1576 |
+
1624,not hate speech
|
1577 |
+
1625,hate speech
|
1578 |
+
1626,hate speech
|
1579 |
+
1627,not hate speech
|
1580 |
+
1628,hate speech
|
1581 |
+
1629,not hate speech
|
1582 |
+
1630,hate speech
|
1583 |
+
1631,not hate speech
|
1584 |
+
1632,hate speech
|
1585 |
+
1633,hate speech
|
1586 |
+
1634,hate speech
|
1587 |
+
1635,not hate speech
|
1588 |
+
1636,not hate speech
|
1589 |
+
1637,not hate speech
|
1590 |
+
1638,hate speech
|
1591 |
+
1639,not hate speech
|
1592 |
+
1640,not hate speech
|
1593 |
+
1641,not hate speech
|
1594 |
+
1642,not hate speech
|
1595 |
+
1643,not hate speech
|
1596 |
+
1644,hate speech
|
1597 |
+
1645,hate speech
|
1598 |
+
1646,hate speech
|
1599 |
+
1647,hate speech
|
1600 |
+
1648,not hate speech
|
1601 |
+
1649,hate speech
|
1602 |
+
1650,hate speech
|
1603 |
+
1651,not hate speech
|
1604 |
+
1652,hate speech
|
1605 |
+
1653,not hate speech
|
1606 |
+
1654,hate speech
|
1607 |
+
1655,hate speech
|
1608 |
+
1656,not hate speech
|
1609 |
+
1657,hate speech
|
1610 |
+
1658,hate speech
|
1611 |
+
1659,hate speech
|
1612 |
+
1660,hate speech
|
1613 |
+
1661,not hate speech
|
1614 |
+
1662,hate speech
|
1615 |
+
1663,hate speech
|
1616 |
+
1664,hate speech
|
1617 |
+
1665,hate speech
|
1618 |
+
1666,hate speech
|
1619 |
+
1667,not hate speech
|
1620 |
+
1668,not hate speech
|
1621 |
+
1669,hate speech
|
1622 |
+
1670,not hate speech
|
1623 |
+
1671,not hate speech
|
1624 |
+
1672,hate speech
|
1625 |
+
1673,not hate speech
|
1626 |
+
1674,hate speech
|
1627 |
+
1675,hate speech
|
1628 |
+
1676,not hate speech
|
1629 |
+
1677,hate speech
|
1630 |
+
1678,not hate speech
|
1631 |
+
1679,hate speech
|
1632 |
+
1680,not hate speech
|
1633 |
+
1681,hate speech
|
1634 |
+
1682,not hate speech
|
1635 |
+
1683,not hate speech
|
1636 |
+
1684,not hate speech
|
1637 |
+
1685,hate speech
|
1638 |
+
1686,hate speech
|
1639 |
+
1687,hate speech
|
1640 |
+
1688,not hate speech
|
1641 |
+
1689,not hate speech
|
1642 |
+
1690,not hate speech
|
1643 |
+
1691,not hate speech
|
1644 |
+
1692,hate speech
|
1645 |
+
1693,hate speech
|
1646 |
+
1694,not hate speech
|
1647 |
+
1695,not hate speech
|
1648 |
+
1696,not hate speech
|
1649 |
+
1697,hate speech
|
1650 |
+
1698,hate speech
|
1651 |
+
1699,not hate speech
|
1652 |
+
1700,not hate speech
|
1653 |
+
1701,not hate speech
|
1654 |
+
1702,not hate speech
|
1655 |
+
1703,hate speech
|
1656 |
+
1704,hate speech
|
1657 |
+
1705,hate speech
|
1658 |
+
1706,not hate speech
|
1659 |
+
1707,hate speech
|
1660 |
+
1708,not hate speech
|
1661 |
+
1709,hate speech
|
1662 |
+
1710,hate speech
|
1663 |
+
1711,hate speech
|
1664 |
+
1712,hate speech
|
1665 |
+
1713,not hate speech
|
1666 |
+
1714,not hate speech
|
1667 |
+
1715,not hate speech
|
1668 |
+
1716,hate speech
|
1669 |
+
1717,not hate speech
|
1670 |
+
1718,not hate speech
|
1671 |
+
1719,hate speech
|
1672 |
+
1720,not hate speech
|
1673 |
+
1721,hate speech
|
1674 |
+
1722,not hate speech
|
1675 |
+
1723,hate speech
|
1676 |
+
1724,hate speech
|
1677 |
+
1725,not hate speech
|
1678 |
+
1726,not hate speech
|
1679 |
+
1727,hate speech
|
1680 |
+
1728,hate speech
|
1681 |
+
1729,hate speech
|
1682 |
+
1730,not hate speech
|
1683 |
+
1731,hate speech
|
1684 |
+
1732,hate speech
|
1685 |
+
1733,not hate speech
|
1686 |
+
1734,not hate speech
|
1687 |
+
1735,hate speech
|
1688 |
+
1736,hate speech
|
1689 |
+
1737,not hate speech
|
1690 |
+
1738,not hate speech
|
1691 |
+
1739,not hate speech
|
1692 |
+
1740,not hate speech
|
1693 |
+
1741,hate speech
|
1694 |
+
1742,hate speech
|
1695 |
+
1743,hate speech
|
1696 |
+
1744,hate speech
|
1697 |
+
1745,hate speech
|
1698 |
+
1746,not hate speech
|
1699 |
+
1747,not hate speech
|
1700 |
+
1748,hate speech
|
1701 |
+
1749,not hate speech
|
1702 |
+
1750,not hate speech
|
1703 |
+
1751,hate speech
|
1704 |
+
1752,not hate speech
|
1705 |
+
1753,hate speech
|
1706 |
+
1754,not hate speech
|
1707 |
+
1755,hate speech
|
1708 |
+
1756,hate speech
|
1709 |
+
1757,hate speech
|
1710 |
+
1758,hate speech
|
1711 |
+
1759,hate speech
|
1712 |
+
1760,hate speech
|
1713 |
+
1761,not hate speech
|
1714 |
+
1762,hate speech
|
1715 |
+
1763,not hate speech
|
1716 |
+
1764,hate speech
|
1717 |
+
1765,hate speech
|
1718 |
+
1766,hate speech
|
1719 |
+
1767,not hate speech
|
1720 |
+
1768,hate speech
|
1721 |
+
1769,hate speech
|
1722 |
+
1770,hate speech
|
1723 |
+
1771,hate speech
|
1724 |
+
1772,hate speech
|
1725 |
+
1773,hate speech
|
1726 |
+
1774,not hate speech
|
1727 |
+
1775,not hate speech
|
1728 |
+
1776,hate speech
|
1729 |
+
1777,not hate speech
|
1730 |
+
1778,not hate speech
|
1731 |
+
1779,not hate speech
|
1732 |
+
1780,hate speech
|
1733 |
+
1781,hate speech
|
1734 |
+
1782,not hate speech
|
1735 |
+
1783,not hate speech
|
1736 |
+
1784,hate speech
|
1737 |
+
1785,not hate speech
|
1738 |
+
1786,not hate speech
|
1739 |
+
1787,not hate speech
|
1740 |
+
1788,hate speech
|
1741 |
+
1789,not hate speech
|
1742 |
+
1790,not hate speech
|
1743 |
+
1791,not hate speech
|
1744 |
+
1792,hate speech
|
1745 |
+
1793,hate speech
|
1746 |
+
1794,not hate speech
|
1747 |
+
1795,hate speech
|
1748 |
+
1796,hate speech
|
1749 |
+
1797,not hate speech
|
1750 |
+
1798,not hate speech
|
1751 |
+
1799,hate speech
|
1752 |
+
1800,not hate speech
|
1753 |
+
1801,not hate speech
|
1754 |
+
1802,hate speech
|
1755 |
+
1803,not hate speech
|
1756 |
+
1804,not hate speech
|
1757 |
+
1805,not hate speech
|
1758 |
+
1806,not hate speech
|
1759 |
+
1807,hate speech
|
1760 |
+
1808,hate speech
|
1761 |
+
1809,hate speech
|
1762 |
+
1810,not hate speech
|
1763 |
+
1811,not hate speech
|
1764 |
+
1812,hate speech
|
1765 |
+
1813,hate speech
|
1766 |
+
1814,not hate speech
|
1767 |
+
1815,not hate speech
|
1768 |
+
1816,not hate speech
|
1769 |
+
1817,not hate speech
|
1770 |
+
1818,not hate speech
|
1771 |
+
1819,not hate speech
|
1772 |
+
1820,not hate speech
|
1773 |
+
1821,not hate speech
|
1774 |
+
1822,not hate speech
|
1775 |
+
1823,not hate speech
|
1776 |
+
1824,hate speech
|
1777 |
+
1825,not hate speech
|
1778 |
+
1826,hate speech
|
1779 |
+
1827,not hate speech
|
1780 |
+
1828,hate speech
|
1781 |
+
1829,hate speech
|
1782 |
+
1830,not hate speech
|
1783 |
+
1831,not hate speech
|
1784 |
+
1832,hate speech
|
1785 |
+
1833,not hate speech
|
1786 |
+
1834,not hate speech
|
1787 |
+
1835,not hate speech
|
1788 |
+
1836,not hate speech
|
1789 |
+
1837,hate speech
|
1790 |
+
1838,hate speech
|
1791 |
+
1839,hate speech
|
1792 |
+
1840,not hate speech
|
1793 |
+
1841,not hate speech
|
1794 |
+
1842,not hate speech
|
1795 |
+
1843,hate speech
|
1796 |
+
1844,hate speech
|
1797 |
+
1845,hate speech
|
1798 |
+
1846,hate speech
|
1799 |
+
1847,hate speech
|
1800 |
+
1848,not hate speech
|
1801 |
+
1849,hate speech
|
1802 |
+
1850,hate speech
|
1803 |
+
1851,not hate speech
|
1804 |
+
1852,not hate speech
|
1805 |
+
1853,hate speech
|
1806 |
+
1854,hate speech
|
1807 |
+
1855,hate speech
|
1808 |
+
1856,not hate speech
|
1809 |
+
1857,hate speech
|
1810 |
+
1858,hate speech
|
1811 |
+
1859,hate speech
|
1812 |
+
1860,not hate speech
|
1813 |
+
1861,hate speech
|
1814 |
+
1862,hate speech
|
1815 |
+
1863,not hate speech
|
1816 |
+
1864,not hate speech
|
1817 |
+
1865,not hate speech
|
1818 |
+
1866,hate speech
|
1819 |
+
1867,hate speech
|
1820 |
+
1868,hate speech
|
1821 |
+
1869,not hate speech
|
1822 |
+
1870,not hate speech
|
1823 |
+
1871,not hate speech
|
1824 |
+
1872,not hate speech
|
1825 |
+
1873,not hate speech
|
1826 |
+
1874,hate speech
|
1827 |
+
1875,not hate speech
|
1828 |
+
1876,hate speech
|
1829 |
+
1877,not hate speech
|
1830 |
+
1878,hate speech
|
1831 |
+
1879,not hate speech
|
1832 |
+
1880,not hate speech
|
1833 |
+
1881,hate speech
|
1834 |
+
1882,hate speech
|
1835 |
+
1883,not hate speech
|
1836 |
+
1884,not hate speech
|
1837 |
+
1885,not hate speech
|
1838 |
+
1886,not hate speech
|
1839 |
+
1887,not hate speech
|
1840 |
+
1888,not hate speech
|
1841 |
+
1889,hate speech
|
1842 |
+
1890,hate speech
|
1843 |
+
1891,not hate speech
|
1844 |
+
1892,hate speech
|
1845 |
+
1893,not hate speech
|
1846 |
+
1894,not hate speech
|
1847 |
+
1895,hate speech
|
1848 |
+
1896,hate speech
|
1849 |
+
1897,not hate speech
|
1850 |
+
1898,not hate speech
|
1851 |
+
1899,not hate speech
|
1852 |
+
1900,hate speech
|
1853 |
+
1901,hate speech
|
1854 |
+
1902,hate speech
|
1855 |
+
1903,hate speech
|
1856 |
+
1904,not hate speech
|
1857 |
+
1905,not hate speech
|
1858 |
+
1906,hate speech
|
1859 |
+
1907,hate speech
|
1860 |
+
1908,not hate speech
|
1861 |
+
1909,hate speech
|
1862 |
+
1910,hate speech
|
1863 |
+
1911,hate speech
|
1864 |
+
1912,hate speech
|
1865 |
+
1913,not hate speech
|
1866 |
+
1914,hate speech
|
1867 |
+
1915,not hate speech
|
1868 |
+
1916,not hate speech
|
1869 |
+
1917,not hate speech
|
1870 |
+
1918,hate speech
|
1871 |
+
1919,hate speech
|
1872 |
+
1920,hate speech
|
1873 |
+
1921,hate speech
|
1874 |
+
1922,hate speech
|
1875 |
+
1923,not hate speech
|
1876 |
+
1924,not hate speech
|
1877 |
+
1925,hate speech
|
1878 |
+
1926,not hate speech
|
1879 |
+
1927,hate speech
|
1880 |
+
1928,hate speech
|
1881 |
+
1929,not hate speech
|
1882 |
+
1930,not hate speech
|
1883 |
+
1931,hate speech
|
1884 |
+
1932,hate speech
|
1885 |
+
1933,hate speech
|
1886 |
+
1934,hate speech
|
1887 |
+
1935,hate speech
|
1888 |
+
1936,hate speech
|
1889 |
+
1937,not hate speech
|
1890 |
+
1938,not hate speech
|
1891 |
+
1939,not hate speech
|
1892 |
+
1940,hate speech
|
1893 |
+
1941,hate speech
|
1894 |
+
1942,hate speech
|
1895 |
+
1943,not hate speech
|
1896 |
+
1944,not hate speech
|
1897 |
+
1945,not hate speech
|
1898 |
+
1946,hate speech
|
1899 |
+
1947,not hate speech
|
1900 |
+
1948,hate speech
|
1901 |
+
1949,not hate speech
|
1902 |
+
1950,hate speech
|
1903 |
+
1951,hate speech
|
1904 |
+
1952,hate speech
|
1905 |
+
1953,hate speech
|
1906 |
+
1954,hate speech
|
1907 |
+
1955,hate speech
|
1908 |
+
1956,hate speech
|
1909 |
+
1957,hate speech
|
1910 |
+
1958,hate speech
|
1911 |
+
1959,not hate speech
|
1912 |
+
1960,hate speech
|
1913 |
+
1961,not hate speech
|
1914 |
+
1962,hate speech
|
1915 |
+
1963,hate speech
|
1916 |
+
1964,not hate speech
|
1917 |
+
1965,hate speech
|
1918 |
+
1966,not hate speech
|
1919 |
+
1967,not hate speech
|
1920 |
+
1968,hate speech
|
1921 |
+
1969,hate speech
|
1922 |
+
1970,not hate speech
|
1923 |
+
1971,hate speech
|
1924 |
+
1972,not hate speech
|
1925 |
+
1973,not hate speech
|
1926 |
+
1974,hate speech
|
1927 |
+
1975,hate speech
|
1928 |
+
1976,not hate speech
|
1929 |
+
1977,hate speech
|
1930 |
+
1978,hate speech
|
1931 |
+
1979,hate speech
|
1932 |
+
1980,not hate speech
|
1933 |
+
1981,hate speech
|
1934 |
+
1982,hate speech
|
1935 |
+
1983,not hate speech
|
1936 |
+
1984,hate speech
|
1937 |
+
1985,not hate speech
|
1938 |
+
1986,hate speech
|
1939 |
+
1987,hate speech
|
1940 |
+
1988,not hate speech
|
1941 |
+
1989,hate speech
|
1942 |
+
1990,not hate speech
|
1943 |
+
1991,hate speech
|
1944 |
+
1992,not hate speech
|
1945 |
+
1993,not hate speech
|
1946 |
+
1994,not hate speech
|
1947 |
+
1995,not hate speech
|
1948 |
+
1996,hate speech
|
1949 |
+
1997,not hate speech
|
1950 |
+
1998,not hate speech
|
1951 |
+
1999,not hate speech
|
1952 |
+
2000,hate speech
|
1953 |
+
2001,hate speech
|
1954 |
+
2002,not hate speech
|
1955 |
+
2003,hate speech
|
1956 |
+
2004,hate speech
|
1957 |
+
2005,hate speech
|
1958 |
+
2006,hate speech
|
1959 |
+
2007,hate speech
|
1960 |
+
2008,hate speech
|
1961 |
+
2009,hate speech
|
1962 |
+
2010,hate speech
|
1963 |
+
2011,hate speech
|
1964 |
+
2012,hate speech
|
1965 |
+
2013,not hate speech
|
1966 |
+
2014,hate speech
|
1967 |
+
2015,not hate speech
|
1968 |
+
2016,not hate speech
|
1969 |
+
2017,hate speech
|
1970 |
+
2018,hate speech
|
1971 |
+
2019,not hate speech
|
1972 |
+
2020,not hate speech
|
1973 |
+
2021,not hate speech
|
1974 |
+
2022,not hate speech
|
1975 |
+
2023,not hate speech
|
1976 |
+
2024,not hate speech
|
1977 |
+
2025,not hate speech
|
1978 |
+
2026,hate speech
|
1979 |
+
2027,hate speech
|
1980 |
+
2028,hate speech
|
1981 |
+
2029,not hate speech
|
1982 |
+
2030,not hate speech
|
1983 |
+
2031,hate speech
|
1984 |
+
2032,hate speech
|
1985 |
+
2033,not hate speech
|
1986 |
+
2034,not hate speech
|
1987 |
+
2035,not hate speech
|
1988 |
+
2036,not hate speech
|
1989 |
+
2037,not hate speech
|
1990 |
+
2038,not hate speech
|
1991 |
+
2039,not hate speech
|
1992 |
+
2040,hate speech
|
1993 |
+
2041,hate speech
|
1994 |
+
2042,not hate speech
|
1995 |
+
2043,not hate speech
|
1996 |
+
2044,hate speech
|
1997 |
+
2045,not hate speech
|
1998 |
+
2046,hate speech
|
1999 |
+
2047,hate speech
|
2000 |
+
2048,hate speech
|
2001 |
+
2049,hate speech
|
2002 |
+
2050,hate speech
|
2003 |
+
2051,hate speech
|
2004 |
+
2052,not hate speech
|
2005 |
+
2053,not hate speech
|
2006 |
+
2054,not hate speech
|
2007 |
+
2055,hate speech
|
2008 |
+
2056,hate speech
|
2009 |
+
2057,hate speech
|
2010 |
+
2058,not hate speech
|
2011 |
+
2059,hate speech
|
2012 |
+
2060,hate speech
|
2013 |
+
2061,hate speech
|
2014 |
+
2062,not hate speech
|
2015 |
+
2063,not hate speech
|
2016 |
+
2064,hate speech
|
2017 |
+
2065,hate speech
|
2018 |
+
2066,not hate speech
|
2019 |
+
2067,hate speech
|
2020 |
+
2068,not hate speech
|
2021 |
+
2069,hate speech
|
2022 |
+
2070,hate speech
|
2023 |
+
2071,not hate speech
|
2024 |
+
2072,not hate speech
|
2025 |
+
2073,hate speech
|
2026 |
+
2074,hate speech
|
2027 |
+
2075,not hate speech
|
2028 |
+
2076,not hate speech
|
2029 |
+
2077,hate speech
|
2030 |
+
2078,hate speech
|
2031 |
+
2079,hate speech
|
2032 |
+
2080,hate speech
|
2033 |
+
2081,not hate speech
|
2034 |
+
2082,hate speech
|
2035 |
+
2083,hate speech
|
2036 |
+
2084,not hate speech
|
2037 |
+
2085,hate speech
|
2038 |
+
2086,hate speech
|
2039 |
+
2087,not hate speech
|
2040 |
+
2088,hate speech
|
2041 |
+
2089,hate speech
|
2042 |
+
2090,not hate speech
|
2043 |
+
2091,hate speech
|
2044 |
+
2092,hate speech
|
2045 |
+
2093,hate speech
|
2046 |
+
2094,not hate speech
|
2047 |
+
2095,not hate speech
|
2048 |
+
2096,hate speech
|
2049 |
+
2097,hate speech
|
2050 |
+
2098,hate speech
|
2051 |
+
2099,not hate speech
|
2052 |
+
2100,hate speech
|
2053 |
+
2101,not hate speech
|
2054 |
+
2102,hate speech
|
2055 |
+
2103,not hate speech
|
2056 |
+
2104,hate speech
|
2057 |
+
2105,not hate speech
|
2058 |
+
2106,hate speech
|
2059 |
+
2107,not hate speech
|
2060 |
+
2108,hate speech
|
2061 |
+
2109,not hate speech
|
2062 |
+
2110,not hate speech
|
2063 |
+
2111,hate speech
|
2064 |
+
2112,not hate speech
|
2065 |
+
2113,hate speech
|
2066 |
+
2114,hate speech
|
2067 |
+
2115,hate speech
|
2068 |
+
2116,hate speech
|
2069 |
+
2117,hate speech
|
2070 |
+
2118,not hate speech
|
2071 |
+
2119,not hate speech
|
2072 |
+
2120,not hate speech
|
2073 |
+
2121,not hate speech
|
2074 |
+
2122,not hate speech
|
2075 |
+
2123,not hate speech
|
2076 |
+
2124,not hate speech
|
2077 |
+
2125,hate speech
|
2078 |
+
2126,not hate speech
|
2079 |
+
2127,not hate speech
|
2080 |
+
2128,hate speech
|
2081 |
+
2129,not hate speech
|
2082 |
+
2130,not hate speech
|
2083 |
+
2131,not hate speech
|
2084 |
+
2132,not hate speech
|
2085 |
+
2133,not hate speech
|
2086 |
+
2134,not hate speech
|
2087 |
+
2135,hate speech
|
2088 |
+
2136,hate speech
|
2089 |
+
2137,hate speech
|
2090 |
+
2138,not hate speech
|
2091 |
+
2139,not hate speech
|
2092 |
+
2140,hate speech
|
2093 |
+
2141,hate speech
|
2094 |
+
2142,not hate speech
|
2095 |
+
2143,not hate speech
|
2096 |
+
2144,hate speech
|
2097 |
+
2145,hate speech
|
2098 |
+
2146,hate speech
|
2099 |
+
2147,hate speech
|
2100 |
+
2148,not hate speech
|
2101 |
+
2149,hate speech
|
2102 |
+
2150,not hate speech
|
2103 |
+
2151,hate speech
|
2104 |
+
2152,not hate speech
|
2105 |
+
2153,hate speech
|
2106 |
+
2154,not hate speech
|
2107 |
+
2155,hate speech
|
2108 |
+
2156,hate speech
|
2109 |
+
2157,not hate speech
|
2110 |
+
2158,hate speech
|
2111 |
+
2159,hate speech
|
2112 |
+
2160,not hate speech
|
2113 |
+
2161,not hate speech
|
2114 |
+
2162,hate speech
|
2115 |
+
2163,hate speech
|
2116 |
+
2164,not hate speech
|
2117 |
+
2165,hate speech
|
2118 |
+
2166,hate speech
|
2119 |
+
2167,hate speech
|
2120 |
+
2168,hate speech
|
2121 |
+
2169,hate speech
|
2122 |
+
2170,hate speech
|
2123 |
+
2171,not hate speech
|
2124 |
+
2172,hate speech
|
2125 |
+
2173,not hate speech
|
2126 |
+
2174,not hate speech
|
2127 |
+
2175,hate speech
|
2128 |
+
2176,not hate speech
|
2129 |
+
2177,not hate speech
|
2130 |
+
2178,not hate speech
|
2131 |
+
2179,hate speech
|
2132 |
+
2180,not hate speech
|
2133 |
+
2181,not hate speech
|
2134 |
+
2182,hate speech
|
2135 |
+
2183,hate speech
|
2136 |
+
2184,not hate speech
|
2137 |
+
2185,not hate speech
|
2138 |
+
2186,not hate speech
|
2139 |
+
2187,hate speech
|
2140 |
+
2188,not hate speech
|
2141 |
+
2189,not hate speech
|
2142 |
+
2190,hate speech
|
2143 |
+
2191,not hate speech
|
2144 |
+
2192,hate speech
|
2145 |
+
2193,hate speech
|
2146 |
+
2194,not hate speech
|
2147 |
+
2195,not hate speech
|
2148 |
+
2196,not hate speech
|
2149 |
+
2197,hate speech
|
2150 |
+
2198,not hate speech
|
2151 |
+
2199,not hate speech
|
2152 |
+
2200,hate speech
|
2153 |
+
2201,hate speech
|
2154 |
+
2202,hate speech
|
2155 |
+
2203,not hate speech
|
2156 |
+
2204,hate speech
|
2157 |
+
2205,not hate speech
|
2158 |
+
2206,not hate speech
|
2159 |
+
2207,hate speech
|
2160 |
+
2208,not hate speech
|
2161 |
+
2209,hate speech
|
2162 |
+
2210,hate speech
|
2163 |
+
2211,not hate speech
|
2164 |
+
2212,not hate speech
|
2165 |
+
2213,hate speech
|
2166 |
+
2214,not hate speech
|
2167 |
+
2215,hate speech
|
2168 |
+
2216,hate speech
|
2169 |
+
2217,hate speech
|
2170 |
+
2218,hate speech
|
2171 |
+
2219,hate speech
|
2172 |
+
2220,hate speech
|
2173 |
+
2221,hate speech
|
2174 |
+
2222,hate speech
|
2175 |
+
2223,not hate speech
|
2176 |
+
2224,hate speech
|
2177 |
+
2225,not hate speech
|
2178 |
+
2226,not hate speech
|
2179 |
+
2227,not hate speech
|
2180 |
+
2228,not hate speech
|
2181 |
+
2229,not hate speech
|
2182 |
+
2230,not hate speech
|
2183 |
+
2231,hate speech
|
2184 |
+
2232,not hate speech
|
2185 |
+
2233,not hate speech
|
2186 |
+
2234,not hate speech
|
2187 |
+
2235,hate speech
|
2188 |
+
2236,not hate speech
|
2189 |
+
2237,not hate speech
|
2190 |
+
2238,not hate speech
|
2191 |
+
2239,hate speech
|
2192 |
+
2240,not hate speech
|
2193 |
+
2241,not hate speech
|
2194 |
+
2242,not hate speech
|
2195 |
+
2243,not hate speech
|
2196 |
+
2244,not hate speech
|
2197 |
+
2245,hate speech
|
2198 |
+
2246,hate speech
|
2199 |
+
2247,hate speech
|
2200 |
+
2248,hate speech
|
2201 |
+
2249,hate speech
|
2202 |
+
2250,not hate speech
|
2203 |
+
2251,not hate speech
|
2204 |
+
2252,not hate speech
|
2205 |
+
2253,hate speech
|
2206 |
+
2254,hate speech
|
2207 |
+
2255,not hate speech
|
2208 |
+
2256,hate speech
|
2209 |
+
2257,not hate speech
|
2210 |
+
2258,not hate speech
|
2211 |
+
2259,hate speech
|
2212 |
+
2260,hate speech
|
2213 |
+
2261,not hate speech
|
2214 |
+
2262,hate speech
|
2215 |
+
2263,not hate speech
|
2216 |
+
2264,hate speech
|
2217 |
+
2265,hate speech
|
2218 |
+
2266,hate speech
|
2219 |
+
2267,not hate speech
|
2220 |
+
2268,hate speech
|
2221 |
+
2269,not hate speech
|
2222 |
+
2270,not hate speech
|
2223 |
+
2271,not hate speech
|
2224 |
+
2272,hate speech
|
2225 |
+
2273,hate speech
|
2226 |
+
2274,not hate speech
|
2227 |
+
2275,not hate speech
|
2228 |
+
2276,hate speech
|
2229 |
+
2277,not hate speech
|
2230 |
+
2278,hate speech
|
2231 |
+
2279,hate speech
|
2232 |
+
2280,hate speech
|
2233 |
+
2281,not hate speech
|
2234 |
+
2282,hate speech
|
2235 |
+
2283,not hate speech
|
2236 |
+
2284,not hate speech
|
2237 |
+
2285,not hate speech
|
2238 |
+
2286,not hate speech
|
2239 |
+
2287,hate speech
|
2240 |
+
2288,not hate speech
|
2241 |
+
2289,not hate speech
|
2242 |
+
2290,not hate speech
|
2243 |
+
2291,hate speech
|
2244 |
+
2292,not hate speech
|
2245 |
+
2293,not hate speech
|
2246 |
+
2294,not hate speech
|
2247 |
+
2295,hate speech
|
2248 |
+
2296,not hate speech
|
2249 |
+
2297,hate speech
|
2250 |
+
2298,not hate speech
|
2251 |
+
2299,hate speech
|
2252 |
+
2300,hate speech
|
2253 |
+
2301,not hate speech
|
2254 |
+
2302,not hate speech
|
2255 |
+
2303,not hate speech
|
2256 |
+
2304,not hate speech
|
2257 |
+
2305,not hate speech
|
2258 |
+
2306,not hate speech
|
2259 |
+
2307,not hate speech
|
2260 |
+
2308,not hate speech
|
2261 |
+
2309,hate speech
|
2262 |
+
2310,not hate speech
|
2263 |
+
2311,not hate speech
|
2264 |
+
2312,hate speech
|
2265 |
+
2313,not hate speech
|
2266 |
+
2314,not hate speech
|
2267 |
+
2315,not hate speech
|
2268 |
+
2316,hate speech
|
2269 |
+
2317,hate speech
|
2270 |
+
2318,hate speech
|
2271 |
+
2319,not hate speech
|
2272 |
+
2320,hate speech
|
2273 |
+
2321,not hate speech
|
2274 |
+
2322,hate speech
|
2275 |
+
2323,not hate speech
|
2276 |
+
2324,hate speech
|
2277 |
+
2325,hate speech
|
2278 |
+
2326,hate speech
|
2279 |
+
2327,hate speech
|
2280 |
+
2328,not hate speech
|
2281 |
+
2329,hate speech
|
2282 |
+
2330,hate speech
|
2283 |
+
2331,hate speech
|
2284 |
+
2332,hate speech
|
2285 |
+
2333,not hate speech
|
2286 |
+
2334,not hate speech
|
2287 |
+
2335,hate speech
|
2288 |
+
2336,hate speech
|
2289 |
+
2337,not hate speech
|
2290 |
+
2338,hate speech
|
2291 |
+
2339,not hate speech
|
2292 |
+
2340,not hate speech
|
2293 |
+
2341,not hate speech
|
2294 |
+
2342,not hate speech
|
2295 |
+
2343,hate speech
|
2296 |
+
2344,not hate speech
|
2297 |
+
2345,hate speech
|
2298 |
+
2346,not hate speech
|
2299 |
+
2347,not hate speech
|
2300 |
+
2348,not hate speech
|
2301 |
+
2349,not hate speech
|
2302 |
+
2350,not hate speech
|
2303 |
+
2351,not hate speech
|
2304 |
+
2352,hate speech
|
2305 |
+
2353,hate speech
|
2306 |
+
2354,not hate speech
|
2307 |
+
2355,not hate speech
|
2308 |
+
2356,hate speech
|
2309 |
+
2357,not hate speech
|
2310 |
+
2358,hate speech
|
2311 |
+
2359,not hate speech
|
2312 |
+
2360,hate speech
|
2313 |
+
2361,hate speech
|
2314 |
+
2362,hate speech
|
2315 |
+
2363,hate speech
|
2316 |
+
2364,not hate speech
|
2317 |
+
2365,not hate speech
|
2318 |
+
2366,hate speech
|
2319 |
+
2367,not hate speech
|
2320 |
+
2368,not hate speech
|
2321 |
+
2369,hate speech
|
2322 |
+
2370,not hate speech
|
2323 |
+
2371,not hate speech
|
2324 |
+
2372,hate speech
|
2325 |
+
2373,not hate speech
|
2326 |
+
2374,hate speech
|
2327 |
+
2375,hate speech
|
2328 |
+
2376,hate speech
|
2329 |
+
2377,hate speech
|
2330 |
+
2378,not hate speech
|
2331 |
+
2379,hate speech
|
2332 |
+
2380,hate speech
|
2333 |
+
2381,hate speech
|
2334 |
+
2382,not hate speech
|
2335 |
+
2383,not hate speech
|
2336 |
+
2384,not hate speech
|
2337 |
+
2385,hate speech
|
2338 |
+
2386,not hate speech
|
2339 |
+
2387,not hate speech
|
2340 |
+
2388,not hate speech
|
2341 |
+
2389,hate speech
|
2342 |
+
2390,not hate speech
|
2343 |
+
2391,not hate speech
|
2344 |
+
2392,hate speech
|
2345 |
+
2393,hate speech
|
2346 |
+
2394,not hate speech
|
2347 |
+
2395,not hate speech
|
2348 |
+
2396,not hate speech
|
2349 |
+
2397,not hate speech
|
2350 |
+
2398,hate speech
|
2351 |
+
2399,hate speech
|
2352 |
+
2400,not hate speech
|
2353 |
+
2401,hate speech
|
2354 |
+
2402,not hate speech
|
2355 |
+
2403,hate speech
|
2356 |
+
2404,hate speech
|
2357 |
+
2405,not hate speech
|
2358 |
+
2406,not hate speech
|
2359 |
+
2407,not hate speech
|
2360 |
+
2408,not hate speech
|
2361 |
+
2409,not hate speech
|
2362 |
+
2410,not hate speech
|
2363 |
+
2411,hate speech
|
2364 |
+
2412,hate speech
|
2365 |
+
2413,not hate speech
|
2366 |
+
2414,not hate speech
|
2367 |
+
2415,not hate speech
|
2368 |
+
2416,hate speech
|
2369 |
+
2417,hate speech
|
2370 |
+
2418,not hate speech
|
2371 |
+
2419,not hate speech
|
2372 |
+
2420,not hate speech
|
2373 |
+
2421,hate speech
|
2374 |
+
2422,not hate speech
|
2375 |
+
2423,not hate speech
|
2376 |
+
2424,not hate speech
|
2377 |
+
2425,hate speech
|
2378 |
+
2426,hate speech
|
2379 |
+
2427,hate speech
|
2380 |
+
2428,not hate speech
|
2381 |
+
2429,not hate speech
|
2382 |
+
2430,not hate speech
|
2383 |
+
2431,hate speech
|
2384 |
+
2432,hate speech
|
2385 |
+
2433,not hate speech
|
2386 |
+
2434,not hate speech
|
2387 |
+
2435,hate speech
|
2388 |
+
2436,hate speech
|
2389 |
+
2437,hate speech
|
2390 |
+
2438,hate speech
|
2391 |
+
2439,hate speech
|
2392 |
+
2440,not hate speech
|
2393 |
+
2441,hate speech
|
2394 |
+
2442,not hate speech
|
2395 |
+
2443,hate speech
|
2396 |
+
2444,hate speech
|
2397 |
+
2445,not hate speech
|
2398 |
+
2446,hate speech
|
2399 |
+
2447,hate speech
|
2400 |
+
2448,hate speech
|
2401 |
+
2449,hate speech
|
2402 |
+
2450,not hate speech
|
2403 |
+
2451,not hate speech
|
2404 |
+
2452,not hate speech
|
2405 |
+
2453,not hate speech
|
2406 |
+
2454,not hate speech
|
2407 |
+
2455,not hate speech
|
2408 |
+
2456,hate speech
|
2409 |
+
2457,not hate speech
|
2410 |
+
2458,not hate speech
|
2411 |
+
2459,hate speech
|
2412 |
+
2460,not hate speech
|
2413 |
+
2461,not hate speech
|
2414 |
+
2462,hate speech
|
2415 |
+
2463,not hate speech
|
2416 |
+
2464,not hate speech
|
2417 |
+
2465,hate speech
|
2418 |
+
2466,not hate speech
|
2419 |
+
2467,hate speech
|
2420 |
+
2468,hate speech
|
2421 |
+
2469,not hate speech
|
2422 |
+
2470,not hate speech
|
2423 |
+
2471,not hate speech
|
2424 |
+
2472,not hate speech
|
2425 |
+
2473,not hate speech
|
2426 |
+
2474,hate speech
|
2427 |
+
2475,not hate speech
|
2428 |
+
2476,not hate speech
|
2429 |
+
2477,hate speech
|
2430 |
+
2478,hate speech
|
2431 |
+
2479,hate speech
|
2432 |
+
2480,not hate speech
|
2433 |
+
2481,not hate speech
|
2434 |
+
2482,hate speech
|
2435 |
+
2483,hate speech
|
2436 |
+
2484,hate speech
|
2437 |
+
2485,not hate speech
|
2438 |
+
2486,hate speech
|
2439 |
+
2487,hate speech
|
2440 |
+
2488,hate speech
|
2441 |
+
2489,not hate speech
|
2442 |
+
2490,not hate speech
|
2443 |
+
2491,not hate speech
|
2444 |
+
2492,hate speech
|
2445 |
+
2493,hate speech
|
2446 |
+
2494,hate speech
|
2447 |
+
2495,hate speech
|
2448 |
+
2496,not hate speech
|
2449 |
+
2497,not hate speech
|
2450 |
+
2498,hate speech
|
2451 |
+
2499,not hate speech
|
2452 |
+
2500,hate speech
|
2453 |
+
2501,hate speech
|
2454 |
+
2502,not hate speech
|
2455 |
+
2503,not hate speech
|
2456 |
+
2504,hate speech
|
2457 |
+
2505,hate speech
|
2458 |
+
2506,not hate speech
|
2459 |
+
2507,not hate speech
|
2460 |
+
2508,not hate speech
|
2461 |
+
2509,not hate speech
|
2462 |
+
2510,not hate speech
|
2463 |
+
2511,not hate speech
|
2464 |
+
2512,hate speech
|
2465 |
+
2513,hate speech
|
2466 |
+
2514,not hate speech
|
2467 |
+
2515,hate speech
|
2468 |
+
2516,hate speech
|
2469 |
+
2517,hate speech
|
2470 |
+
2518,hate speech
|
2471 |
+
2519,hate speech
|
2472 |
+
2520,not hate speech
|
2473 |
+
2521,not hate speech
|
2474 |
+
2522,hate speech
|
2475 |
+
2523,hate speech
|
2476 |
+
2524,hate speech
|
2477 |
+
2525,not hate speech
|
2478 |
+
2526,hate speech
|
2479 |
+
2527,not hate speech
|
2480 |
+
2528,not hate speech
|
2481 |
+
2529,hate speech
|
2482 |
+
2530,hate speech
|
2483 |
+
2531,hate speech
|
2484 |
+
2532,hate speech
|
2485 |
+
2533,not hate speech
|
2486 |
+
2534,hate speech
|
2487 |
+
2535,not hate speech
|
2488 |
+
2536,not hate speech
|
2489 |
+
2537,hate speech
|
2490 |
+
2538,hate speech
|
2491 |
+
2539,not hate speech
|
2492 |
+
2540,not hate speech
|
2493 |
+
2541,not hate speech
|
2494 |
+
2542,not hate speech
|
2495 |
+
2543,not hate speech
|
2496 |
+
2544,hate speech
|
2497 |
+
2545,hate speech
|
2498 |
+
2546,hate speech
|
2499 |
+
2547,not hate speech
|
2500 |
+
2548,hate speech
|
2501 |
+
2549,not hate speech
|
2502 |
+
2550,hate speech
|
2503 |
+
2551,hate speech
|
2504 |
+
2552,not hate speech
|
2505 |
+
2553,not hate speech
|
2506 |
+
2554,hate speech
|
2507 |
+
2555,not hate speech
|
2508 |
+
2556,not hate speech
|
2509 |
+
2557,not hate speech
|
2510 |
+
2558,not hate speech
|
2511 |
+
2559,not hate speech
|
2512 |
+
2560,not hate speech
|
2513 |
+
2561,hate speech
|
2514 |
+
2562,hate speech
|
2515 |
+
2563,hate speech
|
2516 |
+
2564,not hate speech
|
2517 |
+
2565,hate speech
|
2518 |
+
2566,not hate speech
|
2519 |
+
2567,not hate speech
|
2520 |
+
2568,hate speech
|
2521 |
+
2569,hate speech
|
2522 |
+
2570,hate speech
|
2523 |
+
2571,not hate speech
|
2524 |
+
2572,hate speech
|
2525 |
+
2573,hate speech
|
2526 |
+
2574,not hate speech
|
2527 |
+
2575,hate speech
|
2528 |
+
2576,hate speech
|
2529 |
+
2577,not hate speech
|
2530 |
+
2578,hate speech
|
2531 |
+
2579,hate speech
|
2532 |
+
2580,hate speech
|
2533 |
+
2581,hate speech
|
2534 |
+
2582,not hate speech
|
2535 |
+
2583,hate speech
|
2536 |
+
2584,not hate speech
|
2537 |
+
2585,hate speech
|
2538 |
+
2586,hate speech
|
2539 |
+
2587,not hate speech
|
2540 |
+
2588,not hate speech
|
2541 |
+
2589,hate speech
|
2542 |
+
2590,hate speech
|
2543 |
+
2591,not hate speech
|
2544 |
+
2592,hate speech
|
2545 |
+
2593,hate speech
|
2546 |
+
2594,hate speech
|
2547 |
+
2595,not hate speech
|
2548 |
+
2596,hate speech
|
2549 |
+
2597,not hate speech
|
2550 |
+
2598,hate speech
|
2551 |
+
2599,hate speech
|
2552 |
+
2600,not hate speech
|
2553 |
+
2601,not hate speech
|
2554 |
+
2602,not hate speech
|
2555 |
+
2603,hate speech
|
2556 |
+
2604,not hate speech
|
2557 |
+
2605,not hate speech
|
2558 |
+
2606,not hate speech
|
2559 |
+
2607,not hate speech
|
2560 |
+
2608,hate speech
|
2561 |
+
2609,not hate speech
|
2562 |
+
2610,not hate speech
|
2563 |
+
2611,hate speech
|
2564 |
+
2612,hate speech
|
2565 |
+
2613,hate speech
|
2566 |
+
2614,hate speech
|
2567 |
+
2615,hate speech
|
2568 |
+
2616,hate speech
|
2569 |
+
2617,not hate speech
|
2570 |
+
2618,hate speech
|
2571 |
+
2619,not hate speech
|
2572 |
+
2620,not hate speech
|
2573 |
+
2621,not hate speech
|
2574 |
+
2622,not hate speech
|
2575 |
+
2623,hate speech
|
2576 |
+
2624,hate speech
|
2577 |
+
2625,not hate speech
|
2578 |
+
2626,hate speech
|
2579 |
+
2627,hate speech
|
2580 |
+
2628,not hate speech
|
2581 |
+
2629,not hate speech
|
2582 |
+
2630,hate speech
|
2583 |
+
2631,not hate speech
|
2584 |
+
2632,not hate speech
|
2585 |
+
2633,not hate speech
|
2586 |
+
2634,not hate speech
|
2587 |
+
2635,hate speech
|
2588 |
+
2636,not hate speech
|
2589 |
+
2637,hate speech
|
2590 |
+
2638,hate speech
|
2591 |
+
2639,not hate speech
|
2592 |
+
2640,hate speech
|
2593 |
+
2641,not hate speech
|
2594 |
+
2642,not hate speech
|
2595 |
+
2643,not hate speech
|
2596 |
+
2644,not hate speech
|
2597 |
+
2645,hate speech
|
2598 |
+
2646,hate speech
|
2599 |
+
2647,hate speech
|
2600 |
+
2648,not hate speech
|
2601 |
+
2649,hate speech
|
2602 |
+
2650,hate speech
|
2603 |
+
2651,not hate speech
|
2604 |
+
2652,not hate speech
|
2605 |
+
2653,hate speech
|
2606 |
+
2654,not hate speech
|
2607 |
+
2655,hate speech
|
2608 |
+
2656,not hate speech
|
2609 |
+
2657,not hate speech
|
2610 |
+
2658,not hate speech
|
2611 |
+
2659,hate speech
|
2612 |
+
2660,not hate speech
|
2613 |
+
2661,not hate speech
|
2614 |
+
2662,not hate speech
|
2615 |
+
2663,hate speech
|
2616 |
+
2664,not hate speech
|
2617 |
+
2665,hate speech
|
2618 |
+
2666,hate speech
|
2619 |
+
2667,hate speech
|
2620 |
+
2668,not hate speech
|
2621 |
+
2669,hate speech
|
2622 |
+
2670,hate speech
|
2623 |
+
2671,hate speech
|
2624 |
+
2672,not hate speech
|
2625 |
+
2673,hate speech
|
2626 |
+
2674,hate speech
|
2627 |
+
2675,hate speech
|
2628 |
+
2676,hate speech
|
2629 |
+
2677,not hate speech
|
2630 |
+
2678,not hate speech
|
2631 |
+
2679,hate speech
|
2632 |
+
2680,hate speech
|
2633 |
+
2681,not hate speech
|
2634 |
+
2682,hate speech
|
2635 |
+
2683,not hate speech
|
2636 |
+
2684,not hate speech
|
2637 |
+
2685,hate speech
|
2638 |
+
2686,not hate speech
|
2639 |
+
2687,not hate speech
|
2640 |
+
2688,not hate speech
|
2641 |
+
2689,not hate speech
|
2642 |
+
2690,hate speech
|
2643 |
+
2691,hate speech
|
2644 |
+
2692,not hate speech
|
2645 |
+
2693,not hate speech
|
2646 |
+
2694,hate speech
|
2647 |
+
2695,hate speech
|
2648 |
+
2696,hate speech
|
2649 |
+
2697,hate speech
|
2650 |
+
2698,not hate speech
|
2651 |
+
2699,hate speech
|
2652 |
+
2700,hate speech
|
2653 |
+
2701,hate speech
|
2654 |
+
2702,hate speech
|
2655 |
+
2703,not hate speech
|
2656 |
+
2704,hate speech
|
2657 |
+
2705,hate speech
|
2658 |
+
2706,hate speech
|
2659 |
+
2707,not hate speech
|
2660 |
+
2708,hate speech
|
2661 |
+
2709,hate speech
|
2662 |
+
2710,hate speech
|
2663 |
+
2711,hate speech
|
2664 |
+
2712,not hate speech
|
2665 |
+
2713,hate speech
|
2666 |
+
2714,not hate speech
|
2667 |
+
2715,hate speech
|
2668 |
+
2716,not hate speech
|
2669 |
+
2717,hate speech
|
2670 |
+
2718,hate speech
|
2671 |
+
2719,hate speech
|
2672 |
+
2720,hate speech
|
2673 |
+
2721,hate speech
|
2674 |
+
2722,not hate speech
|
2675 |
+
2723,hate speech
|
2676 |
+
2724,not hate speech
|
2677 |
+
2725,not hate speech
|
2678 |
+
2726,hate speech
|
2679 |
+
2727,hate speech
|
2680 |
+
2728,not hate speech
|
2681 |
+
2729,not hate speech
|
2682 |
+
2730,not hate speech
|
2683 |
+
2731,hate speech
|
2684 |
+
2732,hate speech
|
2685 |
+
2733,hate speech
|
2686 |
+
2734,hate speech
|
2687 |
+
2735,hate speech
|
2688 |
+
2736,not hate speech
|
2689 |
+
2737,hate speech
|
2690 |
+
2738,not hate speech
|
2691 |
+
2739,hate speech
|
2692 |
+
2740,not hate speech
|
2693 |
+
2741,not hate speech
|
2694 |
+
2742,hate speech
|
2695 |
+
2743,hate speech
|
2696 |
+
2744,hate speech
|
2697 |
+
2745,hate speech
|
2698 |
+
2746,hate speech
|
2699 |
+
2747,hate speech
|
2700 |
+
2748,not hate speech
|
2701 |
+
2749,not hate speech
|
2702 |
+
2750,hate speech
|
2703 |
+
2751,hate speech
|
2704 |
+
2752,hate speech
|
2705 |
+
2753,hate speech
|
2706 |
+
2754,hate speech
|
2707 |
+
2755,hate speech
|
2708 |
+
2756,not hate speech
|
2709 |
+
2757,not hate speech
|
2710 |
+
2758,hate speech
|
2711 |
+
2759,hate speech
|
2712 |
+
2760,hate speech
|
2713 |
+
2761,not hate speech
|
2714 |
+
2762,hate speech
|
2715 |
+
2763,not hate speech
|
2716 |
+
2764,not hate speech
|
2717 |
+
2765,not hate speech
|
2718 |
+
2766,not hate speech
|
2719 |
+
2767,hate speech
|
2720 |
+
2768,hate speech
|
2721 |
+
2769,not hate speech
|
2722 |
+
2770,not hate speech
|
2723 |
+
2771,not hate speech
|
2724 |
+
2772,not hate speech
|
2725 |
+
2773,hate speech
|
2726 |
+
2774,not hate speech
|
2727 |
+
2775,hate speech
|
2728 |
+
2776,hate speech
|
2729 |
+
2777,hate speech
|
2730 |
+
2778,not hate speech
|
2731 |
+
2779,not hate speech
|
2732 |
+
2780,not hate speech
|
2733 |
+
2781,not hate speech
|
2734 |
+
2782,hate speech
|
2735 |
+
2783,hate speech
|
2736 |
+
2784,not hate speech
|
2737 |
+
2785,not hate speech
|
2738 |
+
2786,not hate speech
|
2739 |
+
2787,hate speech
|
2740 |
+
2788,not hate speech
|
2741 |
+
2789,not hate speech
|
2742 |
+
2790,not hate speech
|
2743 |
+
2791,not hate speech
|
2744 |
+
2792,not hate speech
|
2745 |
+
2793,hate speech
|
2746 |
+
2794,hate speech
|
2747 |
+
2795,not hate speech
|
2748 |
+
2796,hate speech
|
2749 |
+
2797,hate speech
|
2750 |
+
2798,not hate speech
|
2751 |
+
2799,hate speech
|
2752 |
+
2800,hate speech
|
2753 |
+
2801,hate speech
|
2754 |
+
2802,not hate speech
|
2755 |
+
2803,hate speech
|
2756 |
+
2804,hate speech
|
2757 |
+
2805,hate speech
|
2758 |
+
2806,not hate speech
|
2759 |
+
2807,not hate speech
|
2760 |
+
2808,hate speech
|
2761 |
+
2809,hate speech
|
2762 |
+
2810,hate speech
|
2763 |
+
2811,not hate speech
|
2764 |
+
2812,hate speech
|
2765 |
+
2813,hate speech
|
2766 |
+
2814,not hate speech
|
2767 |
+
2815,hate speech
|
2768 |
+
2816,hate speech
|
2769 |
+
2817,not hate speech
|
2770 |
+
2818,hate speech
|
2771 |
+
2819,not hate speech
|
2772 |
+
2820,hate speech
|
2773 |
+
2821,hate speech
|
2774 |
+
2822,hate speech
|
2775 |
+
2823,not hate speech
|
2776 |
+
2824,hate speech
|
2777 |
+
2825,not hate speech
|
2778 |
+
2826,not hate speech
|
2779 |
+
2827,hate speech
|
2780 |
+
2828,hate speech
|
2781 |
+
2829,not hate speech
|
2782 |
+
2830,hate speech
|
2783 |
+
2831,hate speech
|
2784 |
+
2832,hate speech
|
2785 |
+
2833,hate speech
|
2786 |
+
2834,not hate speech
|
2787 |
+
2835,hate speech
|
2788 |
+
2836,not hate speech
|
2789 |
+
2837,hate speech
|
2790 |
+
2838,hate speech
|
2791 |
+
2839,not hate speech
|
2792 |
+
2840,not hate speech
|
2793 |
+
2841,not hate speech
|
2794 |
+
2842,not hate speech
|
2795 |
+
2843,hate speech
|
2796 |
+
2844,hate speech
|
2797 |
+
2845,hate speech
|
2798 |
+
2846,hate speech
|
2799 |
+
2847,hate speech
|
2800 |
+
2848,hate speech
|
2801 |
+
2849,not hate speech
|
2802 |
+
2850,not hate speech
|
2803 |
+
2851,hate speech
|
2804 |
+
2852,not hate speech
|
2805 |
+
2853,hate speech
|
2806 |
+
2854,hate speech
|
2807 |
+
2855,hate speech
|
2808 |
+
2856,not hate speech
|
2809 |
+
2857,hate speech
|
2810 |
+
2858,not hate speech
|
2811 |
+
2859,hate speech
|
2812 |
+
2860,hate speech
|
2813 |
+
2861,hate speech
|
2814 |
+
2862,not hate speech
|
2815 |
+
2863,hate speech
|
2816 |
+
2864,hate speech
|
2817 |
+
2865,not hate speech
|
2818 |
+
2866,not hate speech
|
2819 |
+
2867,hate speech
|
2820 |
+
2868,hate speech
|
2821 |
+
2869,hate speech
|
2822 |
+
2870,not hate speech
|
2823 |
+
2871,not hate speech
|
2824 |
+
2872,hate speech
|
2825 |
+
2873,not hate speech
|
2826 |
+
2874,hate speech
|
2827 |
+
2875,hate speech
|
2828 |
+
2876,hate speech
|
2829 |
+
2877,not hate speech
|
2830 |
+
2878,hate speech
|
2831 |
+
2879,not hate speech
|
2832 |
+
2880,not hate speech
|
2833 |
+
2881,not hate speech
|
2834 |
+
2882,not hate speech
|
2835 |
+
2883,hate speech
|
2836 |
+
2884,not hate speech
|
2837 |
+
2885,hate speech
|
2838 |
+
2886,hate speech
|
2839 |
+
2887,not hate speech
|
2840 |
+
2888,not hate speech
|
2841 |
+
2889,hate speech
|
2842 |
+
2890,hate speech
|
2843 |
+
2891,hate speech
|
2844 |
+
2892,not hate speech
|
2845 |
+
2893,not hate speech
|
2846 |
+
2894,not hate speech
|
2847 |
+
2895,not hate speech
|
2848 |
+
2896,not hate speech
|
2849 |
+
2897,hate speech
|
2850 |
+
2898,not hate speech
|
2851 |
+
2899,not hate speech
|
2852 |
+
2900,hate speech
|
2853 |
+
2901,hate speech
|
2854 |
+
2902,not hate speech
|
2855 |
+
2903,hate speech
|
2856 |
+
2904,hate speech
|
2857 |
+
2905,not hate speech
|
2858 |
+
2906,hate speech
|
2859 |
+
2907,hate speech
|
2860 |
+
2908,hate speech
|
2861 |
+
2909,hate speech
|
2862 |
+
2910,hate speech
|
2863 |
+
2911,hate speech
|
2864 |
+
2912,hate speech
|
2865 |
+
2913,not hate speech
|
2866 |
+
2914,not hate speech
|
2867 |
+
2915,hate speech
|
2868 |
+
2916,hate speech
|
2869 |
+
2917,hate speech
|
2870 |
+
2918,not hate speech
|
2871 |
+
2919,hate speech
|
2872 |
+
2920,hate speech
|
2873 |
+
2921,hate speech
|
2874 |
+
2922,hate speech
|
2875 |
+
2923,not hate speech
|
2876 |
+
2924,not hate speech
|
2877 |
+
2925,hate speech
|
2878 |
+
2926,hate speech
|
2879 |
+
2927,hate speech
|
2880 |
+
2928,not hate speech
|
2881 |
+
2929,hate speech
|
2882 |
+
2930,hate speech
|
2883 |
+
2931,hate speech
|
2884 |
+
2932,not hate speech
|
2885 |
+
2933,hate speech
|
2886 |
+
2934,not hate speech
|
2887 |
+
2935,not hate speech
|
2888 |
+
2936,hate speech
|
2889 |
+
2937,not hate speech
|
2890 |
+
2938,hate speech
|
2891 |
+
2939,not hate speech
|
2892 |
+
2940,hate speech
|
2893 |
+
2941,not hate speech
|
2894 |
+
2942,hate speech
|
2895 |
+
2943,hate speech
|
2896 |
+
2944,hate speech
|
2897 |
+
2945,hate speech
|
2898 |
+
2946,not hate speech
|
2899 |
+
2947,not hate speech
|
2900 |
+
2948,hate speech
|
2901 |
+
2949,hate speech
|
2902 |
+
2950,not hate speech
|
2903 |
+
2951,not hate speech
|
2904 |
+
2952,hate speech
|
2905 |
+
2953,not hate speech
|
2906 |
+
2954,hate speech
|
2907 |
+
2955,hate speech
|
2908 |
+
2956,hate speech
|
2909 |
+
2957,hate speech
|
2910 |
+
2958,not hate speech
|
2911 |
+
2959,not hate speech
|
2912 |
+
2960,hate speech
|
2913 |
+
2961,hate speech
|
2914 |
+
2962,not hate speech
|
2915 |
+
2963,hate speech
|
2916 |
+
2964,not hate speech
|
2917 |
+
2965,hate speech
|
2918 |
+
2966,hate speech
|
2919 |
+
2967,hate speech
|
2920 |
+
2968,hate speech
|
2921 |
+
2969,not hate speech
|
2922 |
+
2970,hate speech
|
2923 |
+
2971,hate speech
|
2924 |
+
2972,not hate speech
|
2925 |
+
2973,hate speech
|
2926 |
+
2974,not hate speech
|
2927 |
+
2975,not hate speech
|
2928 |
+
2976,not hate speech
|
2929 |
+
2977,not hate speech
|
2930 |
+
2978,not hate speech
|
2931 |
+
2979,hate speech
|
2932 |
+
2980,hate speech
|
2933 |
+
2981,not hate speech
|
2934 |
+
2982,hate speech
|
2935 |
+
2983,not hate speech
|
2936 |
+
2984,hate speech
|
2937 |
+
2985,not hate speech
|
2938 |
+
2986,hate speech
|
2939 |
+
2987,not hate speech
|
2940 |
+
2988,not hate speech
|
2941 |
+
2989,not hate speech
|
2942 |
+
2990,not hate speech
|
2943 |
+
2991,not hate speech
|
2944 |
+
2992,not hate speech
|
2945 |
+
2993,hate speech
|
2946 |
+
2994,hate speech
|
2947 |
+
2995,not hate speech
|
2948 |
+
2996,hate speech
|
2949 |
+
2997,not hate speech
|
2950 |
+
2998,hate speech
|
2951 |
+
2999,not hate speech
|
2952 |
+
3000,not hate speech
|
2953 |
+
3001,hate speech
|
2954 |
+
3002,hate speech
|
2955 |
+
3003,hate speech
|
2956 |
+
3004,not hate speech
|
2957 |
+
3005,not hate speech
|
2958 |
+
3006,hate speech
|
2959 |
+
3007,not hate speech
|
2960 |
+
3008,not hate speech
|
2961 |
+
3009,hate speech
|
2962 |
+
3010,not hate speech
|
2963 |
+
3011,hate speech
|
2964 |
+
3012,not hate speech
|
2965 |
+
3013,hate speech
|
2966 |
+
3014,not hate speech
|
2967 |
+
3015,hate speech
|
{{cookiecutter.repo_name}}/data/tweet_eval_hate/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "tweet_eval_hate", "description": "", "data_columns": ["Tweet", "ID"], "label_columns": {"Label": ["hate speech", "not hate speech"]}}
|
{{cookiecutter.repo_name}}/data/twitter_complaints/predictions.csv
ADDED
@@ -0,0 +1,3400 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ID,Label
|
2 |
+
50,complaint
|
3 |
+
51,no complaint
|
4 |
+
52,complaint
|
5 |
+
53,no complaint
|
6 |
+
54,no complaint
|
7 |
+
55,complaint
|
8 |
+
56,complaint
|
9 |
+
57,complaint
|
10 |
+
58,complaint
|
11 |
+
59,no complaint
|
12 |
+
60,no complaint
|
13 |
+
61,complaint
|
14 |
+
62,complaint
|
15 |
+
63,no complaint
|
16 |
+
64,no complaint
|
17 |
+
65,complaint
|
18 |
+
66,complaint
|
19 |
+
67,no complaint
|
20 |
+
68,complaint
|
21 |
+
69,complaint
|
22 |
+
70,no complaint
|
23 |
+
71,no complaint
|
24 |
+
72,complaint
|
25 |
+
73,complaint
|
26 |
+
74,no complaint
|
27 |
+
75,no complaint
|
28 |
+
76,no complaint
|
29 |
+
77,complaint
|
30 |
+
78,no complaint
|
31 |
+
79,no complaint
|
32 |
+
80,complaint
|
33 |
+
81,complaint
|
34 |
+
82,complaint
|
35 |
+
83,no complaint
|
36 |
+
84,no complaint
|
37 |
+
85,complaint
|
38 |
+
86,no complaint
|
39 |
+
87,complaint
|
40 |
+
88,no complaint
|
41 |
+
89,no complaint
|
42 |
+
90,complaint
|
43 |
+
91,no complaint
|
44 |
+
92,no complaint
|
45 |
+
93,no complaint
|
46 |
+
94,no complaint
|
47 |
+
95,no complaint
|
48 |
+
96,complaint
|
49 |
+
97,complaint
|
50 |
+
98,no complaint
|
51 |
+
99,no complaint
|
52 |
+
100,complaint
|
53 |
+
101,complaint
|
54 |
+
102,complaint
|
55 |
+
103,no complaint
|
56 |
+
104,no complaint
|
57 |
+
105,no complaint
|
58 |
+
106,no complaint
|
59 |
+
107,complaint
|
60 |
+
108,complaint
|
61 |
+
109,complaint
|
62 |
+
110,no complaint
|
63 |
+
111,complaint
|
64 |
+
112,no complaint
|
65 |
+
113,no complaint
|
66 |
+
114,complaint
|
67 |
+
115,no complaint
|
68 |
+
116,no complaint
|
69 |
+
117,no complaint
|
70 |
+
118,complaint
|
71 |
+
119,no complaint
|
72 |
+
120,complaint
|
73 |
+
121,complaint
|
74 |
+
122,complaint
|
75 |
+
123,no complaint
|
76 |
+
124,complaint
|
77 |
+
125,complaint
|
78 |
+
126,no complaint
|
79 |
+
127,complaint
|
80 |
+
128,no complaint
|
81 |
+
129,no complaint
|
82 |
+
130,complaint
|
83 |
+
131,complaint
|
84 |
+
132,no complaint
|
85 |
+
133,complaint
|
86 |
+
134,no complaint
|
87 |
+
135,no complaint
|
88 |
+
136,complaint
|
89 |
+
137,no complaint
|
90 |
+
138,no complaint
|
91 |
+
139,no complaint
|
92 |
+
140,complaint
|
93 |
+
141,no complaint
|
94 |
+
142,complaint
|
95 |
+
143,no complaint
|
96 |
+
144,complaint
|
97 |
+
145,no complaint
|
98 |
+
146,no complaint
|
99 |
+
147,complaint
|
100 |
+
148,no complaint
|
101 |
+
149,no complaint
|
102 |
+
150,complaint
|
103 |
+
151,no complaint
|
104 |
+
152,complaint
|
105 |
+
153,no complaint
|
106 |
+
154,complaint
|
107 |
+
155,no complaint
|
108 |
+
156,complaint
|
109 |
+
157,no complaint
|
110 |
+
158,no complaint
|
111 |
+
159,no complaint
|
112 |
+
160,complaint
|
113 |
+
161,no complaint
|
114 |
+
162,complaint
|
115 |
+
163,no complaint
|
116 |
+
164,complaint
|
117 |
+
165,complaint
|
118 |
+
166,complaint
|
119 |
+
167,complaint
|
120 |
+
168,complaint
|
121 |
+
169,complaint
|
122 |
+
170,complaint
|
123 |
+
171,complaint
|
124 |
+
172,no complaint
|
125 |
+
173,complaint
|
126 |
+
174,no complaint
|
127 |
+
175,complaint
|
128 |
+
176,complaint
|
129 |
+
177,no complaint
|
130 |
+
178,no complaint
|
131 |
+
179,complaint
|
132 |
+
180,no complaint
|
133 |
+
181,complaint
|
134 |
+
182,complaint
|
135 |
+
183,no complaint
|
136 |
+
184,no complaint
|
137 |
+
185,no complaint
|
138 |
+
186,complaint
|
139 |
+
187,complaint
|
140 |
+
188,no complaint
|
141 |
+
189,no complaint
|
142 |
+
190,complaint
|
143 |
+
191,no complaint
|
144 |
+
192,complaint
|
145 |
+
193,no complaint
|
146 |
+
194,complaint
|
147 |
+
195,complaint
|
148 |
+
196,complaint
|
149 |
+
197,no complaint
|
150 |
+
198,no complaint
|
151 |
+
199,complaint
|
152 |
+
200,complaint
|
153 |
+
201,complaint
|
154 |
+
202,no complaint
|
155 |
+
203,no complaint
|
156 |
+
204,complaint
|
157 |
+
205,no complaint
|
158 |
+
206,complaint
|
159 |
+
207,no complaint
|
160 |
+
208,complaint
|
161 |
+
209,no complaint
|
162 |
+
210,complaint
|
163 |
+
211,no complaint
|
164 |
+
212,no complaint
|
165 |
+
213,complaint
|
166 |
+
214,no complaint
|
167 |
+
215,complaint
|
168 |
+
216,complaint
|
169 |
+
217,no complaint
|
170 |
+
218,no complaint
|
171 |
+
219,no complaint
|
172 |
+
220,no complaint
|
173 |
+
221,no complaint
|
174 |
+
222,complaint
|
175 |
+
223,no complaint
|
176 |
+
224,no complaint
|
177 |
+
225,no complaint
|
178 |
+
226,no complaint
|
179 |
+
227,complaint
|
180 |
+
228,no complaint
|
181 |
+
229,complaint
|
182 |
+
230,complaint
|
183 |
+
231,no complaint
|
184 |
+
232,complaint
|
185 |
+
233,no complaint
|
186 |
+
234,complaint
|
187 |
+
235,complaint
|
188 |
+
236,no complaint
|
189 |
+
237,no complaint
|
190 |
+
238,no complaint
|
191 |
+
239,no complaint
|
192 |
+
240,complaint
|
193 |
+
241,complaint
|
194 |
+
242,complaint
|
195 |
+
243,complaint
|
196 |
+
244,complaint
|
197 |
+
245,no complaint
|
198 |
+
246,complaint
|
199 |
+
247,no complaint
|
200 |
+
248,no complaint
|
201 |
+
249,complaint
|
202 |
+
250,complaint
|
203 |
+
251,complaint
|
204 |
+
252,complaint
|
205 |
+
253,no complaint
|
206 |
+
254,no complaint
|
207 |
+
255,no complaint
|
208 |
+
256,complaint
|
209 |
+
257,complaint
|
210 |
+
258,complaint
|
211 |
+
259,complaint
|
212 |
+
260,no complaint
|
213 |
+
261,no complaint
|
214 |
+
262,complaint
|
215 |
+
263,complaint
|
216 |
+
264,no complaint
|
217 |
+
265,complaint
|
218 |
+
266,complaint
|
219 |
+
267,no complaint
|
220 |
+
268,no complaint
|
221 |
+
269,complaint
|
222 |
+
270,complaint
|
223 |
+
271,no complaint
|
224 |
+
272,no complaint
|
225 |
+
273,complaint
|
226 |
+
274,no complaint
|
227 |
+
275,no complaint
|
228 |
+
276,complaint
|
229 |
+
277,no complaint
|
230 |
+
278,no complaint
|
231 |
+
279,complaint
|
232 |
+
280,complaint
|
233 |
+
281,complaint
|
234 |
+
282,no complaint
|
235 |
+
283,no complaint
|
236 |
+
284,no complaint
|
237 |
+
285,no complaint
|
238 |
+
286,complaint
|
239 |
+
287,complaint
|
240 |
+
288,no complaint
|
241 |
+
289,no complaint
|
242 |
+
290,no complaint
|
243 |
+
291,complaint
|
244 |
+
292,complaint
|
245 |
+
293,no complaint
|
246 |
+
294,complaint
|
247 |
+
295,complaint
|
248 |
+
296,complaint
|
249 |
+
297,no complaint
|
250 |
+
298,no complaint
|
251 |
+
299,no complaint
|
252 |
+
300,no complaint
|
253 |
+
301,complaint
|
254 |
+
302,complaint
|
255 |
+
303,complaint
|
256 |
+
304,no complaint
|
257 |
+
305,complaint
|
258 |
+
306,complaint
|
259 |
+
307,no complaint
|
260 |
+
308,no complaint
|
261 |
+
309,complaint
|
262 |
+
310,complaint
|
263 |
+
311,no complaint
|
264 |
+
312,no complaint
|
265 |
+
313,no complaint
|
266 |
+
314,complaint
|
267 |
+
315,complaint
|
268 |
+
316,complaint
|
269 |
+
317,complaint
|
270 |
+
318,no complaint
|
271 |
+
319,no complaint
|
272 |
+
320,no complaint
|
273 |
+
321,no complaint
|
274 |
+
322,no complaint
|
275 |
+
323,no complaint
|
276 |
+
324,complaint
|
277 |
+
325,no complaint
|
278 |
+
326,no complaint
|
279 |
+
327,no complaint
|
280 |
+
328,complaint
|
281 |
+
329,no complaint
|
282 |
+
330,complaint
|
283 |
+
331,complaint
|
284 |
+
332,complaint
|
285 |
+
333,no complaint
|
286 |
+
334,no complaint
|
287 |
+
335,complaint
|
288 |
+
336,no complaint
|
289 |
+
337,complaint
|
290 |
+
338,complaint
|
291 |
+
339,no complaint
|
292 |
+
340,complaint
|
293 |
+
341,no complaint
|
294 |
+
342,no complaint
|
295 |
+
343,no complaint
|
296 |
+
344,complaint
|
297 |
+
345,no complaint
|
298 |
+
346,complaint
|
299 |
+
347,complaint
|
300 |
+
348,complaint
|
301 |
+
349,no complaint
|
302 |
+
350,complaint
|
303 |
+
351,complaint
|
304 |
+
352,complaint
|
305 |
+
353,no complaint
|
306 |
+
354,complaint
|
307 |
+
355,complaint
|
308 |
+
356,complaint
|
309 |
+
357,no complaint
|
310 |
+
358,complaint
|
311 |
+
359,no complaint
|
312 |
+
360,no complaint
|
313 |
+
361,complaint
|
314 |
+
362,no complaint
|
315 |
+
363,complaint
|
316 |
+
364,no complaint
|
317 |
+
365,no complaint
|
318 |
+
366,complaint
|
319 |
+
367,no complaint
|
320 |
+
368,no complaint
|
321 |
+
369,no complaint
|
322 |
+
370,no complaint
|
323 |
+
371,no complaint
|
324 |
+
372,no complaint
|
325 |
+
373,no complaint
|
326 |
+
374,no complaint
|
327 |
+
375,complaint
|
328 |
+
376,no complaint
|
329 |
+
377,complaint
|
330 |
+
378,no complaint
|
331 |
+
379,no complaint
|
332 |
+
380,no complaint
|
333 |
+
381,no complaint
|
334 |
+
382,complaint
|
335 |
+
383,complaint
|
336 |
+
384,complaint
|
337 |
+
385,no complaint
|
338 |
+
386,no complaint
|
339 |
+
387,no complaint
|
340 |
+
388,complaint
|
341 |
+
389,no complaint
|
342 |
+
390,no complaint
|
343 |
+
391,complaint
|
344 |
+
392,no complaint
|
345 |
+
393,complaint
|
346 |
+
394,complaint
|
347 |
+
395,complaint
|
348 |
+
396,complaint
|
349 |
+
397,no complaint
|
350 |
+
398,complaint
|
351 |
+
399,complaint
|
352 |
+
400,complaint
|
353 |
+
401,no complaint
|
354 |
+
402,no complaint
|
355 |
+
403,complaint
|
356 |
+
404,complaint
|
357 |
+
405,complaint
|
358 |
+
406,complaint
|
359 |
+
407,complaint
|
360 |
+
408,complaint
|
361 |
+
409,no complaint
|
362 |
+
410,complaint
|
363 |
+
411,complaint
|
364 |
+
412,no complaint
|
365 |
+
413,complaint
|
366 |
+
414,no complaint
|
367 |
+
415,complaint
|
368 |
+
416,complaint
|
369 |
+
417,no complaint
|
370 |
+
418,complaint
|
371 |
+
419,complaint
|
372 |
+
420,no complaint
|
373 |
+
421,complaint
|
374 |
+
422,complaint
|
375 |
+
423,no complaint
|
376 |
+
424,complaint
|
377 |
+
425,complaint
|
378 |
+
426,no complaint
|
379 |
+
427,no complaint
|
380 |
+
428,complaint
|
381 |
+
429,no complaint
|
382 |
+
430,complaint
|
383 |
+
431,complaint
|
384 |
+
432,no complaint
|
385 |
+
433,no complaint
|
386 |
+
434,no complaint
|
387 |
+
435,no complaint
|
388 |
+
436,no complaint
|
389 |
+
437,complaint
|
390 |
+
438,no complaint
|
391 |
+
439,complaint
|
392 |
+
440,no complaint
|
393 |
+
441,complaint
|
394 |
+
442,no complaint
|
395 |
+
443,complaint
|
396 |
+
444,no complaint
|
397 |
+
445,complaint
|
398 |
+
446,complaint
|
399 |
+
447,complaint
|
400 |
+
448,complaint
|
401 |
+
449,complaint
|
402 |
+
450,complaint
|
403 |
+
451,complaint
|
404 |
+
452,complaint
|
405 |
+
453,no complaint
|
406 |
+
454,complaint
|
407 |
+
455,no complaint
|
408 |
+
456,no complaint
|
409 |
+
457,no complaint
|
410 |
+
458,complaint
|
411 |
+
459,complaint
|
412 |
+
460,complaint
|
413 |
+
461,no complaint
|
414 |
+
462,no complaint
|
415 |
+
463,no complaint
|
416 |
+
464,no complaint
|
417 |
+
465,complaint
|
418 |
+
466,complaint
|
419 |
+
467,no complaint
|
420 |
+
468,no complaint
|
421 |
+
469,no complaint
|
422 |
+
470,no complaint
|
423 |
+
471,complaint
|
424 |
+
472,complaint
|
425 |
+
473,no complaint
|
426 |
+
474,complaint
|
427 |
+
475,complaint
|
428 |
+
476,no complaint
|
429 |
+
477,no complaint
|
430 |
+
478,no complaint
|
431 |
+
479,complaint
|
432 |
+
480,complaint
|
433 |
+
481,complaint
|
434 |
+
482,no complaint
|
435 |
+
483,complaint
|
436 |
+
484,complaint
|
437 |
+
485,complaint
|
438 |
+
486,complaint
|
439 |
+
487,no complaint
|
440 |
+
488,complaint
|
441 |
+
489,no complaint
|
442 |
+
490,complaint
|
443 |
+
491,complaint
|
444 |
+
492,complaint
|
445 |
+
493,complaint
|
446 |
+
494,no complaint
|
447 |
+
495,complaint
|
448 |
+
496,complaint
|
449 |
+
497,complaint
|
450 |
+
498,no complaint
|
451 |
+
499,complaint
|
452 |
+
500,complaint
|
453 |
+
501,no complaint
|
454 |
+
502,complaint
|
455 |
+
503,no complaint
|
456 |
+
504,no complaint
|
457 |
+
505,no complaint
|
458 |
+
506,no complaint
|
459 |
+
507,complaint
|
460 |
+
508,complaint
|
461 |
+
509,no complaint
|
462 |
+
510,no complaint
|
463 |
+
511,complaint
|
464 |
+
512,no complaint
|
465 |
+
513,no complaint
|
466 |
+
514,complaint
|
467 |
+
515,no complaint
|
468 |
+
516,no complaint
|
469 |
+
517,complaint
|
470 |
+
518,complaint
|
471 |
+
519,complaint
|
472 |
+
520,no complaint
|
473 |
+
521,no complaint
|
474 |
+
522,no complaint
|
475 |
+
523,no complaint
|
476 |
+
524,no complaint
|
477 |
+
525,no complaint
|
478 |
+
526,no complaint
|
479 |
+
527,complaint
|
480 |
+
528,no complaint
|
481 |
+
529,no complaint
|
482 |
+
530,complaint
|
483 |
+
531,complaint
|
484 |
+
532,no complaint
|
485 |
+
533,no complaint
|
486 |
+
534,no complaint
|
487 |
+
535,complaint
|
488 |
+
536,no complaint
|
489 |
+
537,complaint
|
490 |
+
538,complaint
|
491 |
+
539,complaint
|
492 |
+
540,complaint
|
493 |
+
541,no complaint
|
494 |
+
542,complaint
|
495 |
+
543,no complaint
|
496 |
+
544,complaint
|
497 |
+
545,no complaint
|
498 |
+
546,complaint
|
499 |
+
547,no complaint
|
500 |
+
548,complaint
|
501 |
+
549,complaint
|
502 |
+
550,complaint
|
503 |
+
551,complaint
|
504 |
+
552,complaint
|
505 |
+
553,complaint
|
506 |
+
554,no complaint
|
507 |
+
555,no complaint
|
508 |
+
556,complaint
|
509 |
+
557,complaint
|
510 |
+
558,complaint
|
511 |
+
559,complaint
|
512 |
+
560,complaint
|
513 |
+
561,complaint
|
514 |
+
562,no complaint
|
515 |
+
563,complaint
|
516 |
+
564,no complaint
|
517 |
+
565,no complaint
|
518 |
+
566,no complaint
|
519 |
+
567,complaint
|
520 |
+
568,complaint
|
521 |
+
569,complaint
|
522 |
+
570,complaint
|
523 |
+
571,complaint
|
524 |
+
572,complaint
|
525 |
+
573,complaint
|
526 |
+
574,no complaint
|
527 |
+
575,no complaint
|
528 |
+
576,complaint
|
529 |
+
577,complaint
|
530 |
+
578,complaint
|
531 |
+
579,no complaint
|
532 |
+
580,no complaint
|
533 |
+
581,no complaint
|
534 |
+
582,no complaint
|
535 |
+
583,no complaint
|
536 |
+
584,no complaint
|
537 |
+
585,no complaint
|
538 |
+
586,complaint
|
539 |
+
587,complaint
|
540 |
+
588,complaint
|
541 |
+
589,complaint
|
542 |
+
590,no complaint
|
543 |
+
591,complaint
|
544 |
+
592,no complaint
|
545 |
+
593,complaint
|
546 |
+
594,no complaint
|
547 |
+
595,complaint
|
548 |
+
596,no complaint
|
549 |
+
597,no complaint
|
550 |
+
598,no complaint
|
551 |
+
599,complaint
|
552 |
+
600,complaint
|
553 |
+
601,complaint
|
554 |
+
602,no complaint
|
555 |
+
603,complaint
|
556 |
+
604,complaint
|
557 |
+
605,complaint
|
558 |
+
606,complaint
|
559 |
+
607,complaint
|
560 |
+
608,complaint
|
561 |
+
609,no complaint
|
562 |
+
610,no complaint
|
563 |
+
611,no complaint
|
564 |
+
612,complaint
|
565 |
+
613,no complaint
|
566 |
+
614,no complaint
|
567 |
+
615,complaint
|
568 |
+
616,complaint
|
569 |
+
617,no complaint
|
570 |
+
618,no complaint
|
571 |
+
619,no complaint
|
572 |
+
620,no complaint
|
573 |
+
621,complaint
|
574 |
+
622,no complaint
|
575 |
+
623,complaint
|
576 |
+
624,no complaint
|
577 |
+
625,complaint
|
578 |
+
626,no complaint
|
579 |
+
627,complaint
|
580 |
+
628,complaint
|
581 |
+
629,no complaint
|
582 |
+
630,no complaint
|
583 |
+
631,complaint
|
584 |
+
632,complaint
|
585 |
+
633,no complaint
|
586 |
+
634,complaint
|
587 |
+
635,complaint
|
588 |
+
636,complaint
|
589 |
+
637,complaint
|
590 |
+
638,no complaint
|
591 |
+
639,complaint
|
592 |
+
640,complaint
|
593 |
+
641,no complaint
|
594 |
+
642,no complaint
|
595 |
+
643,complaint
|
596 |
+
644,complaint
|
597 |
+
645,complaint
|
598 |
+
646,complaint
|
599 |
+
647,complaint
|
600 |
+
648,no complaint
|
601 |
+
649,complaint
|
602 |
+
650,no complaint
|
603 |
+
651,no complaint
|
604 |
+
652,no complaint
|
605 |
+
653,complaint
|
606 |
+
654,no complaint
|
607 |
+
655,no complaint
|
608 |
+
656,no complaint
|
609 |
+
657,no complaint
|
610 |
+
658,complaint
|
611 |
+
659,complaint
|
612 |
+
660,no complaint
|
613 |
+
661,complaint
|
614 |
+
662,no complaint
|
615 |
+
663,no complaint
|
616 |
+
664,complaint
|
617 |
+
665,complaint
|
618 |
+
666,complaint
|
619 |
+
667,complaint
|
620 |
+
668,complaint
|
621 |
+
669,complaint
|
622 |
+
670,complaint
|
623 |
+
671,no complaint
|
624 |
+
672,complaint
|
625 |
+
673,complaint
|
626 |
+
674,complaint
|
627 |
+
675,complaint
|
628 |
+
676,no complaint
|
629 |
+
677,complaint
|
630 |
+
678,no complaint
|
631 |
+
679,no complaint
|
632 |
+
680,no complaint
|
633 |
+
681,complaint
|
634 |
+
682,no complaint
|
635 |
+
683,no complaint
|
636 |
+
684,complaint
|
637 |
+
685,complaint
|
638 |
+
686,no complaint
|
639 |
+
687,no complaint
|
640 |
+
688,complaint
|
641 |
+
689,complaint
|
642 |
+
690,no complaint
|
643 |
+
691,no complaint
|
644 |
+
692,complaint
|
645 |
+
693,complaint
|
646 |
+
694,no complaint
|
647 |
+
695,complaint
|
648 |
+
696,no complaint
|
649 |
+
697,complaint
|
650 |
+
698,no complaint
|
651 |
+
699,complaint
|
652 |
+
700,complaint
|
653 |
+
701,complaint
|
654 |
+
702,complaint
|
655 |
+
703,complaint
|
656 |
+
704,complaint
|
657 |
+
705,complaint
|
658 |
+
706,complaint
|
659 |
+
707,no complaint
|
660 |
+
708,no complaint
|
661 |
+
709,complaint
|
662 |
+
710,complaint
|
663 |
+
711,no complaint
|
664 |
+
712,complaint
|
665 |
+
713,complaint
|
666 |
+
714,complaint
|
667 |
+
715,complaint
|
668 |
+
716,complaint
|
669 |
+
717,complaint
|
670 |
+
718,no complaint
|
671 |
+
719,complaint
|
672 |
+
720,complaint
|
673 |
+
721,no complaint
|
674 |
+
722,no complaint
|
675 |
+
723,no complaint
|
676 |
+
724,complaint
|
677 |
+
725,complaint
|
678 |
+
726,complaint
|
679 |
+
727,complaint
|
680 |
+
728,complaint
|
681 |
+
729,complaint
|
682 |
+
730,no complaint
|
683 |
+
731,no complaint
|
684 |
+
732,no complaint
|
685 |
+
733,no complaint
|
686 |
+
734,complaint
|
687 |
+
735,no complaint
|
688 |
+
736,no complaint
|
689 |
+
737,complaint
|
690 |
+
738,no complaint
|
691 |
+
739,complaint
|
692 |
+
740,no complaint
|
693 |
+
741,complaint
|
694 |
+
742,complaint
|
695 |
+
743,no complaint
|
696 |
+
744,no complaint
|
697 |
+
745,no complaint
|
698 |
+
746,complaint
|
699 |
+
747,no complaint
|
700 |
+
748,complaint
|
701 |
+
749,no complaint
|
702 |
+
750,no complaint
|
703 |
+
751,no complaint
|
704 |
+
752,complaint
|
705 |
+
753,no complaint
|
706 |
+
754,no complaint
|
707 |
+
755,no complaint
|
708 |
+
756,no complaint
|
709 |
+
757,complaint
|
710 |
+
758,no complaint
|
711 |
+
759,complaint
|
712 |
+
760,complaint
|
713 |
+
761,no complaint
|
714 |
+
762,complaint
|
715 |
+
763,complaint
|
716 |
+
764,no complaint
|
717 |
+
765,complaint
|
718 |
+
766,no complaint
|
719 |
+
767,complaint
|
720 |
+
768,complaint
|
721 |
+
769,complaint
|
722 |
+
770,complaint
|
723 |
+
771,complaint
|
724 |
+
772,complaint
|
725 |
+
773,complaint
|
726 |
+
774,no complaint
|
727 |
+
775,no complaint
|
728 |
+
776,no complaint
|
729 |
+
777,complaint
|
730 |
+
778,no complaint
|
731 |
+
779,no complaint
|
732 |
+
780,no complaint
|
733 |
+
781,complaint
|
734 |
+
782,no complaint
|
735 |
+
783,complaint
|
736 |
+
784,complaint
|
737 |
+
785,complaint
|
738 |
+
786,complaint
|
739 |
+
787,no complaint
|
740 |
+
788,complaint
|
741 |
+
789,no complaint
|
742 |
+
790,complaint
|
743 |
+
791,no complaint
|
744 |
+
792,complaint
|
745 |
+
793,complaint
|
746 |
+
794,no complaint
|
747 |
+
795,no complaint
|
748 |
+
796,no complaint
|
749 |
+
797,complaint
|
750 |
+
798,complaint
|
751 |
+
799,no complaint
|
752 |
+
800,no complaint
|
753 |
+
801,complaint
|
754 |
+
802,no complaint
|
755 |
+
803,complaint
|
756 |
+
804,no complaint
|
757 |
+
805,no complaint
|
758 |
+
806,no complaint
|
759 |
+
807,complaint
|
760 |
+
808,no complaint
|
761 |
+
809,complaint
|
762 |
+
810,complaint
|
763 |
+
811,no complaint
|
764 |
+
812,no complaint
|
765 |
+
813,complaint
|
766 |
+
814,complaint
|
767 |
+
815,complaint
|
768 |
+
816,no complaint
|
769 |
+
817,complaint
|
770 |
+
818,complaint
|
771 |
+
819,complaint
|
772 |
+
820,no complaint
|
773 |
+
821,no complaint
|
774 |
+
822,no complaint
|
775 |
+
823,no complaint
|
776 |
+
824,no complaint
|
777 |
+
825,no complaint
|
778 |
+
826,no complaint
|
779 |
+
827,no complaint
|
780 |
+
828,complaint
|
781 |
+
829,no complaint
|
782 |
+
830,no complaint
|
783 |
+
831,complaint
|
784 |
+
832,no complaint
|
785 |
+
833,no complaint
|
786 |
+
834,no complaint
|
787 |
+
835,complaint
|
788 |
+
836,complaint
|
789 |
+
837,no complaint
|
790 |
+
838,no complaint
|
791 |
+
839,complaint
|
792 |
+
840,no complaint
|
793 |
+
841,complaint
|
794 |
+
842,complaint
|
795 |
+
843,complaint
|
796 |
+
844,no complaint
|
797 |
+
845,complaint
|
798 |
+
846,no complaint
|
799 |
+
847,no complaint
|
800 |
+
848,no complaint
|
801 |
+
849,no complaint
|
802 |
+
850,complaint
|
803 |
+
851,no complaint
|
804 |
+
852,complaint
|
805 |
+
853,no complaint
|
806 |
+
854,no complaint
|
807 |
+
855,no complaint
|
808 |
+
856,no complaint
|
809 |
+
857,complaint
|
810 |
+
858,complaint
|
811 |
+
859,no complaint
|
812 |
+
860,no complaint
|
813 |
+
861,complaint
|
814 |
+
862,no complaint
|
815 |
+
863,no complaint
|
816 |
+
864,complaint
|
817 |
+
865,no complaint
|
818 |
+
866,no complaint
|
819 |
+
867,no complaint
|
820 |
+
868,no complaint
|
821 |
+
869,complaint
|
822 |
+
870,no complaint
|
823 |
+
871,no complaint
|
824 |
+
872,complaint
|
825 |
+
873,complaint
|
826 |
+
874,complaint
|
827 |
+
875,no complaint
|
828 |
+
876,no complaint
|
829 |
+
877,complaint
|
830 |
+
878,complaint
|
831 |
+
879,complaint
|
832 |
+
880,complaint
|
833 |
+
881,no complaint
|
834 |
+
882,complaint
|
835 |
+
883,no complaint
|
836 |
+
884,no complaint
|
837 |
+
885,no complaint
|
838 |
+
886,complaint
|
839 |
+
887,no complaint
|
840 |
+
888,complaint
|
841 |
+
889,complaint
|
842 |
+
890,complaint
|
843 |
+
891,no complaint
|
844 |
+
892,complaint
|
845 |
+
893,complaint
|
846 |
+
894,complaint
|
847 |
+
895,no complaint
|
848 |
+
896,complaint
|
849 |
+
897,complaint
|
850 |
+
898,complaint
|
851 |
+
899,complaint
|
852 |
+
900,complaint
|
853 |
+
901,complaint
|
854 |
+
902,complaint
|
855 |
+
903,complaint
|
856 |
+
904,complaint
|
857 |
+
905,no complaint
|
858 |
+
906,no complaint
|
859 |
+
907,no complaint
|
860 |
+
908,no complaint
|
861 |
+
909,no complaint
|
862 |
+
910,complaint
|
863 |
+
911,no complaint
|
864 |
+
912,complaint
|
865 |
+
913,no complaint
|
866 |
+
914,no complaint
|
867 |
+
915,complaint
|
868 |
+
916,complaint
|
869 |
+
917,no complaint
|
870 |
+
918,complaint
|
871 |
+
919,no complaint
|
872 |
+
920,complaint
|
873 |
+
921,complaint
|
874 |
+
922,complaint
|
875 |
+
923,complaint
|
876 |
+
924,no complaint
|
877 |
+
925,no complaint
|
878 |
+
926,no complaint
|
879 |
+
927,complaint
|
880 |
+
928,complaint
|
881 |
+
929,complaint
|
882 |
+
930,no complaint
|
883 |
+
931,no complaint
|
884 |
+
932,no complaint
|
885 |
+
933,complaint
|
886 |
+
934,complaint
|
887 |
+
935,complaint
|
888 |
+
936,complaint
|
889 |
+
937,complaint
|
890 |
+
938,no complaint
|
891 |
+
939,no complaint
|
892 |
+
940,no complaint
|
893 |
+
941,no complaint
|
894 |
+
942,no complaint
|
895 |
+
943,complaint
|
896 |
+
944,no complaint
|
897 |
+
945,no complaint
|
898 |
+
946,complaint
|
899 |
+
947,no complaint
|
900 |
+
948,no complaint
|
901 |
+
949,no complaint
|
902 |
+
950,no complaint
|
903 |
+
951,complaint
|
904 |
+
952,complaint
|
905 |
+
953,complaint
|
906 |
+
954,complaint
|
907 |
+
955,no complaint
|
908 |
+
956,complaint
|
909 |
+
957,complaint
|
910 |
+
958,complaint
|
911 |
+
959,complaint
|
912 |
+
960,complaint
|
913 |
+
961,no complaint
|
914 |
+
962,complaint
|
915 |
+
963,complaint
|
916 |
+
964,no complaint
|
917 |
+
965,complaint
|
918 |
+
966,complaint
|
919 |
+
967,no complaint
|
920 |
+
968,no complaint
|
921 |
+
969,complaint
|
922 |
+
970,complaint
|
923 |
+
971,complaint
|
924 |
+
972,no complaint
|
925 |
+
973,no complaint
|
926 |
+
974,no complaint
|
927 |
+
975,no complaint
|
928 |
+
976,complaint
|
929 |
+
977,complaint
|
930 |
+
978,no complaint
|
931 |
+
979,no complaint
|
932 |
+
980,complaint
|
933 |
+
981,no complaint
|
934 |
+
982,no complaint
|
935 |
+
983,complaint
|
936 |
+
984,no complaint
|
937 |
+
985,complaint
|
938 |
+
986,complaint
|
939 |
+
987,complaint
|
940 |
+
988,no complaint
|
941 |
+
989,complaint
|
942 |
+
990,complaint
|
943 |
+
991,complaint
|
944 |
+
992,no complaint
|
945 |
+
993,no complaint
|
946 |
+
994,complaint
|
947 |
+
995,complaint
|
948 |
+
996,no complaint
|
949 |
+
997,no complaint
|
950 |
+
998,no complaint
|
951 |
+
999,no complaint
|
952 |
+
1000,no complaint
|
953 |
+
1001,complaint
|
954 |
+
1002,no complaint
|
955 |
+
1003,no complaint
|
956 |
+
1004,no complaint
|
957 |
+
1005,no complaint
|
958 |
+
1006,complaint
|
959 |
+
1007,complaint
|
960 |
+
1008,no complaint
|
961 |
+
1009,no complaint
|
962 |
+
1010,no complaint
|
963 |
+
1011,no complaint
|
964 |
+
1012,complaint
|
965 |
+
1013,no complaint
|
966 |
+
1014,no complaint
|
967 |
+
1015,complaint
|
968 |
+
1016,no complaint
|
969 |
+
1017,complaint
|
970 |
+
1018,complaint
|
971 |
+
1019,no complaint
|
972 |
+
1020,complaint
|
973 |
+
1021,no complaint
|
974 |
+
1022,no complaint
|
975 |
+
1023,complaint
|
976 |
+
1024,complaint
|
977 |
+
1025,no complaint
|
978 |
+
1026,complaint
|
979 |
+
1027,complaint
|
980 |
+
1028,no complaint
|
981 |
+
1029,complaint
|
982 |
+
1030,complaint
|
983 |
+
1031,no complaint
|
984 |
+
1032,no complaint
|
985 |
+
1033,no complaint
|
986 |
+
1034,no complaint
|
987 |
+
1035,no complaint
|
988 |
+
1036,no complaint
|
989 |
+
1037,no complaint
|
990 |
+
1038,complaint
|
991 |
+
1039,complaint
|
992 |
+
1040,complaint
|
993 |
+
1041,complaint
|
994 |
+
1042,complaint
|
995 |
+
1043,no complaint
|
996 |
+
1044,no complaint
|
997 |
+
1045,no complaint
|
998 |
+
1046,complaint
|
999 |
+
1047,complaint
|
1000 |
+
1048,no complaint
|
1001 |
+
1049,complaint
|
1002 |
+
1050,no complaint
|
1003 |
+
1051,no complaint
|
1004 |
+
1052,no complaint
|
1005 |
+
1053,complaint
|
1006 |
+
1054,no complaint
|
1007 |
+
1055,no complaint
|
1008 |
+
1056,no complaint
|
1009 |
+
1057,no complaint
|
1010 |
+
1058,complaint
|
1011 |
+
1059,no complaint
|
1012 |
+
1060,complaint
|
1013 |
+
1061,complaint
|
1014 |
+
1062,no complaint
|
1015 |
+
1063,no complaint
|
1016 |
+
1064,no complaint
|
1017 |
+
1065,complaint
|
1018 |
+
1066,no complaint
|
1019 |
+
1067,no complaint
|
1020 |
+
1068,no complaint
|
1021 |
+
1069,complaint
|
1022 |
+
1070,complaint
|
1023 |
+
1071,complaint
|
1024 |
+
1072,no complaint
|
1025 |
+
1073,complaint
|
1026 |
+
1074,complaint
|
1027 |
+
1075,no complaint
|
1028 |
+
1076,complaint
|
1029 |
+
1077,no complaint
|
1030 |
+
1078,complaint
|
1031 |
+
1079,complaint
|
1032 |
+
1080,no complaint
|
1033 |
+
1081,no complaint
|
1034 |
+
1082,no complaint
|
1035 |
+
1083,no complaint
|
1036 |
+
1084,complaint
|
1037 |
+
1085,complaint
|
1038 |
+
1086,complaint
|
1039 |
+
1087,complaint
|
1040 |
+
1088,no complaint
|
1041 |
+
1089,no complaint
|
1042 |
+
1090,no complaint
|
1043 |
+
1091,complaint
|
1044 |
+
1092,no complaint
|
1045 |
+
1093,no complaint
|
1046 |
+
1094,no complaint
|
1047 |
+
1095,complaint
|
1048 |
+
1096,complaint
|
1049 |
+
1097,no complaint
|
1050 |
+
1098,no complaint
|
1051 |
+
1099,no complaint
|
1052 |
+
1100,no complaint
|
1053 |
+
1101,no complaint
|
1054 |
+
1102,no complaint
|
1055 |
+
1103,complaint
|
1056 |
+
1104,complaint
|
1057 |
+
1105,no complaint
|
1058 |
+
1106,no complaint
|
1059 |
+
1107,complaint
|
1060 |
+
1108,complaint
|
1061 |
+
1109,complaint
|
1062 |
+
1110,complaint
|
1063 |
+
1111,no complaint
|
1064 |
+
1112,no complaint
|
1065 |
+
1113,no complaint
|
1066 |
+
1114,complaint
|
1067 |
+
1115,no complaint
|
1068 |
+
1116,no complaint
|
1069 |
+
1117,no complaint
|
1070 |
+
1118,no complaint
|
1071 |
+
1119,complaint
|
1072 |
+
1120,no complaint
|
1073 |
+
1121,complaint
|
1074 |
+
1122,no complaint
|
1075 |
+
1123,no complaint
|
1076 |
+
1124,no complaint
|
1077 |
+
1125,complaint
|
1078 |
+
1126,no complaint
|
1079 |
+
1127,complaint
|
1080 |
+
1128,no complaint
|
1081 |
+
1129,no complaint
|
1082 |
+
1130,no complaint
|
1083 |
+
1131,no complaint
|
1084 |
+
1132,no complaint
|
1085 |
+
1133,complaint
|
1086 |
+
1134,no complaint
|
1087 |
+
1135,no complaint
|
1088 |
+
1136,no complaint
|
1089 |
+
1137,no complaint
|
1090 |
+
1138,complaint
|
1091 |
+
1139,complaint
|
1092 |
+
1140,complaint
|
1093 |
+
1141,no complaint
|
1094 |
+
1142,complaint
|
1095 |
+
1143,no complaint
|
1096 |
+
1144,no complaint
|
1097 |
+
1145,no complaint
|
1098 |
+
1146,no complaint
|
1099 |
+
1147,no complaint
|
1100 |
+
1148,complaint
|
1101 |
+
1149,no complaint
|
1102 |
+
1150,complaint
|
1103 |
+
1151,no complaint
|
1104 |
+
1152,no complaint
|
1105 |
+
1153,no complaint
|
1106 |
+
1154,complaint
|
1107 |
+
1155,no complaint
|
1108 |
+
1156,no complaint
|
1109 |
+
1157,complaint
|
1110 |
+
1158,complaint
|
1111 |
+
1159,no complaint
|
1112 |
+
1160,complaint
|
1113 |
+
1161,no complaint
|
1114 |
+
1162,complaint
|
1115 |
+
1163,complaint
|
1116 |
+
1164,no complaint
|
1117 |
+
1165,complaint
|
1118 |
+
1166,complaint
|
1119 |
+
1167,no complaint
|
1120 |
+
1168,no complaint
|
1121 |
+
1169,no complaint
|
1122 |
+
1170,no complaint
|
1123 |
+
1171,complaint
|
1124 |
+
1172,complaint
|
1125 |
+
1173,complaint
|
1126 |
+
1174,no complaint
|
1127 |
+
1175,no complaint
|
1128 |
+
1176,complaint
|
1129 |
+
1177,no complaint
|
1130 |
+
1178,no complaint
|
1131 |
+
1179,complaint
|
1132 |
+
1180,no complaint
|
1133 |
+
1181,complaint
|
1134 |
+
1182,no complaint
|
1135 |
+
1183,no complaint
|
1136 |
+
1184,no complaint
|
1137 |
+
1185,complaint
|
1138 |
+
1186,complaint
|
1139 |
+
1187,no complaint
|
1140 |
+
1188,no complaint
|
1141 |
+
1189,complaint
|
1142 |
+
1190,no complaint
|
1143 |
+
1191,no complaint
|
1144 |
+
1192,complaint
|
1145 |
+
1193,complaint
|
1146 |
+
1194,complaint
|
1147 |
+
1195,no complaint
|
1148 |
+
1196,complaint
|
1149 |
+
1197,no complaint
|
1150 |
+
1198,complaint
|
1151 |
+
1199,complaint
|
1152 |
+
1200,no complaint
|
1153 |
+
1201,complaint
|
1154 |
+
1202,complaint
|
1155 |
+
1203,no complaint
|
1156 |
+
1204,complaint
|
1157 |
+
1205,complaint
|
1158 |
+
1206,no complaint
|
1159 |
+
1207,no complaint
|
1160 |
+
1208,complaint
|
1161 |
+
1209,complaint
|
1162 |
+
1210,no complaint
|
1163 |
+
1211,no complaint
|
1164 |
+
1212,complaint
|
1165 |
+
1213,no complaint
|
1166 |
+
1214,complaint
|
1167 |
+
1215,no complaint
|
1168 |
+
1216,complaint
|
1169 |
+
1217,complaint
|
1170 |
+
1218,complaint
|
1171 |
+
1219,no complaint
|
1172 |
+
1220,complaint
|
1173 |
+
1221,complaint
|
1174 |
+
1222,complaint
|
1175 |
+
1223,complaint
|
1176 |
+
1224,complaint
|
1177 |
+
1225,complaint
|
1178 |
+
1226,no complaint
|
1179 |
+
1227,complaint
|
1180 |
+
1228,complaint
|
1181 |
+
1229,no complaint
|
1182 |
+
1230,no complaint
|
1183 |
+
1231,no complaint
|
1184 |
+
1232,no complaint
|
1185 |
+
1233,no complaint
|
1186 |
+
1234,complaint
|
1187 |
+
1235,complaint
|
1188 |
+
1236,no complaint
|
1189 |
+
1237,no complaint
|
1190 |
+
1238,no complaint
|
1191 |
+
1239,no complaint
|
1192 |
+
1240,complaint
|
1193 |
+
1241,complaint
|
1194 |
+
1242,no complaint
|
1195 |
+
1243,no complaint
|
1196 |
+
1244,complaint
|
1197 |
+
1245,no complaint
|
1198 |
+
1246,complaint
|
1199 |
+
1247,no complaint
|
1200 |
+
1248,complaint
|
1201 |
+
1249,no complaint
|
1202 |
+
1250,complaint
|
1203 |
+
1251,no complaint
|
1204 |
+
1252,no complaint
|
1205 |
+
1253,no complaint
|
1206 |
+
1254,no complaint
|
1207 |
+
1255,no complaint
|
1208 |
+
1256,no complaint
|
1209 |
+
1257,complaint
|
1210 |
+
1258,complaint
|
1211 |
+
1259,complaint
|
1212 |
+
1260,no complaint
|
1213 |
+
1261,no complaint
|
1214 |
+
1262,no complaint
|
1215 |
+
1263,no complaint
|
1216 |
+
1264,complaint
|
1217 |
+
1265,no complaint
|
1218 |
+
1266,complaint
|
1219 |
+
1267,no complaint
|
1220 |
+
1268,complaint
|
1221 |
+
1269,no complaint
|
1222 |
+
1270,no complaint
|
1223 |
+
1271,complaint
|
1224 |
+
1272,complaint
|
1225 |
+
1273,no complaint
|
1226 |
+
1274,no complaint
|
1227 |
+
1275,complaint
|
1228 |
+
1276,no complaint
|
1229 |
+
1277,complaint
|
1230 |
+
1278,complaint
|
1231 |
+
1279,complaint
|
1232 |
+
1280,complaint
|
1233 |
+
1281,no complaint
|
1234 |
+
1282,complaint
|
1235 |
+
1283,no complaint
|
1236 |
+
1284,complaint
|
1237 |
+
1285,complaint
|
1238 |
+
1286,complaint
|
1239 |
+
1287,complaint
|
1240 |
+
1288,complaint
|
1241 |
+
1289,complaint
|
1242 |
+
1290,complaint
|
1243 |
+
1291,no complaint
|
1244 |
+
1292,complaint
|
1245 |
+
1293,no complaint
|
1246 |
+
1294,complaint
|
1247 |
+
1295,no complaint
|
1248 |
+
1296,complaint
|
1249 |
+
1297,complaint
|
1250 |
+
1298,no complaint
|
1251 |
+
1299,no complaint
|
1252 |
+
1300,no complaint
|
1253 |
+
1301,no complaint
|
1254 |
+
1302,no complaint
|
1255 |
+
1303,complaint
|
1256 |
+
1304,complaint
|
1257 |
+
1305,no complaint
|
1258 |
+
1306,no complaint
|
1259 |
+
1307,no complaint
|
1260 |
+
1308,no complaint
|
1261 |
+
1309,no complaint
|
1262 |
+
1310,no complaint
|
1263 |
+
1311,no complaint
|
1264 |
+
1312,complaint
|
1265 |
+
1313,no complaint
|
1266 |
+
1314,complaint
|
1267 |
+
1315,no complaint
|
1268 |
+
1316,complaint
|
1269 |
+
1317,complaint
|
1270 |
+
1318,no complaint
|
1271 |
+
1319,no complaint
|
1272 |
+
1320,no complaint
|
1273 |
+
1321,complaint
|
1274 |
+
1322,no complaint
|
1275 |
+
1323,no complaint
|
1276 |
+
1324,complaint
|
1277 |
+
1325,no complaint
|
1278 |
+
1326,complaint
|
1279 |
+
1327,no complaint
|
1280 |
+
1328,complaint
|
1281 |
+
1329,complaint
|
1282 |
+
1330,complaint
|
1283 |
+
1331,complaint
|
1284 |
+
1332,no complaint
|
1285 |
+
1333,no complaint
|
1286 |
+
1334,no complaint
|
1287 |
+
1335,complaint
|
1288 |
+
1336,no complaint
|
1289 |
+
1337,complaint
|
1290 |
+
1338,complaint
|
1291 |
+
1339,complaint
|
1292 |
+
1340,complaint
|
1293 |
+
1341,no complaint
|
1294 |
+
1342,complaint
|
1295 |
+
1343,complaint
|
1296 |
+
1344,complaint
|
1297 |
+
1345,complaint
|
1298 |
+
1346,no complaint
|
1299 |
+
1347,no complaint
|
1300 |
+
1348,complaint
|
1301 |
+
1349,complaint
|
1302 |
+
1350,complaint
|
1303 |
+
1351,complaint
|
1304 |
+
1352,no complaint
|
1305 |
+
1353,no complaint
|
1306 |
+
1354,no complaint
|
1307 |
+
1355,complaint
|
1308 |
+
1356,no complaint
|
1309 |
+
1357,no complaint
|
1310 |
+
1358,complaint
|
1311 |
+
1359,no complaint
|
1312 |
+
1360,no complaint
|
1313 |
+
1361,complaint
|
1314 |
+
1362,no complaint
|
1315 |
+
1363,complaint
|
1316 |
+
1364,no complaint
|
1317 |
+
1365,complaint
|
1318 |
+
1366,complaint
|
1319 |
+
1367,complaint
|
1320 |
+
1368,complaint
|
1321 |
+
1369,no complaint
|
1322 |
+
1370,no complaint
|
1323 |
+
1371,no complaint
|
1324 |
+
1372,no complaint
|
1325 |
+
1373,complaint
|
1326 |
+
1374,complaint
|
1327 |
+
1375,no complaint
|
1328 |
+
1376,complaint
|
1329 |
+
1377,no complaint
|
1330 |
+
1378,complaint
|
1331 |
+
1379,no complaint
|
1332 |
+
1380,no complaint
|
1333 |
+
1381,no complaint
|
1334 |
+
1382,no complaint
|
1335 |
+
1383,complaint
|
1336 |
+
1384,no complaint
|
1337 |
+
1385,no complaint
|
1338 |
+
1386,no complaint
|
1339 |
+
1387,no complaint
|
1340 |
+
1388,no complaint
|
1341 |
+
1389,complaint
|
1342 |
+
1390,no complaint
|
1343 |
+
1391,no complaint
|
1344 |
+
1392,complaint
|
1345 |
+
1393,complaint
|
1346 |
+
1394,complaint
|
1347 |
+
1395,no complaint
|
1348 |
+
1396,no complaint
|
1349 |
+
1397,no complaint
|
1350 |
+
1398,complaint
|
1351 |
+
1399,no complaint
|
1352 |
+
1400,complaint
|
1353 |
+
1401,no complaint
|
1354 |
+
1402,no complaint
|
1355 |
+
1403,no complaint
|
1356 |
+
1404,complaint
|
1357 |
+
1405,complaint
|
1358 |
+
1406,no complaint
|
1359 |
+
1407,complaint
|
1360 |
+
1408,complaint
|
1361 |
+
1409,no complaint
|
1362 |
+
1410,complaint
|
1363 |
+
1411,complaint
|
1364 |
+
1412,no complaint
|
1365 |
+
1413,complaint
|
1366 |
+
1414,complaint
|
1367 |
+
1415,no complaint
|
1368 |
+
1416,no complaint
|
1369 |
+
1417,no complaint
|
1370 |
+
1418,complaint
|
1371 |
+
1419,complaint
|
1372 |
+
1420,complaint
|
1373 |
+
1421,complaint
|
1374 |
+
1422,complaint
|
1375 |
+
1423,complaint
|
1376 |
+
1424,no complaint
|
1377 |
+
1425,complaint
|
1378 |
+
1426,complaint
|
1379 |
+
1427,complaint
|
1380 |
+
1428,no complaint
|
1381 |
+
1429,no complaint
|
1382 |
+
1430,complaint
|
1383 |
+
1431,complaint
|
1384 |
+
1432,no complaint
|
1385 |
+
1433,complaint
|
1386 |
+
1434,no complaint
|
1387 |
+
1435,complaint
|
1388 |
+
1436,no complaint
|
1389 |
+
1437,no complaint
|
1390 |
+
1438,no complaint
|
1391 |
+
1439,complaint
|
1392 |
+
1440,no complaint
|
1393 |
+
1441,complaint
|
1394 |
+
1442,no complaint
|
1395 |
+
1443,no complaint
|
1396 |
+
1444,complaint
|
1397 |
+
1445,complaint
|
1398 |
+
1446,no complaint
|
1399 |
+
1447,no complaint
|
1400 |
+
1448,no complaint
|
1401 |
+
1449,complaint
|
1402 |
+
1450,complaint
|
1403 |
+
1451,complaint
|
1404 |
+
1452,complaint
|
1405 |
+
1453,no complaint
|
1406 |
+
1454,complaint
|
1407 |
+
1455,complaint
|
1408 |
+
1456,no complaint
|
1409 |
+
1457,complaint
|
1410 |
+
1458,no complaint
|
1411 |
+
1459,no complaint
|
1412 |
+
1460,no complaint
|
1413 |
+
1461,no complaint
|
1414 |
+
1462,complaint
|
1415 |
+
1463,no complaint
|
1416 |
+
1464,complaint
|
1417 |
+
1465,no complaint
|
1418 |
+
1466,no complaint
|
1419 |
+
1467,complaint
|
1420 |
+
1468,complaint
|
1421 |
+
1469,complaint
|
1422 |
+
1470,complaint
|
1423 |
+
1471,no complaint
|
1424 |
+
1472,complaint
|
1425 |
+
1473,no complaint
|
1426 |
+
1474,no complaint
|
1427 |
+
1475,no complaint
|
1428 |
+
1476,complaint
|
1429 |
+
1477,complaint
|
1430 |
+
1478,no complaint
|
1431 |
+
1479,no complaint
|
1432 |
+
1480,complaint
|
1433 |
+
1481,complaint
|
1434 |
+
1482,no complaint
|
1435 |
+
1483,no complaint
|
1436 |
+
1484,no complaint
|
1437 |
+
1485,no complaint
|
1438 |
+
1486,complaint
|
1439 |
+
1487,complaint
|
1440 |
+
1488,no complaint
|
1441 |
+
1489,complaint
|
1442 |
+
1490,no complaint
|
1443 |
+
1491,no complaint
|
1444 |
+
1492,no complaint
|
1445 |
+
1493,no complaint
|
1446 |
+
1494,no complaint
|
1447 |
+
1495,no complaint
|
1448 |
+
1496,no complaint
|
1449 |
+
1497,complaint
|
1450 |
+
1498,complaint
|
1451 |
+
1499,complaint
|
1452 |
+
1500,complaint
|
1453 |
+
1501,no complaint
|
1454 |
+
1502,complaint
|
1455 |
+
1503,no complaint
|
1456 |
+
1504,no complaint
|
1457 |
+
1505,complaint
|
1458 |
+
1506,no complaint
|
1459 |
+
1507,complaint
|
1460 |
+
1508,no complaint
|
1461 |
+
1509,no complaint
|
1462 |
+
1510,complaint
|
1463 |
+
1511,no complaint
|
1464 |
+
1512,no complaint
|
1465 |
+
1513,complaint
|
1466 |
+
1514,complaint
|
1467 |
+
1515,no complaint
|
1468 |
+
1516,complaint
|
1469 |
+
1517,complaint
|
1470 |
+
1518,complaint
|
1471 |
+
1519,no complaint
|
1472 |
+
1520,no complaint
|
1473 |
+
1521,complaint
|
1474 |
+
1522,no complaint
|
1475 |
+
1523,complaint
|
1476 |
+
1524,no complaint
|
1477 |
+
1525,no complaint
|
1478 |
+
1526,no complaint
|
1479 |
+
1527,no complaint
|
1480 |
+
1528,no complaint
|
1481 |
+
1529,complaint
|
1482 |
+
1530,complaint
|
1483 |
+
1531,complaint
|
1484 |
+
1532,complaint
|
1485 |
+
1533,complaint
|
1486 |
+
1534,no complaint
|
1487 |
+
1535,complaint
|
1488 |
+
1536,complaint
|
1489 |
+
1537,no complaint
|
1490 |
+
1538,complaint
|
1491 |
+
1539,no complaint
|
1492 |
+
1540,no complaint
|
1493 |
+
1541,no complaint
|
1494 |
+
1542,complaint
|
1495 |
+
1543,complaint
|
1496 |
+
1544,complaint
|
1497 |
+
1545,complaint
|
1498 |
+
1546,complaint
|
1499 |
+
1547,complaint
|
1500 |
+
1548,complaint
|
1501 |
+
1549,no complaint
|
1502 |
+
1550,complaint
|
1503 |
+
1551,complaint
|
1504 |
+
1552,complaint
|
1505 |
+
1553,no complaint
|
1506 |
+
1554,complaint
|
1507 |
+
1555,complaint
|
1508 |
+
1556,no complaint
|
1509 |
+
1557,no complaint
|
1510 |
+
1558,no complaint
|
1511 |
+
1559,complaint
|
1512 |
+
1560,no complaint
|
1513 |
+
1561,no complaint
|
1514 |
+
1562,no complaint
|
1515 |
+
1563,complaint
|
1516 |
+
1564,no complaint
|
1517 |
+
1565,no complaint
|
1518 |
+
1566,no complaint
|
1519 |
+
1567,complaint
|
1520 |
+
1568,complaint
|
1521 |
+
1569,complaint
|
1522 |
+
1570,complaint
|
1523 |
+
1571,no complaint
|
1524 |
+
1572,complaint
|
1525 |
+
1573,complaint
|
1526 |
+
1574,complaint
|
1527 |
+
1575,complaint
|
1528 |
+
1576,complaint
|
1529 |
+
1577,complaint
|
1530 |
+
1578,no complaint
|
1531 |
+
1579,no complaint
|
1532 |
+
1580,no complaint
|
1533 |
+
1581,complaint
|
1534 |
+
1582,complaint
|
1535 |
+
1583,no complaint
|
1536 |
+
1584,complaint
|
1537 |
+
1585,no complaint
|
1538 |
+
1586,complaint
|
1539 |
+
1587,no complaint
|
1540 |
+
1588,no complaint
|
1541 |
+
1589,no complaint
|
1542 |
+
1590,complaint
|
1543 |
+
1591,complaint
|
1544 |
+
1592,no complaint
|
1545 |
+
1593,complaint
|
1546 |
+
1594,complaint
|
1547 |
+
1595,complaint
|
1548 |
+
1596,no complaint
|
1549 |
+
1597,complaint
|
1550 |
+
1598,complaint
|
1551 |
+
1599,complaint
|
1552 |
+
1600,complaint
|
1553 |
+
1601,complaint
|
1554 |
+
1602,no complaint
|
1555 |
+
1603,complaint
|
1556 |
+
1604,no complaint
|
1557 |
+
1605,no complaint
|
1558 |
+
1606,no complaint
|
1559 |
+
1607,no complaint
|
1560 |
+
1608,no complaint
|
1561 |
+
1609,complaint
|
1562 |
+
1610,no complaint
|
1563 |
+
1611,no complaint
|
1564 |
+
1612,complaint
|
1565 |
+
1613,no complaint
|
1566 |
+
1614,complaint
|
1567 |
+
1615,complaint
|
1568 |
+
1616,complaint
|
1569 |
+
1617,no complaint
|
1570 |
+
1618,no complaint
|
1571 |
+
1619,complaint
|
1572 |
+
1620,no complaint
|
1573 |
+
1621,no complaint
|
1574 |
+
1622,no complaint
|
1575 |
+
1623,complaint
|
1576 |
+
1624,no complaint
|
1577 |
+
1625,complaint
|
1578 |
+
1626,complaint
|
1579 |
+
1627,no complaint
|
1580 |
+
1628,complaint
|
1581 |
+
1629,no complaint
|
1582 |
+
1630,complaint
|
1583 |
+
1631,no complaint
|
1584 |
+
1632,complaint
|
1585 |
+
1633,complaint
|
1586 |
+
1634,complaint
|
1587 |
+
1635,no complaint
|
1588 |
+
1636,no complaint
|
1589 |
+
1637,no complaint
|
1590 |
+
1638,complaint
|
1591 |
+
1639,no complaint
|
1592 |
+
1640,no complaint
|
1593 |
+
1641,no complaint
|
1594 |
+
1642,no complaint
|
1595 |
+
1643,no complaint
|
1596 |
+
1644,complaint
|
1597 |
+
1645,complaint
|
1598 |
+
1646,complaint
|
1599 |
+
1647,complaint
|
1600 |
+
1648,no complaint
|
1601 |
+
1649,complaint
|
1602 |
+
1650,complaint
|
1603 |
+
1651,no complaint
|
1604 |
+
1652,complaint
|
1605 |
+
1653,no complaint
|
1606 |
+
1654,complaint
|
1607 |
+
1655,complaint
|
1608 |
+
1656,no complaint
|
1609 |
+
1657,complaint
|
1610 |
+
1658,complaint
|
1611 |
+
1659,complaint
|
1612 |
+
1660,complaint
|
1613 |
+
1661,no complaint
|
1614 |
+
1662,complaint
|
1615 |
+
1663,complaint
|
1616 |
+
1664,complaint
|
1617 |
+
1665,complaint
|
1618 |
+
1666,complaint
|
1619 |
+
1667,no complaint
|
1620 |
+
1668,no complaint
|
1621 |
+
1669,complaint
|
1622 |
+
1670,no complaint
|
1623 |
+
1671,no complaint
|
1624 |
+
1672,complaint
|
1625 |
+
1673,no complaint
|
1626 |
+
1674,complaint
|
1627 |
+
1675,complaint
|
1628 |
+
1676,no complaint
|
1629 |
+
1677,complaint
|
1630 |
+
1678,no complaint
|
1631 |
+
1679,complaint
|
1632 |
+
1680,no complaint
|
1633 |
+
1681,complaint
|
1634 |
+
1682,no complaint
|
1635 |
+
1683,no complaint
|
1636 |
+
1684,no complaint
|
1637 |
+
1685,complaint
|
1638 |
+
1686,complaint
|
1639 |
+
1687,complaint
|
1640 |
+
1688,no complaint
|
1641 |
+
1689,no complaint
|
1642 |
+
1690,no complaint
|
1643 |
+
1691,no complaint
|
1644 |
+
1692,complaint
|
1645 |
+
1693,complaint
|
1646 |
+
1694,no complaint
|
1647 |
+
1695,no complaint
|
1648 |
+
1696,no complaint
|
1649 |
+
1697,complaint
|
1650 |
+
1698,complaint
|
1651 |
+
1699,no complaint
|
1652 |
+
1700,no complaint
|
1653 |
+
1701,no complaint
|
1654 |
+
1702,no complaint
|
1655 |
+
1703,complaint
|
1656 |
+
1704,complaint
|
1657 |
+
1705,complaint
|
1658 |
+
1706,no complaint
|
1659 |
+
1707,complaint
|
1660 |
+
1708,no complaint
|
1661 |
+
1709,complaint
|
1662 |
+
1710,complaint
|
1663 |
+
1711,complaint
|
1664 |
+
1712,complaint
|
1665 |
+
1713,no complaint
|
1666 |
+
1714,no complaint
|
1667 |
+
1715,no complaint
|
1668 |
+
1716,complaint
|
1669 |
+
1717,no complaint
|
1670 |
+
1718,no complaint
|
1671 |
+
1719,complaint
|
1672 |
+
1720,no complaint
|
1673 |
+
1721,complaint
|
1674 |
+
1722,no complaint
|
1675 |
+
1723,complaint
|
1676 |
+
1724,complaint
|
1677 |
+
1725,no complaint
|
1678 |
+
1726,no complaint
|
1679 |
+
1727,complaint
|
1680 |
+
1728,complaint
|
1681 |
+
1729,complaint
|
1682 |
+
1730,no complaint
|
1683 |
+
1731,complaint
|
1684 |
+
1732,complaint
|
1685 |
+
1733,no complaint
|
1686 |
+
1734,no complaint
|
1687 |
+
1735,complaint
|
1688 |
+
1736,complaint
|
1689 |
+
1737,no complaint
|
1690 |
+
1738,no complaint
|
1691 |
+
1739,no complaint
|
1692 |
+
1740,no complaint
|
1693 |
+
1741,complaint
|
1694 |
+
1742,complaint
|
1695 |
+
1743,complaint
|
1696 |
+
1744,complaint
|
1697 |
+
1745,complaint
|
1698 |
+
1746,no complaint
|
1699 |
+
1747,no complaint
|
1700 |
+
1748,complaint
|
1701 |
+
1749,no complaint
|
1702 |
+
1750,no complaint
|
1703 |
+
1751,complaint
|
1704 |
+
1752,no complaint
|
1705 |
+
1753,complaint
|
1706 |
+
1754,no complaint
|
1707 |
+
1755,complaint
|
1708 |
+
1756,complaint
|
1709 |
+
1757,complaint
|
1710 |
+
1758,complaint
|
1711 |
+
1759,complaint
|
1712 |
+
1760,complaint
|
1713 |
+
1761,no complaint
|
1714 |
+
1762,complaint
|
1715 |
+
1763,no complaint
|
1716 |
+
1764,complaint
|
1717 |
+
1765,complaint
|
1718 |
+
1766,complaint
|
1719 |
+
1767,no complaint
|
1720 |
+
1768,complaint
|
1721 |
+
1769,complaint
|
1722 |
+
1770,complaint
|
1723 |
+
1771,complaint
|
1724 |
+
1772,complaint
|
1725 |
+
1773,complaint
|
1726 |
+
1774,no complaint
|
1727 |
+
1775,no complaint
|
1728 |
+
1776,complaint
|
1729 |
+
1777,no complaint
|
1730 |
+
1778,no complaint
|
1731 |
+
1779,no complaint
|
1732 |
+
1780,complaint
|
1733 |
+
1781,complaint
|
1734 |
+
1782,no complaint
|
1735 |
+
1783,no complaint
|
1736 |
+
1784,complaint
|
1737 |
+
1785,no complaint
|
1738 |
+
1786,no complaint
|
1739 |
+
1787,no complaint
|
1740 |
+
1788,complaint
|
1741 |
+
1789,no complaint
|
1742 |
+
1790,no complaint
|
1743 |
+
1791,no complaint
|
1744 |
+
1792,complaint
|
1745 |
+
1793,complaint
|
1746 |
+
1794,no complaint
|
1747 |
+
1795,complaint
|
1748 |
+
1796,complaint
|
1749 |
+
1797,no complaint
|
1750 |
+
1798,no complaint
|
1751 |
+
1799,complaint
|
1752 |
+
1800,no complaint
|
1753 |
+
1801,no complaint
|
1754 |
+
1802,complaint
|
1755 |
+
1803,no complaint
|
1756 |
+
1804,no complaint
|
1757 |
+
1805,no complaint
|
1758 |
+
1806,no complaint
|
1759 |
+
1807,complaint
|
1760 |
+
1808,complaint
|
1761 |
+
1809,complaint
|
1762 |
+
1810,no complaint
|
1763 |
+
1811,no complaint
|
1764 |
+
1812,complaint
|
1765 |
+
1813,complaint
|
1766 |
+
1814,no complaint
|
1767 |
+
1815,no complaint
|
1768 |
+
1816,no complaint
|
1769 |
+
1817,no complaint
|
1770 |
+
1818,no complaint
|
1771 |
+
1819,no complaint
|
1772 |
+
1820,no complaint
|
1773 |
+
1821,no complaint
|
1774 |
+
1822,no complaint
|
1775 |
+
1823,no complaint
|
1776 |
+
1824,complaint
|
1777 |
+
1825,no complaint
|
1778 |
+
1826,complaint
|
1779 |
+
1827,no complaint
|
1780 |
+
1828,complaint
|
1781 |
+
1829,complaint
|
1782 |
+
1830,no complaint
|
1783 |
+
1831,no complaint
|
1784 |
+
1832,complaint
|
1785 |
+
1833,no complaint
|
1786 |
+
1834,no complaint
|
1787 |
+
1835,no complaint
|
1788 |
+
1836,no complaint
|
1789 |
+
1837,complaint
|
1790 |
+
1838,complaint
|
1791 |
+
1839,complaint
|
1792 |
+
1840,no complaint
|
1793 |
+
1841,no complaint
|
1794 |
+
1842,no complaint
|
1795 |
+
1843,complaint
|
1796 |
+
1844,complaint
|
1797 |
+
1845,complaint
|
1798 |
+
1846,complaint
|
1799 |
+
1847,complaint
|
1800 |
+
1848,no complaint
|
1801 |
+
1849,complaint
|
1802 |
+
1850,complaint
|
1803 |
+
1851,no complaint
|
1804 |
+
1852,no complaint
|
1805 |
+
1853,complaint
|
1806 |
+
1854,complaint
|
1807 |
+
1855,complaint
|
1808 |
+
1856,no complaint
|
1809 |
+
1857,complaint
|
1810 |
+
1858,complaint
|
1811 |
+
1859,complaint
|
1812 |
+
1860,no complaint
|
1813 |
+
1861,complaint
|
1814 |
+
1862,complaint
|
1815 |
+
1863,no complaint
|
1816 |
+
1864,no complaint
|
1817 |
+
1865,no complaint
|
1818 |
+
1866,complaint
|
1819 |
+
1867,complaint
|
1820 |
+
1868,complaint
|
1821 |
+
1869,no complaint
|
1822 |
+
1870,no complaint
|
1823 |
+
1871,no complaint
|
1824 |
+
1872,no complaint
|
1825 |
+
1873,no complaint
|
1826 |
+
1874,complaint
|
1827 |
+
1875,no complaint
|
1828 |
+
1876,complaint
|
1829 |
+
1877,no complaint
|
1830 |
+
1878,complaint
|
1831 |
+
1879,no complaint
|
1832 |
+
1880,no complaint
|
1833 |
+
1881,complaint
|
1834 |
+
1882,complaint
|
1835 |
+
1883,no complaint
|
1836 |
+
1884,no complaint
|
1837 |
+
1885,no complaint
|
1838 |
+
1886,no complaint
|
1839 |
+
1887,no complaint
|
1840 |
+
1888,no complaint
|
1841 |
+
1889,complaint
|
1842 |
+
1890,complaint
|
1843 |
+
1891,no complaint
|
1844 |
+
1892,complaint
|
1845 |
+
1893,no complaint
|
1846 |
+
1894,no complaint
|
1847 |
+
1895,complaint
|
1848 |
+
1896,complaint
|
1849 |
+
1897,no complaint
|
1850 |
+
1898,no complaint
|
1851 |
+
1899,no complaint
|
1852 |
+
1900,complaint
|
1853 |
+
1901,complaint
|
1854 |
+
1902,complaint
|
1855 |
+
1903,complaint
|
1856 |
+
1904,no complaint
|
1857 |
+
1905,no complaint
|
1858 |
+
1906,complaint
|
1859 |
+
1907,complaint
|
1860 |
+
1908,no complaint
|
1861 |
+
1909,complaint
|
1862 |
+
1910,complaint
|
1863 |
+
1911,complaint
|
1864 |
+
1912,complaint
|
1865 |
+
1913,no complaint
|
1866 |
+
1914,complaint
|
1867 |
+
1915,no complaint
|
1868 |
+
1916,no complaint
|
1869 |
+
1917,no complaint
|
1870 |
+
1918,complaint
|
1871 |
+
1919,complaint
|
1872 |
+
1920,complaint
|
1873 |
+
1921,complaint
|
1874 |
+
1922,complaint
|
1875 |
+
1923,no complaint
|
1876 |
+
1924,no complaint
|
1877 |
+
1925,complaint
|
1878 |
+
1926,no complaint
|
1879 |
+
1927,complaint
|
1880 |
+
1928,complaint
|
1881 |
+
1929,no complaint
|
1882 |
+
1930,no complaint
|
1883 |
+
1931,complaint
|
1884 |
+
1932,complaint
|
1885 |
+
1933,complaint
|
1886 |
+
1934,complaint
|
1887 |
+
1935,complaint
|
1888 |
+
1936,complaint
|
1889 |
+
1937,no complaint
|
1890 |
+
1938,no complaint
|
1891 |
+
1939,no complaint
|
1892 |
+
1940,complaint
|
1893 |
+
1941,complaint
|
1894 |
+
1942,complaint
|
1895 |
+
1943,no complaint
|
1896 |
+
1944,no complaint
|
1897 |
+
1945,no complaint
|
1898 |
+
1946,complaint
|
1899 |
+
1947,no complaint
|
1900 |
+
1948,complaint
|
1901 |
+
1949,no complaint
|
1902 |
+
1950,complaint
|
1903 |
+
1951,complaint
|
1904 |
+
1952,complaint
|
1905 |
+
1953,complaint
|
1906 |
+
1954,complaint
|
1907 |
+
1955,complaint
|
1908 |
+
1956,complaint
|
1909 |
+
1957,complaint
|
1910 |
+
1958,complaint
|
1911 |
+
1959,no complaint
|
1912 |
+
1960,complaint
|
1913 |
+
1961,no complaint
|
1914 |
+
1962,complaint
|
1915 |
+
1963,complaint
|
1916 |
+
1964,no complaint
|
1917 |
+
1965,complaint
|
1918 |
+
1966,no complaint
|
1919 |
+
1967,no complaint
|
1920 |
+
1968,complaint
|
1921 |
+
1969,complaint
|
1922 |
+
1970,no complaint
|
1923 |
+
1971,complaint
|
1924 |
+
1972,no complaint
|
1925 |
+
1973,no complaint
|
1926 |
+
1974,complaint
|
1927 |
+
1975,complaint
|
1928 |
+
1976,no complaint
|
1929 |
+
1977,complaint
|
1930 |
+
1978,complaint
|
1931 |
+
1979,complaint
|
1932 |
+
1980,no complaint
|
1933 |
+
1981,complaint
|
1934 |
+
1982,complaint
|
1935 |
+
1983,no complaint
|
1936 |
+
1984,complaint
|
1937 |
+
1985,no complaint
|
1938 |
+
1986,complaint
|
1939 |
+
1987,complaint
|
1940 |
+
1988,no complaint
|
1941 |
+
1989,complaint
|
1942 |
+
1990,no complaint
|
1943 |
+
1991,complaint
|
1944 |
+
1992,no complaint
|
1945 |
+
1993,no complaint
|
1946 |
+
1994,no complaint
|
1947 |
+
1995,no complaint
|
1948 |
+
1996,complaint
|
1949 |
+
1997,no complaint
|
1950 |
+
1998,no complaint
|
1951 |
+
1999,no complaint
|
1952 |
+
2000,complaint
|
1953 |
+
2001,complaint
|
1954 |
+
2002,no complaint
|
1955 |
+
2003,complaint
|
1956 |
+
2004,complaint
|
1957 |
+
2005,complaint
|
1958 |
+
2006,complaint
|
1959 |
+
2007,complaint
|
1960 |
+
2008,complaint
|
1961 |
+
2009,complaint
|
1962 |
+
2010,complaint
|
1963 |
+
2011,complaint
|
1964 |
+
2012,complaint
|
1965 |
+
2013,no complaint
|
1966 |
+
2014,complaint
|
1967 |
+
2015,no complaint
|
1968 |
+
2016,no complaint
|
1969 |
+
2017,complaint
|
1970 |
+
2018,complaint
|
1971 |
+
2019,no complaint
|
1972 |
+
2020,no complaint
|
1973 |
+
2021,no complaint
|
1974 |
+
2022,no complaint
|
1975 |
+
2023,no complaint
|
1976 |
+
2024,no complaint
|
1977 |
+
2025,no complaint
|
1978 |
+
2026,complaint
|
1979 |
+
2027,complaint
|
1980 |
+
2028,complaint
|
1981 |
+
2029,no complaint
|
1982 |
+
2030,no complaint
|
1983 |
+
2031,complaint
|
1984 |
+
2032,complaint
|
1985 |
+
2033,no complaint
|
1986 |
+
2034,no complaint
|
1987 |
+
2035,no complaint
|
1988 |
+
2036,no complaint
|
1989 |
+
2037,no complaint
|
1990 |
+
2038,no complaint
|
1991 |
+
2039,no complaint
|
1992 |
+
2040,complaint
|
1993 |
+
2041,complaint
|
1994 |
+
2042,no complaint
|
1995 |
+
2043,no complaint
|
1996 |
+
2044,complaint
|
1997 |
+
2045,no complaint
|
1998 |
+
2046,complaint
|
1999 |
+
2047,complaint
|
2000 |
+
2048,complaint
|
2001 |
+
2049,complaint
|
2002 |
+
2050,complaint
|
2003 |
+
2051,complaint
|
2004 |
+
2052,no complaint
|
2005 |
+
2053,no complaint
|
2006 |
+
2054,no complaint
|
2007 |
+
2055,complaint
|
2008 |
+
2056,complaint
|
2009 |
+
2057,complaint
|
2010 |
+
2058,no complaint
|
2011 |
+
2059,complaint
|
2012 |
+
2060,complaint
|
2013 |
+
2061,complaint
|
2014 |
+
2062,no complaint
|
2015 |
+
2063,no complaint
|
2016 |
+
2064,complaint
|
2017 |
+
2065,complaint
|
2018 |
+
2066,no complaint
|
2019 |
+
2067,complaint
|
2020 |
+
2068,no complaint
|
2021 |
+
2069,complaint
|
2022 |
+
2070,complaint
|
2023 |
+
2071,no complaint
|
2024 |
+
2072,no complaint
|
2025 |
+
2073,complaint
|
2026 |
+
2074,complaint
|
2027 |
+
2075,no complaint
|
2028 |
+
2076,no complaint
|
2029 |
+
2077,complaint
|
2030 |
+
2078,complaint
|
2031 |
+
2079,complaint
|
2032 |
+
2080,complaint
|
2033 |
+
2081,no complaint
|
2034 |
+
2082,complaint
|
2035 |
+
2083,complaint
|
2036 |
+
2084,no complaint
|
2037 |
+
2085,complaint
|
2038 |
+
2086,complaint
|
2039 |
+
2087,no complaint
|
2040 |
+
2088,complaint
|
2041 |
+
2089,complaint
|
2042 |
+
2090,no complaint
|
2043 |
+
2091,complaint
|
2044 |
+
2092,complaint
|
2045 |
+
2093,complaint
|
2046 |
+
2094,no complaint
|
2047 |
+
2095,no complaint
|
2048 |
+
2096,complaint
|
2049 |
+
2097,complaint
|
2050 |
+
2098,complaint
|
2051 |
+
2099,no complaint
|
2052 |
+
2100,complaint
|
2053 |
+
2101,no complaint
|
2054 |
+
2102,complaint
|
2055 |
+
2103,no complaint
|
2056 |
+
2104,complaint
|
2057 |
+
2105,no complaint
|
2058 |
+
2106,complaint
|
2059 |
+
2107,no complaint
|
2060 |
+
2108,complaint
|
2061 |
+
2109,no complaint
|
2062 |
+
2110,no complaint
|
2063 |
+
2111,complaint
|
2064 |
+
2112,no complaint
|
2065 |
+
2113,complaint
|
2066 |
+
2114,complaint
|
2067 |
+
2115,complaint
|
2068 |
+
2116,complaint
|
2069 |
+
2117,complaint
|
2070 |
+
2118,no complaint
|
2071 |
+
2119,no complaint
|
2072 |
+
2120,no complaint
|
2073 |
+
2121,no complaint
|
2074 |
+
2122,no complaint
|
2075 |
+
2123,no complaint
|
2076 |
+
2124,no complaint
|
2077 |
+
2125,complaint
|
2078 |
+
2126,no complaint
|
2079 |
+
2127,no complaint
|
2080 |
+
2128,complaint
|
2081 |
+
2129,no complaint
|
2082 |
+
2130,no complaint
|
2083 |
+
2131,no complaint
|
2084 |
+
2132,no complaint
|
2085 |
+
2133,no complaint
|
2086 |
+
2134,no complaint
|
2087 |
+
2135,complaint
|
2088 |
+
2136,complaint
|
2089 |
+
2137,complaint
|
2090 |
+
2138,no complaint
|
2091 |
+
2139,no complaint
|
2092 |
+
2140,complaint
|
2093 |
+
2141,complaint
|
2094 |
+
2142,no complaint
|
2095 |
+
2143,no complaint
|
2096 |
+
2144,complaint
|
2097 |
+
2145,complaint
|
2098 |
+
2146,complaint
|
2099 |
+
2147,complaint
|
2100 |
+
2148,no complaint
|
2101 |
+
2149,complaint
|
2102 |
+
2150,no complaint
|
2103 |
+
2151,complaint
|
2104 |
+
2152,no complaint
|
2105 |
+
2153,complaint
|
2106 |
+
2154,no complaint
|
2107 |
+
2155,complaint
|
2108 |
+
2156,complaint
|
2109 |
+
2157,no complaint
|
2110 |
+
2158,complaint
|
2111 |
+
2159,complaint
|
2112 |
+
2160,no complaint
|
2113 |
+
2161,no complaint
|
2114 |
+
2162,complaint
|
2115 |
+
2163,complaint
|
2116 |
+
2164,no complaint
|
2117 |
+
2165,complaint
|
2118 |
+
2166,complaint
|
2119 |
+
2167,complaint
|
2120 |
+
2168,complaint
|
2121 |
+
2169,complaint
|
2122 |
+
2170,complaint
|
2123 |
+
2171,no complaint
|
2124 |
+
2172,complaint
|
2125 |
+
2173,no complaint
|
2126 |
+
2174,no complaint
|
2127 |
+
2175,complaint
|
2128 |
+
2176,no complaint
|
2129 |
+
2177,no complaint
|
2130 |
+
2178,no complaint
|
2131 |
+
2179,complaint
|
2132 |
+
2180,no complaint
|
2133 |
+
2181,no complaint
|
2134 |
+
2182,complaint
|
2135 |
+
2183,complaint
|
2136 |
+
2184,no complaint
|
2137 |
+
2185,no complaint
|
2138 |
+
2186,no complaint
|
2139 |
+
2187,complaint
|
2140 |
+
2188,no complaint
|
2141 |
+
2189,no complaint
|
2142 |
+
2190,complaint
|
2143 |
+
2191,no complaint
|
2144 |
+
2192,complaint
|
2145 |
+
2193,complaint
|
2146 |
+
2194,no complaint
|
2147 |
+
2195,no complaint
|
2148 |
+
2196,no complaint
|
2149 |
+
2197,complaint
|
2150 |
+
2198,no complaint
|
2151 |
+
2199,no complaint
|
2152 |
+
2200,complaint
|
2153 |
+
2201,complaint
|
2154 |
+
2202,complaint
|
2155 |
+
2203,no complaint
|
2156 |
+
2204,complaint
|
2157 |
+
2205,no complaint
|
2158 |
+
2206,no complaint
|
2159 |
+
2207,complaint
|
2160 |
+
2208,no complaint
|
2161 |
+
2209,complaint
|
2162 |
+
2210,complaint
|
2163 |
+
2211,no complaint
|
2164 |
+
2212,no complaint
|
2165 |
+
2213,complaint
|
2166 |
+
2214,no complaint
|
2167 |
+
2215,complaint
|
2168 |
+
2216,complaint
|
2169 |
+
2217,complaint
|
2170 |
+
2218,complaint
|
2171 |
+
2219,complaint
|
2172 |
+
2220,complaint
|
2173 |
+
2221,complaint
|
2174 |
+
2222,complaint
|
2175 |
+
2223,no complaint
|
2176 |
+
2224,complaint
|
2177 |
+
2225,no complaint
|
2178 |
+
2226,no complaint
|
2179 |
+
2227,no complaint
|
2180 |
+
2228,no complaint
|
2181 |
+
2229,no complaint
|
2182 |
+
2230,no complaint
|
2183 |
+
2231,complaint
|
2184 |
+
2232,no complaint
|
2185 |
+
2233,no complaint
|
2186 |
+
2234,no complaint
|
2187 |
+
2235,complaint
|
2188 |
+
2236,no complaint
|
2189 |
+
2237,no complaint
|
2190 |
+
2238,no complaint
|
2191 |
+
2239,complaint
|
2192 |
+
2240,no complaint
|
2193 |
+
2241,no complaint
|
2194 |
+
2242,no complaint
|
2195 |
+
2243,no complaint
|
2196 |
+
2244,no complaint
|
2197 |
+
2245,complaint
|
2198 |
+
2246,complaint
|
2199 |
+
2247,complaint
|
2200 |
+
2248,complaint
|
2201 |
+
2249,complaint
|
2202 |
+
2250,no complaint
|
2203 |
+
2251,no complaint
|
2204 |
+
2252,no complaint
|
2205 |
+
2253,complaint
|
2206 |
+
2254,complaint
|
2207 |
+
2255,no complaint
|
2208 |
+
2256,complaint
|
2209 |
+
2257,no complaint
|
2210 |
+
2258,no complaint
|
2211 |
+
2259,complaint
|
2212 |
+
2260,complaint
|
2213 |
+
2261,no complaint
|
2214 |
+
2262,complaint
|
2215 |
+
2263,no complaint
|
2216 |
+
2264,complaint
|
2217 |
+
2265,complaint
|
2218 |
+
2266,complaint
|
2219 |
+
2267,no complaint
|
2220 |
+
2268,complaint
|
2221 |
+
2269,no complaint
|
2222 |
+
2270,no complaint
|
2223 |
+
2271,no complaint
|
2224 |
+
2272,complaint
|
2225 |
+
2273,complaint
|
2226 |
+
2274,no complaint
|
2227 |
+
2275,no complaint
|
2228 |
+
2276,complaint
|
2229 |
+
2277,no complaint
|
2230 |
+
2278,complaint
|
2231 |
+
2279,complaint
|
2232 |
+
2280,complaint
|
2233 |
+
2281,no complaint
|
2234 |
+
2282,complaint
|
2235 |
+
2283,no complaint
|
2236 |
+
2284,no complaint
|
2237 |
+
2285,no complaint
|
2238 |
+
2286,no complaint
|
2239 |
+
2287,complaint
|
2240 |
+
2288,no complaint
|
2241 |
+
2289,no complaint
|
2242 |
+
2290,no complaint
|
2243 |
+
2291,complaint
|
2244 |
+
2292,no complaint
|
2245 |
+
2293,no complaint
|
2246 |
+
2294,no complaint
|
2247 |
+
2295,complaint
|
2248 |
+
2296,no complaint
|
2249 |
+
2297,complaint
|
2250 |
+
2298,no complaint
|
2251 |
+
2299,complaint
|
2252 |
+
2300,complaint
|
2253 |
+
2301,no complaint
|
2254 |
+
2302,no complaint
|
2255 |
+
2303,no complaint
|
2256 |
+
2304,no complaint
|
2257 |
+
2305,no complaint
|
2258 |
+
2306,no complaint
|
2259 |
+
2307,no complaint
|
2260 |
+
2308,no complaint
|
2261 |
+
2309,complaint
|
2262 |
+
2310,no complaint
|
2263 |
+
2311,no complaint
|
2264 |
+
2312,complaint
|
2265 |
+
2313,no complaint
|
2266 |
+
2314,no complaint
|
2267 |
+
2315,no complaint
|
2268 |
+
2316,complaint
|
2269 |
+
2317,complaint
|
2270 |
+
2318,complaint
|
2271 |
+
2319,no complaint
|
2272 |
+
2320,complaint
|
2273 |
+
2321,no complaint
|
2274 |
+
2322,complaint
|
2275 |
+
2323,no complaint
|
2276 |
+
2324,complaint
|
2277 |
+
2325,complaint
|
2278 |
+
2326,complaint
|
2279 |
+
2327,complaint
|
2280 |
+
2328,no complaint
|
2281 |
+
2329,complaint
|
2282 |
+
2330,complaint
|
2283 |
+
2331,complaint
|
2284 |
+
2332,complaint
|
2285 |
+
2333,no complaint
|
2286 |
+
2334,no complaint
|
2287 |
+
2335,complaint
|
2288 |
+
2336,complaint
|
2289 |
+
2337,no complaint
|
2290 |
+
2338,complaint
|
2291 |
+
2339,no complaint
|
2292 |
+
2340,no complaint
|
2293 |
+
2341,no complaint
|
2294 |
+
2342,no complaint
|
2295 |
+
2343,complaint
|
2296 |
+
2344,no complaint
|
2297 |
+
2345,complaint
|
2298 |
+
2346,no complaint
|
2299 |
+
2347,no complaint
|
2300 |
+
2348,no complaint
|
2301 |
+
2349,no complaint
|
2302 |
+
2350,no complaint
|
2303 |
+
2351,no complaint
|
2304 |
+
2352,complaint
|
2305 |
+
2353,complaint
|
2306 |
+
2354,no complaint
|
2307 |
+
2355,no complaint
|
2308 |
+
2356,complaint
|
2309 |
+
2357,no complaint
|
2310 |
+
2358,complaint
|
2311 |
+
2359,no complaint
|
2312 |
+
2360,complaint
|
2313 |
+
2361,complaint
|
2314 |
+
2362,complaint
|
2315 |
+
2363,complaint
|
2316 |
+
2364,no complaint
|
2317 |
+
2365,no complaint
|
2318 |
+
2366,complaint
|
2319 |
+
2367,no complaint
|
2320 |
+
2368,no complaint
|
2321 |
+
2369,complaint
|
2322 |
+
2370,no complaint
|
2323 |
+
2371,no complaint
|
2324 |
+
2372,complaint
|
2325 |
+
2373,no complaint
|
2326 |
+
2374,complaint
|
2327 |
+
2375,complaint
|
2328 |
+
2376,complaint
|
2329 |
+
2377,complaint
|
2330 |
+
2378,no complaint
|
2331 |
+
2379,complaint
|
2332 |
+
2380,complaint
|
2333 |
+
2381,complaint
|
2334 |
+
2382,no complaint
|
2335 |
+
2383,no complaint
|
2336 |
+
2384,no complaint
|
2337 |
+
2385,complaint
|
2338 |
+
2386,no complaint
|
2339 |
+
2387,no complaint
|
2340 |
+
2388,no complaint
|
2341 |
+
2389,complaint
|
2342 |
+
2390,no complaint
|
2343 |
+
2391,no complaint
|
2344 |
+
2392,complaint
|
2345 |
+
2393,complaint
|
2346 |
+
2394,no complaint
|
2347 |
+
2395,no complaint
|
2348 |
+
2396,no complaint
|
2349 |
+
2397,no complaint
|
2350 |
+
2398,complaint
|
2351 |
+
2399,complaint
|
2352 |
+
2400,no complaint
|
2353 |
+
2401,complaint
|
2354 |
+
2402,no complaint
|
2355 |
+
2403,complaint
|
2356 |
+
2404,complaint
|
2357 |
+
2405,no complaint
|
2358 |
+
2406,no complaint
|
2359 |
+
2407,no complaint
|
2360 |
+
2408,no complaint
|
2361 |
+
2409,no complaint
|
2362 |
+
2410,no complaint
|
2363 |
+
2411,complaint
|
2364 |
+
2412,complaint
|
2365 |
+
2413,no complaint
|
2366 |
+
2414,no complaint
|
2367 |
+
2415,no complaint
|
2368 |
+
2416,complaint
|
2369 |
+
2417,complaint
|
2370 |
+
2418,no complaint
|
2371 |
+
2419,no complaint
|
2372 |
+
2420,no complaint
|
2373 |
+
2421,complaint
|
2374 |
+
2422,no complaint
|
2375 |
+
2423,no complaint
|
2376 |
+
2424,no complaint
|
2377 |
+
2425,complaint
|
2378 |
+
2426,complaint
|
2379 |
+
2427,complaint
|
2380 |
+
2428,no complaint
|
2381 |
+
2429,no complaint
|
2382 |
+
2430,no complaint
|
2383 |
+
2431,complaint
|
2384 |
+
2432,complaint
|
2385 |
+
2433,no complaint
|
2386 |
+
2434,no complaint
|
2387 |
+
2435,complaint
|
2388 |
+
2436,complaint
|
2389 |
+
2437,complaint
|
2390 |
+
2438,complaint
|
2391 |
+
2439,complaint
|
2392 |
+
2440,no complaint
|
2393 |
+
2441,complaint
|
2394 |
+
2442,no complaint
|
2395 |
+
2443,complaint
|
2396 |
+
2444,complaint
|
2397 |
+
2445,no complaint
|
2398 |
+
2446,complaint
|
2399 |
+
2447,complaint
|
2400 |
+
2448,complaint
|
2401 |
+
2449,complaint
|
2402 |
+
2450,no complaint
|
2403 |
+
2451,no complaint
|
2404 |
+
2452,no complaint
|
2405 |
+
2453,no complaint
|
2406 |
+
2454,no complaint
|
2407 |
+
2455,no complaint
|
2408 |
+
2456,complaint
|
2409 |
+
2457,no complaint
|
2410 |
+
2458,no complaint
|
2411 |
+
2459,complaint
|
2412 |
+
2460,no complaint
|
2413 |
+
2461,no complaint
|
2414 |
+
2462,complaint
|
2415 |
+
2463,no complaint
|
2416 |
+
2464,no complaint
|
2417 |
+
2465,complaint
|
2418 |
+
2466,no complaint
|
2419 |
+
2467,complaint
|
2420 |
+
2468,complaint
|
2421 |
+
2469,no complaint
|
2422 |
+
2470,no complaint
|
2423 |
+
2471,no complaint
|
2424 |
+
2472,no complaint
|
2425 |
+
2473,no complaint
|
2426 |
+
2474,complaint
|
2427 |
+
2475,no complaint
|
2428 |
+
2476,no complaint
|
2429 |
+
2477,complaint
|
2430 |
+
2478,complaint
|
2431 |
+
2479,complaint
|
2432 |
+
2480,no complaint
|
2433 |
+
2481,no complaint
|
2434 |
+
2482,complaint
|
2435 |
+
2483,complaint
|
2436 |
+
2484,complaint
|
2437 |
+
2485,no complaint
|
2438 |
+
2486,complaint
|
2439 |
+
2487,complaint
|
2440 |
+
2488,complaint
|
2441 |
+
2489,no complaint
|
2442 |
+
2490,no complaint
|
2443 |
+
2491,no complaint
|
2444 |
+
2492,complaint
|
2445 |
+
2493,complaint
|
2446 |
+
2494,complaint
|
2447 |
+
2495,complaint
|
2448 |
+
2496,no complaint
|
2449 |
+
2497,no complaint
|
2450 |
+
2498,complaint
|
2451 |
+
2499,no complaint
|
2452 |
+
2500,complaint
|
2453 |
+
2501,complaint
|
2454 |
+
2502,no complaint
|
2455 |
+
2503,no complaint
|
2456 |
+
2504,complaint
|
2457 |
+
2505,complaint
|
2458 |
+
2506,no complaint
|
2459 |
+
2507,no complaint
|
2460 |
+
2508,no complaint
|
2461 |
+
2509,no complaint
|
2462 |
+
2510,no complaint
|
2463 |
+
2511,no complaint
|
2464 |
+
2512,complaint
|
2465 |
+
2513,complaint
|
2466 |
+
2514,no complaint
|
2467 |
+
2515,complaint
|
2468 |
+
2516,complaint
|
2469 |
+
2517,complaint
|
2470 |
+
2518,complaint
|
2471 |
+
2519,complaint
|
2472 |
+
2520,no complaint
|
2473 |
+
2521,no complaint
|
2474 |
+
2522,complaint
|
2475 |
+
2523,complaint
|
2476 |
+
2524,complaint
|
2477 |
+
2525,no complaint
|
2478 |
+
2526,complaint
|
2479 |
+
2527,no complaint
|
2480 |
+
2528,no complaint
|
2481 |
+
2529,complaint
|
2482 |
+
2530,complaint
|
2483 |
+
2531,complaint
|
2484 |
+
2532,complaint
|
2485 |
+
2533,no complaint
|
2486 |
+
2534,complaint
|
2487 |
+
2535,no complaint
|
2488 |
+
2536,no complaint
|
2489 |
+
2537,complaint
|
2490 |
+
2538,complaint
|
2491 |
+
2539,no complaint
|
2492 |
+
2540,no complaint
|
2493 |
+
2541,no complaint
|
2494 |
+
2542,no complaint
|
2495 |
+
2543,no complaint
|
2496 |
+
2544,complaint
|
2497 |
+
2545,complaint
|
2498 |
+
2546,complaint
|
2499 |
+
2547,no complaint
|
2500 |
+
2548,complaint
|
2501 |
+
2549,no complaint
|
2502 |
+
2550,complaint
|
2503 |
+
2551,complaint
|
2504 |
+
2552,no complaint
|
2505 |
+
2553,no complaint
|
2506 |
+
2554,complaint
|
2507 |
+
2555,no complaint
|
2508 |
+
2556,no complaint
|
2509 |
+
2557,no complaint
|
2510 |
+
2558,no complaint
|
2511 |
+
2559,no complaint
|
2512 |
+
2560,no complaint
|
2513 |
+
2561,complaint
|
2514 |
+
2562,complaint
|
2515 |
+
2563,complaint
|
2516 |
+
2564,no complaint
|
2517 |
+
2565,complaint
|
2518 |
+
2566,no complaint
|
2519 |
+
2567,no complaint
|
2520 |
+
2568,complaint
|
2521 |
+
2569,complaint
|
2522 |
+
2570,complaint
|
2523 |
+
2571,no complaint
|
2524 |
+
2572,complaint
|
2525 |
+
2573,complaint
|
2526 |
+
2574,no complaint
|
2527 |
+
2575,complaint
|
2528 |
+
2576,complaint
|
2529 |
+
2577,no complaint
|
2530 |
+
2578,complaint
|
2531 |
+
2579,complaint
|
2532 |
+
2580,complaint
|
2533 |
+
2581,complaint
|
2534 |
+
2582,no complaint
|
2535 |
+
2583,complaint
|
2536 |
+
2584,no complaint
|
2537 |
+
2585,complaint
|
2538 |
+
2586,complaint
|
2539 |
+
2587,no complaint
|
2540 |
+
2588,no complaint
|
2541 |
+
2589,complaint
|
2542 |
+
2590,complaint
|
2543 |
+
2591,no complaint
|
2544 |
+
2592,complaint
|
2545 |
+
2593,complaint
|
2546 |
+
2594,complaint
|
2547 |
+
2595,no complaint
|
2548 |
+
2596,complaint
|
2549 |
+
2597,no complaint
|
2550 |
+
2598,complaint
|
2551 |
+
2599,complaint
|
2552 |
+
2600,no complaint
|
2553 |
+
2601,no complaint
|
2554 |
+
2602,no complaint
|
2555 |
+
2603,complaint
|
2556 |
+
2604,no complaint
|
2557 |
+
2605,no complaint
|
2558 |
+
2606,no complaint
|
2559 |
+
2607,no complaint
|
2560 |
+
2608,complaint
|
2561 |
+
2609,no complaint
|
2562 |
+
2610,no complaint
|
2563 |
+
2611,complaint
|
2564 |
+
2612,complaint
|
2565 |
+
2613,complaint
|
2566 |
+
2614,complaint
|
2567 |
+
2615,complaint
|
2568 |
+
2616,complaint
|
2569 |
+
2617,no complaint
|
2570 |
+
2618,complaint
|
2571 |
+
2619,no complaint
|
2572 |
+
2620,no complaint
|
2573 |
+
2621,no complaint
|
2574 |
+
2622,no complaint
|
2575 |
+
2623,complaint
|
2576 |
+
2624,complaint
|
2577 |
+
2625,no complaint
|
2578 |
+
2626,complaint
|
2579 |
+
2627,complaint
|
2580 |
+
2628,no complaint
|
2581 |
+
2629,no complaint
|
2582 |
+
2630,complaint
|
2583 |
+
2631,no complaint
|
2584 |
+
2632,no complaint
|
2585 |
+
2633,no complaint
|
2586 |
+
2634,no complaint
|
2587 |
+
2635,complaint
|
2588 |
+
2636,no complaint
|
2589 |
+
2637,complaint
|
2590 |
+
2638,complaint
|
2591 |
+
2639,no complaint
|
2592 |
+
2640,complaint
|
2593 |
+
2641,no complaint
|
2594 |
+
2642,no complaint
|
2595 |
+
2643,no complaint
|
2596 |
+
2644,no complaint
|
2597 |
+
2645,complaint
|
2598 |
+
2646,complaint
|
2599 |
+
2647,complaint
|
2600 |
+
2648,no complaint
|
2601 |
+
2649,complaint
|
2602 |
+
2650,complaint
|
2603 |
+
2651,no complaint
|
2604 |
+
2652,no complaint
|
2605 |
+
2653,complaint
|
2606 |
+
2654,no complaint
|
2607 |
+
2655,complaint
|
2608 |
+
2656,no complaint
|
2609 |
+
2657,no complaint
|
2610 |
+
2658,no complaint
|
2611 |
+
2659,complaint
|
2612 |
+
2660,no complaint
|
2613 |
+
2661,no complaint
|
2614 |
+
2662,no complaint
|
2615 |
+
2663,complaint
|
2616 |
+
2664,no complaint
|
2617 |
+
2665,complaint
|
2618 |
+
2666,complaint
|
2619 |
+
2667,complaint
|
2620 |
+
2668,no complaint
|
2621 |
+
2669,complaint
|
2622 |
+
2670,complaint
|
2623 |
+
2671,complaint
|
2624 |
+
2672,no complaint
|
2625 |
+
2673,complaint
|
2626 |
+
2674,complaint
|
2627 |
+
2675,complaint
|
2628 |
+
2676,complaint
|
2629 |
+
2677,no complaint
|
2630 |
+
2678,no complaint
|
2631 |
+
2679,complaint
|
2632 |
+
2680,complaint
|
2633 |
+
2681,no complaint
|
2634 |
+
2682,complaint
|
2635 |
+
2683,no complaint
|
2636 |
+
2684,no complaint
|
2637 |
+
2685,complaint
|
2638 |
+
2686,no complaint
|
2639 |
+
2687,no complaint
|
2640 |
+
2688,no complaint
|
2641 |
+
2689,no complaint
|
2642 |
+
2690,complaint
|
2643 |
+
2691,complaint
|
2644 |
+
2692,no complaint
|
2645 |
+
2693,no complaint
|
2646 |
+
2694,complaint
|
2647 |
+
2695,complaint
|
2648 |
+
2696,complaint
|
2649 |
+
2697,complaint
|
2650 |
+
2698,no complaint
|
2651 |
+
2699,complaint
|
2652 |
+
2700,complaint
|
2653 |
+
2701,complaint
|
2654 |
+
2702,complaint
|
2655 |
+
2703,no complaint
|
2656 |
+
2704,complaint
|
2657 |
+
2705,complaint
|
2658 |
+
2706,complaint
|
2659 |
+
2707,no complaint
|
2660 |
+
2708,complaint
|
2661 |
+
2709,complaint
|
2662 |
+
2710,complaint
|
2663 |
+
2711,complaint
|
2664 |
+
2712,no complaint
|
2665 |
+
2713,complaint
|
2666 |
+
2714,no complaint
|
2667 |
+
2715,complaint
|
2668 |
+
2716,no complaint
|
2669 |
+
2717,complaint
|
2670 |
+
2718,complaint
|
2671 |
+
2719,complaint
|
2672 |
+
2720,complaint
|
2673 |
+
2721,complaint
|
2674 |
+
2722,no complaint
|
2675 |
+
2723,complaint
|
2676 |
+
2724,no complaint
|
2677 |
+
2725,no complaint
|
2678 |
+
2726,complaint
|
2679 |
+
2727,complaint
|
2680 |
+
2728,no complaint
|
2681 |
+
2729,no complaint
|
2682 |
+
2730,no complaint
|
2683 |
+
2731,complaint
|
2684 |
+
2732,complaint
|
2685 |
+
2733,complaint
|
2686 |
+
2734,complaint
|
2687 |
+
2735,complaint
|
2688 |
+
2736,no complaint
|
2689 |
+
2737,complaint
|
2690 |
+
2738,no complaint
|
2691 |
+
2739,complaint
|
2692 |
+
2740,no complaint
|
2693 |
+
2741,no complaint
|
2694 |
+
2742,complaint
|
2695 |
+
2743,complaint
|
2696 |
+
2744,complaint
|
2697 |
+
2745,complaint
|
2698 |
+
2746,complaint
|
2699 |
+
2747,complaint
|
2700 |
+
2748,no complaint
|
2701 |
+
2749,no complaint
|
2702 |
+
2750,complaint
|
2703 |
+
2751,complaint
|
2704 |
+
2752,complaint
|
2705 |
+
2753,complaint
|
2706 |
+
2754,complaint
|
2707 |
+
2755,complaint
|
2708 |
+
2756,no complaint
|
2709 |
+
2757,no complaint
|
2710 |
+
2758,complaint
|
2711 |
+
2759,complaint
|
2712 |
+
2760,complaint
|
2713 |
+
2761,no complaint
|
2714 |
+
2762,complaint
|
2715 |
+
2763,no complaint
|
2716 |
+
2764,no complaint
|
2717 |
+
2765,no complaint
|
2718 |
+
2766,no complaint
|
2719 |
+
2767,complaint
|
2720 |
+
2768,complaint
|
2721 |
+
2769,no complaint
|
2722 |
+
2770,no complaint
|
2723 |
+
2771,no complaint
|
2724 |
+
2772,no complaint
|
2725 |
+
2773,complaint
|
2726 |
+
2774,no complaint
|
2727 |
+
2775,complaint
|
2728 |
+
2776,complaint
|
2729 |
+
2777,complaint
|
2730 |
+
2778,no complaint
|
2731 |
+
2779,no complaint
|
2732 |
+
2780,no complaint
|
2733 |
+
2781,no complaint
|
2734 |
+
2782,complaint
|
2735 |
+
2783,complaint
|
2736 |
+
2784,no complaint
|
2737 |
+
2785,no complaint
|
2738 |
+
2786,no complaint
|
2739 |
+
2787,complaint
|
2740 |
+
2788,no complaint
|
2741 |
+
2789,no complaint
|
2742 |
+
2790,no complaint
|
2743 |
+
2791,no complaint
|
2744 |
+
2792,no complaint
|
2745 |
+
2793,complaint
|
2746 |
+
2794,complaint
|
2747 |
+
2795,no complaint
|
2748 |
+
2796,complaint
|
2749 |
+
2797,complaint
|
2750 |
+
2798,no complaint
|
2751 |
+
2799,complaint
|
2752 |
+
2800,complaint
|
2753 |
+
2801,complaint
|
2754 |
+
2802,no complaint
|
2755 |
+
2803,complaint
|
2756 |
+
2804,complaint
|
2757 |
+
2805,complaint
|
2758 |
+
2806,no complaint
|
2759 |
+
2807,no complaint
|
2760 |
+
2808,complaint
|
2761 |
+
2809,complaint
|
2762 |
+
2810,complaint
|
2763 |
+
2811,no complaint
|
2764 |
+
2812,complaint
|
2765 |
+
2813,complaint
|
2766 |
+
2814,no complaint
|
2767 |
+
2815,complaint
|
2768 |
+
2816,complaint
|
2769 |
+
2817,no complaint
|
2770 |
+
2818,complaint
|
2771 |
+
2819,no complaint
|
2772 |
+
2820,complaint
|
2773 |
+
2821,complaint
|
2774 |
+
2822,complaint
|
2775 |
+
2823,no complaint
|
2776 |
+
2824,complaint
|
2777 |
+
2825,no complaint
|
2778 |
+
2826,no complaint
|
2779 |
+
2827,complaint
|
2780 |
+
2828,complaint
|
2781 |
+
2829,no complaint
|
2782 |
+
2830,complaint
|
2783 |
+
2831,complaint
|
2784 |
+
2832,complaint
|
2785 |
+
2833,complaint
|
2786 |
+
2834,no complaint
|
2787 |
+
2835,complaint
|
2788 |
+
2836,no complaint
|
2789 |
+
2837,complaint
|
2790 |
+
2838,complaint
|
2791 |
+
2839,no complaint
|
2792 |
+
2840,no complaint
|
2793 |
+
2841,no complaint
|
2794 |
+
2842,no complaint
|
2795 |
+
2843,complaint
|
2796 |
+
2844,complaint
|
2797 |
+
2845,complaint
|
2798 |
+
2846,complaint
|
2799 |
+
2847,complaint
|
2800 |
+
2848,complaint
|
2801 |
+
2849,no complaint
|
2802 |
+
2850,no complaint
|
2803 |
+
2851,complaint
|
2804 |
+
2852,no complaint
|
2805 |
+
2853,complaint
|
2806 |
+
2854,complaint
|
2807 |
+
2855,complaint
|
2808 |
+
2856,no complaint
|
2809 |
+
2857,complaint
|
2810 |
+
2858,no complaint
|
2811 |
+
2859,complaint
|
2812 |
+
2860,complaint
|
2813 |
+
2861,complaint
|
2814 |
+
2862,no complaint
|
2815 |
+
2863,complaint
|
2816 |
+
2864,complaint
|
2817 |
+
2865,no complaint
|
2818 |
+
2866,no complaint
|
2819 |
+
2867,complaint
|
2820 |
+
2868,complaint
|
2821 |
+
2869,complaint
|
2822 |
+
2870,no complaint
|
2823 |
+
2871,no complaint
|
2824 |
+
2872,complaint
|
2825 |
+
2873,no complaint
|
2826 |
+
2874,complaint
|
2827 |
+
2875,complaint
|
2828 |
+
2876,complaint
|
2829 |
+
2877,no complaint
|
2830 |
+
2878,complaint
|
2831 |
+
2879,no complaint
|
2832 |
+
2880,no complaint
|
2833 |
+
2881,no complaint
|
2834 |
+
2882,no complaint
|
2835 |
+
2883,complaint
|
2836 |
+
2884,no complaint
|
2837 |
+
2885,complaint
|
2838 |
+
2886,complaint
|
2839 |
+
2887,no complaint
|
2840 |
+
2888,no complaint
|
2841 |
+
2889,complaint
|
2842 |
+
2890,complaint
|
2843 |
+
2891,complaint
|
2844 |
+
2892,no complaint
|
2845 |
+
2893,no complaint
|
2846 |
+
2894,no complaint
|
2847 |
+
2895,no complaint
|
2848 |
+
2896,no complaint
|
2849 |
+
2897,complaint
|
2850 |
+
2898,no complaint
|
2851 |
+
2899,no complaint
|
2852 |
+
2900,complaint
|
2853 |
+
2901,complaint
|
2854 |
+
2902,no complaint
|
2855 |
+
2903,complaint
|
2856 |
+
2904,complaint
|
2857 |
+
2905,no complaint
|
2858 |
+
2906,complaint
|
2859 |
+
2907,complaint
|
2860 |
+
2908,complaint
|
2861 |
+
2909,complaint
|
2862 |
+
2910,complaint
|
2863 |
+
2911,complaint
|
2864 |
+
2912,complaint
|
2865 |
+
2913,no complaint
|
2866 |
+
2914,no complaint
|
2867 |
+
2915,complaint
|
2868 |
+
2916,complaint
|
2869 |
+
2917,complaint
|
2870 |
+
2918,no complaint
|
2871 |
+
2919,complaint
|
2872 |
+
2920,complaint
|
2873 |
+
2921,complaint
|
2874 |
+
2922,complaint
|
2875 |
+
2923,no complaint
|
2876 |
+
2924,no complaint
|
2877 |
+
2925,complaint
|
2878 |
+
2926,complaint
|
2879 |
+
2927,complaint
|
2880 |
+
2928,no complaint
|
2881 |
+
2929,complaint
|
2882 |
+
2930,complaint
|
2883 |
+
2931,complaint
|
2884 |
+
2932,no complaint
|
2885 |
+
2933,complaint
|
2886 |
+
2934,no complaint
|
2887 |
+
2935,no complaint
|
2888 |
+
2936,complaint
|
2889 |
+
2937,no complaint
|
2890 |
+
2938,complaint
|
2891 |
+
2939,no complaint
|
2892 |
+
2940,complaint
|
2893 |
+
2941,no complaint
|
2894 |
+
2942,complaint
|
2895 |
+
2943,complaint
|
2896 |
+
2944,complaint
|
2897 |
+
2945,complaint
|
2898 |
+
2946,no complaint
|
2899 |
+
2947,no complaint
|
2900 |
+
2948,complaint
|
2901 |
+
2949,complaint
|
2902 |
+
2950,no complaint
|
2903 |
+
2951,no complaint
|
2904 |
+
2952,complaint
|
2905 |
+
2953,no complaint
|
2906 |
+
2954,complaint
|
2907 |
+
2955,complaint
|
2908 |
+
2956,complaint
|
2909 |
+
2957,complaint
|
2910 |
+
2958,no complaint
|
2911 |
+
2959,no complaint
|
2912 |
+
2960,complaint
|
2913 |
+
2961,complaint
|
2914 |
+
2962,no complaint
|
2915 |
+
2963,complaint
|
2916 |
+
2964,no complaint
|
2917 |
+
2965,complaint
|
2918 |
+
2966,complaint
|
2919 |
+
2967,complaint
|
2920 |
+
2968,complaint
|
2921 |
+
2969,no complaint
|
2922 |
+
2970,complaint
|
2923 |
+
2971,complaint
|
2924 |
+
2972,no complaint
|
2925 |
+
2973,complaint
|
2926 |
+
2974,no complaint
|
2927 |
+
2975,no complaint
|
2928 |
+
2976,no complaint
|
2929 |
+
2977,no complaint
|
2930 |
+
2978,no complaint
|
2931 |
+
2979,complaint
|
2932 |
+
2980,complaint
|
2933 |
+
2981,no complaint
|
2934 |
+
2982,complaint
|
2935 |
+
2983,no complaint
|
2936 |
+
2984,complaint
|
2937 |
+
2985,no complaint
|
2938 |
+
2986,complaint
|
2939 |
+
2987,no complaint
|
2940 |
+
2988,no complaint
|
2941 |
+
2989,no complaint
|
2942 |
+
2990,no complaint
|
2943 |
+
2991,no complaint
|
2944 |
+
2992,no complaint
|
2945 |
+
2993,complaint
|
2946 |
+
2994,complaint
|
2947 |
+
2995,no complaint
|
2948 |
+
2996,complaint
|
2949 |
+
2997,no complaint
|
2950 |
+
2998,complaint
|
2951 |
+
2999,no complaint
|
2952 |
+
3000,no complaint
|
2953 |
+
3001,complaint
|
2954 |
+
3002,complaint
|
2955 |
+
3003,complaint
|
2956 |
+
3004,no complaint
|
2957 |
+
3005,no complaint
|
2958 |
+
3006,complaint
|
2959 |
+
3007,no complaint
|
2960 |
+
3008,no complaint
|
2961 |
+
3009,complaint
|
2962 |
+
3010,no complaint
|
2963 |
+
3011,complaint
|
2964 |
+
3012,no complaint
|
2965 |
+
3013,complaint
|
2966 |
+
3014,no complaint
|
2967 |
+
3015,complaint
|
2968 |
+
3016,no complaint
|
2969 |
+
3017,no complaint
|
2970 |
+
3018,no complaint
|
2971 |
+
3019,no complaint
|
2972 |
+
3020,complaint
|
2973 |
+
3021,no complaint
|
2974 |
+
3022,complaint
|
2975 |
+
3023,no complaint
|
2976 |
+
3024,complaint
|
2977 |
+
3025,no complaint
|
2978 |
+
3026,no complaint
|
2979 |
+
3027,no complaint
|
2980 |
+
3028,complaint
|
2981 |
+
3029,no complaint
|
2982 |
+
3030,complaint
|
2983 |
+
3031,no complaint
|
2984 |
+
3032,no complaint
|
2985 |
+
3033,complaint
|
2986 |
+
3034,complaint
|
2987 |
+
3035,complaint
|
2988 |
+
3036,no complaint
|
2989 |
+
3037,complaint
|
2990 |
+
3038,no complaint
|
2991 |
+
3039,complaint
|
2992 |
+
3040,no complaint
|
2993 |
+
3041,no complaint
|
2994 |
+
3042,no complaint
|
2995 |
+
3043,complaint
|
2996 |
+
3044,complaint
|
2997 |
+
3045,complaint
|
2998 |
+
3046,complaint
|
2999 |
+
3047,complaint
|
3000 |
+
3048,complaint
|
3001 |
+
3049,no complaint
|
3002 |
+
3050,complaint
|
3003 |
+
3051,complaint
|
3004 |
+
3052,no complaint
|
3005 |
+
3053,no complaint
|
3006 |
+
3054,no complaint
|
3007 |
+
3055,complaint
|
3008 |
+
3056,complaint
|
3009 |
+
3057,no complaint
|
3010 |
+
3058,no complaint
|
3011 |
+
3059,complaint
|
3012 |
+
3060,complaint
|
3013 |
+
3061,complaint
|
3014 |
+
3062,no complaint
|
3015 |
+
3063,complaint
|
3016 |
+
3064,no complaint
|
3017 |
+
3065,no complaint
|
3018 |
+
3066,no complaint
|
3019 |
+
3067,complaint
|
3020 |
+
3068,no complaint
|
3021 |
+
3069,no complaint
|
3022 |
+
3070,no complaint
|
3023 |
+
3071,complaint
|
3024 |
+
3072,complaint
|
3025 |
+
3073,complaint
|
3026 |
+
3074,no complaint
|
3027 |
+
3075,complaint
|
3028 |
+
3076,no complaint
|
3029 |
+
3077,complaint
|
3030 |
+
3078,complaint
|
3031 |
+
3079,no complaint
|
3032 |
+
3080,no complaint
|
3033 |
+
3081,no complaint
|
3034 |
+
3082,no complaint
|
3035 |
+
3083,no complaint
|
3036 |
+
3084,complaint
|
3037 |
+
3085,complaint
|
3038 |
+
3086,no complaint
|
3039 |
+
3087,complaint
|
3040 |
+
3088,complaint
|
3041 |
+
3089,no complaint
|
3042 |
+
3090,no complaint
|
3043 |
+
3091,complaint
|
3044 |
+
3092,complaint
|
3045 |
+
3093,no complaint
|
3046 |
+
3094,complaint
|
3047 |
+
3095,complaint
|
3048 |
+
3096,complaint
|
3049 |
+
3097,no complaint
|
3050 |
+
3098,complaint
|
3051 |
+
3099,no complaint
|
3052 |
+
3100,complaint
|
3053 |
+
3101,complaint
|
3054 |
+
3102,complaint
|
3055 |
+
3103,no complaint
|
3056 |
+
3104,complaint
|
3057 |
+
3105,complaint
|
3058 |
+
3106,no complaint
|
3059 |
+
3107,complaint
|
3060 |
+
3108,complaint
|
3061 |
+
3109,no complaint
|
3062 |
+
3110,no complaint
|
3063 |
+
3111,complaint
|
3064 |
+
3112,complaint
|
3065 |
+
3113,no complaint
|
3066 |
+
3114,no complaint
|
3067 |
+
3115,no complaint
|
3068 |
+
3116,complaint
|
3069 |
+
3117,no complaint
|
3070 |
+
3118,complaint
|
3071 |
+
3119,complaint
|
3072 |
+
3120,no complaint
|
3073 |
+
3121,no complaint
|
3074 |
+
3122,no complaint
|
3075 |
+
3123,complaint
|
3076 |
+
3124,no complaint
|
3077 |
+
3125,complaint
|
3078 |
+
3126,complaint
|
3079 |
+
3127,complaint
|
3080 |
+
3128,no complaint
|
3081 |
+
3129,no complaint
|
3082 |
+
3130,no complaint
|
3083 |
+
3131,complaint
|
3084 |
+
3132,complaint
|
3085 |
+
3133,complaint
|
3086 |
+
3134,no complaint
|
3087 |
+
3135,no complaint
|
3088 |
+
3136,no complaint
|
3089 |
+
3137,complaint
|
3090 |
+
3138,no complaint
|
3091 |
+
3139,no complaint
|
3092 |
+
3140,complaint
|
3093 |
+
3141,complaint
|
3094 |
+
3142,complaint
|
3095 |
+
3143,no complaint
|
3096 |
+
3144,no complaint
|
3097 |
+
3145,complaint
|
3098 |
+
3146,no complaint
|
3099 |
+
3147,complaint
|
3100 |
+
3148,complaint
|
3101 |
+
3149,no complaint
|
3102 |
+
3150,no complaint
|
3103 |
+
3151,complaint
|
3104 |
+
3152,no complaint
|
3105 |
+
3153,complaint
|
3106 |
+
3154,no complaint
|
3107 |
+
3155,no complaint
|
3108 |
+
3156,complaint
|
3109 |
+
3157,complaint
|
3110 |
+
3158,complaint
|
3111 |
+
3159,no complaint
|
3112 |
+
3160,complaint
|
3113 |
+
3161,complaint
|
3114 |
+
3162,no complaint
|
3115 |
+
3163,complaint
|
3116 |
+
3164,complaint
|
3117 |
+
3165,no complaint
|
3118 |
+
3166,no complaint
|
3119 |
+
3167,complaint
|
3120 |
+
3168,complaint
|
3121 |
+
3169,no complaint
|
3122 |
+
3170,complaint
|
3123 |
+
3171,no complaint
|
3124 |
+
3172,no complaint
|
3125 |
+
3173,complaint
|
3126 |
+
3174,no complaint
|
3127 |
+
3175,no complaint
|
3128 |
+
3176,no complaint
|
3129 |
+
3177,no complaint
|
3130 |
+
3178,no complaint
|
3131 |
+
3179,no complaint
|
3132 |
+
3180,no complaint
|
3133 |
+
3181,no complaint
|
3134 |
+
3182,complaint
|
3135 |
+
3183,complaint
|
3136 |
+
3184,no complaint
|
3137 |
+
3185,complaint
|
3138 |
+
3186,complaint
|
3139 |
+
3187,no complaint
|
3140 |
+
3188,complaint
|
3141 |
+
3189,complaint
|
3142 |
+
3190,complaint
|
3143 |
+
3191,no complaint
|
3144 |
+
3192,complaint
|
3145 |
+
3193,complaint
|
3146 |
+
3194,no complaint
|
3147 |
+
3195,no complaint
|
3148 |
+
3196,complaint
|
3149 |
+
3197,no complaint
|
3150 |
+
3198,complaint
|
3151 |
+
3199,no complaint
|
3152 |
+
3200,no complaint
|
3153 |
+
3201,complaint
|
3154 |
+
3202,complaint
|
3155 |
+
3203,complaint
|
3156 |
+
3204,no complaint
|
3157 |
+
3205,no complaint
|
3158 |
+
3206,no complaint
|
3159 |
+
3207,complaint
|
3160 |
+
3208,complaint
|
3161 |
+
3209,no complaint
|
3162 |
+
3210,complaint
|
3163 |
+
3211,complaint
|
3164 |
+
3212,complaint
|
3165 |
+
3213,no complaint
|
3166 |
+
3214,no complaint
|
3167 |
+
3215,complaint
|
3168 |
+
3216,no complaint
|
3169 |
+
3217,complaint
|
3170 |
+
3218,no complaint
|
3171 |
+
3219,no complaint
|
3172 |
+
3220,no complaint
|
3173 |
+
3221,no complaint
|
3174 |
+
3222,complaint
|
3175 |
+
3223,no complaint
|
3176 |
+
3224,no complaint
|
3177 |
+
3225,no complaint
|
3178 |
+
3226,no complaint
|
3179 |
+
3227,no complaint
|
3180 |
+
3228,no complaint
|
3181 |
+
3229,no complaint
|
3182 |
+
3230,complaint
|
3183 |
+
3231,complaint
|
3184 |
+
3232,complaint
|
3185 |
+
3233,no complaint
|
3186 |
+
3234,complaint
|
3187 |
+
3235,no complaint
|
3188 |
+
3236,no complaint
|
3189 |
+
3237,no complaint
|
3190 |
+
3238,complaint
|
3191 |
+
3239,no complaint
|
3192 |
+
3240,no complaint
|
3193 |
+
3241,complaint
|
3194 |
+
3242,complaint
|
3195 |
+
3243,no complaint
|
3196 |
+
3244,no complaint
|
3197 |
+
3245,complaint
|
3198 |
+
3246,complaint
|
3199 |
+
3247,no complaint
|
3200 |
+
3248,no complaint
|
3201 |
+
3249,no complaint
|
3202 |
+
3250,complaint
|
3203 |
+
3251,no complaint
|
3204 |
+
3252,no complaint
|
3205 |
+
3253,no complaint
|
3206 |
+
3254,complaint
|
3207 |
+
3255,complaint
|
3208 |
+
3256,no complaint
|
3209 |
+
3257,no complaint
|
3210 |
+
3258,complaint
|
3211 |
+
3259,complaint
|
3212 |
+
3260,no complaint
|
3213 |
+
3261,complaint
|
3214 |
+
3262,no complaint
|
3215 |
+
3263,complaint
|
3216 |
+
3264,complaint
|
3217 |
+
3265,complaint
|
3218 |
+
3266,no complaint
|
3219 |
+
3267,complaint
|
3220 |
+
3268,no complaint
|
3221 |
+
3269,no complaint
|
3222 |
+
3270,complaint
|
3223 |
+
3271,no complaint
|
3224 |
+
3272,complaint
|
3225 |
+
3273,complaint
|
3226 |
+
3274,no complaint
|
3227 |
+
3275,no complaint
|
3228 |
+
3276,complaint
|
3229 |
+
3277,no complaint
|
3230 |
+
3278,no complaint
|
3231 |
+
3279,no complaint
|
3232 |
+
3280,no complaint
|
3233 |
+
3281,complaint
|
3234 |
+
3282,complaint
|
3235 |
+
3283,no complaint
|
3236 |
+
3284,no complaint
|
3237 |
+
3285,complaint
|
3238 |
+
3286,no complaint
|
3239 |
+
3287,complaint
|
3240 |
+
3288,no complaint
|
3241 |
+
3289,no complaint
|
3242 |
+
3290,complaint
|
3243 |
+
3291,no complaint
|
3244 |
+
3292,complaint
|
3245 |
+
3293,no complaint
|
3246 |
+
3294,complaint
|
3247 |
+
3295,no complaint
|
3248 |
+
3296,no complaint
|
3249 |
+
3297,no complaint
|
3250 |
+
3298,complaint
|
3251 |
+
3299,no complaint
|
3252 |
+
3300,complaint
|
3253 |
+
3301,complaint
|
3254 |
+
3302,no complaint
|
3255 |
+
3303,no complaint
|
3256 |
+
3304,complaint
|
3257 |
+
3305,no complaint
|
3258 |
+
3306,complaint
|
3259 |
+
3307,no complaint
|
3260 |
+
3308,complaint
|
3261 |
+
3309,no complaint
|
3262 |
+
3310,no complaint
|
3263 |
+
3311,no complaint
|
3264 |
+
3312,no complaint
|
3265 |
+
3313,no complaint
|
3266 |
+
3314,complaint
|
3267 |
+
3315,complaint
|
3268 |
+
3316,complaint
|
3269 |
+
3317,no complaint
|
3270 |
+
3318,complaint
|
3271 |
+
3319,no complaint
|
3272 |
+
3320,complaint
|
3273 |
+
3321,complaint
|
3274 |
+
3322,complaint
|
3275 |
+
3323,complaint
|
3276 |
+
3324,no complaint
|
3277 |
+
3325,complaint
|
3278 |
+
3326,complaint
|
3279 |
+
3327,complaint
|
3280 |
+
3328,no complaint
|
3281 |
+
3329,complaint
|
3282 |
+
3330,complaint
|
3283 |
+
3331,complaint
|
3284 |
+
3332,complaint
|
3285 |
+
3333,complaint
|
3286 |
+
3334,complaint
|
3287 |
+
3335,no complaint
|
3288 |
+
3336,complaint
|
3289 |
+
3337,complaint
|
3290 |
+
3338,complaint
|
3291 |
+
3339,complaint
|
3292 |
+
3340,complaint
|
3293 |
+
3341,no complaint
|
3294 |
+
3342,no complaint
|
3295 |
+
3343,complaint
|
3296 |
+
3344,complaint
|
3297 |
+
3345,no complaint
|
3298 |
+
3346,complaint
|
3299 |
+
3347,complaint
|
3300 |
+
3348,no complaint
|
3301 |
+
3349,complaint
|
3302 |
+
3350,complaint
|
3303 |
+
3351,complaint
|
3304 |
+
3352,no complaint
|
3305 |
+
3353,complaint
|
3306 |
+
3354,complaint
|
3307 |
+
3355,complaint
|
3308 |
+
3356,complaint
|
3309 |
+
3357,complaint
|
3310 |
+
3358,no complaint
|
3311 |
+
3359,no complaint
|
3312 |
+
3360,complaint
|
3313 |
+
3361,no complaint
|
3314 |
+
3362,complaint
|
3315 |
+
3363,no complaint
|
3316 |
+
3364,complaint
|
3317 |
+
3365,no complaint
|
3318 |
+
3366,no complaint
|
3319 |
+
3367,no complaint
|
3320 |
+
3368,complaint
|
3321 |
+
3369,no complaint
|
3322 |
+
3370,complaint
|
3323 |
+
3371,complaint
|
3324 |
+
3372,no complaint
|
3325 |
+
3373,no complaint
|
3326 |
+
3374,no complaint
|
3327 |
+
3375,no complaint
|
3328 |
+
3376,complaint
|
3329 |
+
3377,complaint
|
3330 |
+
3378,complaint
|
3331 |
+
3379,complaint
|
3332 |
+
3380,no complaint
|
3333 |
+
3381,no complaint
|
3334 |
+
3382,no complaint
|
3335 |
+
3383,complaint
|
3336 |
+
3384,no complaint
|
3337 |
+
3385,no complaint
|
3338 |
+
3386,no complaint
|
3339 |
+
3387,complaint
|
3340 |
+
3388,complaint
|
3341 |
+
3389,complaint
|
3342 |
+
3390,no complaint
|
3343 |
+
3391,complaint
|
3344 |
+
3392,complaint
|
3345 |
+
3393,no complaint
|
3346 |
+
3394,no complaint
|
3347 |
+
3395,no complaint
|
3348 |
+
3396,no complaint
|
3349 |
+
3397,complaint
|
3350 |
+
3398,complaint
|
3351 |
+
3399,no complaint
|
3352 |
+
3400,complaint
|
3353 |
+
3401,no complaint
|
3354 |
+
3402,no complaint
|
3355 |
+
3403,no complaint
|
3356 |
+
3404,no complaint
|
3357 |
+
3405,complaint
|
3358 |
+
3406,complaint
|
3359 |
+
3407,complaint
|
3360 |
+
3408,complaint
|
3361 |
+
3409,complaint
|
3362 |
+
3410,no complaint
|
3363 |
+
3411,complaint
|
3364 |
+
3412,complaint
|
3365 |
+
3413,complaint
|
3366 |
+
3414,no complaint
|
3367 |
+
3415,complaint
|
3368 |
+
3416,no complaint
|
3369 |
+
3417,complaint
|
3370 |
+
3418,no complaint
|
3371 |
+
3419,no complaint
|
3372 |
+
3420,complaint
|
3373 |
+
3421,complaint
|
3374 |
+
3422,complaint
|
3375 |
+
3423,no complaint
|
3376 |
+
3424,no complaint
|
3377 |
+
3425,no complaint
|
3378 |
+
3426,complaint
|
3379 |
+
3427,no complaint
|
3380 |
+
3428,complaint
|
3381 |
+
3429,complaint
|
3382 |
+
3430,no complaint
|
3383 |
+
3431,complaint
|
3384 |
+
3432,complaint
|
3385 |
+
3433,no complaint
|
3386 |
+
3434,complaint
|
3387 |
+
3435,no complaint
|
3388 |
+
3436,complaint
|
3389 |
+
3437,complaint
|
3390 |
+
3438,no complaint
|
3391 |
+
3439,no complaint
|
3392 |
+
3440,no complaint
|
3393 |
+
3441,no complaint
|
3394 |
+
3442,complaint
|
3395 |
+
3443,no complaint
|
3396 |
+
3444,no complaint
|
3397 |
+
3445,complaint
|
3398 |
+
3446,complaint
|
3399 |
+
3447,no complaint
|
3400 |
+
3448,complaint
|
{{cookiecutter.repo_name}}/data/twitter_complaints/task.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"name": "twitter_complaints", "description": "", "data_columns": ["Tweet text", "ID"], "label_columns": {"Label": ["complaint", "no complaint"]}}
|
{{cookiecutter.repo_name}}/requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
datasets>=1.11.0
|
2 |
+
typer
|
{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}.py
ADDED
@@ -0,0 +1,304 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# coding=utf-8
|
2 |
+
# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
|
16 |
+
import csv
|
17 |
+
|
18 |
+
import datasets
|
19 |
+
|
20 |
+
# TODO: Add BibTeX citation
|
21 |
+
# Find for instance the citation on arxiv or on the dataset repo/website
|
22 |
+
_CITATION = """\
|
23 |
+
@InProceedings{huggingface:dataset,
|
24 |
+
title = {A great new dataset},
|
25 |
+
author={huggingface, Inc.
|
26 |
+
},
|
27 |
+
year={2020}
|
28 |
+
}
|
29 |
+
"""
|
30 |
+
|
31 |
+
# You can copy an official description
|
32 |
+
_DESCRIPTION = """
|
33 |
+
"""
|
34 |
+
|
35 |
+
# TODO: Add a link to an official homepage for the dataset here
|
36 |
+
_HOMEPAGE = ""
|
37 |
+
|
38 |
+
# TODO: Add the licence for the dataset here if you can find it
|
39 |
+
_LICENSE = ""
|
40 |
+
|
41 |
+
# TODO: Add link to the official dataset URLs here
|
42 |
+
# The HuggingFace dataset library don't host the datasets but only point to the original files
|
43 |
+
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
44 |
+
# This gets all folders within the directory named `data`
|
45 |
+
# DATA_DIRS = next(os.walk('data'))[1]
|
46 |
+
DATA_DIR_URL = "data/" # "https://huggingface.co/datasets/ought/raft/resolve/main/data/"
|
47 |
+
# print([p for p in DATA_DIR_PATH.iterdir() if p.is_dir()])
|
48 |
+
TASKS = {
|
49 |
+
"ade_corpus_v2": {
|
50 |
+
"name": "ade_corpus_v2",
|
51 |
+
"description": "",
|
52 |
+
"data_columns": ["Sentence", "ID"],
|
53 |
+
"label_columns": {"Label": ["ADE-related", "not ADE-related"]},
|
54 |
+
},
|
55 |
+
"banking_77": {
|
56 |
+
"name": "banking_77",
|
57 |
+
"description": "",
|
58 |
+
"data_columns": ["Query", "ID"],
|
59 |
+
"label_columns": {
|
60 |
+
"Label": [
|
61 |
+
"Refund_not_showing_up",
|
62 |
+
"activate_my_card",
|
63 |
+
"age_limit",
|
64 |
+
"apple_pay_or_google_pay",
|
65 |
+
"atm_support",
|
66 |
+
"automatic_top_up",
|
67 |
+
"balance_not_updated_after_bank_transfer",
|
68 |
+
"balance_not_updated_after_cheque_or_cash_deposit",
|
69 |
+
"beneficiary_not_allowed",
|
70 |
+
"cancel_transfer",
|
71 |
+
"card_about_to_expire",
|
72 |
+
"card_acceptance",
|
73 |
+
"card_arrival",
|
74 |
+
"card_delivery_estimate",
|
75 |
+
"card_linking",
|
76 |
+
"card_not_working",
|
77 |
+
"card_payment_fee_charged",
|
78 |
+
"card_payment_not_recognised",
|
79 |
+
"card_payment_wrong_exchange_rate",
|
80 |
+
"card_swallowed",
|
81 |
+
"cash_withdrawal_charge",
|
82 |
+
"cash_withdrawal_not_recognised",
|
83 |
+
"change_pin",
|
84 |
+
"compromised_card",
|
85 |
+
"contactless_not_working",
|
86 |
+
"country_support",
|
87 |
+
"declined_card_payment",
|
88 |
+
"declined_cash_withdrawal",
|
89 |
+
"declined_transfer",
|
90 |
+
"direct_debit_payment_not_recognised",
|
91 |
+
"disposable_card_limits",
|
92 |
+
"edit_personal_details",
|
93 |
+
"exchange_charge",
|
94 |
+
"exchange_rate",
|
95 |
+
"exchange_via_app",
|
96 |
+
"extra_charge_on_statement",
|
97 |
+
"failed_transfer",
|
98 |
+
"fiat_currency_support",
|
99 |
+
"get_disposable_virtual_card",
|
100 |
+
"get_physical_card",
|
101 |
+
"getting_spare_card",
|
102 |
+
"getting_virtual_card",
|
103 |
+
"lost_or_stolen_card",
|
104 |
+
"lost_or_stolen_phone",
|
105 |
+
"order_physical_card",
|
106 |
+
"passcode_forgotten",
|
107 |
+
"pending_card_payment",
|
108 |
+
"pending_cash_withdrawal",
|
109 |
+
"pending_top_up",
|
110 |
+
"pending_transfer",
|
111 |
+
"pin_blocked",
|
112 |
+
"receiving_money",
|
113 |
+
"request_refund",
|
114 |
+
"reverted_card_payment?",
|
115 |
+
"supported_cards_and_currencies",
|
116 |
+
"terminate_account",
|
117 |
+
"top_up_by_bank_transfer_charge",
|
118 |
+
"top_up_by_card_charge",
|
119 |
+
"top_up_by_cash_or_cheque",
|
120 |
+
"top_up_failed",
|
121 |
+
"top_up_limits",
|
122 |
+
"top_up_reverted",
|
123 |
+
"topping_up_by_card",
|
124 |
+
"transaction_charged_twice",
|
125 |
+
"transfer_fee_charged",
|
126 |
+
"transfer_into_account",
|
127 |
+
"transfer_not_received_by_recipient",
|
128 |
+
"transfer_timing",
|
129 |
+
"unable_to_verify_identity",
|
130 |
+
"verify_my_identity",
|
131 |
+
"verify_source_of_funds",
|
132 |
+
"verify_top_up",
|
133 |
+
"virtual_card_not_working",
|
134 |
+
"visa_or_mastercard",
|
135 |
+
"why_verify_identity",
|
136 |
+
"wrong_amount_of_cash_received",
|
137 |
+
"wrong_exchange_rate_for_cash_withdrawal",
|
138 |
+
]
|
139 |
+
},
|
140 |
+
},
|
141 |
+
"terms_of_service": {
|
142 |
+
"name": "terms_of_service",
|
143 |
+
"description": "",
|
144 |
+
"data_columns": ["Sentence", "ID"],
|
145 |
+
"label_columns": {"Label": ["not potentially unfair", "potentially unfair"]},
|
146 |
+
},
|
147 |
+
"tai_safety_research": {
|
148 |
+
"name": "tai_safety_research",
|
149 |
+
"description": "",
|
150 |
+
"data_columns": [
|
151 |
+
"Title",
|
152 |
+
"Abstract Note",
|
153 |
+
"Url",
|
154 |
+
"Publication Year",
|
155 |
+
"Item Type",
|
156 |
+
"Author",
|
157 |
+
"Publication Title",
|
158 |
+
"ID",
|
159 |
+
],
|
160 |
+
"label_columns": {"Label": ["TAI safety research", "not TAI safety research"]},
|
161 |
+
},
|
162 |
+
"neurips_impact_statement_risks": {
|
163 |
+
"name": "neurips_impact_statement_risks",
|
164 |
+
"description": "",
|
165 |
+
"data_columns": ["Paper title", "Paper link", "Impact statement", "ID"],
|
166 |
+
"label_columns": {"Label": ["doesn't mention a harmful application", "mentions a harmful application"]},
|
167 |
+
},
|
168 |
+
"overruling": {
|
169 |
+
"name": "overruling",
|
170 |
+
"description": "",
|
171 |
+
"data_columns": ["Sentence", "ID"],
|
172 |
+
"label_columns": {"Label": ["not overruling", "overruling"]},
|
173 |
+
},
|
174 |
+
"systematic_review_inclusion": {
|
175 |
+
"name": "systematic_review_inclusion",
|
176 |
+
"description": "",
|
177 |
+
"data_columns": ["Title", "Abstract", "Authors", "Journal", "ID"],
|
178 |
+
"label_columns": {"Label": ["included", "not included"]},
|
179 |
+
},
|
180 |
+
"one_stop_english": {
|
181 |
+
"name": "one_stop_english",
|
182 |
+
"description": "",
|
183 |
+
"data_columns": ["Article", "ID"],
|
184 |
+
"label_columns": {"Label": ["advanced", "elementary", "intermediate"]},
|
185 |
+
},
|
186 |
+
"tweet_eval_hate": {
|
187 |
+
"name": "tweet_eval_hate",
|
188 |
+
"description": "",
|
189 |
+
"data_columns": ["Tweet", "ID"],
|
190 |
+
"label_columns": {"Label": ["hate speech", "not hate speech"]},
|
191 |
+
},
|
192 |
+
"twitter_complaints": {
|
193 |
+
"name": "twitter_complaints",
|
194 |
+
"description": "",
|
195 |
+
"data_columns": ["Tweet text", "ID"],
|
196 |
+
"label_columns": {"Label": ["complaint", "no complaint"]},
|
197 |
+
},
|
198 |
+
"semiconductor_org_types": {
|
199 |
+
"name": "semiconductor_org_types",
|
200 |
+
"description": "",
|
201 |
+
"data_columns": ["Paper title", "Organization name", "ID"],
|
202 |
+
"label_columns": {"Label": ["company", "research institute", "university"]},
|
203 |
+
},
|
204 |
+
}
|
205 |
+
|
206 |
+
_URLs = {s: {"test": f"{DATA_DIR_URL}{s}/predictions.csv"} for s in TASKS}
|
207 |
+
|
208 |
+
|
209 |
+
class RaftSubmission(datasets.GeneratorBasedBuilder):
|
210 |
+
"""RAFT Dataset dummy predictions."""
|
211 |
+
|
212 |
+
VERSION = datasets.Version("1.1.0")
|
213 |
+
|
214 |
+
# This is an example of a dataset with multiple configurations.
|
215 |
+
# If you don't want/need to define several sub-sets in your dataset,
|
216 |
+
# just remove the BUILDER_CONFIG_CLASS and the BUILDER_CONFIGS attributes.
|
217 |
+
|
218 |
+
# If you need to make complex sub-parts in the datasets with configurable options
|
219 |
+
# You can create your own builder configuration class to store attribute, inheriting from datasets.BuilderConfig
|
220 |
+
# BUILDER_CONFIG_CLASS = MyBuilderConfig
|
221 |
+
|
222 |
+
# You will be able to load one or the other configurations in the following list with
|
223 |
+
# data = datasets.load_dataset('my_dataset', 'first_domain')
|
224 |
+
# data = datasets.load_dataset('my_dataset', 'second_domain')
|
225 |
+
|
226 |
+
# TODO: Load task jsons
|
227 |
+
|
228 |
+
# tasks = {}
|
229 |
+
# for sd in DATA_DIRS:
|
230 |
+
# with open(os.path.join('data', sd, 'task.json')) as f:
|
231 |
+
# task_data = json.load(f)
|
232 |
+
# tasks[sd] = task_data
|
233 |
+
|
234 |
+
BUILDER_CONFIGS = []
|
235 |
+
for key in TASKS:
|
236 |
+
td = TASKS[key]
|
237 |
+
name = td["name"]
|
238 |
+
description = td["description"]
|
239 |
+
BUILDER_CONFIGS.append(datasets.BuilderConfig(name=name, version=VERSION, description=description))
|
240 |
+
|
241 |
+
DEFAULT_CONFIG_NAME = (
|
242 |
+
"tai_safety_research" # It's not mandatory to have a default configuration. Just use one if it make sense.
|
243 |
+
)
|
244 |
+
|
245 |
+
def _info(self):
|
246 |
+
# TODO: This method specifies the datasets.DatasetInfo object which contains informations and typings for the dataset
|
247 |
+
DEFAULT_LABEL_NAME = "Unlabeled"
|
248 |
+
|
249 |
+
task = TASKS[self.config.name]
|
250 |
+
data_columns = {"ID": datasets.Value("string")}
|
251 |
+
|
252 |
+
label_columns = {}
|
253 |
+
for label_name in task["label_columns"]:
|
254 |
+
labels = [DEFAULT_LABEL_NAME] + task["label_columns"][label_name]
|
255 |
+
label_columns[label_name] = datasets.ClassLabel(len(labels), labels)
|
256 |
+
|
257 |
+
# Merge dicts
|
258 |
+
features = datasets.Features(**data_columns, **label_columns)
|
259 |
+
|
260 |
+
return datasets.DatasetInfo(
|
261 |
+
# This is the description that will appear on the datasets page.
|
262 |
+
description=_DESCRIPTION,
|
263 |
+
# This defines the different columns of the dataset and their types
|
264 |
+
features=features, # Here we define them above because they are different between the two configurations
|
265 |
+
# If there's a common (input, target) tuple from the features,
|
266 |
+
# specify them here. They'll be used if as_supervised=True in
|
267 |
+
# builder.as_dataset.
|
268 |
+
supervised_keys=None,
|
269 |
+
# Homepage of the dataset for documentation
|
270 |
+
homepage=_HOMEPAGE,
|
271 |
+
# License for the dataset if available
|
272 |
+
license=_LICENSE,
|
273 |
+
# Citation for the dataset
|
274 |
+
citation=_CITATION,
|
275 |
+
)
|
276 |
+
|
277 |
+
def _split_generators(self, dl_manager):
|
278 |
+
"""Returns SplitGenerators."""
|
279 |
+
# TODO: This method is tasked with downloading/extracting the data and defining the splits depending on the configuration
|
280 |
+
# If several configurations are possible (listed in BUILDER_CONFIGS), the configuration selected by the user is in self.config.name
|
281 |
+
|
282 |
+
# dl_manager is a datasets.download.DownloadManager that can be used to download and extract URLs
|
283 |
+
# It can accept any type or nested list/dict and will give back the same structure with the url replaced with path to local files.
|
284 |
+
# By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
|
285 |
+
data_dir = dl_manager.download_and_extract(_URLs)
|
286 |
+
dataset = self.config.name
|
287 |
+
return [
|
288 |
+
datasets.SplitGenerator(
|
289 |
+
name=datasets.Split.TEST, gen_kwargs={"filepath": data_dir[dataset]["test"], "split": "test"}
|
290 |
+
)
|
291 |
+
]
|
292 |
+
|
293 |
+
def _generate_examples(
|
294 |
+
self, filepath, split # method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
|
295 |
+
):
|
296 |
+
"""Yields examples as (key, example) tuples."""
|
297 |
+
# This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
|
298 |
+
# The `key` is here for legacy reason (tfds) and is not important in itself.
|
299 |
+
with open(filepath, encoding="utf-8") as f:
|
300 |
+
csv_reader = csv.reader(f, quotechar='"', delimiter=",", quoting=csv.QUOTE_ALL, skipinitialspace=True)
|
301 |
+
column_names = next(csv_reader)
|
302 |
+
for id_, row in enumerate(csv_reader):
|
303 |
+
# dicts don't have inherent ordering in python, right??
|
304 |
+
yield id_, {name: value for name, value in zip(column_names, row)}
|