name_tamer 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module NameTamer
2
4
  class Text
3
5
  # All the potential slugs from the string
@@ -21,7 +23,7 @@ module NameTamer
21
23
  .strip_unwanted!(filter)
22
24
  .fix_separators!(separator)
23
25
  .approximate_latin_chars!
24
- .presence || '_'
26
+ .presence || +'_'
25
27
  ).downcase
26
28
  end
27
29
 
@@ -39,7 +41,7 @@ module NameTamer
39
41
  end
40
42
 
41
43
  def separator
42
- @seperator ||= args[:sep] || SLUG_DELIMITER
44
+ @separator ||= args[:sep] || SLUG_DELIMITER
43
45
  end
44
46
 
45
47
  def rfc3987
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module NameTamer
2
- VERSION = '0.6.0'.freeze
4
+ VERSION = '0.6.1'
3
5
  end
data/name_tamer.gemspec CHANGED
@@ -1,4 +1,6 @@
1
- lib = File.expand_path('../lib', __FILE__)
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
2
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
5
  require 'name_tamer/version'
4
6
 
@@ -12,8 +14,7 @@ Gem::Specification.new do |spec|
12
14
  spec.homepage = 'https://github.com/dominicsayers/name_tamer'
13
15
  spec.license = 'MIT'
14
16
 
15
- spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
16
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR).reject { |file| file =~ %r{^(bin|spec)/} }
17
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features|coverage)/})
18
19
  spec.require_paths = ['lib']
19
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: name_tamer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominic Sayers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-19 00:00:00.000000000 Z
11
+ date: 2018-08-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Useful methods for taming names
14
14
  email:
@@ -41,11 +41,6 @@ files:
41
41
  - lib/name_tamer/text.rb
42
42
  - lib/name_tamer/version.rb
43
43
  - name_tamer.gemspec
44
- - spec/name_tamer/name_spec.rb
45
- - spec/name_tamer/string_spec.rb
46
- - spec/name_tamer/text_spec.rb
47
- - spec/spec_helper.rb
48
- - spec/support/names.yml
49
44
  homepage: https://github.com/dominicsayers/name_tamer
50
45
  licenses:
51
46
  - MIT
@@ -66,14 +61,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
66
61
  version: '0'
67
62
  requirements: []
68
63
  rubyforge_project:
69
- rubygems_version: 2.6.11
64
+ rubygems_version: 2.7.7
70
65
  signing_key:
71
66
  specification_version: 4
72
67
  summary: 'Example: NameTamer[''Mr. John Q. Smith III, MD''].simple_name # => John
73
68
  Smith'
74
- test_files:
75
- - spec/name_tamer/name_spec.rb
76
- - spec/name_tamer/string_spec.rb
77
- - spec/name_tamer/text_spec.rb
78
- - spec/spec_helper.rb
79
- - spec/support/names.yml
69
+ test_files: []
@@ -1,95 +0,0 @@
1
- # encoding: utf-8
2
-
3
- describe NameTamer::Name do
4
- context 'invalid byte sequence in UTF-8' do
5
- let(:name_data) { { n: "\xc3\x28", t: :person, nn: '()', sn: '()', s: '_' } } # Invalid byte sequence in UTF-8
6
-
7
- if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('2')
8
- it 'fails to correct invalid byte sequence' do
9
- name = name_data[:n]
10
- expect { NameTamer[name, contact_type: name_data[:t]].slug }.to raise_error(
11
- ArgumentError,
12
- 'invalid byte sequence in UTF-8'
13
- )
14
- end
15
- else
16
- it 'makes a slug' do
17
- name = name_data[:n]
18
- expect(NameTamer[name, contact_type: name_data[:t]].slug).to eq(name_data[:s])
19
- end
20
-
21
- it 'makes a nice name' do
22
- name = name_data[:n]
23
- nice_name = NameTamer[name, contact_type: name_data[:t]].nice_name
24
- expect(nice_name).to eq(name_data[:nn])
25
- end
26
-
27
- it 'makes a searchable name' do
28
- name = name_data[:n]
29
- expect(NameTamer[name, contact_type: name_data[:t]].simple_name).to eq(name_data[:sn])
30
- end
31
- end
32
- end
33
-
34
- context 'all ruby versions' do
35
- let(:names) { YAML.load_file(File.join('spec', 'support', 'names.yml')) }
36
-
37
- it 'loads the examples correctly' do
38
- expect(names.length).to eq(152) # Number of examples
39
- end
40
-
41
- it 'makes a slug' do
42
- names.each do |name_data|
43
- name = name_data[:n]
44
- expect(NameTamer[name, contact_type: name_data[:t]].slug).to eq(name_data[:s].downcase)
45
- end
46
- end
47
-
48
- it 'makes a nice name' do
49
- names.each do |name_data|
50
- name = name_data[:n]
51
- nice_name = NameTamer[name, contact_type: name_data[:t]].nice_name
52
- expect(nice_name).to eq(name_data[:nn])
53
- end
54
- end
55
-
56
- it 'makes a searchable name' do
57
- names.each do |name_data|
58
- name = name_data[:n]
59
- expect(NameTamer[name, contact_type: name_data[:t]].simple_name).to eq(name_data[:sn])
60
- end
61
- end
62
- end
63
- end
64
-
65
- describe 'contact type inference' do
66
- it 'infers that "Mr. John Smith" is a person' do
67
- expect(NameTamer['Mr. John Smith'].contact_type).to eq(:person)
68
- end
69
-
70
- it 'infers that "Di Doo Doo d.o.o." is an organization' do
71
- expect(NameTamer['Di Doo Doo d.o.o.'].contact_type).to eq(:organization)
72
- end
73
-
74
- it 'infers that "DiDooDoo" is an organization' do
75
- expect(NameTamer['DiDooDoo'].contact_type).to eq(:organization)
76
- end
77
-
78
- it 'infers that "John Smith" is a person' do
79
- expect(NameTamer['John Smith'].contact_type).to eq(:person)
80
- end
81
-
82
- it 'announces a change in contact type' do
83
- nt = NameTamer::Name.new 'John Smith', contact_type: :person
84
- nt.contact_type = :organization
85
- expect(nt.contact_type).to eq(:organization)
86
- end
87
- end
88
-
89
- describe 'iteration' do
90
- it 'iterates through the significant words of a name' do
91
- words = []
92
- NameTamer['John Smith'].each_word { |w| words << w }
93
- expect(words).to include('john', 'smith')
94
- end
95
- end
@@ -1,5 +0,0 @@
1
- describe String do
2
- it 'has a color' do
3
- expect('xxx'.yellow).to eq("\e[33mxxx\e[0m")
4
- end
5
- end
@@ -1,40 +0,0 @@
1
- # encoding: utf-8
2
-
3
- describe NameTamer::Text do
4
- context '#segments' do
5
- it 'splits a string into segments at appropriate boundaries' do
6
- string = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. '\
7
- 'Nullam venenatis? Risus eu: auctor feugiat; libero nisl congue '\
8
- 'arcu - eget molestie metus / erat eu diam'
9
-
10
- text = NameTamer::Text.new string
11
-
12
- expect(text.segments).to include(
13
- 'Lorem ipsum dolor sit amet',
14
- 'consectetur adipiscing elit',
15
- 'Nullam venenatis',
16
- 'Risus eu',
17
- 'auctor feugiat',
18
- 'libero nisl congue arcu',
19
- 'eget molestie metus',
20
- 'erat eu diam'
21
- )
22
- end
23
- end
24
-
25
- context '#slugs' do
26
- it 'compiles all the potential slugs into an array' do
27
- string = 'Lorem Ipsum Limited, lorem ipsum dolor. Dolor Mr Sit Amet.'
28
- text = NameTamer::Text.new string
29
- slugs = text.slugs
30
-
31
- expect(slugs).to include(
32
- 'lorem', 'lorem-ipsum', 'ipsum', 'lorem-ipsum-dolor', 'ipsum-dolor',
33
- 'dolor', 'dolor-mr', 'dolor-mr-sit', 'dolor-mr-sit-amet', 'mr',
34
- 'mr-sit', 'mr-sit-amet', 'sit', 'sit-amet', 'amet'
35
- )
36
-
37
- expect(slugs.length).to eq 15
38
- end
39
- end
40
- end
data/spec/spec_helper.rb DELETED
@@ -1,14 +0,0 @@
1
- unless ENV['NO_SIMPLECOV']
2
- require 'simplecov'
3
- require 'coveralls'
4
-
5
- SimpleCov.start { add_filter '/spec/' }
6
- Coveralls.wear! if ENV['COVERALLS_REPO_TOKEN']
7
- end
8
-
9
- require 'name_tamer'
10
-
11
- RSpec.configure do |config|
12
- config.run_all_when_everything_filtered = true
13
- config.order = 'random'
14
- end
@@ -1,741 +0,0 @@
1
- ---
2
- - :n: John Smith
3
- :t: :person
4
- :nn: John Smith
5
- :sn: John Smith
6
- :s: john-smith
7
- - :n: JOHN SMITH
8
- :t: :person
9
- :nn: John Smith
10
- :sn: John Smith
11
- :s: john-smith
12
- - :n: john smith
13
- :t: :person
14
- :nn: John Smith
15
- :sn: John Smith
16
- :s: john-smith
17
- - :n: Smith, John
18
- :t: :person
19
- :nn: John Smith
20
- :sn: John Smith
21
- :s: john-smith
22
- - :n: John Smith
23
- :t: :person
24
- :nn: John Smith
25
- :sn: John Smith
26
- :s: john-smith
27
- - :n: Smith, John
28
- :nn: John Smith
29
- :sn: John Smith
30
- :s: john-smith
31
- - :n: John J. Smith
32
- :t: :person
33
- :nn: John J. Smith
34
- :sn: John Smith
35
- :s: john-smith
36
- - :n: John J. Smith
37
- :t: :person
38
- :nn: John J. Smith
39
- :sn: John Smith
40
- :s: john-smith
41
- - :n: SMITH, Mr John J.R.
42
- :t: :person
43
- :nn: John J.R. Smith
44
- :sn: John Smith
45
- :s: john-smith
46
- - :n: " SMITH, Mr John J. R. "
47
- :t: :person
48
- :nn: John J.R. Smith
49
- :sn: John Smith
50
- :s: john-smith
51
- - :n: SMITH, Mr John J.R.
52
- :nn: John J.R. Smith
53
- :sn: John Smith
54
- :s: john-smith
55
- - :n: Mr John J.R. SMITH JD
56
- :t: :person
57
- :nn: John J.R. SMITH
58
- :sn: John SMITH
59
- :s: john-smith
60
- - :n: Mr John J.R. SMITH III,JD
61
- :t: :person
62
- :nn: John J.R. SMITH
63
- :sn: John SMITH
64
- :s: john-smith
65
- - :n: Mr John J.R. SMITH JD
66
- :nn: John J.R. SMITH
67
- :sn: John SMITH
68
- :s: john-smith
69
- - :n: Mr Jean-Michel SMITH JD
70
- :t: :person
71
- :nn: Jean-Michel SMITH
72
- :sn: Jean-Michel SMITH
73
- :s: jean-michel-smith
74
- - :n: Mr Jean Michel-SMITH JD
75
- :nn: Jean Michel-SMITH
76
- :sn: Jean Michel-SMITH
77
- :s: jean-michel-smith
78
- - :n: Dr Martha Lane Fox Ph.D
79
- :nn: Martha Lane Fox
80
- :sn: Martha Lane Fox
81
- :s: martha-lane-fox
82
- - :n: Lane Fox Ph.D, Dr Martha
83
- :t: :person
84
- :nn: Martha Lane Fox
85
- :sn: Martha Lane Fox
86
- :s: martha-lane-fox
87
- - :n: Baroness Lane-Fox of Lewisham
88
- :t: :person
89
- :nn: Lane-Fox of Lewisham
90
- :sn: Lane-Fox of Lewisham
91
- :s: lane-fox-of-lewisham
92
- - :n: MACDONALDS LLC
93
- :nn: MacDonalds
94
- :sn: MacDonalds
95
- :s: macdonalds
96
- - :n: MACDONALDS LLC
97
- :t: :organization
98
- :nn: MacDonalds
99
- :sn: MacDonalds
100
- :s: macdonalds
101
- - :n: macdonalds
102
- :t: :organization
103
- :nn: macdonalds
104
- :sn: macdonalds
105
- :s: macdonalds
106
- - :n: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble & Grub LLP
107
- :t: :organization
108
- :nn: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble & Grub
109
- :sn: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble and Grub
110
- :s: pugh-pugh-barney-mcgrew-cuthbert-dibble-and-grub
111
- - :n: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble & Grub LLP
112
- :nn: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble & Grub
113
- :sn: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble and Grub
114
- :s: pugh-pugh-barney-mcgrew-cuthbert-dibble-and-grub
115
- - :n: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble & Grub LLP
116
- :nn: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble & Grub
117
- :sn: Pugh, Pugh, Barney McGrew, Cuthbert, Dibble and Grub
118
- :s: pugh-pugh-barney-mcgrew-cuthbert-dibble-and-grub
119
- - :n: K.V.A. Instruments y Cía S. en C.
120
- :nn: K.V.A. Instruments
121
- :sn: KVA Instruments
122
- :s: kva-instruments
123
- - :n: K. V. A. Instruments y Cía S. en C.
124
- :nn: K.V.A. Instruments
125
- :sn: KVA Instruments
126
- :s: kva-instruments
127
- - :n: J.P.R. Williams
128
- :nn: J.P.R. Williams
129
- :sn: JPR Williams
130
- :s: jpr-williams
131
- - :n: J. P. R. Williams
132
- :nn: J.P.R. Williams
133
- :sn: JPR Williams
134
- :s: jpr-williams
135
- - :n: J P R Williams
136
- :nn: JPR Williams
137
- :sn: JPR Williams
138
- :s: jpr-williams
139
- - :n: JPR Williams
140
- :nn: JPR Williams
141
- :sn: JPR Williams
142
- :s: jpr-williams
143
- - :n: Audrey fforbes
144
- :nn: Audrey fforbes
145
- :sn: Audrey fforbes
146
- :s: audrey-fforbes
147
- - :n: J. Arthur Rank
148
- :t: :person
149
- :nn: J. Arthur Rank
150
- :sn: Arthur Rank
151
- :s: arthur-rank
152
- - :n: PHILIP NG
153
- :t: :person
154
- :nn: Philip Ng
155
- :sn: Philip Ng
156
- :s: philip-ng
157
- - :n: Super R&D
158
- :nn: Super R&D
159
- :sn: Super R and D
160
- :s: super-r-and-d
161
- - :n: Harry Dean Stanton
162
- :t: :person
163
- :nn: Harry Dean Stanton
164
- :sn: Harry Stanton
165
- :s: harry-stanton
166
- - :n: Union Square Ventures
167
- :t: :organization
168
- :nn: Union Square Ventures
169
- :sn: Union Square Ventures
170
- :s: union-square-ventures
171
- - :n: J Arthur Rank Inc.
172
- :t: :organization
173
- :nn: J Arthur Rank
174
- :sn: J Arthur Rank
175
- :s: j-arthur-rank
176
- - :n: Jean VAN DER VELDE
177
- :t: :person
178
- :nn: Jean VAN DER VELDE
179
- :sn: Jean VAN DER VELDE
180
- :s: jean-van-der-velde
181
- - :n: Al Capone
182
- :t: :person
183
- :nn: Al Capone
184
- :sn: Al Capone
185
- :s: al-capone
186
- - :n: Fahd al-Saud
187
- :t: :person
188
- :nn: Fahd al-Saud
189
- :sn: Fahd al-Saud
190
- :s: fahd-al-saud
191
- - :n: Mehmet al Auouiby
192
- :t: :person
193
- :nn: Mehmet al Auouiby
194
- :sn: Mehmet al Auouiby
195
- :s: mehmet-al-auouiby
196
- - :n: Macquarie Bank
197
- :t: :organization
198
- :nn: Macquarie Bank
199
- :sn: Macquarie Bank
200
- :s: macquarie-bank
201
- - :n: COMMEDIA DELL'ARTE
202
- :t: :organization
203
- :nn: Commedia dell'Arte
204
- :sn: Commedia dell'Arte
205
- :s: commedia-dellarte
206
- - :n: Della Smith
207
- :t: :person
208
- :nn: Della Smith
209
- :sn: Della Smith
210
- :s: della-smith
211
- - :n: Antonio DELLA MONTEVERDE
212
- :nn: Antonio DELLA MONTEVERDE
213
- :sn: Antonio DELLA MONTEVERDE
214
- :s: antonio-della-monteverde
215
- - :n: Tony St Clair
216
- :t: :person
217
- :nn: Tony St Clair
218
- :sn: Tony St Clair
219
- :s: tony-st-clair
220
- - :n: Seamus O'Malley
221
- :t: :person
222
- :nn: Seamus O'Malley
223
- :sn: Seamus O'Malley
224
- :s: seamus-omalley
225
- - :n: SeedCamp
226
- :t: :organization
227
- :nn: SeedCamp
228
- :sn: SeedCamp
229
- :s: seedcamp
230
- - :n: Peter Van Der Auwera
231
- :t: :person
232
- :nn: Peter Van Der Auwera
233
- :sn: Peter Van Der Auwera
234
- :s: peter-van-der-auwera
235
- - :n: VAN DER AUWERA, Peter
236
- :t: :person
237
- :nn: Peter van der Auwera
238
- :sn: Peter van der Auwera
239
- :s: peter-van-der-auwera
240
- - :n: Li Fan
241
- :t: :person
242
- :nn: Li Fan
243
- :sn: Li Fan
244
- :s: li-fan
245
- - :n: Fan Li
246
- :t: :person
247
- :nn: Fan Li
248
- :sn: Fan Li
249
- :s: fan-li
250
- - :n: Levi Strauss & Co.
251
- :nn: Levi Strauss
252
- :sn: Levi Strauss
253
- :s: levi-strauss
254
- - :n: Standard & Poor's
255
- :t: :organization
256
- :nn: Standard & Poor's
257
- :sn: Standard and Poor's
258
- :s: standard-and-poors
259
- - :n: I B M Services
260
- :t: :organization
261
- :nn: IBM Services
262
- :sn: IBM Services
263
- :s: ibm-services
264
- - :n: Sean Park DDS
265
- :t: :person
266
- :nn: Sean Park
267
- :sn: Sean Park
268
- :s: sean-park
269
- - :n: SEAN MACLISE PARK
270
- :t: :person
271
- :nn: Sean Maclise Park
272
- :sn: Sean Park
273
- :s: sean-park
274
- - :n: AJ Hanna
275
- :t: :person
276
- :nn: AJ Hanna
277
- :sn: AJ Hanna
278
- :s: aj-hanna
279
- - :n: Free & Clear
280
- :t: :organization
281
- :nn: Free & Clear
282
- :sn: Free and Clear
283
- :s: free-and-clear
284
- - :n: Adam D'ANGELO
285
- :t: :person
286
- :nn: Adam D'ANGELO
287
- :sn: Adam D'ANGELO
288
- :s: adam-dangelo
289
- - :n: MACKENZIE, Doug
290
- :t: :person
291
- :nn: Doug Mackenzie
292
- :sn: Doug Mackenzie
293
- :s: doug-mackenzie
294
- - :n: Up + Down
295
- :t: :organization
296
- :nn: Up + Down
297
- :sn: Up plus Down
298
- :s: up-plus-down
299
- - :n: San Francisco Ltd
300
- :t: :organization
301
- :nn: San Francisco
302
- :sn: San Francisco
303
- :s: san-francisco
304
- - :n: AT&T
305
- :t: :organization
306
- :nn: AT&T
307
- :sn: AT and T
308
- :s: at-and-t
309
- - :n: SMITH, John, Jr.
310
- :t: :person
311
- :nn: John Smith
312
- :sn: John Smith
313
- :s: john-smith
314
- - :n: I Heart Movies
315
- :t: :organization
316
- :nn: I Heart Movies
317
- :sn: I Heart Movies
318
- :s: i-heart-movies
319
- - :n: Y Combinator
320
- :t: :organization
321
- :nn: Y Combinator
322
- :sn: Y Combinator
323
- :s: y-combinator
324
- - :n: Ben's 10 Hens
325
- :t: :organization
326
- :nn: Ben's 10 Hens
327
- :sn: Ben's 10 Hens
328
- :s: bens-10-hens
329
- - :n: Elazer Edelman, MD , PhD
330
- :t: :person
331
- :nn: Elazer Edelman
332
- :sn: Elazer Edelman
333
- :s: elazer-edelman
334
- - :n: Judith M. O'Brien
335
- :t: :person
336
- :nn: Judith M. O'Brien
337
- :sn: Judith O'Brien
338
- :s: judith-obrien
339
- - :n: MORRISON, Van
340
- :t: :person
341
- :nn: Van Morrison
342
- :sn: Van Morrison
343
- :s: van-morrison
344
- - :n: i/o Ventures
345
- :t: :organization
346
- :nn: i/o Ventures
347
- :sn: i/o Ventures
348
- :s: i-o-ventures
349
- - :n: C T Corporation System
350
- :t: :person
351
- :nn: CT Corporation System
352
- :sn: CT Corporation System
353
- :s: ct-corporation-system
354
- - :n: C.T. Corporation System
355
- :t: :person
356
- :nn: C.T. Corporation System
357
- :sn: CT Corporation System
358
- :s: ct-corporation-system
359
- - :n: CT Corporation System
360
- :t: :person
361
- :nn: CT Corporation System
362
- :sn: CT Corporation System
363
- :s: ct-corporation-system
364
- - :n: Corporation Service Company
365
- :t: :person
366
- :nn: Corporation Service Company
367
- :sn: Corporation Service Company
368
- :s: corporation-service-company
369
- - :n: Kurshuni,Inc.
370
- :t: :organization
371
- :nn: Kurshuni
372
- :sn: Kurshuni
373
- :s: kurshuni
374
- - :n: Cellular Inc-LLC
375
- :t: :organization
376
- :nn: Cellular
377
- :sn: Cellular
378
- :s: cellular
379
- - :n: Emtec (AZ) Limited
380
- :t: :organization
381
- :nn: Emtec (AZ)
382
- :sn: Emtec (AZ)
383
- :s: emtec-az
384
- - :n: Emtec (LLC) Limited
385
- :t: :organization
386
- :nn: Emtec
387
- :sn: Emtec
388
- :s: emtec
389
- - :n: Emtec (XYZ LLC) Limited
390
- :t: :organization
391
- :nn: Emtec (XYZ)
392
- :sn: Emtec (XYZ)
393
- :s: emtec-xyz
394
- - :n: Tao Ma
395
- :t: :person
396
- :nn: Tao
397
- :sn: Tao
398
- :s: tao
399
- - :n: "(Mr.) Courtney J. Miller, J.D., LL.M."
400
- :t: :person
401
- :nn: Courtney J. Miller
402
- :sn: Courtney Miller
403
- :s: courtney-miller
404
- - :n: "(Mr Woo) The Window Cleaner"
405
- :t: :person
406
- :nn: "(Woo) The Window Cleaner"
407
- :sn: "(Woo) Cleaner"
408
- :s: woo-cleaner
409
- - :n: DOMINIC MACMURDO
410
- :t: :person
411
- :nn: Dominic MacMurdo
412
- :sn: Dominic MacMurdo
413
- :s: dominic-macmurdo
414
- - :n: DOMINIC MACEDO
415
- :t: :person
416
- :nn: Dominic Macedo
417
- :sn: Dominic Macedo
418
- :s: dominic-macedo
419
- - :n: DOMINIC MACDONALD
420
- :t: :person
421
- :nn: Dominic MacDonald
422
- :sn: Dominic MacDonald
423
- :s: dominic-macdonald
424
- - :n: AGUSTA DO ROMEIRO
425
- :t: :person
426
- :nn: Agusta do Romeiro
427
- :sn: Agusta do Romeiro
428
- :s: agusta-do-romeiro
429
- - :n: CARLOS DOS SANTOS
430
- :t: :person
431
- :nn: Carlos dos Santos
432
- :sn: Carlos dos Santos
433
- :s: carlos-dos-santos
434
- - :n: 유정 신
435
- :t: :organization
436
- :nn: 유정 신
437
- :sn: 유정 신
438
- :s: 유정-신
439
- - :n: xxx%52zzz
440
- :t: :organization
441
- :nn: xxxRzzz
442
- :sn: xxxRzzz
443
- :s: xxxrzzz
444
- - :n: Евгений Болотнов
445
- :t: :organization
446
- :nn: Евгений Болотнов
447
- :sn: Евгений Болотнов
448
- :s: Евгений-Болотнов
449
- - :n: 김태성
450
- :t: :organization
451
- :nn: 김태성
452
- :sn: 김태성
453
- :s: 김태성
454
- - :n: ゴルフスタジアム
455
- :t: :organization
456
- :nn: ゴルフスタジアム
457
- :sn: ゴルフスタジアム
458
- :s: ゴルフスタジアム
459
- - :n: 我摘
460
- :t: :organization
461
- :nn: 我摘
462
- :sn: 我摘
463
- :s: 我摘
464
- - :n: Καρατζάς Στέφανος
465
- :t: :organization
466
- :nn: Καρατζάς Στέφανος
467
- :sn: Καρατζάς Στέφανος
468
- :s: Καρατζάς-Στέφανος
469
- - :n: โชติวัน วัฒนลาภ
470
- :t: :organization
471
- :nn: โชติวัน วัฒนลาภ
472
- :sn: โชติวัน วัฒนลาภ
473
- :s: โชติวัน-วัฒนลาภ
474
- - :n: 張 續寶
475
- :t: :organization
476
- :nn: 張 續寶
477
- :sn: 張 續寶
478
- :s: 張-續寶
479
- - :n: Юрий Гайдук
480
- :t: :organization
481
- :nn: Юрий Гайдук
482
- :sn: Юрий Гайдук
483
- :s: Юрий-Гайдук
484
- - :n: "☣ ©Ʀѱ∏†ʘ Σɏ§†℈Ϻ ☣"
485
- :t: :organization
486
- :nn: "☣ ©Ʀѱ∏†ʘ Σɏ§†℈Ϻ ☣"
487
- :sn: "☣ Ʀѱ∏†ʘ Σɏ§†℈Ϻ ☣"
488
- :s: "☣-Ʀѱ∏†ʘ-Σɏ§†℈Ϻ-☣"
489
- - :n: "♠ KlasikB0i ♠"
490
- :t: :organization
491
- :nn: "♠ KlasikB0i ♠"
492
- :sn: "♠ KlasikB0i ♠"
493
- :s: "♠-klasikb0i-♠"
494
- - :n: "* Shorusan *"
495
- :t: :organization
496
- :nn: "* Shorusan *"
497
- :sn: "* Shorusan *"
498
- :s: shorusan
499
- - :n: 项目谷
500
- :t: :organization
501
- :nn: 项目谷
502
- :sn: 项目谷
503
- :s: 项目谷
504
- - :n: ООО "Инновационные полимерные адгезивы"
505
- :t: :organization
506
- :nn: ООО "Инновационные полимерные адгезивы"
507
- :sn: ООО Инновационные полимерные адгезивы
508
- :s: ООО-Инновационные-полимерные-адгезивы
509
- - :n: عبدالله ...
510
- :t: :organization
511
- :nn: عبدالله ...
512
- :sn: عبدالله ...
513
- :s: عبدالله
514
- - :n: กมลชนก ทิศไธสง
515
- :t: :organization
516
- :nn: กมลชนก ทิศไธสง
517
- :sn: กมลชนก ทิศไธสง
518
- :s: กมลชนก-ทิศไธสง
519
- - :n: יוֹ אָב
520
- :t: :organization
521
- :nn: יוֹ אָב
522
- :sn: יוֹ אָב
523
- :s: יוֹ-אָב
524
- - :n: יגאל נימני
525
- :t: :organization
526
- :nn: יגאל נימני
527
- :sn: יגאל נימני
528
- :s: יגאל-נימני
529
- - :n: ניסים דניאלי
530
- :t: :organization
531
- :nn: ניסים דניאלי
532
- :sn: ניסים דניאלי
533
- :s: ניסים-דניאלי
534
- - :n: مساء الخير
535
- :t: :organization
536
- :nn: مساء الخير
537
- :sn: مساء الخير
538
- :s: مساء-الخير
539
- - :n: محمود ياسر
540
- :t: :organization
541
- :nn: محمود ياسر
542
- :sn: محمود ياسر
543
- :s: محمود-ياسر
544
- - :n: קובי ביטר
545
- :t: :organization
546
- :nn: קובי ביטר
547
- :sn: קובי ביטר
548
- :s: קובי-ביטר
549
- - :n: الملاك الحارس
550
- :t: :organization
551
- :nn: الملاك الحارس
552
- :sn: الملاك الحارس
553
- :s: الملاك-الحارس
554
- - :n: কবির হাসান
555
- :t: :organization
556
- :nn: কবির হাসান
557
- :sn: কবির হাসান
558
- :s: কবির-হাসান
559
- - :nn: ''
560
- :sn: ''
561
- :s: _
562
- - :n: Union Square Ventures
563
- :t: Organization
564
- :nn: Union Square Ventures
565
- :sn: Union Square Ventures
566
- :s: union-square-ventures
567
- - :n: John Smith
568
- :t: Person
569
- :nn: John Smith
570
- :sn: John Smith
571
- :s: john-smith
572
- - :n: John Smith
573
- :t: :nonsense
574
- :nn: John Smith
575
- :sn: John Smith
576
- :s: john-smith
577
- - :n: John Smith
578
- :t: !ruby/module 'Kernel'
579
- :nn: John Smith
580
- :sn: John Smith
581
- :s: john-smith
582
- - :n: Ms Jane Smith
583
- :t: :person
584
- :nn: Jane Smith
585
- :sn: Jane Smith
586
- :s: jane-smith
587
- - :n: example.com
588
- :t: :organization
589
- :nn: example.com
590
- :sn: example.com
591
- :s: example-com
592
- - :n: Hermann Müller
593
- :t: :person
594
- :nn: Hermann Müller
595
- :sn: Hermann Müller
596
- :s: hermann-muller
597
- - :n: b-to-v Partners AG
598
- :t: :organization
599
- :nn: b-to-v Partners
600
- :sn: b-to-v Partners
601
- :s: b-to-v-partners
602
- - :n: "*"
603
- :t: :person
604
- :nn: "*"
605
- :sn: "*"
606
- :s: _
607
- - :n: "* *"
608
- :t: :person
609
- :nn: "* *"
610
- :sn: "*"
611
- :s: _
612
- - :n: "* Olga *"
613
- :t: :person
614
- :nn: "* Olga *"
615
- :sn: Olga
616
- :s: olga
617
- - :n: "* Olga Bedia García *"
618
- :t: :person
619
- :nn: "* Olga Bedia García *"
620
- :sn: Olga García
621
- :s: olga-garcia
622
- - :n: Jose “Pepe” García
623
- :t: :organization
624
- :nn: Jose “Pepe” García
625
- :sn: Jose Pepe García
626
- :s: jose-pepe-garcia
627
- - :n: John Smith M.A. (Oxon)
628
- :t: :person
629
- :nn: John Smith
630
- :sn: John Smith
631
- :s: john-smith
632
- - :n: IBM
633
- :t: :organization
634
- :nn: IBM
635
- :sn: IBM
636
- :s: ibm
637
- - :n: I B M
638
- :t: :organization
639
- :nn: IBM
640
- :sn: IBM
641
- :s: ibm
642
- - :n: I-B-M
643
- :t: :organization
644
- :nn: I-B-M
645
- :sn: I-B-M
646
- :s: i-b-m
647
- - :n: I.B.M.
648
- :t: :organization
649
- :nn: I.B.M.
650
- :sn: IBM
651
- :s: ibm
652
- - :n: Unusuals — the ad industry network
653
- :t: :organization
654
- :nn: Unusuals — the ad industry network
655
- :sn: Unusuals - the ad industry network
656
- :s: unusuals-the-ad-industry-network
657
- - :n: Scout® Loyalty Optimizer
658
- :t: :organization
659
- :nn: Scout® Loyalty Optimizer
660
- :sn: Scout Loyalty Optimizer
661
- :s: scout-loyalty-optimizer
662
- - :n: René Descartes
663
- :t: :person
664
- :nn: René Descartes
665
- :sn: René Descartes
666
- :s: rene-descartes
667
- - :n: "John “Jonnoâ€\x9D Johnson"
668
- :t: :person
669
- :nn: John “Jonno” Johnson
670
- :sn: John Johnson
671
- :s: john-johnson
672
- - :n: Pablo M Sánchez
673
- :t: :person
674
- :nn: Pablo M Sánchez
675
- :sn: Pablo Sánchez
676
- :s: pablo-sanchez
677
- - :n: "’%80"
678
- :t: :person
679
- :nn: "’%80"
680
- :sn: "’%80"
681
- :s: "’80"
682
- - :n: "John Smith\uFEFF​‌‍⁣"
683
- :t: :person
684
- :nn: John Smith
685
- :sn: John Smith
686
- :s: john-smith
687
- - :n: Herman Melville ,CLP
688
- :t: :person
689
- :nn: Herman Melville
690
- :sn: Herman Melville
691
- :s: herman-melville
692
- - :n: Herman Melville, CLP®
693
- :t: :person
694
- :nn: Herman Melville
695
- :sn: Herman Melville
696
- :s: herman-melville
697
- - :n: Herman Melville, CLP™
698
- :t: :person
699
- :nn: Herman Melville
700
- :sn: Herman Melville
701
- :s: herman-melville
702
- - :n: Herman Melville, CLP®™
703
- :t: :person
704
- :nn: Herman Melville
705
- :sn: Herman Melville
706
- :s: herman-melville
707
- - :n: Herman Melville, CLP™®
708
- :t: :person
709
- :nn: Herman Melville
710
- :sn: Herman Melville
711
- :s: herman-melville
712
- - :n: Melville ,Herman
713
- :t: :person
714
- :nn: Herman Melville
715
- :sn: Herman Melville
716
- :s: herman-melville
717
- - :n: "John\x00 Smith"
718
- :t: :person
719
- :nn: John Smith
720
- :sn: John Smith
721
- :s: john-smith
722
- - :n: Janen Moyer-Pesso, AWMA, CDFA, LPS
723
- :t: :person
724
- :nn: Janen Moyer-Pesso
725
- :sn: Janen Moyer-Pesso
726
- :s: janen-moyer-pesso
727
- - :n: Dibble &amp; Grub LLP
728
- :t: :organization
729
- :nn: Dibble & Grub
730
- :sn: Dibble and Grub
731
- :s: dibble-and-grub
732
- - :n: Ms. Baron McClure
733
- :t: :person
734
- :nn: Baron McClure
735
- :sn: Baron McClure
736
- :s: baron-mcclure
737
- - :n: Rev. Andrew Wingfield Digby
738
- :t: :person
739
- :nn: Andrew Wingfield Digby
740
- :sn: Andrew Wingfield Digby
741
- :s: andrew-wingfield-digby