File size: 174,284 Bytes
f1a4b9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
{"id": 37835, "data": "lat ___ 'r.createElement(\\\\\"polygon\\\\\",{className:\\\\\"st2\\\\\",points:\\\\\"307.1,4.6 293,85.4 319.3,85.4 323.4,61.6 345.6,61.6 349.2,<TARGET_LAT> 327.1,41.3 329.6,26.3 360.5,26.3\\\\\\\\n\\\\\\\\t\\\\\\\\t\\\\\\\\t364.3,4.6 \\\\\\\\t\\\\\\\\t\\\\\",fill:\\\\\"#ffffff\\\\\",key:9})])))}n.defaultProps={version:\\\\\"1.1\\\\\",x:\\\\\"0px\\\\\",y'", "label": 0}
{"id": 37836, "data": "lat ___ 'W 2009\\\\\",\\\\\"postal_code\\\\\":\\\\\"2009\\\\\",\\\\\"address_1\\\\\":\\\\\"Pirrama Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"Pirrama Road\\\\\",\\\\\"Pyrmont, NSW 2009\\\\\"],\\\\\"localized_are'", "label": 1}
{"id": 37837, "data": "lat ___ \"rusevo (416)</a></td><td valign='top'><a ll='41.0889,21.0122' zo='61282' nm='Resen' class='townfilter'>Resen (383)</a><a ll='<TARGET_LAT>,22.3319' zo='129699' nm='Kriva Palanka' class='townfilter'>Kriva Palanka (317)</a><a ll='41.7031,22.8578' zo='133326' nm='Be\"", "label": 1}
{"id": 37838, "data": "lat ___ '00\\\\\",\\\\\"postal_code\\\\\":\\\\\"2000\\\\\",\\\\\"address_1\\\\\":\\\\\"14 Darling Drive\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"14 Darling Drive\\\\\",\\\\\"Sydney, NSW 2000\\\\\"],\\\\\"localized_'", "label": 1}
{"id": 37839, "data": "lat ___ 'in\\\\\",\\\\\"postal_code\\\\\":\\\\\"D22 A7X6\\\\\",\\\\\"address_1\\\\\":\\\\\"Fonthill Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"Fonthill Road\\\\\",\\\\\"D22 A7X6 Dublin\\\\\"],\\\\\"localized_area'", "label": 1}
{"id": 37840, "data": "lat ___ '\":\\\\\"1 Amiens Street, Dublin 1\\\\\",\\\\\"address_1\\\\\":\\\\\"1 Amiens Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"1 Amiens Street\\\\\",\\\\\"Dublin 1\\\\\"],\\\\\"localized_area_disp'", "label": 1}
{"id": 37841, "data": "lat ___ '\\\\\\\\\\\\\"/marko$4.24.2/dist/runtime/components/registry-browser\\\\\\\\\\\\\"),m=s.r,a=m(\\\\\\\\\\\\\"/globalheaderfrontend$<TARGET_LAT>.0/src/ui-modules/third-party/device-finger-printing/index.marko\\\\\\\\\\\\\",function(){return r.exports}),l'", "label": 0}
{"id": 37842, "data": "lat ___ '00\\\\\",\\\\\"postal_code\\\\\":\\\\\"5000\\\\\",\\\\\"address_1\\\\\":\\\\\"Gouger Street\\\\\",\\\\\"address_2\\\\\":\\\\\"#44\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>9999\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"Gouger Street\\\\\",\\\\\"#44\\\\\",\\\\\"Adelaide, SA 5000\\\\\"],\\\\\"'", "label": 1}
{"id": 37843, "data": "lat ___ 'lon\\\\\":15.46875}}},{\\\\\"g\\\\\":\\\\\"u3c\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":54.84375,\\\\\"lon\\\\\":12.65625},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":<TARGET_LAT>,\\\\\"lon\\\\\":14.0625}}},{\\\\\"g\\\\\":\\\\\"u3b\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":54.84375,\\\\\"lon\\\\\":11.25},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":5'", "label": 1}
{"id": 37844, "data": "lat ___ '\\\\\",\\\\\"postal_code\\\\\":\\\\\"M5A 1B6\\\\\",\\\\\"address_1\\\\\":\\\\\"11 Polson Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"11 Polson Street\\\\\",\\\\\"Toronto, ON M5A 1B6\\\\\"],\\\\\"localiz'", "label": 1}
{"id": 37845, "data": "lat ___ 'edisCDXSource: 0.611\\\\n  esindex: 0.009\\\\n  LoadShardBlock: 79.212 (3)\\\\n  PetaboxLoader3.datanode: 91.95 (4)\\\\n  CDXLines.iter: <TARGET_LAT> (3)\\\\n  load_resource: 97.599\\\\n  PetaboxLoader3.resolve: 38.121\\\\n*/\\\\n\",\"uslax_106\":\"<!DOCTYPE html PUBLIC \\\\\"-//W3C//DTD XHTML'", "label": 0}
{"id": 37846, "data": "lat ___ '\\\\\",\\\\\"postal_code\\\\\":\\\\\"5006\\\\\",\\\\\"address_1\\\\\":\\\\\"War Memorial Drive\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"War Memorial Drive\\\\\",\\\\\"North Adelaide, SA 5006\\\\\"],\\\\\"l'", "label": 1}
{"id": 37847, "data": "lat ___ \"0,null,'ais','OH2AAV','FIHEL (ETA Jun07 01:00)','',0,0)</js>\\\\n<js>pnt(4097574,1654634861,1654634861,<TARGET_LAT>,25.59614,151,23,null,'ais','Cloudship','FI NLI (ETA Jun08 10:00)','',0,0)</js>\\\\n<js>pnt(1131573,165\"", "label": 1}
{"id": 37848, "data": "lat ___ \"        lng: 15.585257948182289\\\\n        },\\\\n        'B': {\\\\n          lat: 48.408377031358654,\\\\n          lng: 15.585654915116493\\\\n        },\\\\n        'C': {\\\\n          lat: <TARGET_LAT>62324,\\\\n          lng: 15.58621281459159\\\\n        },\\\\n        'D': {\\\\n          lat: 48.408508787862324,\\\\n          lng: 15.586759985230628\\\\n        },\\\\n        'E': {\\\\n      \"", "label": 1}
{"id": 37849, "data": "lat ___ 'y</option>\\\\n<option value=\\\\\"3090;45.88097;18.4278499\\\\\">Vill\u00e1nyk\u00f6vesd</option>\\\\n<option value=\\\\\"3091;<TARGET_LAT>;18.064148\\\\\">Vilonya</option>\\\\n<option value=\\\\\"3092;48.496411;21.557986\\\\\">Vilyvit\u00e1ny</option>\\\\n<opti'", "label": 0}
{"id": 37850, "data": "lat ___ 'el\\\\\":5,\\\\\"lon\\\\\":18.0626392364502,\\\\\"lat\\\\\":<TARGET_LAT>869,\\\\\"data_lon\\\\\":18.0626392364502,\\\\\"data_lat\\\\\":59.3294681359869,\\\\\"type\\\\\":[\\\\\"PPLC\\\\\"],\\\\\"municipality\\\\\":\\\\\"Stockholm\\\\\",\\\\\"county\\\\\":\\\\\"Stockholms l\u00e4n\\\\\",\\\\\"country\\\\\":\\\\\"S'", "label": 1}
{"id": 37851, "data": "lat ___ 'stad\\\\\",\\\\\"timezone\\\\\":\\\\\"Europe/Stockholm\\\\\",\\\\\"zoomlevel\\\\\":6,\\\\\"data_lon\\\\\":13.5035705566406,\\\\\"data_lat\\\\\":<TARGET_LAT>137,\\\\\"municipality\\\\\":\\\\\"Karlstad\\\\\",\\\\\"county\\\\\":\\\\\"V\u00e4rmlands l\u00e4n\\\\\",\\\\\"country\\\\\":\\\\\"Sverige\\\\\",\\\\\"district\\\\\":'", "label": 1}
{"id": 37852, "data": "lat ___ \"        lng: 15.588878930352394\\\\n        },\\\\n        'H': {\\\\n          lat: 48.408063663167674,\\\\n          lng: 15.586781442902748\\\\n        },\\\\n        'I': {\\\\n          lat: <TARGET_LAT>8075,\\\\n          lng: 15.58671170546836\\\\n        },\\\\n        'J': {\\\\n          lat: 48.40777522028519,\\\\n          lng: 15.58623963668174\\\\n        },\\\\n        'K': {\\\\n         \"", "label": 1}
{"id": 37853, "data": "lat ___ '\\\\\"place\\\\\":\\\\\"Stavanger\\\\\",\\\\\"timezone\\\\\":\\\\\"Europe/Oslo\\\\\",\\\\\"zoomlevel\\\\\":6,\\\\\"data_lon\\\\\":5.75,\\\\\"data_lat\\\\\":<TARGET_LAT>,\\\\\"country\\\\\":\\\\\"Norge\\\\\",\\\\\"lat\\\\\":58.9666667,\\\\\"lon\\\\\":5.75},\\\\\"timeSeries\\\\\":[{\\\\\"validTime\\\\\":\\\\\"2022-06-07T'", "label": 1}
{"id": 37854, "data": "lat ___ 'rection:\\\\\"left\\\\\",offset:window.L.point(-30,0)}).openTooltip(),window.L.polygon([[49.61601,6.09997],[<TARGET_LAT>,6.10063],[49.61552,6.10042],[49.61561,6.09976]]).addTo(e),window.L.marker([49.61575,6.10019],{icon:'", "label": 0}
{"id": 37855, "data": "lat ___ '\",\\\\\"name\\\\\":\\\\\"Tai Po Market\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u5927\\\\\\\\u57d4\\\\\\\\u589f\\\\\",\\\\\"lineIDs\\\\\":[17],\\\\\"coordinate\\\\\":\\\\\"<TARGET_LAT>,114.1701950\\\\\"},{\\\\\"ID\\\\\":67,\\\\\"alias\\\\\":\\\\\"TAW\\\\\",\\\\\"name\\\\\":\\\\\"Tai Wai\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u5927\\\\\\\\u570d\\\\\",\\\\\"li'", "label": 1}
{"id": 37856, "data": "lat ___ '25,\\\\\"lon\\\\\":11.25}}},{\\\\\"g\\\\\":\\\\\"u1y\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":54.84375,\\\\\"lon\\\\\":8.4375},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":<TARGET_LAT>,\\\\\"lon\\\\\":9.84375}}},{\\\\\"g\\\\\":\\\\\"u1v\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":54.84375,\\\\\"lon\\\\\":7.03125},\\\\\"ne\\\\\":{\\\\\"lat\\\\\"'", "label": 1}
{"id": 37857, "data": "lat ___ 'holm\\\\\",\\\\\"timezone\\\\\":\\\\\"Europe/Stockholm\\\\\",\\\\\"zoomlevel\\\\\":5,\\\\\"data_lon\\\\\":18.0626392364502,\\\\\"data_lat\\\\\":<TARGET_LAT>869,\\\\\"municipality\\\\\":\\\\\"Stockholm\\\\\",\\\\\"county\\\\\":\\\\\"Stockholms l\u00e4n\\\\\",\\\\\"country\\\\\":\\\\\"Sverige\\\\\",\\\\\"district\\\\'", "label": 1}
{"id": 37858, "data": "lat ___ 'itude:1.297,longitude:103.891}},{name:\\\\\"Novena\\\\\",alternatives:[\\\\\"novena\\\\\"],label_location:{latitude:<TARGET_LAT>,longitude:103.826}},{name:\\\\\"Pasir Ris\\\\\",alternatives:[\\\\\"pasir ris\\\\\",\\\\\"pasirris\\\\\",\\\\\"downtown east\\\\\"]'", "label": 1}
{"id": 37859, "data": "lat ___ '\\\\\",\\\\\"postal_code\\\\\":\\\\\"5000\\\\\",\\\\\"address_1\\\\\":\\\\\"55 North Terrace\\\\\",\\\\\"address_2\\\\\":\\\\\"Alan Scott Auditorium H2-16\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"55 North Terrace\\\\\",\\\\\"Alan Scott Auditorium H2-16\\\\\",\\\\\"Adelaide, SA 5000\\\\\"],\\\\\"lo'", "label": 1}
{"id": 37860, "data": "lat ___ '7\\\\\",\\\\\"postal_code\\\\\":\\\\\"5007\\\\\",\\\\\"address_1\\\\\":\\\\\"31 Drayton Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>0001\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"31 Drayton Street\\\\\",\\\\\"Bowden, SA 5007\\\\\"],\\\\\"locali'", "label": 1}
{"id": 37861, "data": "lat ___ '39\\\\\",\\\\\"name\\\\\":\\\\\"D\u00f6sjebro\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":13.134722222222221,\\\\\"lat\\\\\":<TARGET_LAT>77774},\\\\\"synonyms\\\\\":[\\\\\"EBBARP\\\\\"],\\\\\"lId\\\\\":\\\\\"33056\\\\\",\\\\\"name\\\\\":\\\\\"Ebbarp\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{'", "label": 1}
{"id": 37862, "data": "lat ___ '1 11.401 11.985 11.401h41.17c6.394 0 11.666-5.014\\\\\\\\n            11.985-11.401l6.8-136c.343-6.854-5.122-12.599-11.985-12.599h-<TARGET_LAT>c-6.863\\\\\\\\n            0-12.328 5.745-11.985 12.599z\\\\\"}})])])]),t._v(\\\\\" \\\\\"),n(\\\\\"span\\\\\",{staticClass:\\\\\"chat-bubble\\\\\",class:t.bo'", "label": 0}
{"id": 37863, "data": "lat ___ '1a1a;right:0}.tab-bar-section{padding:0 .625rem;text-align:center}@media only screen and (min-width:<TARGET_LAT>em){.tab-bar-section.left{text-align:left}.tab-bar-section.right{text-align:right}}.tab-bar-section.'", "label": 0}
{"id": 37864, "data": "lat ___ 'h(\\\\\"\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"Ministria e Finances dhe Ekonomise\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"<TARGET_LAT>\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"19.8163962\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"ministrite\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\tma'", "label": 0}
{"id": 37865, "data": "lat ___ '\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"Agjencia e Ofrimit te Sherbimeve t\u00eb Integruara\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"<TARGET_LAT>\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"19.8081236\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"institucione\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\t'", "label": 0}
{"id": 37866, "data": "lat ___ '\\\\\",\\\\\"name\\\\\":\\\\\"Fun\u00e4sdalen\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":15.592500000000001,\\\\\"lat\\\\\":<TARGET_LAT>5556},\\\\\"synonyms\\\\\":[\\\\\"FUR SJUKHUS\\\\\"],\\\\\"lId\\\\\":\\\\\"24854\\\\\",\\\\\"name\\\\\":\\\\\"Fur sjukhus\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"pr'", "label": 1}
{"id": 37867, "data": "lat ___ '1\\\\\",\\\\\"postal_code\\\\\":\\\\\"2211\\\\\",\\\\\"address_1\\\\\":\\\\\"24-28 Howard Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"24-28 Howard Road\\\\\",\\\\\"Padstow, NSW 2211\\\\\"],\\\\\"localize'", "label": 1}
{"id": 37868, "data": "lat ___ ',\\\\\"postal_code\\\\\":\\\\\"2011\\\\\",\\\\\"address_1\\\\\":\\\\\"19-35 Bayswater Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"19-35 Bayswater Road\\\\\",\\\\\"Potts Point, NSW 2011\\\\\"],\\\\\"l'", "label": 1}
{"id": 37869, "data": "lat ___ '9662006],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.481735118728654, 53.22644954262028],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.504711920037211, <TARGET_LAT>5001],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.535954642435966, 53.18652685951135],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.620785825688083, 53.'", "label": 1}
{"id": 37870, "data": "lat ___ 'telep</option>\\\\n<option value=\\\\\"807;46.3657418;19.9093455\\\\\">Forr\u00e1sk\u00fat</option>\\\\n<option value=\\\\\"808;<TARGET_LAT>;21.0880642\\\\\">Forr\u00f3</option>\\\\n<option value=\\\\\"809;47.6167;19.2\\\\\">F\u00f3t</option>\\\\n<option value=\\\\\"810;4'", "label": 0}
{"id": 37871, "data": "lat ___ '  },\\\\n                    \\\\\"commune\\\\\": {\\\\n                      \\\\\"stringValue\\\\\": \\\\\"Luxembourg\\\\\"\\\\n                    },\\\\n                    \\\\\"longitude\\\\\": {\\\\n                      \\\\\"stringValue\\\\\": \\\\\"<TARGET_LAT>9648\\\\\"\\\\n                    },\\\\n                    \\\\\"town\\\\\": {\\\\n                      \\\\\"stringValue\\\\\": \\\\\"Luxembourg\\\\\"\\\\n                    },\\\\n                    \\\\\"country\\\\\": {\\\\n                    '", "label": 1}
{"id": 37872, "data": "lat ___ '.723}},{name:\\\\\"Leeuwarden\\\\\",location:{lon:5.8,lat:53.201}},{name:\\\\\"Leiden\\\\\",location:{lon:4.494,lat:<TARGET_LAT>}},{name:\\\\\"Maastricht\\\\\",location:{lon:5.683,lat:50.85}},{name:\\\\\"Nijmegen\\\\\",location:{lon:5.853,lat:5'", "label": 1}
{"id": 37873, "data": "lat ___ 'ign:\\\\\"left\\\\\",contain:!0,pageDots:!1,arrowShape:\\\\\"M39.17 48.214l8.624-7.695-1.153-1.233-10.927 9.821L<TARGET_LAT> 58.93l1.153-1.234L39.171 50h25.114v-1.786H39.171z\\\\\"},titleAsLink:!0,isSSR:!0,isLoading:!0,size:\\\\\"sl'", "label": 0}
{"id": 37874, "data": "lat ___ 'uicCode\\\\\":\\\\\"8400057\\\\\",\\\\\"stationCode\\\\\":\\\\\"ASA\\\\\",\\\\\"name\\\\\":\\\\\"Amsterdam Amstel\\\\\",\\\\\"coordinate\\\\\":{\\\\\"lat\\\\\":<TARGET_LAT>082,\\\\\"lng\\\\\":4.91777801513672},\\\\\"countryCode\\\\\":\\\\\"NL\\\\\"},{\\\\\"uicCode\\\\\":\\\\\"8400194\\\\\",\\\\\"stationCode\\\\\":\\\\\"DVD'", "label": 1}
{"id": 37875, "data": "lat ___ '\\\\\"name\\\\\":\\\\\"Kn\u00e4red Freden\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":13.204722222222221,\\\\\"lat\\\\\":<TARGET_LAT>1111},\\\\\"synonyms\\\\\":[\\\\\"KN\u00c4RED KATTARP\\\\\"],\\\\\"lId\\\\\":\\\\\"33060\\\\\",\\\\\"name\\\\\":\\\\\"Kn\u00e4red Kattarp\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\'", "label": 1}
{"id": 37876, "data": "lat ___ '\"Ginevra\\\\\"],[2659994,46.515999,6.63282,\\\\\"Lausanne\\\\\",\\\\\"Lausanne\\\\\",\\\\\"Lausanne\\\\\",\\\\\"Losanna\\\\\"],[7286622,<TARGET_LAT>,6.9381,\\\\\"Neuch\u00e2tel\\\\\",\\\\\"Neuch\u00e2tel\\\\\",\\\\\"Neuch\u00e2tel\\\\\",\\\\\"Neuch\u00e2tel\\\\\"],[2661567,46.19278,9.01703,\\\\\"Bellinz'", "label": 0}
{"id": 37877, "data": "lat ___ 'e\\\\\":\\\\\"Lund Gastelyckan \u00d6\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":13.214166666666666,\\\\\"lat\\\\\":<TARGET_LAT>5556},\\\\\"synonyms\\\\\":[\\\\\"LUND IDEONTORGET\\\\\"],\\\\\"lId\\\\\":\\\\\"21814\\\\\",\\\\\"name\\\\\":\\\\\"Lund Ideontorget\\\\\",\\\\\"pId\\\\\":\\\\\"'", "label": 1}
{"id": 37878, "data": "lat ___ '97\\\\\">C\u00e9g\u00e9nyd\u00e1ny\u00e1d</option>\\\\n<option value=\\\\\"427;47.1667;19.8\\\\\">Cegl\u00e9d</option>\\\\n<option value=\\\\\"428;<TARGET_LAT>;19.72119\\\\\">Cegl\u00e9d - Budai \u00fat</option>\\\\n<option value=\\\\\"429;47.2167;19.6833\\\\\">Cegl\u00e9dbercel</option>\\\\'", "label": 0}
{"id": 37879, "data": "lat ___ '&quot;:&quot;2022-06-06T15:57:02.000+0000&quot;,&quot;lastModifiedDate&quot;:&quot;2022-06-06T16:07:<TARGET_LAT>+0000&quot;,&quot;url&quot;:&quot;https://www.walesonline.co.uk/lifestyle/tv/love-island-2022-contes'", "label": 0}
{"id": 37880, "data": "lat ___ '[0,0]],\\\\\"v\\\\\":[[45.004,-19.658],[42.104,-30.357],[31.727,-33.838],[21.221,-33.838],[21.221,-29.068],[<TARGET_LAT>,-29.068],[38.043,-26.555],[39.333,-19.014],[39.333,0],[45.004,0]],\\\\\"c\\\\\":true},\\\\\"ix\\\\\":2},\\\\\"nm\\\\\":\\\\\"\\\\\\\\'", "label": 0}
{"id": 37881, "data": "lat ___ 'ongitude\\\\\":21.770997,\\\\\"parentId\\\\\":null,\\\\\"hasChilds\\\\\":true},{\\\\\"id\\\\\":7,\\\\\"name\\\\\":\\\\\"\u0428\u0442\u0438\u043f\\\\\",\\\\\"latitude\\\\\":<TARGET_LAT>,\\\\\"longitude\\\\\":22.19396,\\\\\"parentId\\\\\":null,\\\\\"hasChilds\\\\\":true},{\\\\\"id\\\\\":8,\\\\\"name\\\\\":\\\\\"\u041e\u0445\u0440\u0438\u0434\\\\\",\\\\\"latitud'", "label": 1}
{"id": 37882, "data": "lat ___ '36097517],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[6.752972304110535, 53.56291344189559],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[6.72846305039289, <TARGET_LAT>3289],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[6.754629496686325, 53.59624290611518],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[6.796886242456751, 53.'", "label": 1}
{"id": 37883, "data": "lat ___ 'T 2601\\\\\",\\\\\"postal_code\\\\\":\\\\\"2601\\\\\",\\\\\"address_1\\\\\":\\\\\"Building 38A\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"Building 38A\\\\\",\\\\\"Acton, ACT 2601\\\\\"],\\\\\"localized_area_'", "label": 1}
{"id": 37884, "data": "lat ___ 'me\\\\\":\\\\\"Skummesl\u00f6vsstrand\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":12.937222222222223,\\\\\"lat\\\\\":<TARGET_LAT>1111},\\\\\"synonyms\\\\\":[\\\\\"SKUMMESL\u00d6V STJ\u00c4RNHEM\\\\\"],\\\\\"lId\\\\\":\\\\\"33085\\\\\",\\\\\"name\\\\\":\\\\\"Skummesl\u00f6v Stj\u00e4rnhem\\\\\",\\\\\"'", "label": 1}
{"id": 37885, "data": "lat ___ '9\\\\\",\\\\\"postal_code\\\\\":\\\\\"2609\\\\\",\\\\\"address_1\\\\\":\\\\\"18 Kallaroo Road,\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>0001\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"18 Kallaroo Road\\\\\",\\\\\"Pialligo, ACT 2609\\\\\"],\\\\\"loca'", "label": 1}
{"id": 37886, "data": "lat ___ '606\\\\\",\\\\\"postal_code\\\\\":\\\\\"2606\\\\\",\\\\\"address_1\\\\\":\\\\\"25 Dundas Court\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"25 Dundas Court\\\\\",\\\\\"Phillip, ACT 2606\\\\\"],\\\\\"localized_'", "label": 1}
{"id": 37887, "data": "lat ___ '\"postal_code\\\\\":\\\\\"2601\\\\\",\\\\\"address_1\\\\\":\\\\\"31 Constitution Avenue\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"31 Constitution Avenue\\\\\",\\\\\"Canberra, ACT 2601\\\\\"],\\\\\"lo'", "label": 1}
{"id": 37888, "data": "lat ___ '0038146973],15,0,[[\\\\\"0x40c97c2d03e2c6b1:0xd8e8b74ac8c3ef7b\\\\\",\\\\\"Moldova State University, Alexei Mateevici St 60, Chi\u0219in\u0103u\\\\\",[<TARGET_LAT>,28.8230857],\\\\\"15629944038613053307\\\\\"],\\\\\"Moldova State University\\\\\",[\\\\\"Alexei Mateevici St 60\\\\\",\\\\\"Chi\u0219in\u0103u\\\\\"],4.5,\\\\\"411 revie'", "label": 0}
{"id": 37889, "data": "lat ___ 'px;font-size:3rem;line-height:1.05}}h2{font-size:26px;font-size:1.625rem;line-height:1.15384615}@media screen and (min-width:<TARGET_LAT>em){h2{font-size:32px;font-size:2rem;line-height:1.25}}@media screen and (min-width:64em){h2{font-size:36px;font-size:2.25rem'", "label": 0}
{"id": 37890, "data": "lat ___ 'gitude\\\\\":21.463615,\\\\\"parentId\\\\\":1,\\\\\"hasChilds\\\\\":false},{\\\\\"id\\\\\":285,\\\\\"name\\\\\":\\\\\"\u0411\u0438\u0442\u043e\u043b\u0430\\\\\",\\\\\"latitude\\\\\":<TARGET_LAT>,\\\\\"longitude\\\\\":21.329358,\\\\\"parentId\\\\\":2,\\\\\"hasChilds\\\\\":false},{\\\\\"id\\\\\":286,\\\\\"name\\\\\":\\\\\"\u041c\u043e\u0433\u0438\u043b\u0430\\\\\",\\\\\"latit'", "label": 1}
{"id": 37891, "data": "lat ___ 'div class=\\\\\"audiolist_item_label\\\\\">24.01.2022 - L\u00d5UNATUND - Esmasp\u00e4ev</div>\\\\n    <div class=\\\\\"audiolist_item_meta\\\\\">1:05:27 (<TARGET_LAT> MB)</div>\\\\n\\\\n    <input name=\\\\\"bt_play_me\\\\\" type=\\\\\"image\\\\\" class=\\\\\"audiolist_item_bt_play\\\\\" src=\\\\\"images/audiolist/audiolist'", "label": 0}
{"id": 37892, "data": "lat ___ '\\\\\",\\\\\"postal_code\\\\\":\\\\\"6000\\\\\",\\\\\"address_1\\\\\":\\\\\"50 Beaufort Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"50 Beaufort Street\\\\\",\\\\\"Perth, WA 6000\\\\\"],\\\\\"localized_'", "label": 1}
{"id": 37893, "data": "lat ___ '132365],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.650632387019826, 53.602565219916634],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.623296265692531, <TARGET_LAT>3504],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.592283299874127, 53.59293261176527],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.558768776140168, 53.'", "label": 1}
{"id": 37894, "data": "lat ___ 'pG:black=\\\\\"5.000000\\\\\"/> <rdf:li xmpG:swatchName=\\\\\"C=50 M=50 Y=60 K=25\\\\\" xmpG:mode=\\\\\"CMYK\\\\\" xmpG:type=\\\\\"PROCESS\\\\\" xmpG:cyan=\\\\\"<TARGET_LAT>\\\\\" xmpG:magenta=\\\\\"50.000000\\\\\" xmpG:yellow=\\\\\"60.000000\\\\\" xmpG:black=\\\\\"25.000000\\\\\"/> <rdf:li xmpG:swatchName=\\\\\"C=55 M=60 Y=65 K'", "label": 0}
{"id": 37895, "data": "lat ___ 'o-title\\\\\":\\\\\"max-height:48.0px;*height:48.0px;color:#000000;font-family:\\'Open Sans\\', Helvetica, Verdana, sans-serif;font-size:<TARGET_LAT>px;line-height:24.0px;font-weight:bold;text-decoration:none;padding:0;\\\\\",\\\\\".video-label-box.trc-pre-label\\\\\":\\\\\"height:auto;\\\\\",'", "label": 0}
{"id": 37896, "data": "lat ___ '0;\\\\\",\\\\\".video-description\\\\\":\\\\\"font-family:Arial, Helvetica, sans-serif;font-size:16.0px;line-height:<TARGET_LAT>px;font-weight:normal;max-height:40.0px;*height:40.0px;color:#000000;text-decoration:none;\\\\\",\\\\\".vide'", "label": 0}
{"id": 37897, "data": "lat ___ \"8435,221,0,null,'ais','OH2AAV','SEGVX&gt;FISKV','',0,0)</js>\\\\n<js>pnt(2136583,1654632324,1654633044,<TARGET_LAT>,25.50878,212,0,null,'ais','OH2AAV','FISKV (ETA Jun06 18:00)','',0,0)</js>\\\\n<js>pnt(3158623,16546330\"", "label": 1}
{"id": 37898, "data": "lat ___ '\"postal_code\\\\\":\\\\\"2204\\\\\",\\\\\"address_1\\\\\":\\\\\"531-565 Illawarra Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"531-565 Illawarra Road\\\\\",\\\\\"Marrickville, NSW 2204\\\\\"],'", "label": 1}
{"id": 37899, "data": "lat ___ \"lter'>Resen (383)</a><a ll='42.2019,22.3319' zo='129699' nm='Kriva Palanka' class='townfilter'>Kriva Palanka (317)</a><a ll='<TARGET_LAT>,22.8578' zo='133326' nm='Berovo' class='townfilter'>Berovo (315)</a><a ll='41.525,20.5275' zo='118127' nm='Debar' class='tow\"", "label": 1}
{"id": 37900, "data": "lat ___ '\\\\\"name\\\\\":\\\\\"Laholm Altona\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":13.025833333333335,\\\\\"lat\\\\\":<TARGET_LAT>33335},\\\\\"synonyms\\\\\":[\\\\\"LAHOLM BL\u00c5KULLA\\\\\"],\\\\\"lId\\\\\":\\\\\"21632\\\\\",\\\\\"name\\\\\":\\\\\"Laholm Bl\u00e5kulla\\\\\",\\\\\"pId\\\\\":\\\\\"0'", "label": 1}
{"id": 37901, "data": "lat ___ \"E','Mikael','5787464,2724268,,5787464',5787464,5787464)</js>\\\\n<js>pnt(3178433,1654632881,1654632881,<TARGET_LAT>,24.89761,183,41,null,'ais','Cloudship','EETLL&lt;&gt;FIHEL (ETA Jun07 22:00)','',0,0)</js>\\\\n<js>pnt\"", "label": 1}
{"id": 37902, "data": "lat ___ 'ation\\\\\":{\\\\\"lat\\\\\":52.2289,\\\\\"lng\\\\\":21.0756},\\\\\"index\\\\\":{\\\\\"level\\\\\":2}},\\\\\"90064\\\\\":{\\\\\"location\\\\\":{\\\\\"lat\\\\\":<TARGET_LAT>,\\\\\"lng\\\\\":20.9763},\\\\\"index\\\\\":{\\\\\"level\\\\\":2}},\\\\\"90184\\\\\":{\\\\\"location\\\\\":{\\\\\"lat\\\\\":52.2376,\\\\\"lng\\\\\":21.0575}'", "label": 1}
{"id": 37903, "data": "lat ___ 'Hilton, SA 5033\\\\\",\\\\\"postal_code\\\\\":\\\\\"5033\\\\\",\\\\\"address_1\\\\\":\\\\\"145 Sir Donald Bradman Drive\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"145 Sir Donald Bradman Drive\\\\\",\\\\\"Hilton, SA 5033\\\\\"],\\\\\"localized_area_display\\\\\"'", "label": 1}
{"id": 37904, "data": "lat ___ ',\\\\\"postal_code\\\\\":\\\\\"5153\\\\\",\\\\\"address_1\\\\\":\\\\\"178 Scott Creek Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>9999\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"178 Scott Creek Road\\\\\",\\\\\"Heathfield, SA 5153\\\\\"],\\\\'", "label": 1}
{"id": 37905, "data": "lat ___ ', SA 5007\\\\\",\\\\\"postal_code\\\\\":\\\\\"5007\\\\\",\\\\\"address_1\\\\\":\\\\\"Manton St\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"Manton St\\\\\",\\\\\"Hindmarsh, SA 5007\\\\\"],\\\\\"localized_area_'", "label": 1}
{"id": 37906, "data": "lat ___ '\\\\\"uicCode\\\\\":\\\\\"8400533\\\\\",\\\\\"stationCode\\\\\":\\\\\"RTZ\\\\\",\\\\\"name\\\\\":\\\\\"Rotterdam Zuid\\\\\",\\\\\"coordinate\\\\\":{\\\\\"lat\\\\\":<TARGET_LAT>934,\\\\\"lng\\\\\":4.51027774810791},\\\\\"countryCode\\\\\":\\\\\"NL\\\\\"},{\\\\\"uicCode\\\\\":\\\\\"8400542\\\\\",\\\\\"stationCode\\\\\":\\\\\"RLB'", "label": 1}
{"id": 37907, "data": "lat ___ '37135\\\\\",\\\\\"lon\\\\\":\\\\\"-8.396\\\\\",\\\\\"metadata\\\\\":[],\\\\\"name\\\\\":\\\\\"A Coru\u00f1a\\\\\",\\\\\"value\\\\\":[\\\\\"246000\\\\\"]},{\\\\\"lat\\\\\":\\\\\"<TARGET_LAT>\\\\\",\\\\\"lon\\\\\":\\\\\"-3.662\\\\\",\\\\\"metadata\\\\\":[],\\\\\"name\\\\\":\\\\\"Puente de Vallecas\\\\\",\\\\\"value\\\\\":[\\\\\"244000\\\\\"]},{\\\\\"lat'", "label": 1}
{"id": 37908, "data": "lat ___ '{lat:<TARGET_LAT>,lon:23.327279,zoom:17},\\\\\"/112\\\\\":{lat:42.659812,lon:23.347074,zoom:17},\\\\\"/dkao\\\\\":{lat:42.691078,lon:23.327279,zoom:17},\\\\\"/dap\\\\\":{lat:42.691078,lon:23.327279,zoom:17},\\\\\"/dbds\\\\\":{lat:42.703332,lon:'", "label": 1}
{"id": 37909, "data": "lat ___ 'stad\\\\\",\\\\\"timezone\\\\\":\\\\\"Europe/Stockholm\\\\\",\\\\\"zoomlevel\\\\\":6,\\\\\"data_lon\\\\\":13.5035705566406,\\\\\"data_lat\\\\\":<TARGET_LAT>137,\\\\\"municipality\\\\\":\\\\\"Karlstad\\\\\",\\\\\"county\\\\\":\\\\\"V\u00e4rmlands l\u00e4n\\\\\",\\\\\"country\\\\\":\\\\\"Sverige\\\\\",\\\\\"district\\\\\":'", "label": 1}
{"id": 37910, "data": "lat ___ '2.691078,lon:23.327279,zoom:17},\\\\\"/dbds\\\\\":{lat:<TARGET_LAT>,lon:23.323544,zoom:17},\\\\\"/migration\\\\\":{lat:42.703332,lon:23.323544,zoom:17},\\\\\"/dop\\\\\":{lat:42.691078,lon:23.327279,zoom:17},\\\\\"/dussd\\\\\":{lat:42.696541,lon'", "label": 1}
{"id": 37911, "data": "lat ___ 'el\\\\\":5,\\\\\"lon\\\\\":18.0626392364502,\\\\\"lat\\\\\":<TARGET_LAT>869,\\\\\"data_lon\\\\\":18.0626392364502,\\\\\"data_lat\\\\\":59.3294681359869,\\\\\"type\\\\\":[\\\\\"PPLC\\\\\"],\\\\\"municipality\\\\\":\\\\\"Stockholm\\\\\",\\\\\"county\\\\\":\\\\\"Stockholms l\u00e4n\\\\\",\\\\\"country\\\\\":\\\\\"S'", "label": 1}
{"id": 37912, "data": "lat ___ '\">Hangony</option>\\\\n<option value=\\\\\"984;47.000609;18.6992392\\\\\">Hantos</option>\\\\n<option value=\\\\\"985;<TARGET_LAT>;16.5521362\\\\\">Harasztifalu</option>\\\\n<option value=\\\\\"986;46.4001662;18.6186619\\\\\">Harc</option>\\\\n<opt'", "label": 0}
{"id": 37913, "data": "lat ___ 'WH\\\\\",\\\\\"name\\\\\":\\\\\"Sai Wan Ho\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u897f\\\\\\\\u7063\\\\\\\\u6cb3\\\\\",\\\\\"lineIDs\\\\\":[13],\\\\\"coordinate\\\\\":\\\\\"<TARGET_LAT>,114.2220750\\\\\"},{\\\\\"ID\\\\\":81,\\\\\"alias\\\\\":\\\\\"SYP\\\\\",\\\\\"name\\\\\":\\\\\"Sai Ying Pun\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u897f\\\\\\\\u71df\\\\\\\\'", "label": 1}
{"id": 37914, "data": "lat ___ 'nch\\\\\\\\\\\\\",\\\\\\\\\\\\\"org\\\\\\\\\\\\\":{\\\\\\\\\\\\\"id\\\\\\\\\\\\\":\\\\\\\\\\\\\"70000001046014929\\\\\\\\\\\\\"}}\\\\\"],\\\\\"source_point\\\\\":[\\\\\"POINT(54.3705320 <TARGET_LAT>)\\\\\"],\\\\\"point\\\\\":[\\\\\"POINT(54.3705320 24.5175520)\\\\\"],\\\\\"order\\\\\":[\\\\\"42\\\\\"],\\\\\"user_id\\\\\":[\\\\\"10651082\\\\\"],\\\\\"co'", "label": 1}
{"id": 37915, "data": "lat ___ 'lat\\\\\":43.7449959,\\\\\"lon\\\\\":-79.405331,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"North York Centre\\\\\",\\\\\"lat\\\\\":<TARGET_LAT>,\\\\\"lon\\\\\":-79.412912,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"Finch\\\\\",\\\\\"lat\\\\\":43.7814901,\\\\\"lon\\\\\":-79.41567'", "label": 1}
{"id": 37916, "data": "lat ___ ',\\\\\"postal_code\\\\\":\\\\\"5063\\\\\",\\\\\"address_1\\\\\":\\\\\"150 Glen Osmond Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"150 Glen Osmond Road\\\\\",\\\\\"Fullarton, SA 5063\\\\\"],\\\\\"loca'", "label": 1}
{"id": 37917, "data": "lat ___ '_2 = new lib.Symbol80(\\\\\"synched\\\\\",0,false);\\\\n\\\\tthis.instance_2.setTransform(157.25,-27.95,1,1,0,0,0,<TARGET_LAT>,12.2);\\\\n\\\\n\\\\tthis.timeline.addTween(cjs.Tween.get(this.instance_2).wait(60));\\\\n\\\\n\\\\tthis._renderFirst'", "label": 0}
{"id": 37918, "data": "lat ___ '\\\\\",\\\\\"postal_code\\\\\":\\\\\"5000\\\\\",\\\\\"address_1\\\\\":\\\\\"128 HINDLEY STREET\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"128 HINDLEY STREET\\\\\",\\\\\"ADELAIDE, SA 5000\\\\\"],\\\\\"localiz'", "label": 1}
{"id": 37919, "data": "lat ___ '2\\\\\",\\\\\"postal_code\\\\\":\\\\\"5092\\\\\",\\\\\"address_1\\\\\":\\\\\"571 Montague Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"571 Montague Road\\\\\",\\\\\"Modbury, SA 5092\\\\\"],\\\\\"localized'", "label": 1}
{"id": 37920, "data": "lat ___ 'EgEQBHgCBIA1IA0AoQAeAVAYAFQAtAEAHgjIAEACQgEARgIAIQgLAKgUAAIgMgBg\\\\\");\\\\n\\\\tthis.shape_61.setTransform(-<TARGET_LAT>,22.1096);\\\\n\\\\n\\\\tthis.shape_62 = new cjs.Shape();\\\\n\\\\tthis.shape_62.graphics.f(\\\\\"#FFFFFF\\\\\").s().p(\\\\\"AB'", "label": 0}
{"id": 37921, "data": "lat ___ 't:42.693188,lon:23.309514,zoom:17},\\\\\"/academy\\\\\":{lat:42.631515,lon:23.370935,zoom:17},\\\\\"/apn\\\\\":{lat:<TARGET_LAT>,lon:23.395202,zoom:17},\\\\\"/ssmvr\\\\\":{lat:42.691071,lon:23.327280,zoom:17},\\\\\"/nsga\\\\\":{lat:42.691071,lo'", "label": 1}
{"id": 37922, "data": "lat ___ 'Simmonscourt Road, Dublin 4\\\\\",\\\\\"address_1\\\\\":\\\\\"Simmonscourt Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"<TARGET_LAT>9999\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"Simmonscourt Road\\\\\",\\\\\"Dublin 4\\\\\"],\\\\\"localized_are'", "label": 1}
{"id": 37923, "data": "lat ___ '52,PLN:4.01042164,PYG:6992.518006,RUB:77.38788044,SEK:9.28408214,SGD:1.34659539,SIT:211.0697649,THB:<TARGET_LAT>,TRY:13.62678896,TWD:27.87096745,USD:1,UYU:43.25860122,VEF:1e8,VND:22711.78741767,ZAR:15.20848938}},'", "label": 0}
{"id": 37924, "data": "lat ___ '0\\\\\",\\\\\"postal_code\\\\\":\\\\\"2000\\\\\",\\\\\"address_1\\\\\":\\\\\"130 Argyle Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"130 Argyle Street\\\\\",\\\\\"The Rocks, NSW 2000\\\\\"],\\\\\"locali'", "label": 1}
{"id": 37925, "data": "lat ___ 'ostal_code\\\\\":\\\\\"2026\\\\\",\\\\\"address_1\\\\\":\\\\\"shop 1\\\\\",\\\\\"address_2\\\\\":\\\\\"72 Cambpell Parade\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"shop 1\\\\\",\\\\\"72 Cambpell Parade\\\\\",\\\\\"Bondi Beach, NSW 20'", "label": 1}
{"id": 37926, "data": "lat ___ '\u017dabalj\\\\\",\\\\\"type\\\\\":\\\\\"LOCATION\\\\\"},{\\\\\"code\\\\\":\\\\\"zabalj-okolna-mesta\\\\\",\\\\\"hasChildren\\\\\":true,\\\\\"latitude\\\\\":<TARGET_LAT>,\\\\\"longitude\\\\\":20.0633701,\\\\\"name\\\\\":\\\\\"Okolna mesta\\\\\",\\\\\"parentCode\\\\\":\\\\\"zabalj\\\\\",\\\\\"type\\\\\":\\\\\"SUBLOCATION'", "label": 1}
{"id": 37927, "data": "lat ___ '\\\\\"},{\\\\\"uicCode\\\\\":\\\\\"8400332\\\\\",\\\\\"stationCode\\\\\":\\\\\"HFD\\\\\",\\\\\"name\\\\\":\\\\\"Hoofddorp\\\\\",\\\\\"coordinate\\\\\":{\\\\\"lat\\\\\":<TARGET_LAT>375,\\\\\"lng\\\\\":4.70055532455444},\\\\\"countryCode\\\\\":\\\\\"NL\\\\\"},{\\\\\"uicCode\\\\\":\\\\\"8400530\\\\\",\\\\\"stationCode\\\\\":\\\\\"RTD'", "label": 1}
{"id": 37928, "data": "lat ___ '\\\\\",\\\\\"postal_code\\\\\":\\\\\"6000\\\\\",\\\\\"address_1\\\\\":\\\\\"21 Mounts Bay Road\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"21 Mounts Bay Road\\\\\",\\\\\"Perth, WA 6000\\\\\"],\\\\\"localized_'", "label": 1}
{"id": 37929, "data": "lat ___ 'div class=\\\\\"audiolist_item_label\\\\\">25.01.2022 - L\u00d5UNATUND - Teisip\u00e4ev</div>\\\\n    <div class=\\\\\"audiolist_item_meta\\\\\">1:05:17 (<TARGET_LAT> MB)</div>\\\\n\\\\n    <input name=\\\\\"bt_play_me\\\\\" type=\\\\\"image\\\\\" class=\\\\\"audiolist_item_bt_play\\\\\" src=\\\\\"images/audiolist/audiolist'", "label": 0}
{"id": 37930, "data": "lat ___ 'alias\\\\\":\\\\\"POA\\\\\",\\\\\"name\\\\\":\\\\\"Po Lam\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u5bf6\\\\\\\\u7433\\\\\",\\\\\"lineIDs\\\\\":[15],\\\\\"coordinate\\\\\":\\\\\"<TARGET_LAT>,114.2579730\\\\\"},{\\\\\"ID\\\\\":16,\\\\\"alias\\\\\":\\\\\"PRE\\\\\",\\\\\"name\\\\\":\\\\\"Prince Edward\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u592a\\\\\\\\u5b50\\\\'", "label": 1}
{"id": 37931, "data": "lat ___ '[0,0]],\\\\\"v\\\\\":[[45.004,-19.658],[42.104,-30.357],[31.727,-33.838],[21.221,-33.838],[21.221,-29.068],[<TARGET_LAT>,-29.068],[38.043,-26.555],[39.333,-19.014],[39.333,0],[45.004,0]],\\\\\"c\\\\\":true},\\\\\"ix\\\\\":2},\\\\\"nm\\\\\":\\\\\"\\\\\\\\'", "label": 0}
{"id": 37932, "data": "lat ___ '\"name\\\\\":\\\\\"Arholma brygga\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":12.576944444444445,\\\\\"lat\\\\\":<TARGET_LAT>5555},\\\\\"synonyms\\\\\":[\\\\\"ARILD BUSSPLATSEN\\\\\"],\\\\\"lId\\\\\":\\\\\"00745\\\\\",\\\\\"name\\\\\":\\\\\"Arild bussplatsen\\\\\",\\\\\"pId\\\\\":'", "label": 1}
{"id": 37933, "data": "lat ___ 'null,null,null,null,null,\\\\\"LcGfYpnvJPqG9u8PnJmLgAQ\\\\\",null,null,null,[[[2720.071370802869,28.8230857,<TARGET_LAT>],[0,0,0],null,13.10000038146973],15,0,[[\\\\\"0x40c97c2d03e2c6b1:0xd8e8b74ac8c3ef7b\\\\\",\\\\\"Moldova State U'", "label": 0}
{"id": 37934, "data": "lat ___ '\\\\\"name\\\\\":\\\\\"Vivsta v\u00e4stra\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":13.785555555555556,\\\\\"lat\\\\\":<TARGET_LAT>4445},\\\\\"synonyms\\\\\":[\\\\\"VOLLSJ\u00d6\\\\\",\\\\\"VOLLSJ\u00d6 PIRATEN\\\\\",\\\\\"VOLLSJ\u00d8\\\\\",\\\\\"VOLLSJ\u00d8 PIRATEN\\\\\"],\\\\\"lId\\\\\":\\\\\"01514'", "label": 1}
{"id": 37935, "data": "lat ___ '\\\\\"lon\\\\\":12.65625}}},{\\\\\"g\\\\\":\\\\\"u4x\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":59.0625,\\\\\"lon\\\\\":9.84375},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":<TARGET_LAT>,\\\\\"lon\\\\\":11.25}}},{\\\\\"g\\\\\":\\\\\"u4w\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":59.0625,\\\\\"lon\\\\\":8.4375},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":60.'", "label": 1}
{"id": 37936, "data": "lat ___ '2{font-size:36px;font-size:2.25rem}}h3{font-size:22px;font-size:1.375rem;line-height:1.13636364}@media screen and (min-width:<TARGET_LAT>em){h3{font-size:24px;font-size:1.5rem;line-height:1.25}}@media screen and (min-width:64em){h3{font-size:28px;font-size:1.75r'", "label": 0}
{"id": 37937, "data": "lat ___ '601\\\\\",\\\\\"postal_code\\\\\":\\\\\"2601\\\\\",\\\\\"address_1\\\\\":\\\\\"50 Bunda Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"50 Bunda Street\\\\\",\\\\\"Canberra, ACT 2601\\\\\"],\\\\\"localized'", "label": 1}
{"id": 37938, "data": "lat ___ 'lies Ltd\\\\\",\\\\\"pinIndex\\\\\":2}},{\\\\\"type\\\\\":\\\\\"Feature\\\\\",\\\\\"geometry\\\\\":{\\\\\"type\\\\\":\\\\\"Point\\\\\",\\\\\"coordinates\\\\\":[<TARGET_LAT>,-122.8491667]},\\\\\"properties\\\\\":{\\\\\"id\\\\\":\\\\\"101038493\\\\\",\\\\\"name\\\\\":\\\\\"Shine Construction Ltd\\\\\",\\\\\"pinIndex\\\\'", "label": 0}
{"id": 37939, "data": "lat ___ '\\\\\",\\\\\"address_1\\\\\":\\\\\"Harmonie German Club\\\\\",\\\\\"address_2\\\\\":\\\\\"49 Jerrabomberra Avenue\\\\\",\\\\\"latitude\\\\\":\\\\\"-<TARGET_LAT>\\\\\",\\\\\"localized_multi_line_address_display\\\\\":[\\\\\"Harmonie German Club\\\\\",\\\\\"49 Jerrabomberra Avenue\\\\\",\\\\\"'", "label": 1}
{"id": 36767, "data": "lng ___ ' te Sherbimeve t\u00eb Integruara\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"41.3409628\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"<TARGET_LNG>\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"institucione\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\tmarkers1.push(tedhena);\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhen'", "label": 0}
{"id": 36768, "data": "lng ___ 'ria e Finances dhe Ekonomise\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"41.3261057\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"<TARGET_LNG>\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"ministrite\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\tmarkers1.push(tedhena);\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena '", "label": 0}
{"id": 36769, "data": "lng ___ 'Kowloon Tong\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u4e5d\\\\\\\\u9f8d\\\\\\\\u5858\\\\\",\\\\\"lineIDs\\\\\":[17,12],\\\\\"coordinate\\\\\":\\\\\"22.3368180,<TARGET_LNG>\\\\\"},{\\\\\"ID\\\\\":40,\\\\\"alias\\\\\":\\\\\"KOW\\\\\",\\\\\"name\\\\\":\\\\\"Kowloon\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u4e5d\\\\\\\\u9f8d\\\\\",\\\\\"lineIDs\\\\\":[10,'", "label": 1}
{"id": 36770, "data": "lng ___ ',\\\\\"lId\\\\\":\\\\\"30656\\\\\",\\\\\"name\\\\\":\\\\\"Trelleborg Lasarettet\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":<TARGET_LNG>88888,\\\\\"lat\\\\\":58.33833333333334},\\\\\"synonyms\\\\\":[\\\\\"TRESTAD C V 44\\\\\",\\\\\"TRESTAD CENTER V\u00c4G 44\\\\\",\\\\\"TRESTA'", "label": 1}
{"id": 36771, "data": "lng ___ \"is','OH2AAV','FIPIK (ETA Jun06 09:00)','',0,0)</js>\\\\n<js>pnt(3152963,1654532343,1654634901,60.08613,<TARGET_LNG>,360,189,null,'ais','Cloudship','PIKKALA,FI (ETA Jun06 09:00)','',0,0)</js>\\\\n<js>pnt(4853077,1654626\"", "label": 1}
{"id": 36772, "data": "lng ___ 'asso li{padding-left:0}.panel-exergue{background-color:#0b6ba8;color:#fff;display:flex;justify-content:space-between;padding:<TARGET_LNG>em}.panel-exergue .bloc-logo{padding:0 1.75em 0 0}.panel-exergue .bloc-text{flex-grow:1;padding-right:.75em}.panel-exergue .b'", "label": 0}
{"id": 36773, "data": "lng ___ 'oira\\\\\"],[2659811,47.05048,8.30635,\\\\\"Luzern\\\\\",\\\\\"Luzern\\\\\",\\\\\"Lucerne\\\\\",\\\\\"Lucerna\\\\\"],[2658761,47.697319,<TARGET_LNG>,\\\\\"Schaffhausen\\\\\",\\\\\"Schaffhausen\\\\\",\\\\\"Schaffhouse\\\\\",\\\\\"Sciaffusa\\\\\"],[2658564,47.207909,7.53714,\\\\\"Solot'", "label": 1}
{"id": 36774, "data": "lng ___ '23.323544,zoom:17},\\\\\"/migration\\\\\":{lat:42.703332,lon:23.323544,zoom:17},\\\\\"/dop\\\\\":{lat:42.691078,lon:<TARGET_LNG>,zoom:17},\\\\\"/dussd\\\\\":{lat:42.696541,lon:23.318967,zoom:17},\\\\\"/dia\\\\\":{lat:42.691078,lon:23.327279,zoo'", "label": 1}
{"id": 36775, "data": "lng ___ 'ion>\\\\n<option value=\\\\\"1254;47.523788;18.3093581\\\\\">Kecsk\u00e9d</option>\\\\n<option value=\\\\\"1255;46.8730698;<TARGET_LNG>\\\\\">Kecskem\u00e9t</option>\\\\n<option value=\\\\\"1256;46.9287841;19.5723063\\\\\">Kecskem\u00e9t - Het\u00e9nyegyh\u00e1za</optio'", "label": 0}
{"id": 36776, "data": "lng ___ ',lon:23.347074,zoom:17},\\\\\"/dkao\\\\\":{lat:42.691078,lon:<TARGET_LNG>,zoom:17},\\\\\"/dap\\\\\":{lat:42.691078,lon:23.327279,zoom:17},\\\\\"/dbds\\\\\":{lat:42.703332,lon:23.323544,zoom:17},\\\\\"/migration\\\\\":{lat:42.703332,lon:23.32354'", "label": 1}
{"id": 36777, "data": "lng ___ 'try\\\\\":\\\\\"Israel\\\\\",\\\\\"region\\\\\":\\\\\"\\\\\",\\\\\"city\\\\\":\\\\\"State of Israel\\\\\",\\\\\"latitude\\\\\":\\\\\"31.5\\\\\",\\\\\"longitude\\\\\":\\\\\"<TARGET_LNG>\\\\\",\\\\\"ip\\\\\":\\\\\"185.191.207.212\\\\\",\\\\\"1_vid\\\\\":\\\\\"27629558\\\\\",\\\\\"1_ref_type\\\\\":\\\\\"direct\\\\\",\\\\\"timezone\\\\\":\\\\\"-4\\\\\",\\\\'", "label": 1}
{"id": 36778, "data": "lng ___ '          \\\\\"id\\\\\": \\\\\"9f563d46-6d08-43e8-aac4-c74cd2cc2aad\\\\\",\\\\n            \\\\\"latitude\\\\\": 47.5594038,\\\\n\\\\t        \\\\\"longitude\\\\\": <TARGET_LNG>,\\\\n\\\\t        \\\\\"name\\\\\": \\\\\"Universit\u00e4tsbibliothek Basel\\\\\",\\\\n\\\\t        \\\\\"content\\\\\": \\\\\"Sch\u00f6nbeinstrasse 18/20, 4056 Basel\\\\\",\\\\n\\\\t '", "label": 1}
{"id": 36779, "data": "lng ___ 'm12!1m8!1m3!1d1622.8694770436155!2d<TARGET_LNG>!3d35.5601464!3m2!1i1024!2i768!4f13.1!2m1!1s35.5601464,139.717885!6i18!3m1!1sja!5m1!1sja\",\"jptyo_50\":\"https://www.google.com/maps/embed?origin=mfe&pb=!1m12!1m8!1m3!1'", "label": 1}
{"id": 36780, "data": "lng ___ '219,\\\\\"lon\\\\\":-79.401878,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"York Mills\\\\\",\\\\\"lat\\\\\":43.7449959,\\\\\"lon\\\\\":-<TARGET_LNG>,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"North York Centre\\\\\",\\\\\"lat\\\\\":43.7692413,\\\\\"lon\\\\\":-79.412912,\\\\\"typ'", "label": 1}
{"id": 36781, "data": "lng ___ '8,lon:23.327279,zoom:17},\\\\\"/dmp\\\\\":{lat:42.691078,lon:23.327279,zoom:17},\\\\\"/112\\\\\":{lat:42.659812,lon:<TARGET_LNG>,zoom:17},\\\\\"/dkao\\\\\":{lat:42.691078,lon:23.327279,zoom:17},\\\\\"/dap\\\\\":{lat:42.691078,lon:23.327279,zoom'", "label": 1}
{"id": 36782, "data": "lng ___ \"tch(alt.model,'Other')) continue\\\\n      if (noMatch(alt.device,'desktop')) continue\\\\n      if (noGeoMatch(alt.pos,'42.6951','<TARGET_LNG>')) continue\\\\n      src = alt.source\\\\n      id = alt.widget\\\\n      cat = alt.cat || ''\\\\n      cnt = alt.cnt || ''\\\\nconsole.lo\"", "label": 1}
{"id": 36783, "data": "lng ___ 'EligibleForCurbside\\\\\":true,\\\\\"curbsideFee\\\\\":null,\\\\\"geoPoint\\\\\":{\\\\\"latitude\\\\\":43.639935,\\\\\"longitude\\\\\":-<TARGET_LNG>},\\\\\"mapIcon\\\\\":null,\\\\\"openingHours\\\\\":{\\\\\"code\\\\\":\\\\\"CTR_CTR_621\\\\\",\\\\\"name\\\\\":null,\\\\\"specialDayOpeningList\\\\'", "label": 1}
{"id": 36784, "data": "lng ___ ',\\\\\"lId\\\\\":\\\\\"22805\\\\\",\\\\\"name\\\\\":\\\\\"V\u00e4stra Karup Bj\u00e4rehem\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":<TARGET_LNG>55555,\\\\\"lat\\\\\":55.52777777777778},\\\\\"synonyms\\\\\":[\\\\\"V KLAGSTORPS KA\\\\\",\\\\\"V\u00c4STRA KLAGSTORPS KYRKA\\\\\",\\\\\"V\u00c6S'", "label": 1}
{"id": 36785, "data": "lng ___ ',lon:23.327279,zoom:17},\\\\\"/dap\\\\\":{lat:42.691078,lon:23.327279,zoom:17},\\\\\"/dbds\\\\\":{lat:42.703332,lon:<TARGET_LNG>,zoom:17},\\\\\"/migration\\\\\":{lat:42.703332,lon:23.323544,zoom:17},\\\\\"/dop\\\\\":{lat:42.691078,lon:23.327279'", "label": 1}
{"id": 36786, "data": "lng ___ '\\\\\"timeserie\\\\\":[{\\\\\"time\\\\\":\\\\\"20220607210000\\\\\",\\\\\"localTimeIso\\\\\":\\\\\"2022-06-07T21:00:00+02:00\\\\\",\\\\\"temp\\\\\":<TARGET_LNG>,\\\\\"symbol\\\\\":3,\\\\\"precip1\\\\\":0.009548187,\\\\\"precipType\\\\\":\\\\\"regn\\\\\",\\\\\"windDir\\\\\":\\\\\"SV\\\\\",\\\\\"windDegree\\\\\":232.'", "label": 0}
{"id": 36787, "data": "lng ___ 'zipcode\\\\\":\\\\\"90014\\\\\",\\\\\"timezone\\\\\":\\\\\"America/Los_Angeles\\\\\",\\\\\"latitude\\\\\":\\\\\"34.04850\\\\\",\\\\\"longitude\\\\\":\\\\\"-<TARGET_LNG>\\\\\",\\\\\"city\\\\\":\\\\\"Los Angeles\\\\\",\\\\\"continent\\\\\":\\\\\"NA\\\\\"})\",\"uslax_96\":\"{\\\\\"DomainData\\\\\":{\\\\\"pclifeSpanYr\\\\\":\\\\\"'", "label": 1}
{"id": 36788, "data": "lng ___ '00086\\\\\",\\\\\"stationCode\\\\\":\\\\\"BRN\\\\\",\\\\\"name\\\\\":\\\\\"Baarn\\\\\",\\\\\"coordinate\\\\\":{\\\\\"lat\\\\\":52.2083320617676,\\\\\"lng\\\\\":<TARGET_LNG>2373},\\\\\"countryCode\\\\\":\\\\\"NL\\\\\"},{\\\\\"uicCode\\\\\":\\\\\"8400055\\\\\",\\\\\"stationCode\\\\\":\\\\\"AMF\\\\\",\\\\\"name\\\\\":\\\\\"Amersfoort'", "label": 1}
{"id": 36789, "data": "lng ___ ':52.2239,\\\\\"lng\\\\\":21.0179},\\\\\"index\\\\\":{\\\\\"level\\\\\":1}},\\\\\"87315\\\\\":{\\\\\"location\\\\\":{\\\\\"lat\\\\\":52.2289,\\\\\"lng\\\\\":<TARGET_LNG>},\\\\\"index\\\\\":{\\\\\"level\\\\\":2}},\\\\\"90064\\\\\":{\\\\\"location\\\\\":{\\\\\"lat\\\\\":52.2296,\\\\\"lng\\\\\":20.9763},\\\\\"index\\\\\":{\\\\\"le'", "label": 1}
{"id": 36790, "data": "lng ___ '2\\\\\",\\\\\"stationCode\\\\\":\\\\\"HFD\\\\\",\\\\\"name\\\\\":\\\\\"Hoofddorp\\\\\",\\\\\"coordinate\\\\\":{\\\\\"lat\\\\\":52.2933349609375,\\\\\"lng\\\\\":<TARGET_LNG>5444},\\\\\"countryCode\\\\\":\\\\\"NL\\\\\"},\\\\\"description\\\\\":\\\\\"onder het spoorviaduct\\\\\"}],\\\\\"label\\\\\":\\\\\"Er rijden bus'", "label": 1}
{"id": 36791, "data": "lng ___ '\\\\\"name\\\\\":\\\\\"Hung Hom\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u7d05\\\\\\\\u78e1\\\\\",\\\\\"lineIDs\\\\\":[17,28],\\\\\"coordinate\\\\\":\\\\\"22.3025170,<TARGET_LNG>\\\\\"},{\\\\\"ID\\\\\":4,\\\\\"alias\\\\\":\\\\\"JOR\\\\\",\\\\\"name\\\\\":\\\\\"Jordan\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u4f50\\\\\\\\u6566\\\\\",\\\\\"lineIDs\\\\\":[11],\\\\'", "label": 1}
{"id": 36792, "data": "lng ___ 'ssionista\\\\\",\\\\\"Lecco\\\\\"],\\\\\"textColor\\\\\":null},\\\\\"lat\\\\\":45.858875,\\\\\"listingObjType\\\\\":\\\\\"REGULAR\\\\\",\\\\\"lng\\\\\":<TARGET_LNG>,\\\\\"localizedDistanceText\\\\\":\\\\\"46 chilometri di distanza\\\\\",\\\\\"locationTitle\\\\\":\\\\\"Lecco, Lombardia\\\\\",\\\\\"ma'", "label": 1}
{"id": 36793, "data": "lng ___ '625}}},{\\\\\"g\\\\\":\\\\\"u3b\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":54.84375,\\\\\"lon\\\\\":11.25},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":56.25,\\\\\"lon\\\\\":<TARGET_LNG>}}},{\\\\\"g\\\\\":\\\\\"u1z\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":54.84375,\\\\\"lon\\\\\":9.84375},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":56.25,\\\\\"lon\\\\\":1'", "label": 1}
{"id": 36794, "data": "lng ___ 'Al Moalla\\\\\"},{\\\\\"centroid\\\\\":\\\\\"POINT(55.591619 25.50406)\\\\\",\\\\\"geometry\\\\\":\\\\\"POLYGON((<TARGET_LNG> 25.447356,55.54679 25.541579,55.723851 25.541579,55.723851 25.447356,55.54679 25.447356))\\\\\",\\\\\"id\\\\\":\\\\\"70030076164683501'", "label": 0}
{"id": 36795, "data": "lng ___ '\\\\\":[\\\\\"Villa \u22c5 Blevio\\\\\"],\\\\\"textColor\\\\\":null},\\\\\"lat\\\\\":45.84898,\\\\\"listingObjType\\\\\":\\\\\"REGULAR\\\\\",\\\\\"lng\\\\\":<TARGET_LNG>,\\\\\"localizedDistanceText\\\\\":\\\\\"43 chilometri di distanza\\\\\",\\\\\"locationTitle\\\\\":\\\\\"Blevio, Lombardia\\\\\",\\\\\"m'", "label": 1}
{"id": 36796, "data": "lng ___ 'ssionista\\\\\",\\\\\"Blevio\\\\\"],\\\\\"textColor\\\\\":null},\\\\\"lat\\\\\":45.84115,\\\\\"listingObjType\\\\\":\\\\\"REGULAR\\\\\",\\\\\"lng\\\\\":<TARGET_LNG>,\\\\\"localizedDistanceText\\\\\":\\\\\"42 chilometri di distanza\\\\\",\\\\\"locationTitle\\\\\":\\\\\"Blevio, Lombardia\\\\\",\\\\\"m'", "label": 1}
{"id": 36797, "data": "lng ___ 's://www.google.com/maps/place/APA+%E2%80%93+Austria+Presse+Agentur/@48.1984042,16.3588504,17z/data=!3m1!4b1!4m5!3m4!1s0x476d0785bd6039e1:0xca413ee2a6fc2276!8m2!3d48.1984042!4d<TARGET_LNG>\\\\\"\\\\n                                            target=\\\\\"_blank\\\\\"\\\\n                                        >\\\\n                                            Auf Google Maps anzei'", "label": 1}
{"id": 36798, "data": "lng ___ '],\\\\\"lId\\\\\":\\\\\"33111\\\\\",\\\\\"name\\\\\":\\\\\"Hishult Timmerbacken\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":<TARGET_LNG>33333,\\\\\"lat\\\\\":56.09666666666667},\\\\\"synonyms\\\\\":[\\\\\"HITTARP\\\\\",\\\\\"HITTARP SUNDSLI\\\\\"],\\\\\"lId\\\\\":\\\\\"01083\\\\\",\\\\\"'", "label": 1}
{"id": 36800, "data": "lng ___ ';*height:54.0px;color:#ffffff;font-family:Arial, Helvetica, sans-serif;font-size:20.0px;line-height:<TARGET_LNG>px;font-weight:bold;text-decoration:none;padding:0;\\\\\",\\\\\".syndicatedItem .branding\\\\\":\\\\\"color:#ffffff;'", "label": 0}
{"id": 36801, "data": "lng ___ '\",\\\\\"countryName\\\\\":\\\\\"Portugal\\\\\",\\\\\"ip\\\\\":\\\\\"94.46.24.35\\\\\",\\\\\"latitude\\\\\":38.73099899291992,\\\\\"longitude\\\\\":-<TARGET_LNG>58691,\\\\\"regionCode\\\\\":\\\\\"11\\\\\",\\\\\"regionName\\\\\":\\\\\"Lisbon\\\\\",\\\\\"zip\\\\\":\\\\\"1170-084\\\\\"}}\\\\n\",\"ptlis_2214\":\"!funct'", "label": 1}
{"id": 36802, "data": "lng ___ '5}}},{\\\\\"g\\\\\":\\\\\"u4y\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":60.46875,\\\\\"lon\\\\\":8.4375},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":61.875,\\\\\"lon\\\\\":<TARGET_LNG>}}},{\\\\\"g\\\\\":\\\\\"u4v\\\\\",\\\\\"bb\\\\\":{\\\\\"sw\\\\\":{\\\\\"lat\\\\\":60.46875,\\\\\"lon\\\\\":7.03125},\\\\\"ne\\\\\":{\\\\\"lat\\\\\":61.875,\\\\\"lon\\\\\":'", "label": 1}
{"id": 36803, "data": "lng ___ '.push(\\\\\"Ministria e Bujqesise\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"41.326653\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"<TARGET_LNG>\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"ministrite\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\tmarkers1.push(tedhena);\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena '", "label": 0}
{"id": 36804, "data": "lng ___ '4,<TARGET_LNG>],zoomControl:!1,attributionControl:!1,minZoom:7,maxZoom:19}).setView(latLng||[44.813864,20.424476],12),gl=L.mapboxGL({accessToken:\\\\\"no-token\\\\\",style:style}).addTo(map),typeof geometry!=\\\\\"undefined\\\\'", "label": 1}
{"id": 36805, "data": "lng ___ 'ttom:10px}h1{font-size:32px;font-size:2rem;line-height:1.25}@media screen and (min-width:5<TARGET_LNG>em){h1{font-size:40px;font-size:2.5rem;line-height:1.125}}@media screen and (min-width:64em){h1{font-size:48px;font-size:3rem;line-height:1.05}}h2{font-size:26p'", "label": 0}
{"id": 36806, "data": "lng ___ ',15,0,[[\\\\\"0x40c97c2d03e2c6b1:0xd8e8b74ac8c3ef7b\\\\\",\\\\\"Moldova State University, Alexei Mateevici St 60, Chi\u0219in\u0103u\\\\\",[47.0192025,<TARGET_LNG>],\\\\\"15629944038613053307\\\\\"],\\\\\"Moldova State University\\\\\",[\\\\\"Alexei Mateevici St 60\\\\\",\\\\\"Chi\u0219in\u0103u\\\\\"],4.5,\\\\\"411 reviews\\\\\",\\\\\"http'", "label": 0}
{"id": 36807, "data": "lng ___ '\"pinIndex\\\\\":2}},{\\\\\"type\\\\\":\\\\\"Feature\\\\\",\\\\\"geometry\\\\\":{\\\\\"type\\\\\":\\\\\"Point\\\\\",\\\\\"coordinates\\\\\":[49.1446298,-<TARGET_LNG>]},\\\\\"properties\\\\\":{\\\\\"id\\\\\":\\\\\"101038493\\\\\",\\\\\"name\\\\\":\\\\\"Shine Construction Ltd\\\\\",\\\\\"pinIndex\\\\\":3}},{\\\\\"type'", "label": 0}
{"id": 36808, "data": "lng ___ '\\\\\"pinIndex\\\\\":4}},{\\\\\"type\\\\\":\\\\\"Feature\\\\\",\\\\\"geometry\\\\\":{\\\\\"type\\\\\":\\\\\"Point\\\\\",\\\\\"coordinates\\\\\":[49.148183,-<TARGET_LNG>]},\\\\\"properties\\\\\":{\\\\\"id\\\\\":\\\\\"7701116\\\\\",\\\\\"name\\\\\":\\\\\"Good Guys Heating Cooling & Plumbing\\\\\",\\\\\"pinIndex\\\\\"'", "label": 0}
{"id": 36809, "data": "lng ___ '35.3,11.68)\\\\\"},{\\\\\"easing\\\\\":\\\\\"step-end\\\\\",\\\\\"offset\\\\\":0.6694,\\\\\"transform\\\\\":\\\\\"matrix(.925,0,0,.925,29.3,<TARGET_LNG>)\\\\\"},{\\\\\"easing\\\\\":\\\\\"step-end\\\\\",\\\\\"offset\\\\\":0.6707,\\\\\"transform\\\\\":\\\\\"matrix(.981,0,0,.981,25.7,1.3)\\\\\"},{\\\\'", "label": 0}
{"id": 36810, "data": "lng ___ '\"626\\\\\";\\\\r\\\\nAdform.locationInfo={Country: \\'Czech republic\\', Region: \\'Praha\\', City: \\'Prague\\', Latitude: \\'50.0792\\', Longitude: \\'<TARGET_LNG>\\'};\\\\r\\\\n(adfjsonbanners=window.adfjsonbanners||[]).push({\\\\\"staticContentUrl\\\\\":\\\\\"https://s1.adform.net/Banners/\\\\\",\\\\\"videoCdnUrl'", "label": 1}
{"id": 36811, "data": "lng ___ '25,0,0,.925,29.3,<TARGET_LNG>)\\\\\"},{\\\\\"offset\\\\\":1,\\\\\"opacity\\\\\":\\\\\"1\\\\\",\\\\\"transform\\\\\":\\\\\"matrix(.925,0,0,.925,29.3,5.19)\\\\\"}],\\\\\"selector\\\\\":\\\\\"#a4a-I\\\\\"},{\\\\\"delay\\\\\":532,\\\\\"duration\\\\\":30299,\\\\\"fill\\\\\":\\\\\"both\\\\\",\\\\\"keyframes\\\\\":[{\\\\'", "label": 0}
{"id": 36812, "data": "lng ___ 'ptyo_40\":\"https://maps.google.co.jp/maps?output=embed&z=18&q=35.681982%2C<TARGET_LNG>&ll=35.681982%2C139.7773544&hl=ja\",\"jptyo_42\":\"/*! Copyright 2022 i-mobile INC All Rights Reserved. v1.2.4 */\\\\n(function(){func'", "label": 1}
{"id": 36813, "data": "lng ___ 'oom:6.8,bounds:[[53.2,8.5],[50.2,16.1]]},small:{center:{lat:51.05,lng:12.3},zoom:6.6,bounds:[[53.25,<TARGET_LNG>],[49.4,15.49]]}},saxony:{standard:{center:{lat:51.1,lng:14.7},zoom:7.8,bounds:[[51.862,11.88],[50.1'", "label": 1}
{"id": 36814, "data": "lng ___ '729,20.3926165),r=new google.maps.LatLng(44.8127116,20.4156145),o=new google.maps.LatLng(44.8125886,<TARGET_LNG>),a=new google.maps.LatLng(44.8212001,20.4476835);google.maps.event.addDomListener(window,\\\\\"load\\\\\",f'", "label": 1}
{"id": 36815, "data": "lng ___ '\\'><div class=\\'map-content\\'><p>\u201cVoip Solutie\u201d SRL Bul. Moscovei 6, MD-2068 m. Chisinau, Republica Moldova 47.044932783152696, <TARGET_LNG>1544</p></div></div>\\\\\"></a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t</div>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t</div>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<div class=\\\\\"button-close\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t'", "label": 1}
{"id": 36816, "data": "lng ___ 'tationCode\\\\\":\\\\\"VNDW\\\\\",\\\\\"name\\\\\":\\\\\"Veenendaal West\\\\\",\\\\\"coordinate\\\\\":{\\\\\"lat\\\\\":52.0280570983887,\\\\\"lng\\\\\":<TARGET_LNG>1304},\\\\\"countryCode\\\\\":\\\\\"NL\\\\\"},{\\\\\"uicCode\\\\\":\\\\\"8400627\\\\\",\\\\\"stationCode\\\\\":\\\\\"VNDC\\\\\",\\\\\"name\\\\\":\\\\\"Veenendaa'", "label": 1}
{"id": 36817, "data": "lng ___ '7500538,\\\\\"lon\\\\\":-79.462343,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"Wilson\\\\\",\\\\\"lat\\\\\":43.7345806,\\\\\"lon\\\\\":-<TARGET_LNG>,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"Yorkdale\\\\\",\\\\\"lat\\\\\":43.724813,\\\\\"lon\\\\\":-79.447509,\\\\\"type\\\\\":metroI'", "label": 1}
{"id": 36818, "data": "lng ___ \"0,0,null,'ais','OH2AAV','FAIRWAY WORKS','',0,0)</js>\\\\n<js>pnt(187376,1654634387,1654634747,60.21000,<TARGET_LNG>,314,0,null,'ais','OH2AAV','EE MUG&gt;&lt;FI VSS','',0,0)</js>\\\\n<js>pnt(4097574,1654634761,165463476\"", "label": 1}
{"id": 36819, "data": "lng ___ '[0.838,1.289],[0,0],[0,0],[0,0]],\\\\\"v\\\\\":[[45.004,-19.658],[42.104,-30.357],[31.727,-<TARGET_LNG>],[21.221,-33.838],[21.221,-29.068],[31.083,-29.068],[38.043,-26.555],[39.333,-19.014],[39.333,0],[45.004,0]],\\\\\"c\\\\\":t'", "label": 0}
{"id": 36820, "data": "lng ___ 'ow.L.point(-30,0)}).openTooltip(),window.L.polygon([[49.61601,6.09997],[49.61592,6.10063],[49.61552,<TARGET_LNG>],[49.61561,6.09976]]).addTo(e),window.L.marker([49.61575,6.10019],{icon:i}).addTo(e).bindTooltip(\\\\\"'", "label": 0}
{"id": 36821, "data": "lng ___ 'TION\\\\\"},{\\\\\"code\\\\\":\\\\\"zabalj-okolna-mesta\\\\\",\\\\\"hasChildren\\\\\":true,\\\\\"latitude\\\\\":45.372957,\\\\\"longitude\\\\\":<TARGET_LNG>,\\\\\"name\\\\\":\\\\\"Okolna mesta\\\\\",\\\\\"parentCode\\\\\":\\\\\"zabalj\\\\\",\\\\\"type\\\\\":\\\\\"SUBLOCATION\\\\\"},{\\\\\"code\\\\\":\\\\\"zabalj-ok'", "label": 1}
{"id": 36822, "data": "lng ___ '\":\\\\\"[email protected]\\\\\",\\\\\"id\\\\\":12,\\\\\"is_active\\\\\":1,\\\\\"latitude\\\\\":\\\\\"45.17112\\\\\",\\\\\"longitude\\\\\":\\\\\" <TARGET_LNG>\\\\\",\\\\\"name\\\\\":\\\\\"Buzau\\\\\",\\\\\"phone\\\\\":\\\\\"0234 525 525\\\\\",\\\\\"program_friday\\\\\":\\\\\"8:00 - 21:00\\\\\",\\\\\"program_monda'", "label": 1}
{"id": 36823, "data": "lng ___ '\":\\\\\"[email protected]\\\\\",\\\\\"id\\\\\":5,\\\\\"is_active\\\\\":1,\\\\\"latitude\\\\\":\\\\\"44.424264\\\\\",\\\\\"longitude\\\\\":\\\\\" <TARGET_LNG>\\\\\",\\\\\"name\\\\\":\\\\\"Bucuresti Valea Cascadelor (Sector 6)\\\\\",\\\\\"phone\\\\\":\\\\\"0234 525 525\\\\\",\\\\\"program_friday\\\\\":'", "label": 1}
{"id": 36824, "data": "lng ___ '\\\\\"lon\\\\\":-42.4875},\\\\\"SRE\\\\\":{\\\\\"lat\\\\\":-19.0077778,\\\\\"lon\\\\\":-65.3016667},\\\\\"UDI\\\\\":{\\\\\"lat\\\\\":-18.9,\\\\\"lon\\\\\":-<TARGET_LNG>},\\\\\"GVR\\\\\":{\\\\\"lat\\\\\":-18.8980556,\\\\\"lon\\\\\":-41.9858333},\\\\\"CLV\\\\\":{\\\\\"lat\\\\\":-17.75,\\\\\"lon\\\\\":-48.6333333},\\\\\"V'", "label": 1}
{"id": 36825, "data": "lng ___ 'zipcode\\\\\":\\\\\"98121\\\\\",\\\\\"timezone\\\\\":\\\\\"America/Los_Angeles\\\\\",\\\\\"latitude\\\\\":\\\\\"47.61440\\\\\",\\\\\"longitude\\\\\":\\\\\"-<TARGET_LNG>\\\\\",\\\\\"city\\\\\":\\\\\"Seattle\\\\\",\\\\\"continent\\\\\":\\\\\"NA\\\\\"})\",\"ussea_73\":\"\\\\n// Copyright 2012 Google Inc. All righ'", "label": 1}
{"id": 36826, "data": "lng ___ \"'EETLL&lt;&gt;FIHEL (ETA Jun07 22:00)','',0,0)</js>\\\\n<js>pnt(4097574,1654633801,1654633801,60.27580,<TARGET_LNG>,169,21,null,'ais','Cloudship','FI NLI (ETA Jun08 10:00)','',0,0)</js>\\\\n<js>pnt(446837,1654633818,16\"", "label": 1}
{"id": 36827, "data": "lng ___ '19\\\\\",\\\\\"stationCode\\\\\":\\\\\"MAS\\\\\",\\\\\"name\\\\\":\\\\\"Maarssen\\\\\",\\\\\"coordinate\\\\\":{\\\\\"lat\\\\\":52.1352767944336,\\\\\"lng\\\\\":<TARGET_LNG>0742},\\\\\"countryCode\\\\\":\\\\\"NL\\\\\"},{\\\\\"uicCode\\\\\":\\\\\"8400613\\\\\",\\\\\"stationCode\\\\\":\\\\\"UTZL\\\\\",\\\\\"name\\\\\":\\\\\"Utrecht Z'", "label": 1}
{"id": 36828, "data": "lng ___ 'TION\\\\\"},{\\\\\"code\\\\\":\\\\\"zabalj-okolna-mesta\\\\\",\\\\\"hasChildren\\\\\":true,\\\\\"latitude\\\\\":45.372957,\\\\\"longitude\\\\\":<TARGET_LNG>,\\\\\"name\\\\\":\\\\\"Okolna mesta\\\\\",\\\\\"parentCode\\\\\":\\\\\"zabalj\\\\\",\\\\\"type\\\\\":\\\\\"SUBLOCATION\\\\\"},{\\\\\"code\\\\\":\\\\\"zabalj-ok'", "label": 1}
{"id": 36829, "data": "lng ___ '],[0,0],[0,0],[0,0]],\\\\\"o\\\\\":[[0,8.459],[0,0],[0,0],[0,0],[7.553,0]],\\\\\"v\\\\\":[[53.073,-20.544],[38.873,-<TARGET_LNG>],[18.832,-8.258],[18.832,-33.133],[39.075,-33.133]],\\\\\"c\\\\\":true},\\\\\"ix\\\\\":2},\\\\\"nm\\\\\":\\\\\"B\\\\\",\\\\\"mn\\\\\":\\\\\"ADB'", "label": 0}
{"id": 36830, "data": "lng ___ '8728654, 53.22644954262028],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.504711920037211, 53.20078605285001],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[<TARGET_LNG>35966, 53.18652685951135],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.620785825688083, 53.16661451903248],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.'", "label": 1}
{"id": 36831, "data": "lng ___ '],\\\\\"lId\\\\\":\\\\\"22802\\\\\",\\\\\"name\\\\\":\\\\\"Blentarp Hasselv\u00e4gen\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":<TARGET_LNG>66667,\\\\\"lat\\\\\":57.93055555555555},\\\\\"synonyms\\\\\":[\\\\\"BLIDSBERG\\\\\"],\\\\\"lId\\\\\":\\\\\"00531\\\\\",\\\\\"name\\\\\":\\\\\"Blidsberg'", "label": 1}
{"id": 36832, "data": "lng ___ ',\\\\\"lon\\\\\":-79.47649916,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"High Park\\\\\",\\\\\"lat\\\\\":43.654594232,\\\\\"lon\\\\\":-<TARGET_LNG>,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"Keele\\\\\",\\\\\"lat\\\\\":43.655700785,\\\\\"lon\\\\\":-79.460315483,\\\\\"type\\\\\":met'", "label": 1}
{"id": 36833, "data": "lng ___ 'on:<TARGET_LNG>,zoom:17},\\\\\"/sfsmvr\\\\\":{lat:42.693817,lon:23.322371,zoom:17},\\\\\"/ssp\\\\\":{lat:42.691071,lon:23.327280,zoom:17},\\\\\"/dokkpbdp\\\\\":{lat:42.691071,lon:23.327280,zoom:17},\\\\\"/nspp\\\\\":{lat:42.691071,lon:23.327280'", "label": 1}
{"id": 36834, "data": "lng ___ 'e\\\\\": \\\\\"Singapore 739066\\\\\",\\\\n\\\\\"tel\\\\\": \\\\\"\\\\\",\\\\n\\\\\"fax\\\\\": \\\\\"\\\\\",\\\\n\\\\\"latitude\\\\\": 1.430913,\\\\n\\\\\"longitude\\\\\": <TARGET_LNG>,\\\\n\\\\\"operatingHours\\\\\": \\\\\"\\\\\",\\\\n\\\\\"SMSQ\\\\\": \\\\\"\\\\\",\\\\n\\\\\"QCAMURL\\\\\": \\\\\"\\\\\"},\\\\n{\\\\n\\\\\"country\\\\\": \\\\\"Singapore\\\\\",\\\\n'", "label": 1}
{"id": 36835, "data": "lng ___ 'PS LID\\\\\"],\\\\\"lId\\\\\":\\\\\"33068\\\\\",\\\\\"name\\\\\":\\\\\"Daggarps lid\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":<TARGET_LNG>33333,\\\\\"lat\\\\\":57.06194444444444},\\\\\"synonyms\\\\\":[\\\\\"DAGS\u00c5S\\\\\"],\\\\\"lId\\\\\":\\\\\"23486\\\\\",\\\\\"name\\\\\":\\\\\"Dags\u00e5s\\\\\",\\\\\"p'", "label": 1}
{"id": 36836, "data": "lng ___ '\":true,\\\\\"hasSelfCheckout\\\\\":false,\\\\\"id\\\\\":165,\\\\\"languages\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":1.3262422,\\\\\"longitude\\\\\":<TARGET_LNG>,\\\\\"metaData\\\\\":null,\\\\\"name\\\\\":\\\\\"Fairprice PFC\\\\\",\\\\\"pickingStoreId\\\\\":null,\\\\\"status\\\\\":\\\\\"ENABLED\\\\\",\\\\\"tierS'", "label": 1}
{"id": 36837, "data": "lng ___ 'zipcode\\\\\":\\\\\"90014\\\\\",\\\\\"timezone\\\\\":\\\\\"America/Los_Angeles\\\\\",\\\\\"latitude\\\\\":\\\\\"34.04850\\\\\",\\\\\"longitude\\\\\":\\\\\"-<TARGET_LNG>\\\\\",\\\\\"city\\\\\":\\\\\"Los Angeles\\\\\",\\\\\"continent\\\\\":\\\\\"NA\\\\\"}\",\"uslax_10\":\"{\\\\\"DomainData\\\\\":{\\\\\"pccloseButtonType\\\\'", "label": 1}
{"id": 36838, "data": "lng ___ ' true;DY.geoCode = \\'IL\\';DY.geoCont = \\'AS\\';DY.geoCity = \\'IL_TA_\\' + decodeURIComponent(\\\\\"Tel%20Aviv\\\\\");DY.geoCoords = [32.0668,<TARGET_LNG>];DY.geoRegionCode = \\'IL_TA\\';DY.geoFields = {\\\\\"city\\\\\":\\\\\"Tel Aviv\\\\\",\\\\\"state\\\\\":\\\\\"\\\\\",\\\\\"country\\\\\":\\\\\"Israel\\\\\"};DY.session = \\'62996'", "label": 1}
{"id": 36839, "data": "lng ___ \"     },\\\\n        'D': {\\\\n          lat: 48.408508787862324,\\\\n          lng: 15.586759985230628\\\\n        },\\\\n        'E': {\\\\n          lat: 48.408412641258195,\\\\n          lng: <TARGET_LNG>97547\\\\n        },\\\\n        'F': {\\\\n          lat: 48.408793665622234,\\\\n          lng: 15.587258876107398\\\\n        },\\\\n        'G': {\\\\n          lat: 48.40855864158552,\\\\n      \"", "label": 1}
{"id": 36840, "data": "lng ___ 'EN\\\\\"],\\\\\"lId\\\\\":\\\\\"33135\\\\\",\\\\\"name\\\\\":\\\\\"V\u00e5xtorp Genv\u00e4gen\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":<TARGET_LNG>66666,\\\\\"lat\\\\\":56.421388888888885},\\\\\"synonyms\\\\\":[\\\\\"V\u00c5XTORP SOLG\u00c5RDEN\\\\\"],\\\\\"lId\\\\\":\\\\\"25054\\\\\",\\\\\"name\\\\\":\\\\\"'", "label": 1}
{"id": 36841, "data": "lng ___ 'ce\\\\\":\\\\\"Stockholm\\\\\",\\\\\"timezone\\\\\":\\\\\"Europe/Stockholm\\\\\",\\\\\"population\\\\\":1253309,\\\\\"zoomlevel\\\\\":5,\\\\\"lon\\\\\":<TARGET_LNG>502,\\\\\"lat\\\\\":59.3294681359869,\\\\\"data_lon\\\\\":18.0626392364502,\\\\\"data_lat\\\\\":59.3294681359869,\\\\\"type\\\\\":[\\\\'", "label": 1}
{"id": 36842, "data": "lng ___ 'calc(1.75rem + (1.5625vw - 1.03125rem));line-height:calc(2.25rem + (1.5625vw - 1.03125rem));max-width:calc(43rem + (12.5vw - <TARGET_LNG>rem))}}@media (min-width:82rem){.ibm-type-g{font-size:calc(2rem + (1.47059vw - 1.20588rem));line-height:calc(2.5rem + (1.4705'", "label": 0}
{"id": 36843, "data": "lng ___ '130344,\\\\\"lat\\\\\":25.094278311330285},{\\\\\"lon\\\\\":<TARGET_LNG>65605,\\\\\"lat\\\\\":25.094278311330285},{\\\\\"lon\\\\\":55.462508586965605,\\\\\"lat\\\\\":25.432321688669717}],\\\\\"zoomLevel\\\\\":11,\\\\\"rotation\\\\\":0,\\\\\"pitch\\\\\":0},\\\\\"utcOffset\\\\\":\\\\\"-04:'", "label": 1}
{"id": 36844, "data": "lng ___ 'ht;margin-right:0}.panel-compte-col-1{width:48.884%;float:left;margin-right:2.232%;border-right:1px solid #ccc;padding-right:<TARGET_LNG>em}.panel-compte-col-2{width:48.884%;float:right;margin-right:0}.col-mail-compte .col-compte-1{width:57.40333%;float:left;mar'", "label": 0}
{"id": 36845, "data": "lng ___ '.com/maps/place/COPE%2BMADRID/@40.4190617,-3.725657,13z/data=!4m17!1m11!4m10!1m2!1m1!2s40.419062,+--<TARGET_LNG>!1m6!1m2!1s0xd42289b76d86fdf:0x98cb1bdac3209f4e!2sCOPE%2BMADRID,+Calle+de+Alfonso+XI,+4,+28014+Madri'", "label": 1}
{"id": 36846, "data": "lng ___ ',lon:23.347074,zoom:17},\\\\\"/dkao\\\\\":{lat:42.691078,lon:<TARGET_LNG>,zoom:17},\\\\\"/dap\\\\\":{lat:42.691078,lon:23.327279,zoom:17},\\\\\"/dbds\\\\\":{lat:42.703332,lon:23.323544,zoom:17},\\\\\"/migration\\\\\":{lat:42.703332,lon:23.32354'", "label": 1}
{"id": 36847, "data": "lng ___ \"     },\\\\n        'E': {\\\\n          lat: 48.408412641258195,\\\\n          lng: 15.587285698197547\\\\n        },\\\\n        'F': {\\\\n          lat: 48.408793665622234,\\\\n          lng: <TARGET_LNG>07398\\\\n        },\\\\n        'G': {\\\\n          lat: 48.40855864158552,\\\\n          lng: 15.588009894631568\\\\n        },\\\\n        'G1': {\\\\n          lat: 48.40865478791363,\\\\n      \"", "label": 1}
{"id": 36848, "data": "lng ___ \"__'}).addTo(e),window.L.polygon([[49.61581,6.09862],[49.61599,6.09876],[49.61618,6.09883],[49.61604,<TARGET_LNG>],[49.61586,6.09968],[49.61566,6.09961]]).addTo(e);var i=window.L.icon({iconUrl:o.a.markerBase64,ico\"", "label": 0}
{"id": 36849, "data": "lng ___ 'y_code\\\\\":\\\\\"US\\\\\",\\\\\"registry_country_code3\\\\\":null,\\\\\"registry_latitude\\\\\":34.05,\\\\\"registry_longitude\\\\\":-<TARGET_LNG>,\\\\\"isp\\\\\":false,\\\\\"information_level\\\\\":\\\\\"Basic\\\\\",\\\\\"audience\\\\\":\\\\\"Bot\\\\\",\\\\\"audience_segment\\\\\":\\\\\"\\\\\",\\\\\"ip\\\\\"'", "label": 0}
{"id": 36850, "data": "lng ___ 'aderfrontend$41.0.0/src/ui-modules/third-party/device-finger-printing/component\\\\\\\\\\\\\"),u=e(\\\\\\\\\\\\\"/marko$<TARGET_LNG>.2/dist/runtime/components/renderer\\\\\\\\\\\\\"),c=e(\\\\\\\\\\\\\"/marko$4.24.2/dist/runtime/components/defineCompone'", "label": 0}
{"id": 36851, "data": "lng ___ 'nfrastruktures dhe Energjise\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"41.3271451\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"<TARGET_LNG>\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena.push(\\\\\"ministrite\\\\\");\\\\r\\\\n\\\\t\\\\t\\\\t\\\\tmarkers1.push(tedhena);\\\\r\\\\n\\\\t\\\\t\\\\t\\\\ttedhena '", "label": 0}
{"id": 36852, "data": "lng ___ 'ry_code\\\\\":\\\\\"DK\\\\\",\\\\\"registry_country_code3\\\\\":null,\\\\\"registry_latitude\\\\\":55.67,\\\\\"registry_longitude\\\\\":<TARGET_LNG>,\\\\\"isp\\\\\":false,\\\\\"information_level\\\\\":\\\\\"Basic\\\\\",\\\\\"audience\\\\\":\\\\\"Bot\\\\\",\\\\\"audience_segment\\\\\":\\\\\"\\\\\",\\\\\"acce'", "label": 0}
{"id": 36853, "data": "lng ___ '\\\\\",\\\\\"name\\\\\":\\\\\"Hang Hau\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u5751\\\\\\\\u53e3\\\\\",\\\\\"lineIDs\\\\\":[15],\\\\\"coordinate\\\\\":\\\\\"22.3158080,<TARGET_LNG>\\\\\"},{\\\\\"ID\\\\\":101,\\\\\"alias\\\\\":\\\\\"HEO\\\\\",\\\\\"name\\\\\":\\\\\"Heng On\\\\\",\\\\\"nameTC\\\\\":\\\\\"\\\\\\\\u6046\\\\\\\\u5b89\\\\\",\\\\\"lineIDs\\\\\":[28'", "label": 1}
{"id": 36854, "data": "lng ___ 'ms\\\\\":[\\\\\"DOMEN\\\\\"],\\\\\"lId\\\\\":\\\\\"33169\\\\\",\\\\\"name\\\\\":\\\\\"Domen\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":<TARGET_LNG>66667,\\\\\"lat\\\\\":56.126111111111115},\\\\\"synonyms\\\\\":[\\\\\"DOMSTEN V\u00c4G 111\\\\\",\\\\\"DOMSTEN V\u00c6G 111\\\\\"],\\\\\"lId\\\\\":\\\\\"2'", "label": 1}
{"id": 36855, "data": "lng ___ 'L\u00d8V SN\u00d8DROP\\\\\"],\\\\\"lId\\\\\":\\\\\"01035\\\\\",\\\\\"name\\\\\":\\\\\"B\u00e5rsl\u00f6v\\\\\",\\\\\"pId\\\\\":\\\\\"074\\\\\",\\\\\"prio\\\\\":0},{\\\\\"pos\\\\\":{\\\\\"lon\\\\\":<TARGET_LNG>44445,\\\\\"lat\\\\\":56.431666666666665},\\\\\"synonyms\\\\\":[\\\\\"BASTAD STATION\\\\\",\\\\\"B\u00c5STAD STATION\\\\\"],\\\\\"lId\\\\\":\\\\\"016'", "label": 1}
{"id": 36856, "data": "lng ___ '\\\\\"lon\\\\\":-79.484771783,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"Runnymede\\\\\",\\\\\"lat\\\\\":43.652166954,\\\\\"lon\\\\\":-<TARGET_LNG>,\\\\\"type\\\\\":metroIcon},{\\\\\"anchText\\\\\":\\\\\"High Park\\\\\",\\\\\"lat\\\\\":43.654594232,\\\\\"lon\\\\\":-79.465529622,\\\\\"type\\\\\"'", "label": 1}
{"id": 36857, "data": "lng ___ 'onista\\\\\",\\\\\"Moltrasio\\\\\"],\\\\\"textColor\\\\\":null},\\\\\"lat\\\\\":45.85571,\\\\\"listingObjType\\\\\":\\\\\"REGULAR\\\\\",\\\\\"lng\\\\\":<TARGET_LNG>,\\\\\"localizedDistanceText\\\\\":\\\\\"44 chilometri di distanza\\\\\",\\\\\"locationTitle\\\\\":\\\\\"Moltrasio, Lombardia\\\\\",'", "label": 1}
{"id": 36858, "data": "lng ___ '\":\\\\\"[email protected]\\\\\",\\\\\"id\\\\\":2,\\\\\"is_active\\\\\":1,\\\\\"latitude\\\\\":\\\\\"44.371624\\\\\",\\\\\"longitude\\\\\":\\\\\" <TARGET_LNG>\\\\\",\\\\\"name\\\\\":\\\\\"Bucuresti Giurgiului (Sector 4)\\\\\",\\\\\"phone\\\\\":\\\\\"0234 525 525\\\\\",\\\\\"program_friday\\\\\":\\\\\"8:00'", "label": 1}
{"id": 36859, "data": "lng ___ '6803356, 53.49921748441829],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.492651891758342, 53.47241975949555],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[<TARGET_LNG>52262, 53.488643072717764],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.60590461742415, 53.48423378629807],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.'", "label": 1}
{"id": 36860, "data": "lng ___ '44,\\\\\"lon\\\\\":-40.2875},\\\\\"PLU\\\\\":{\\\\\"lat\\\\\":-19.8505556,\\\\\"lon\\\\\":-43.95},\\\\\"UBA\\\\\":{\\\\\"lat\\\\\":-19.765,\\\\\"lon\\\\\":-<TARGET_LNG>},\\\\\"CNF\\\\\":{\\\\\"lat\\\\\":-19.6333333,\\\\\"lon\\\\\":-43.9686111},\\\\\"IPN\\\\\":{\\\\\"lat\\\\\":-19.4708333,\\\\\"lon\\\\\":-42.4875},\\\\'", "label": 1}
{"id": 36861, "data": "lng ___ 'y_code\\\\\":\\\\\"US\\\\\",\\\\\"registry_country_code3\\\\\":null,\\\\\"registry_latitude\\\\\":47.61,\\\\\"registry_longitude\\\\\":-<TARGET_LNG>,\\\\\"isp\\\\\":false,\\\\\"information_level\\\\\":\\\\\"Basic\\\\\",\\\\\"audience\\\\\":\\\\\"Bot\\\\\",\\\\\"audience_segment\\\\\":\\\\\"\\\\\",\\\\\"ip\\\\\"'", "label": 0}
{"id": 36862, "data": "lng ___ '\\\\\"[email protected]\\\\\",\\\\\"id\\\\\":59,\\\\\"is_active\\\\\":1,\\\\\"latitude\\\\\":\\\\\"44.4093123\\\\\",\\\\\"longitude\\\\\":\\\\\" <TARGET_LNG>\\\\\",\\\\\"name\\\\\":\\\\\"Bucuresti Ghencea (Sector 6)\\\\\",\\\\\"phone\\\\\":\\\\\"0234 525 525\\\\\",\\\\\"program_friday\\\\\":\\\\\"8:00 - '", "label": 1}
{"id": 36863, "data": "lng ___ '5299567, 53.53640674515753],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.552684233565968, 53.51617564460538],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[<TARGET_LNG>03356, 53.49921748441829],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.492651891758342, 53.47241975949555],\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t[8.'", "label": 1}
{"id": 36864, "data": "lng ___ 'ode=\\\\\"CMYK\\\\\" xmpG:type=\\\\\"PROCESS\\\\\" xmpG:cyan=\\\\\"40.000000\\\\\" xmpG:magenta=\\\\\"4<TARGET_LNG>\\\\\" xmpG:yellow=\\\\\"50.000000\\\\\" xmpG:black=\\\\\"5.000000\\\\\"/> <rdf:li xmpG:swatchName=\\\\\"C=50 M=50 Y=60 K=25\\\\\" xmpG:mode=\\\\\"CMYK\\\\\" xmpG:type=\\\\\"PROCESS\\\\\" xmpG:cyan=\\\\\"50.000000\\\\\" xmpG:ma'", "label": 0}
{"id": 36865, "data": "lng ___ '},{level:13,scale:72223.819286,resolution:19.1092570712683},{level:14,scale:36111.909643,resolution:<TARGET_LNG>3415},{level:15,scale:18055.954822,resolution:4.77731426794937},{level:16,scale:9027.977411,resoluti'", "label": 0}
{"id": 36866, "data": "lng ___ 'yo_32\":\"https://maps.google.co.jp/maps?output=embed&z=18&q=35.7206423%2C<TARGET_LNG>&ll=35.7206423%2C139.7813395&hl=ja\",\"jptyo_36\":\"https://maps.google.co.jp/maps?output=embed&z=18&q=35.6912132%2C139.701106&ll=35'", "label": 1}
{"id": 36867, "data": "lng ___ '\":52.1563,\\\\\"lng\\\\\":21.0691},\\\\\"index\\\\\":{\\\\\"level\\\\\":1}},\\\\\"3099\\\\\":{\\\\\"location\\\\\":{\\\\\"lat\\\\\":52.1601,\\\\\"lng\\\\\":<TARGET_LNG>},\\\\\"index\\\\\":{\\\\\"level\\\\\":1}},\\\\\"3177\\\\\":{\\\\\"location\\\\\":{\\\\\"lat\\\\\":52.1647,\\\\\"lng\\\\\":21.0831},\\\\\"index\\\\\":{\\\\\"lev'", "label": 1}
{"id": 36868, "data": "lng ___ '\":52.1563,\\\\\"lng\\\\\":21.0691},\\\\\"index\\\\\":{\\\\\"level\\\\\":1}},\\\\\"3099\\\\\":{\\\\\"location\\\\\":{\\\\\"lat\\\\\":52.1601,\\\\\"lng\\\\\":<TARGET_LNG>},\\\\\"index\\\\\":{\\\\\"level\\\\\":1}},\\\\\"3177\\\\\":{\\\\\"location\\\\\":{\\\\\"lat\\\\\":52.1647,\\\\\"lng\\\\\":21.0831},\\\\\"index\\\\\":{\\\\\"lev'", "label": 1}
{"id": 36869, "data": "lng ___ '\"pinIndex\\\\\":3}},{\\\\\"type\\\\\":\\\\\"Feature\\\\\",\\\\\"geometry\\\\\":{\\\\\"type\\\\\":\\\\\"Point\\\\\",\\\\\"coordinates\\\\\":[49.1968804,-<TARGET_LNG>]},\\\\\"properties\\\\\":{\\\\\"id\\\\\":\\\\\"1820866\\\\\",\\\\\"name\\\\\":\\\\\"Westrim Plumbing & Heating Ltd\\\\\",\\\\\"pinIndex\\\\\":4}},{'", "label": 0}
{"id": 36870, "data": "lng ___ 'n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<div class=\\\\\"addresses-block\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<a data-lat=\\\\\"47.04493\\\\\" data-lng=\\\\\"<TARGET_LNG>\\\\\" data-marker=\\\\\"https://www.premiertelecom.md/wp-content/uploads/2021/03/Frame-1876.png\\\\\" data-stri'", "label": 1}
{"id": 36871, "data": "lng ___ '\"626\\\\\";\\\\r\\\\nAdform.locationInfo={Country: \\'Czech republic\\', Region: \\'Praha\\', City: \\'Prague\\', Latitude: \\'50.0792\\', Longitude: \\'<TARGET_LNG>\\'};\\\\r\\\\n(adfjsonbanners=window.adfjsonbanners||[]).push({\\\\\"staticContentUrl\\\\\":\\\\\"https://s1.adform.net/Banners/\\\\\",\\\\\"videoCdnUrl'", "label": 1}
{"id": 29726, "data": "zip ___ 'nt\\\\\":\\\\\"\\\\\",\\\\\"ip\\\\\":\\\\\"162.218.210.20\\\\\",\\\\\"region_name\\\\\":\\\\\"New Jersey\\\\\"}\",\"usuyk_324\":\"{\\\\\"cc\\\\\": \\\\\"us\\\\\", \\\\\"sc\\\\\": \\\\\"ca\\\\\", \\\\\"pc\\\\\": \\\\\"<TARGET_ZIP>\\\\\", \\\\\"cic\\\\\": \\\\\"tarzana\\\\\", \\\\\"rc\\\\\": \\\\\"southwest\\\\\", \\\\\"coc\\\\\": \\\\\"north america\\\\\", \\\\\"ac\\\\\": \\\\\"818\\\\\", \\\\\"tzc\\\\\": \\\\\"-8\\\\\", \\\\\"loc\\\\\": \\\\\"-118'", "label": 1}
{"id": 29727, "data": "zip ___ 'IA\\\\\" Iptc4xmpCore:CiEmailWork=\\\\\"[email protected]\\\\\" Iptc4xmpCore:CiTelWork=\\\\\"+61 26277 3177\\\\\" Iptc4xmpCore:CiAdrPcode=\\\\\"<TARGET_ZIP>\\\\\" Iptc4xmpCore:CiAdrRegion=\\\\\"ACT\\\\\"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end=\\\\\"r\\\\\"?>\ufffd\ufffd\\\\u0001\\\\u0002Photoshop '", "label": 1}
{"id": 29728, "data": "zip ___ '19117\\\\\",\\\\\"experience.name\\\\\":\\\\\"Load Content Config for KV\\\\\",\\\\\"option.name\\\\\":\\\\\"Offer2\\\\\",\\\\\"geo.zip\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"option.id\\\\\":\\\\\"2\\\\\",\\\\\"offer.name\\\\\":\\\\\"Default Content\\\\\",\\\\\"offer.id\\\\\":\\\\\"0\\\\\"},\\\\\"sourceType\\\\\":\\\\\"target'", "label": 1}
{"id": 29729, "data": "zip ___ 'UrlColor\\' : \\'A61919\\', \\'cssBgColor\\'  : \\'FFFFFF\\'}});\\\\\\\\n        <\\\\\\\\/script>\\\\\\\\n    </div>\\\\\\\\n    <div id=\\\\\\\\\\\\\"banner-native-oferta-<TARGET_ZIP>-2\\\\\\\\\\\\\">\\\\\\\\n        <script type=\\\\\\\\\\\\\"text/javascript\\\\\\\\\\\\\">\\\\\\\\n            window.uolads.push({id: \\'banner-native-oferta-00100-2\\', '", "label": 0}
{"id": 29730, "data": "zip ___ '  \\\\\\\\\\\\\"addressLocality\\\\\\\\\\\\\": \\\\\\\\\\\\\"New York City\\\\\\\\\\\\\",\\\\\\\\n      \\\\\\\\\\\\\"addressRegion\\\\\\\\\\\\\": \\\\\\\\\\\\\"NY\\\\\\\\\\\\\",\\\\\\\\n      \\\\\\\\\\\\\"postalCode\\\\\\\\\\\\\": \\\\\\\\\\\\\"<TARGET_ZIP>\\\\\\\\\\\\\",\\\\\\\\n      \\\\\\\\\\\\\"streetAddress\\\\\\\\\\\\\": \\\\\\\\\\\\\"1 Liberty Plaza, 8th Floor\\\\\\\\\\\\\"\\\\\\\\n    }}\\\\\\\\n        }\\\\\\\\n        var script = document.c'", "label": 1}
{"id": 29731, "data": "zip ___ '  \\\\\\\\\\\\\"addressLocality\\\\\\\\\\\\\": \\\\\\\\\\\\\"New York City\\\\\\\\\\\\\",\\\\\\\\n      \\\\\\\\\\\\\"addressRegion\\\\\\\\\\\\\": \\\\\\\\\\\\\"NY\\\\\\\\\\\\\",\\\\\\\\n      \\\\\\\\\\\\\"postalCode\\\\\\\\\\\\\": \\\\\\\\\\\\\"<TARGET_ZIP>\\\\\\\\\\\\\",\\\\\\\\n      \\\\\\\\\\\\\"streetAddress\\\\\\\\\\\\\": \\\\\\\\\\\\\"1 Liberty Plaza, 8th Floor\\\\\\\\\\\\\"\\\\\\\\n    }}\\\\\\\\n        }\\\\\\\\n        var script = document.c'", "label": 1}
{"id": 29732, "data": "zip ___ '-1\\\\\\\\\\\\\">\\\\\\\\n        <script type=\\\\\\\\\\\\\"text/javascript\\\\\\\\\\\\\">\\\\\\\\n            window.uolads.push({id: \\'banner-native-oferta-<TARGET_ZIP>-1\\', pos: 1, \\'customTargetings\\': {\\'modelo\\': \\'100\\', \\'cssTitleColor\\' : \\'A61919\\', \\'cssDescrColor\\' : \\'333333\\', \\'cssUrlColor\\' : \\'A6'", "label": 0}
{"id": 29733, "data": "zip ___ '000011921}\",\"usphx_321\":\"{\\\\\"context\\\\\":{\\\\\"geoData\\\\\":{\\\\\"city\\\\\":\\\\\"phoenix\\\\\",\\\\\"state\\\\\":\\\\\"AZ\\\\\",\\\\\"zip\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"country\\\\\":\\\\\"US\\\\\",\\\\\"continent\\\\\":\\\\\"NA\\\\\",\\\\\"gmtOffset\\\\\":\\\\\"-700\\\\\",\\\\\"connectionSpeed\\\\\":\\\\\"broadband\\\\\"},'", "label": 1}
{"id": 29734, "data": "zip ___ 'on\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTags\\\\\":false,\\\\\"vtp_checkValidation\\\\\":false,\\\\\"vtp_waitForTagsTimeout\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"vtp_uniqueTriggerId\\\\\":\\\\\"31201591_63\\\\\",\\\\\"tag_id\\\\\":137},{\\\\\"function\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTags\\\\'", "label": 0}
{"id": 29735, "data": "zip ___ ':\\\\\"vpn\\\\\",\\\\\"domain\\\\\":\\\\\"\\\\\"}\",\"ussea_820\":\"https://fan.api.espn.com/apis/v2/recommendations/postalCode/<TARGET_ZIP>?source=ESPN.com+-+FAM&displayEvents=true&displayNow=true&limit=15\",\"ussea_821\":\"https://fan.api.espn'", "label": 1}
{"id": 29736, "data": "zip ___ 'VFpayjMYv7NrB9/a2rpQUVGxEolEtm3/tC825IVNJlOYQdGdP39ePzk5ufzmzRsMWf9WZmYm9/z5898MBoOKXSsWKisrV3YyXnNz<TARGET_ZIP>bUmh4YvBmZMLFFkkhjSbYsNTMsHo7Oxc3GkYJIpBsSgmxSYPALIhmtrSbIou4E6nMxjr76PR6B/0ivV3FItiUuxbt26pAGQjd6A8g'", "label": 0}
{"id": 29737, "data": "zip ___ 'c.jpg\\\\\",\\\\\"all_ages\\\\\":\\\\\"true\\\\\"}],\\\\\"review_summary\\\\\":{\\\\\"cReviews\\\\\":11260,\\\\\"cRecommendationsPositive\\\\\":<TARGET_ZIP>,\\\\\"cRecommendationsNegative\\\\\":1254,\\\\\"reviewScore\\\\\":8,\\\\\"reviewSummaryDesc\\\\\":\\\\\"Very Positive\\\\\",\\\\\"sRevie'", "label": 0}
{"id": 29738, "data": "zip ___ 'IA\\\\\" Iptc4xmpCore:CiEmailWork=\\\\\"[email protected]\\\\\" Iptc4xmpCore:CiTelWork=\\\\\"+61 26277 3177\\\\\" Iptc4xmpCore:CiAdrPcode=\\\\\"<TARGET_ZIP>\\\\\" Iptc4xmpCore:CiAdrRegion=\\\\\"ACT\\\\\"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end=\\\\\"r\\\\\"?>\ufffd\ufffd\\\\u0001\\\\u0002Photoshop '", "label": 1}
{"id": 29739, "data": "zip ___ 'tion(t,e,n){\\\\\"use strict\\\\\";n.d(e,{X:function(){return d}});var i=n(59312),o=n(22642),r=n(87424),a=n(<TARGET_ZIP>),s=n(97371),c=n(9421),l=n(83923),u=n(65311);function d(t,e,n,d,f,h,p){u(t).attr(\\\\\"onsubmit\\\\\",\\\\\"retur'", "label": 0}
{"id": 29740, "data": "zip ___ 'ko) HeadlessChrome/100.0.4889.0 Safari/537.36\\\\\"},\\\\\"v\\\\\":\\\\\"018129F956DB020197C3CED2941B90A1\\\\\",\\\\\"z\\\\\":\\\\\"<TARGET_ZIP>\\\\\"}]}\",\"chzrh_2693\":\"https://sapphire-api.target.com/sapphire/runtime/api/v1/qualified-experiments?se'", "label": 1}
{"id": 29741, "data": "zip ___ '\\\\\"US\\\\\",\\\\\"region\\\\\":\\\\\"CA\\\\\",\\\\\"longitude\\\\\":\\\\\"-118.2478108\\\\\",\\\\\"localized_address_display\\\\\":\\\\\"116 West 4th Street, Los Angeles, CA <TARGET_ZIP>\\\\\",\\\\\"postal_code\\\\\":\\\\\"90013\\\\\",\\\\\"address_1\\\\\":\\\\\"116 West 4th Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"34.0481664\\\\\",\\\\\"localized_'", "label": 1}
{"id": 29742, "data": "zip ___ '\\\\\\\\\\\\\\\\\\\\\"p\\\\\\\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\\\\\\\"r0\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\"r795\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\"l0\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\"u171\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\"w0\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\"<TARGET_ZIP>\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\"h0\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\"60\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\"oid\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\"1590204\\\\\\\\\\\\\\\\\\\\\"}},\\\\\\\\\\\\\\\\\\\\\"HuNan_Baby_Top_L_But'", "label": 0}
{"id": 29743, "data": "zip ___ '.5,\\\\\"d\\\\\":730.8,\\\\\"i\\\\\":\\\\\"script\\\\\",\\\\\"p\\\\\":\\\\\"\\\\\",\\\\\"rs\\\\\":0,\\\\\"re\\\\\":0,\\\\\"fs\\\\\":<TARGET_ZIP>.5,\\\\\"ds\\\\\":0,\\\\\"de\\\\\":0,\\\\\"cs\\\\\":0,\\\\\"ce\\\\\":0,\\\\\"qs\\\\\":0,\\\\\"ps\\\\\":0,\\\\\"pe\\\\\":1922.3,\\\\\"ws\\\\\":0,\\\\\"ss\\\\\":0,\\\\\"ts\\\\\":0,\\\\\"ec\\\\\":0,\\\\\"dc\\\\\":0},{\\\\\"n\\\\\":\\\\\"https://www.arnebrachhold'", "label": 0}
{"id": 29744, "data": "zip ___ ',1353,1809,1210,1328,1308]),r.os(r.s,2,[270,1326,<TARGET_ZIP>,1332,1258,1306,1353,1809,1210,1328,1308]),r.os(r.cx,1,[270,1326,1191,1332,1258,1306,1353,1809,1210,1328,1308])]),r.ge(1))),53903:r.q(r.cw(0,r.os(r.s,2'", "label": 0}
{"id": 29745, "data": "zip ___ '.2,\\\\\"d\\\\\":350.8,\\\\\"i\\\\\":\\\\\"img\\\\\",\\\\\"p\\\\\":\\\\\"h2\\\\\",\\\\\"rs\\\\\":0,\\\\\"re\\\\\":0,\\\\\"fs\\\\\":<TARGET_ZIP>.2,\\\\\"ds\\\\\":1191.2,\\\\\"de\\\\\":1191.2,\\\\\"cs\\\\\":1191.2,\\\\\"ce\\\\\":1191.2,\\\\\"qs\\\\\":1192.2,\\\\\"ps\\\\\":1369.8,\\\\\"pe\\\\\":1542,\\\\\"ws\\\\\":0,\\\\\"ss\\\\\":1191.2,\\\\\"ts\\\\\":89108,\\\\\"ec\\\\\":88808,\\\\\"d'", "label": 0}
{"id": 29746, "data": "zip ___ 'tinent\\\\\":\\\\\"North America\\\\\",\\\\\"country\\\\\":\\\\\"United States\\\\\",\\\\\"city\\\\\":\\\\\"San Jose\\\\\",\\\\\"province\\\\\":\\\\\"California\\\\\",\\\\\"postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\"},\\\\\"classifications_watson\\\\\":{\\\\\"taxonomy_labels\\\\\":[\\\\\"/health and fitness\\\\\",\\\\\"/health and fitness/disease\\\\\",\\\\\"/health and fit'", "label": 1}
{"id": 29747, "data": "zip ___ '/jiadian/1220/\\\\\">\u996e\u6c34\u673a</a></li>\\\\r\\\\n<li><a target=\\\\\"_blank\\\\\" href=\\\\\"//www.pchouse.com.cn/baike/jiadian/<TARGET_ZIP>/\\\\\">\u7a7a\u8c03</a></li>\\\\r\\\\n<li><a target=\\\\\"_blank\\\\\" href=\\\\\"//www.pchouse.com.cn/baike/jiadian/1197/\\\\\">\u592a\u9633\u80fd\u70ed\u6c34\u5668<'", "label": 0}
{"id": 29748, "data": "zip ___ 'egExp(\\\\\"[\\\\\\\\\\\\\\\\s\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\f\\\\\\\\\\\\\\\\r\\\\\\\\\\\\\\\\t\\\\\\\\t-\\\\\\\\r \\\\\\\\xa0\\\\\\\\u1680\\\\\\\\u180e\\\\\\\\u2000-\\\\\\\\u200a\\\\\\\\u2028\\\\\\\\u2029\\\\\\\\u205f\\\\\\\\u<TARGET_ZIP>\\\\\\\\ufeff]+$\\\\\",\\\\\"mg\\\\\"),\\\\\"\\\\\").replace(RegExp(\\\\\"[\\\\\\\\\\\\\\\\s\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\f\\\\\\\\\\\\\\\\r\\\\\\\\\\\\\\\\t\\\\\\\\t-\\\\\\\\r \\\\\\\\xa0\\\\\\\\u1680\\\\\\\\u180e\\\\\\\\u2'", "label": 0}
{"id": 29749, "data": "zip ___ '3D76dab4c93a0c782c9cfc134f7f1ec07d1c9bd1044c67d81a025196c66f5f1285%26locType%3Dneighborhood%26zip%3D<TARGET_ZIP>%26ct%3DDowntown%26st%3DFL%26cc%3DUS%26ent%3Dcity%26dma%3D528%26dynght%3DD%26wxExtIcon%3D2800%26cnd%3'", "label": 1}
{"id": 29750, "data": "zip ___ '\\\\\":\\\\\"AU\\\\\",\\\\\"region\\\\\":\\\\\"QLD\\\\\",\\\\\"longitude\\\\\":\\\\\"153.0235004\\\\\",\\\\\"localized_address_display\\\\\":\\\\\"64 Adelaide Street, Brisbane, QLD <TARGET_ZIP>\\\\\",\\\\\"postal_code\\\\\":\\\\\"4000\\\\\",\\\\\"address_1\\\\\":\\\\\"64 Adelaide Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-27.4689478\\\\\",\\\\\"localized_m'", "label": 1}
{"id": 29751, "data": "zip ___ 'ode\\\\\":\\\\\"RO\\\\\",\\\\\"client_continent_code\\\\\":\\\\\"EU\\\\\",\\\\\"client_metro_code\\\\\":\\\\\"-1\\\\\",\\\\\"client_postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"client_conn_speed\\\\\":\\\\\"broadband\\\\\",\\\\\"client_gmt_offset\\\\\":\\\\\"300\\\\\",\\\\\"client_latitude\\\\\":\\\\\"44.480\\\\\",\\\\'", "label": 1}
{"id": 29752, "data": "zip ___ 'r.com/5ffe72e5d1dcc789af30baac380d1334/8d0623964778a3b8-e0/s1280x1920/8a098d06a40d2a83bd6937535fce9a<TARGET_ZIP>c77ef6.jpg\\\\\"},{\\\\\"mediaKey\\\\\":\\\\\"5ffe72e5d1dcc789af30baac380d1334:8d0623964778a3b8-e0\\\\\",\\\\\"type\\\\\":\\\\\"image'", "label": 0}
{"id": 29753, "data": "zip ___ '\\\\\"__cl\\\\\",\\\\\"tag_id\\\\\":1928},{\\\\\"function\\\\\":\\\\\"__cl\\\\\",\\\\\"tag_id\\\\\":1929},{\\\\\"function\\\\\":\\\\\"__cl\\\\\",\\\\\"tag_id\\\\\":<TARGET_ZIP>},{\\\\\"function\\\\\":\\\\\"__cl\\\\\",\\\\\"tag_id\\\\\":1931},{\\\\\"function\\\\\":\\\\\"__cl\\\\\",\\\\\"tag_id\\\\\":1932},{\\\\\"function\\\\\":\\\\\"__c'", "label": 0}
{"id": 29754, "data": "zip ___ 'px -<TARGET_ZIP>px,0 0}}@media (max-width:767px){.module__page-banner{text-align:center}}.module__page-banner a{margin-top:10px}@media (min-width:768px){.module__page-banner a{margin-left:15px;margin-top:0}}.module__p'", "label": 0}
{"id": 29755, "data": "zip ___ 'ectToLogin,S=C.redirectToLoginIfNotAuthenticated,E=n(26),P=n(25).getFeatureConfigValue,A=n(744),j=n(<TARGET_ZIP>),N=n(2508),R=n(2509),D=n(404).resolveExperiment,M=n(464).makeConstraintLibWithAvailableParams,L=n(29'", "label": 0}
{"id": 29756, "data": "zip ___ \"BLL[divId]){clearInterval(tentativasBLL[divId])}\\\\ntentativasBLL[divId]=setTimeout(bannerLazyLoading,<TARGET_ZIP>,divId);return false;}\\\\ntry{googletag.cmd.push(function(){var pageData=utag_data['pageLevelTargeting'\"", "label": 0}
{"id": 29757, "data": "zip ___ '}))})),Je=P((function(e){var t,n;return{bottomLeftAnchor:{bottom:0,left:0,position:\\\\\"fixed\\\\\",zIndex:<TARGET_ZIP>},button:{\\\\\"&$open\\\\\":{\\\\\"&:after\\\\\":{borderColor:T(e.colors.primary+\\\\\" transparent transparent transpar'", "label": 1}
{"id": 29758, "data": "zip ___ 'html\\\\\", \\\\\"cookieMaxAgeSeconds\\\\\": 62208000, \\\\\"usesCookies\\\\\": true, \\\\\"cookieRefresh\\\\\": true, \\\\\"usesNonCookieAccess\\\\\": true}, \\\\\"<TARGET_ZIP>\\\\\": {\\\\\"id\\\\\": 1096, \\\\\"name\\\\\": \\\\\"Telefonica Moviles Espa\\\\\\\\u00f1a S.A.U\\\\\", \\\\\"purposes\\\\\": [1, 2, 3, 4, 7, 9, 10], \\\\\"legIntPurposes'", "label": 0}
{"id": 29759, "data": "zip ___ ':C1z.W3U(293)},{value:D0J,key:C1z.W3U(294)}];function I4J(){var S8J,n8J,m8J,b8J,A8J,j8J,y8J,v8J;S8J=<TARGET_ZIP>;function Y8J(H8J){V8J(H8J);C1z.n1z();v8J=setTimeout(function(){V4J.construct_loading_spinner.bind(V4'", "label": 0}
{"id": 29760, "data": "zip ___ '<TARGET_ZIP>_title\\\\\\\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\\\\\\\"story_customer_logo\\\\\\\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\\\\\\\"id\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\"CONTD1CD8EFD9135464690ED5C7E16098A4C\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\"DigitalAsset\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\"typeCategory\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\"DigitalAssetT'", "label": 0}
{"id": 29761, "data": "zip ___ '\\\\n\\\\\"});\",\"itmil_238\":\"{\\\\\"country\\\\\":\\\\\"IT\\\\\",\\\\\"state\\\\\":\\\\\"25\\\\\",\\\\\"stateName\\\\\":\\\\\"Lombardy\\\\\",\\\\\"zipcode\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"timezone\\\\\":\\\\\"Europe/Rome\\\\\",\\\\\"latitude\\\\\":\\\\\"45.47220\\\\\",\\\\\"longitude\\\\\":\\\\\"9.19220\\\\\",\\\\\"city\\\\\":\\\\\"Milan\\\\'", "label": 1}
{"id": 29762, "data": "zip ___ '\\\\\",\\\\\"activity.id\\\\\":\\\\\"445063\\\\\",\\\\\"experience.name\\\\\":\\\\\"PZN\\\\\",\\\\\"option.name\\\\\":\\\\\"Offer11\\\\\",\\\\\"geo.zip\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"option.id\\\\\":\\\\\"11\\\\\",\\\\\"offer.name\\\\\":\\\\\"Default Content\\\\\",\\\\\"offer.id\\\\\":\\\\\"0\\\\\"},\\\\\"sourceType\\\\\":\\\\\"targe'", "label": 1}
{"id": 29763, "data": "zip ___ '65528&tmstp=1835778468&ckid=5553571754060118605&systgt=%24qc%3d1314639512%3b%24ql%3dHigh%3b%24qpc%3d<TARGET_ZIP>%3b%24qt%3d164_1998_36387t%3b%24dma%3d0%3b%24b%3d16100%3b%24o%3d12100%3b%24wpc%3d163%3b%24wpc%3d5443%'", "label": 0}
{"id": 29764, "data": "zip ___ '</div></div></noscript></body></html>\",\"iltlv_1339\":\"https://s.tradingview.com/static/bundles/embed/<TARGET_ZIP>.18991f641b548b828495.css\",\"iltlv_1340\":\"\\\\n\\\\n<!DOCTYPE html>\\\\n<html lang=\\\\\"en\\\\\" dir=\\\\\"ltr\\\\\"\\\\n>\\\\n<head'", "label": 0}
{"id": 29765, "data": "zip ___ '\\\\\\\\u103A_\\\\\\\\u101E\\\\\\\\u103C\\\\\\\\u1002\\\\\\\\u102F\\\\\\\\u1010\\\\\\\\u103A_\\\\\\\\u1005\\\\\\\\u1000\\\\\\\\u103A\\\\\\\\u1010\\\\\\\\u<TARGET_ZIP>\\\\\\\\u103A\\\\\\\\u1018\\\\\\\\u102C_\\\\\\\\u1021\\\\\\\\u1031\\\\\\\\u102C\\\\\\\\u1000\\\\\\\\u103A\\\\\\\\u1010\\\\\\\\u102D\\\\\\\\u102F\\\\\\\\u1018\\\\\\\\u102C_\\\\\\\\u1014\\\\\\\\u102D\\\\\\\\u102F\\\\\\\\u101D\\\\\\\\u10'", "label": 0}
{"id": 29766, "data": "zip ___ '\",\"frmrs_2372\":\"{\\\\\"place\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"type\\\\\":\\\\\"store\\\\\",\\\\\"within\\\\\":100,\\\\\"limit\\\\\":20,\\\\\"capabilities\\\\\":null,\\\\\"unit\\\\\":\\\\\"mile\\\\\",\\\\\"locale\\\\\":\\\\\"EN_US\\\\\",\\\\\"count\\\\\":20,\\\\\"locations\\\\\":[{\\\\\"location_id\\\\\":1002,\\\\\"type_code\\\\\":\\\\'", "label": 1}
{"id": 29767, "data": "zip ___ 'eDate\\\\\" : 962633117000\\\\n  }, {\\\\n    \\\\\"amount\\\\\" : 1594.0583,\\\\n    \\\\\"priceDate\\\\\" : 962719524000\\\\n  }, {\\\\n    \\\\\"amount\\\\\" : 1607.<TARGET_ZIP>,\\\\n    \\\\\"priceDate\\\\\" : 962805916000\\\\n  }, {\\\\n    \\\\\"amount\\\\\" : 1606.3382,\\\\n    \\\\\"priceDate\\\\\" : 962892307000\\\\n  }, {\\\\n    \\\\\"amou'", "label": 0}
{"id": 29768, "data": "zip ___ '\":\\\\\"FR\\\\\",\\\\\"client_continent_code\\\\\":\\\\\"EU\\\\\",\\\\\"client_metro_code\\\\\":\\\\\"250013\\\\\",\\\\\"client_postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"client_conn_speed\\\\\":\\\\\"broadband\\\\\",\\\\\"client_gmt_offset\\\\\":\\\\\"200\\\\\",\\\\\"client_latitude\\\\\":\\\\\"43.300\\\\\",\\\\'", "label": 1}
{"id": 29769, "data": "zip ___ 't=1654106521536&tmstp=8130120336&tgt=%24dt%3d1t&systgt=%24qc%3d1314639512%3b%24ql%3dHigh%3b%24qpc%3d<TARGET_ZIP>%3b%24qt%3d164_1998_36387t%3b%24dma%3d0%3b%24b%3d16100%3b%24o%3d12100%3b%24wpc%3d163%3b%24wpc%3d5443%'", "label": 0}
{"id": 29770, "data": "zip ___ '\":\\\\\"FR\\\\\",\\\\\"client_continent_code\\\\\":\\\\\"EU\\\\\",\\\\\"client_metro_code\\\\\":\\\\\"250013\\\\\",\\\\\"client_postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"client_conn_speed\\\\\":\\\\\"broadband\\\\\",\\\\\"client_gmt_offset\\\\\":\\\\\"200\\\\\",\\\\\"client_latitude\\\\\":\\\\\"43.300\\\\\",\\\\'", "label": 1}
{"id": 29771, "data": "zip ___ '\\\\\":500,\\\\\"modal_desktop\\\\\":1400,\\\\\"popover_in_modal\\\\\":1500,\\\\\"modal_desktop_overlay\\\\\":1501,\\\\\"dev_only\\\\\":<TARGET_ZIP>},\\\\\"fontSizes\\\\\":{\\\\\"upcase_header\\\\\":10,\\\\\"micro\\\\\":10,\\\\\"tiny\\\\\":12,\\\\\"small\\\\\":13,\\\\\"exp_regular_smaller\\\\\":1'", "label": 0}
{"id": 29772, "data": "zip ___ '\":\\\\\"FR\\\\\",\\\\\"client_continent_code\\\\\":\\\\\"EU\\\\\",\\\\\"client_metro_code\\\\\":\\\\\"250013\\\\\",\\\\\"client_postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"client_conn_speed\\\\\":\\\\\"broadband\\\\\",\\\\\"client_gmt_offset\\\\\":\\\\\"200\\\\\",\\\\\"client_latitude\\\\\":\\\\\"43.300\\\\\",\\\\'", "label": 1}
{"id": 29773, "data": "zip ___ 'on\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTags\\\\\":false,\\\\\"vtp_checkValidation\\\\\":false,\\\\\"vtp_waitForTagsTimeout\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"vtp_uniqueTriggerId\\\\\":\\\\\"1448581_2562\\\\\",\\\\\"tag_id\\\\\":4485},{\\\\\"function\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTag'", "label": 0}
{"id": 29774, "data": "zip ___ 'ivity.id\\\\\":\\\\\"392903\\\\\",\\\\\"experience.name\\\\\":\\\\\"Experience A\\\\\",\\\\\"option.name\\\\\":\\\\\"Offer2\\\\\",\\\\\"geo.zip\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"option.id\\\\\":\\\\\"2\\\\\",\\\\\"offer.name\\\\\":\\\\\"Default Content\\\\\",\\\\\"offer.id\\\\\":\\\\\"0\\\\\"},\\\\\"sourceType\\\\\":\\\\\"target'", "label": 1}
{"id": 29775, "data": "zip ___ 'd\\\\\":\\\\\"419114\\\\\",\\\\\"experience.name\\\\\":\\\\\"Load Content Config\\\\\",\\\\\"option.name\\\\\":\\\\\"Offer2\\\\\",\\\\\"geo.zip\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"option.id\\\\\":\\\\\"2\\\\\",\\\\\"offer.name\\\\\":\\\\\"Default Content\\\\\",\\\\\"offer.id\\\\\":\\\\\"0\\\\\"},\\\\\"sourceType\\\\\":\\\\\"target'", "label": 1}
{"id": 29776, "data": "zip ___ 'o9P8At0/P5/wX8v8A0pHzf42/0Ozv/wDsEf54/wA/TvXu0LtLbV6deskuj/4d/J/lvETtL+tv<TARGET_ZIP>F9Ov47bHzBpP/HkPw/ma/Zz+WM32l6r8qJoUHjYPr/X8wUHOFAGfQdBJa3FyDm1s8n2BP4cfn068VN30i/m0vwKlTgr89ZX8ouXzW7V/wCvLSt7e6PQEn+nXB45/wA+9'", "label": 0}
{"id": 29777, "data": "zip ___ '1wwHL9+YB+fzx0OMV8kx9k<TARGET_ZIP>yjPhD2GXOBcu2VvC/YjuZOjdj61jsjvcO+3ZwZux6Vj4RUDdjVrDYFaJyppyoGkVkVRPn2ohVwOJM32cRIo0Coi6tFFtSHOCygdMmxjbw38Znk5nUAqb/3nVt7cratqtuml3f8d6A9IttWx9yM/hzhvPodZuGnkgoEG3AK7OeGWjmW8QCZL'", "label": 0}
{"id": 29778, "data": "zip ___ '2,2C15.4,2,2,15.4,2,<TARGET_ZIP>2s13.4,30,30,30s30-13.4,30-30S48.6,2,32,2 M32,6c14.3,0,26,11.7,26,26 S46.3,58,32,58S6,46.3,6,32S17.7,6,32,6\\\\\",clipRule:\\\\\"evenodd\\\\\",fillRule:\\\\\"evenodd\\\\\"})};No.viewBox=\\\\\"0 0 64 64\\\\\";var Fo=Ur()({in'", "label": 0}
{"id": 29779, "data": "zip ___ 'PZN - BP Number Monitor\\\\\",\\\\\"activity.id\\\\\":\\\\\"434618\\\\\",\\\\\"experience.name\\\\\":\\\\\"Everyone\\\\\",\\\\\"geo.zip\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"option.id\\\\\":\\\\\"0\\\\\",\\\\\"offer.name\\\\\":\\\\\"Default Content\\\\\",\\\\\"offer.id\\\\\":\\\\\"0\\\\\"},\\\\\"sourceType\\\\\":\\\\\"target'", "label": 1}
{"id": 29780, "data": "zip ___ '<TARGET_ZIP>aiKqCHsIecJoZ35ZIe9XIKFQtFmgp2UwTQc5+iEvrhkFFuk2JS8M+FZNTyK0t8rUqSaOZqN9YiDiBpsTiEdM8Et/jcpT0LZo5W/E111qMBNOo0JR0gll3uiEfouFcbYLXWUAbL1xgbJhCdL1+VY7+yLorrZR3+eyROGNI2p4+3xQYBiSXFcr1FD9F9MroddeQ/Ytin/kR'", "label": 0}
{"id": 29781, "data": "zip ___ 'ca\\\\\",\\\\\"country\\\\\":\\\\\"United States\\\\\",\\\\\"city\\\\\":\\\\\"Chicago\\\\\",\\\\\"province\\\\\":\\\\\"Illinois\\\\\",\\\\\"postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\"},\\\\\"classifications_watson\\\\\":{\\\\\"taxonomy_labels\\\\\":[\\\\\"/law, govt and politics\\\\\",\\\\\"/society\\\\\",\\\\\"/soci'", "label": 1}
{"id": 29782, "data": "zip ___ 's.registry_city\\\\\":\\\\\"Brussels\\\\\",\\\\\"profiles.registry_state\\\\\":\\\\\"BRU\\\\\",\\\\\"profiles.registry_zip_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"profiles.registry_area_code\\\\\":\\\\\"\\\\\",\\\\\"profiles.registry_dma_code\\\\\":\\\\\"\\\\\",\\\\\"profiles.registry_count'", "label": 0}
{"id": 29783, "data": "zip ___ 'b9c36c\\\\\",\\\\\"method\\\\\":\\\\\"GET\\\\\",\\\\\"rel\\\\\":\\\\\"business-units\\\\\"}],\\\\\"id\\\\\":\\\\\"6002195d8ad9f<TARGET_ZIP>b9c36c\\\\\",\\\\\"displayName\\\\\":\\\\\"Fpvworld\\\\\",\\\\\"name\\\\\":{\\\\\"identifying\\\\\":\\\\\"fpvworld.co.uk\\\\\",\\\\\"referring\\\\\":[\\\\\"fpvworld.co.uk\\\\\",\\\\\"www.fpv'", "label": 0}
{"id": 29784, "data": "zip ___ 'ED6BFD4E33B37888A6DF489</rdf:li> <rdf:li>644D0F9462ECABE826A1EFDC69113192</rdf:li> <rdf:li>A2F9901DD<TARGET_ZIP>E466084270D2DC1C487</rdf:li> <rdf:li>AB14C8A2CECEA63717F13ADCBEF433D2</rdf:li> <rdf:li>C718D4D8820AE4'", "label": 0}
{"id": 29785, "data": "zip ___ '\\\\\"wechat|weixin\\\\\"),new r(4121,\\\\\"Custom OpenID\\\\\",730,590,\\\\\"login\\\\\",!0),new r(4122,\\\\\"Custom SAML\\\\\",730,590,\\\\\"login\\\\\",!0),new r(<TARGET_ZIP>,\\\\\"OpenID Connect\\\\\",730,590,\\\\\"login\\\\\",!0),new r(6002,\\\\\"Site\\\\\",730,590,\\\\\"\\\\\",!0),new r(1052,\\\\\"PayPalOAuth\\\\\",730,590,\\\\\"login\\\\\",!0'", "label": 0}
{"id": 29786, "data": "zip ___ '2F%2Fwww.ebay.com%2F,isPiggybacked=false,expectSecureURL=true,physicalLocation=country%3DUS%2Czip%3D<TARGET_ZIP>,contextualLocation=country%3DUS,origClientId=urn%3Aebay-marketplace-consumerid%3A5f8b9e71-bf67-4a83-'", "label": 1}
{"id": 29787, "data": "zip ___ 'de\\\\\":\\\\\"US\\\\\",\\\\\"client_continent_code\\\\\":\\\\\"NA\\\\\",\\\\\"client_metro_code\\\\\":\\\\\"753\\\\\",\\\\\"client_postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"client_conn_speed\\\\\":\\\\\"broadband\\\\\",\\\\\"client_gmt_offset\\\\\":\\\\\"-700\\\\\",\\\\\"client_latitude\\\\\":\\\\\"33.440\\\\\",'", "label": 1}
{"id": 29788, "data": "zip ___ '\", \\\\\"irt\\\\\": null, \\\\\"hf\\\\\": null, \\\\\"sld\\\\\": \\\\\"test\\\\\", \\\\\"tld\\\\\": \\\\\"dk\\\\\"}\",\"dkcph_483\":\"{\\\\\"cc\\\\\": \\\\\"dk\\\\\", \\\\\"sc\\\\\": \\\\\"84\\\\\", \\\\\"pc\\\\\": \\\\\"<TARGET_ZIP>\\\\\", \\\\\"cic\\\\\": \\\\\"ballerup\\\\\", \\\\\"rc\\\\\": null, \\\\\"coc\\\\\": \\\\\"europe\\\\\", \\\\\"ac\\\\\": null, \\\\\"tzc\\\\\": \\\\\"1\\\\\", \\\\\"loc\\\\\": \\\\\"12.3548\\\\\", \\\\\"lac\\\\\": \\\\\"5'", "label": 1}
{"id": 29789, "data": "zip ___ '\\\\\" value=\\\\\"90\\\\\"><TARGET_ZIP></option>\\\\n                                    <option data-year=\\\\\"1929\\\\\" value=\\\\\"91\\\\\">1929</option>\\\\n                                    <option data-year=\\\\\"1928\\\\\" value=\\\\\"92\\\\\">1928</option>\\\\n        '", "label": 0}
{"id": 29790, "data": "zip ___ 'ad:4,send:(utag.cond[174]&&utag.cond[193]&&utag.cond[123]&&utag.cond[12]),v:202206021538,wait:0,tid:<TARGET_ZIP>},\\\\\"339\\\\\":{load:4,send:(utag.cond[174]&&utag.cond[193]&&utag.cond[123]&&utag.cond[12]),v:202206021538'", "label": 0}
{"id": 29791, "data": "zip ___ '<TARGET_ZIP>d*\\\\\\\\\\\\\\\\ufffd\\\\\\\\\\\\\\\\ufffdf#\\\\\\\\\\\\\\\\ufffd\\\\\\\\\\\\\\\\ufffd\\\\\\\\\\\\\\\\ufffd\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\u0004\\\\\\\\\\\\\\\\ufffdr\\\\\\\\\\\\\\\\ufffd\\\\\\\\\\\\\\\\ufffdLE1u,\\\\\\\\\\\\\\\\ufffds\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\u0012\\\\\\\\\\\\\\\\ufffd3Q\\\\\\\\\\\\\\\\ufffdo\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\u0011\\\\\\\\\\\\\\\\ufffdXt\\\\\\\\\\\\\\\\ufffdCc\\\\\\\\\\\\'", "label": 0}
{"id": 29792, "data": "zip ___ ',1332,1258,1306,1353,1809,1210,1328,1308,6890,6352,6648,3527,4260]),r.os(r.cx,1,[270,1326,<TARGET_ZIP>,1332,1258,1306,1353,1809,1210,1328,1308,6352,6890,6648,3527,4260])]),r.ge(1))),102800:r.q(r.tw(r.cw(0,r.o([r.os(r.s,0,[8123,7'", "label": 0}
{"id": 29793, "data": "zip ___ '\":true,\\\\\"makeDNAFullAudiences\\\\\":{\\\\\"audiences\\\\\":[],\\\\\"traits\\\\\":{\\\\\"trt_2A1U5WnEFpA7Vtm2k2XNc8zVHzO\\\\\":\\\\\"<TARGET_ZIP>\\\\\"},\\\\\"identities\\\\\":[{\\\\\"alias\\\\\":\\\\\"b7fa2b33-e938-4fd1-b201-cd400ad4df90\\\\\",\\\\\"aliasType\\\\\":\\\\\"cross_site_id'", "label": 0}
{"id": 29794, "data": "zip ___ 'Penta Front\\\\\",\\\\\"/2/powerinbox_newsletters/Barrons/penta_weekly_nl/position1\\\\\"])]),r.ge(2)),2592e6)),<TARGET_ZIP>:r.q(r.isp(\\\\\"news_corp_dow_jones_bu_vidora\\\\\",\\\\\"V0074\\\\\",!1,\\\\\"90013\\\\\")),90014:r.q(r.isp(\\\\\"news_corp_dow'", "label": 0}
{"id": 29795, "data": "zip ___ 'c45adcb91818320d54a21a2d8/03979/e8ed41f32061a4f1dc1dc2778a1412a3.png 800w,\\\\n/static/06d<TARGET_ZIP>c45adcb91818320d54a21a2d8/aca38/e8ed41f32061a4f1dc1dc2778a1412a3.png 1200w,\\\\n/static/06d2750c45adcb91818320d54a21a2d8/3741a/e8'", "label": 0}
{"id": 29796, "data": "zip ___ \"x0D\\\\\\\\x20\\\\\\\\xA0\\\\\\\\u1680\\\\\\\\u180E\\\\\\\\u2000\\\\\\\\u2001\\\\\\\\u2002\\\\\\\\u2003', '\\\\\\\\u2004\\\\\\\\u2005\\\\\\\\u2006\\\\\\\\u2007\\\\\\\\u2008\\\\\\\\u2009\\\\\\\\u200A\\\\\\\\u202F\\\\\\\\u205F\\\\\\\\u<TARGET_ZIP>\\\\\\\\u2028', '\\\\\\\\u2029\\\\\\\\uFEFF'].join('');\\\\n\\\\tvar trimRegex = new RegExp('(^[' + ws + ']+)|([' + ws + ']+$)', 'g');\\\\n\\\\tvar replace \"", "label": 0}
{"id": 29797, "data": "zip ___ 'on\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTags\\\\\":false,\\\\\"vtp_checkValidation\\\\\":false,\\\\\"vtp_waitForTagsTimeout\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"vtp_uniqueTriggerId\\\\\":\\\\\"416832_534\\\\\",\\\\\"tag_id\\\\\":997},{\\\\\"function\\\\\":\\\\\"__cl\\\\\",\\\\\"tag_id\\\\\":998},{\\\\\"f'", "label": 0}
{"id": 29798, "data": "zip ___ 'iles.registry_city\\\\\":\\\\\"Zurich\\\\\",\\\\\"profiles.registry_state\\\\\":\\\\\"ZH\\\\\",\\\\\"profiles.registry_zip_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"profiles.registry_area_code\\\\\":\\\\\"\\\\\",\\\\\"profiles.registry_dma_code\\\\\":\\\\\"\\\\\",\\\\\"profiles.registry_count'", "label": 0}
{"id": 29799, "data": "zip ___ 'Name\\\\\\\\\\\\\":null,\\\\\\\\\\\\\"lastName\\\\\\\\\\\\\":null,\\\\\\\\\\\\\"confirmed\\\\\\\\\\\\\":false}\\\\\",\\\\n      \\\\\"country_code\\\\\" : \\\\\"US\\\\\",\\\\n      \\\\\"postal_code\\\\\" : \\\\\"<TARGET_ZIP>\\\\\",\\\\n      \\\\\"tax_support\\\\\" : null\\\\n    },\\\\n    \\\\\"experience_id\\\\\" : \\\\\"EXZE66W01OHN\\\\\",\\\\n    \\\\\"experience_action_id\\\\\" : \\\\\"showTem'", "label": 1}
{"id": 29800, "data": "zip ___ '32780\\\\\", \\\\\"irt\\\\\": null, \\\\\"hf\\\\\": null, \\\\\"sld\\\\\": null, \\\\\"tld\\\\\": null}\",\"usnyc_509\":\"{\\\\\"cc\\\\\": \\\\\"us\\\\\", \\\\\"sc\\\\\": \\\\\"ny\\\\\", \\\\\"pc\\\\\": \\\\\"<TARGET_ZIP>\\\\\", \\\\\"cic\\\\\": \\\\\"new york\\\\\", \\\\\"rc\\\\\": \\\\\"northeast\\\\\", \\\\\"coc\\\\\": \\\\\"north america\\\\\", \\\\\"ac\\\\\": \\\\\"212\\\\\", \\\\\"tzc\\\\\": \\\\\"-5\\\\\", \\\\\"loc\\\\\": \\\\\"-74'", "label": 1}
{"id": 29801, "data": "zip ___ '815704939992\\\\\"}\",\"ussea_1335\":\"{\\\\\"tpc\\\\\":\\\\\"tpc\\\\\",\\\\\"geoData\\\\\":{\\\\\"country_code\\\\\":\\\\\"US\\\\\",\\\\\"zip_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"region_code\\\\\":\\\\\"WA\\\\\"},\\\\\"INQ\\\\\":{\\\\\"custID\\\\\":\\\\\"-6153216033209784877\\\\\",\\\\\"scheduleTZs\\\\\":{},\\\\\"siteID\\\\\"'", "label": 1}
{"id": 29802, "data": "zip ___ 'de = \\\\\"usa\\\\\"; var state = \\\\\"florida\\\\\"; var metro = \\\\\"orlando-daytona bch-melbrn\\\\\"; var metrocode = \\\\\"534\\\\\"; var postcode = \\\\\"<TARGET_ZIP>\\\\\"; var offset = \\\\\"-700\\\\\"; var dst = \\\\\"y\\\\\"; var countrycode = \\\\\"840\\\\\"; var connection = \\\\\"broadband\\\\\"; \",\"usuyk_886\":\"\\\\nBootst'", "label": 1}
{"id": 29803, "data": "zip ___ 'nt\\\\\":\\\\\"North America\\\\\",\\\\\"country_code\\\\\":\\\\\"US\\\\\",\\\\\"state\\\\\":\\\\\"WA\\\\\",\\\\\"city\\\\\":\\\\\"Seattle\\\\\",\\\\\"postcode\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"netid\\\\\":\\\\\"518518ed978331591115a3bae74e9c06\\\\\"},\\\\\"domain\\\\\":{\\\\\"domain\\\\\":\\\\\"tzulo.com\\\\\",\\\\\"url\\\\\":\\\\\"htt'", "label": 1}
{"id": 29804, "data": "zip ___ 'ation\\\\\":false,\\\\\"vtp_waitForTagsTimeout\\\\\":\\\\\"200\\\\\",\\\\\"vtp_uniqueTriggerId\\\\\":\\\\\"1075029_836\\\\\",\\\\\"tag_id\\\\\":<TARGET_ZIP>},{\\\\\"function\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTags\\\\\":true,\\\\\"vtp_checkValidation\\\\\":false,\\\\\"vtp_waitForTagsTim'", "label": 0}
{"id": 29805, "data": "zip ___ 'ode\\\\\":\\\\\"CH\\\\\",\\\\\"client_continent_code\\\\\":\\\\\"EU\\\\\",\\\\\"client_metro_code\\\\\":\\\\\"-1\\\\\",\\\\\"client_postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"client_conn_speed\\\\\":\\\\\"broadband\\\\\",\\\\\"client_gmt_offset\\\\\":\\\\\"200\\\\\",\\\\\"client_latitude\\\\\":\\\\\"47.430\\\\\",\\\\'", "label": 1}
{"id": 29806, "data": "zip ___ 'iles.registry_city\\\\\":\\\\\"Zurich\\\\\",\\\\\"profiles.registry_state\\\\\":\\\\\"ZH\\\\\",\\\\\"profiles.registry_zip_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"profiles.registry_area_code\\\\\":\\\\\"\\\\\",\\\\\"profiles.registry_dma_code\\\\\":\\\\\"\\\\\",\\\\\"profiles.registry_count'", "label": 0}
{"id": 29807, "data": "zip ___ 'e.bilibili.com/p/eden/area-tags?parentAreaId=1&areaId=0&visit_id=5icxsa0kmts0#/1/0\\\\\"},{subChannelId:<TARGET_ZIP>,name:\\\\\"\u7535\u53f0\\\\\",url:\\\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=5&areaId=0&visit_id=5icxsa0kmts0'", "label": 0}
{"id": 29808, "data": "zip ___ '\\\\\",\\\\\"country\\\\\":\\\\\"United States\\\\\",\\\\\"city\\\\\":\\\\\"Seattle\\\\\",\\\\\"province\\\\\":\\\\\"Washington\\\\\",\\\\\"postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\"},\\\\\"classifications_watson\\\\\":{\\\\\"taxonomy_labels\\\\\":[\\\\\"/law, govt and politics\\\\\",\\\\\"/society\\\\\",\\\\\"/soci'", "label": 1}
{"id": 29809, "data": "zip ___ 'c45adcb91818320d54a21a2d8/aca38/e8ed41f32061a4f1dc1dc2778a1412a3.png 1200w,\\\\n/static/06d<TARGET_ZIP>c45adcb91818320d54a21a2d8/3741a/e8ed41f32061a4f1dc1dc2778a1412a3.png 1600w,\\\\n/static/06d2750c45adcb91818320d54a21a2d8/ca599/e8'", "label": 0}
{"id": 29810, "data": "zip ___ 'on\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTags\\\\\":false,\\\\\"vtp_checkValidation\\\\\":false,\\\\\"vtp_waitForTagsTimeout\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"vtp_uniqueTriggerId\\\\\":\\\\\"416832_566\\\\\",\\\\\"tag_id\\\\\":1000},{\\\\\"function\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTags\\\\'", "label": 0}
{"id": 29811, "data": "zip ___ '83872\\\\\",\\\\\"84260\\\\\",\\\\\"84261\\\\\",\\\\\"84263\\\\\",\\\\\"84264\\\\\",\\\\\"84265\\\\\",\\\\\"84266\\\\\",\\\\\"84268\\\\\",\\\\\"84269\\\\\",\\\\\"84270\\\\\",\\\\\"<TARGET_ZIP>\\\\\",\\\\\"90014\\\\\",\\\\\"91025\\\\\",\\\\\"91026\\\\\",\\\\\"91028\\\\\",\\\\\"91030\\\\\",\\\\\"91031\\\\\",\\\\\"91032\\\\\",\\\\\"91041\\\\\",\\\\\"91042\\\\\",\\\\\"91045\\\\'", "label": 0}
{"id": 29812, "data": "zip ___ '\\\\u0001\ufffd>.#205q\ufffd\ufffd\ufffdY\ufffd\u01da\ufffd+\ufffdf\ufffd\ufffd\ufffd\ufffd4\ufffd\\\\u001cFm\ufffd\ufffd-2\\\\u001c\ufffd!\\\\u0002yX\ufffd\ufffd~*\ufffd\ufffd\ufffdcy\ufffd\ufffd\\\\u001f\ufffd\\'\ufffd|O\ufffd\ufffdw\ufffd)\ufffd\\x7fd.\\\\u0016\ufffd\ufffd\ufffdLM<TARGET_ZIP>23\ufffdj\ufffd\ufffd*.\ufffd\ufffd\\\\u0007\ufffd\ufffd\u034c\ufffdb1\\\\\")\ufffd\\\\u0013\ufffd2\\\\\\\\\ufffd\ufffd\ufffd\\\\u000e\\\\u001b8\ufffdT\ufffd>\ufffd\\\\u0015\\\\u0015\\\\u001b\ufffd\ufffd\ufffd\ufffdfz\\\\u0016\ufffd\\\\u0002\ufffd\ufffdT\ufffd\ufffd\ufffd\ufffd'", "label": 0}
{"id": 29813, "data": "zip ___ '.7,\\\\\"d\\\\\":1008.5,\\\\\"i\\\\\":\\\\\"script\\\\\",\\\\\"p\\\\\":\\\\\"\\\\\",\\\\\"rs\\\\\":0,\\\\\"re\\\\\":0,\\\\\"fs\\\\\":<TARGET_ZIP>.7,\\\\\"ds\\\\\":0,\\\\\"de\\\\\":0,\\\\\"cs\\\\\":0,\\\\\"ce\\\\\":0,\\\\\"qs\\\\\":0,\\\\\"ps\\\\\":0,\\\\\"pe\\\\\":2200.2,\\\\\"ws\\\\\":0,\\\\\"ss\\\\\":0,\\\\\"ts\\\\\":0,\\\\\"ec\\\\\":0,\\\\\"dc\\\\\":0},{\\\\\"n\\\\\":\\\\\"https://static.cloudflare'", "label": 0}
{"id": 29814, "data": "zip ___ ' typedoc --out tsdocs src/pages --ignoreCompilerErrors true\\\\\",\\\\\"cy:run:test\\\\\":\\\\\"start-server-and-test start http://localhost:<TARGET_ZIP>/en cy:int\\\\\",\\\\\"cy:run:test:hl\\\\\":\\\\\"start-server-and-test start http://localhost:3000/en cy:int:headless\\\\\",\\\\\"cy:run:smoke\\\\\":\\\\\"st'", "label": 0}
{"id": 29815, "data": "zip ___ 'S6e5NWqg<TARGET_ZIP>EyuzVP12wBBVmbfqDytgZE/cvPYpDKBTwEcOr+X7jgVUD2QVoAmsIzNPIImskcEnq0s4RFsyrw3igiW3mD467eD4OfM32JpKbFcDWnuaqb8jYztMxfeC7P2atdZ7rYaJyZKzvFjFwtel9LJ3y6rRc3Rg9TBAEWauZ0bV+j6W/1IIOV4xmsqEU5KawttP7W1/v'", "label": 0}
{"id": 29816, "data": "zip ___ '\",\\\\\"country\\\\\":\\\\\"United States\\\\\",\\\\\"city\\\\\":\\\\\"San Jose\\\\\",\\\\\"province\\\\\":\\\\\"California\\\\\",\\\\\"postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\"},\\\\\"classifications_watson\\\\\":{\\\\\"taxonomy_labels\\\\\":[\\\\\"/law, govt and politics\\\\\",\\\\\"/society\\\\\",\\\\\"/soci'", "label": 1}
{"id": 29817, "data": "zip ___ 't(s.Link,{href:\\\\\"https://support.gofundme.com/\\\\\"},\\\\\"contact us\\\\\"),\\\\\".\\\\\");v.push({message:b})}}else y&&y.forEach((function(e){<TARGET_ZIP>===e.error.code?v.push({fileName:e.fileName,message:(0,l.t)(\\\\\"{{fileName}}: Please choose a jpeg, jpg, gif, or png file type, '", "label": 0}
{"id": 29818, "data": "zip ___ 'ED6BFD4E33B37888A6DF489</rdf:li> <rdf:li>644D0F9462ECABE826A1EFDC69113192</rdf:li> <rdf:li>A2F9901DD<TARGET_ZIP>E466084270D2DC1C487</rdf:li> <rdf:li>AB14C8A2CECEA63717F13ADCBEF433D2</rdf:li> <rdf:li>C718D4D8820AE4'", "label": 0}
{"id": 29819, "data": "zip ___ 'er\\\\\":true,\\\\\"vtp_url\\\\\":\\\\\"https:\\\\\\\\/\\\\\\\\/5ba8a455f0e0b2001552843d.tracker.adotmob.com\\\\\\\\/pixel\\\\\\\\/visite?d=<TARGET_ZIP>\\\\\\\\u0026r=https%3A%2F%2F5ba8a455f0e0b2001552843d.tracker.adotmob.com%2Fpixel%2Fvisite5s\\\\\",\\\\\"vtp_cacheB'", "label": 0}
{"id": 29820, "data": "zip ___ 'ivity.id\\\\\":\\\\\"414498\\\\\",\\\\\"experience.name\\\\\":\\\\\"Experience A\\\\\",\\\\\"option.name\\\\\":\\\\\"Offer2\\\\\",\\\\\"geo.zip\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"option.id\\\\\":\\\\\"2\\\\\",\\\\\"offer.name\\\\\":\\\\\"Default Content\\\\\",\\\\\"offer.id\\\\\":\\\\\"0\\\\\"},\\\\\"sourceType\\\\\":\\\\\"target'", "label": 1}
{"id": 29821, "data": "zip ___ 'gion\\\\\":\\\\\"Uusimaa\\\\\",\\\\\"longitude\\\\\":\\\\\"24.9393674\\\\\",\\\\\"localized_address_display\\\\\":\\\\\"16 Mannerheimintie, <TARGET_ZIP> Helsinki\\\\\",\\\\\"postal_code\\\\\":\\\\\"00100\\\\\",\\\\\"address_1\\\\\":\\\\\"16 Mannerheimintie\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latit'", "label": 1}
{"id": 29822, "data": "zip ___ 'U6hIgEQbfmOP7voKy/xAWvEeuJrdrZi4tYzqcKCKS658x1HC7vpSjKQomDa2sb<TARGET_ZIP>LRvK3zAhT0w3+FXUnyxGaenWlzbWf2uKfyftM32FgOC4Iy/4DvUylzCOp0qwt30G81NmkNzcyfYtKSGMB5WH8Q/x7CiMB8olz4OksrlE0qea91tUL3kxYCGNj1AP8RqpfygVYLvV/D+'", "label": 0}
{"id": 29823, "data": "zip ___ '\\\\\":{\\\\\"id\\\\\":<TARGET_ZIP>,\\\\\"name\\\\\":\\\\\"Telefonica Moviles Espa\\\\\\\\u00f1a S.A.U\\\\\",\\\\\"purposes\\\\\":[1,2,3,4,7,9,10],\\\\\"legIntPurposes\\\\\":[],\\\\\"flexiblePurposes\\\\\":[],\\\\\"specialPurposes\\\\\":[],\\\\\"features\\\\\":[1,2,3],\\\\\"specialFeatures\\\\\":[],\\\\\"poli'", "label": 0}
{"id": 29824, "data": "zip ___ 'try\\\\\":\\\\\"AU\\\\\",\\\\\"region\\\\\":\\\\\"SA\\\\\",\\\\\"longitude\\\\\":\\\\\"138.5906722\\\\\",\\\\\"localized_address_display\\\\\":\\\\\"254 Wright Street, Adelaide, SA <TARGET_ZIP>\\\\\",\\\\\"postal_code\\\\\":\\\\\"5000\\\\\",\\\\\"address_1\\\\\":\\\\\"254 Wright Street\\\\\",\\\\\"address_2\\\\\":\\\\\"\\\\\",\\\\\"latitude\\\\\":\\\\\"-34.9318889\\\\\",\\\\\"localized_mu'", "label": 0}
{"id": 29825, "data": "zip ___ '86331\\\\\",\\\\\"87420\\\\\",\\\\\"84150\\\\\",\\\\\"84152\\\\\",\\\\\"84180\\\\\",\\\\\"85271\\\\\",\\\\\"85039\\\\\",\\\\\"85038\\\\\",\\\\\"85035\\\\\",\\\\\"85277\\\\\",\\\\\"<TARGET_ZIP>\\\\\",\\\\\"85037\\\\\",\\\\\"85036\\\\\",\\\\\"87455\\\\\",\\\\\"88301\\\\\",\\\\\"84184\\\\\",\\\\\"85031\\\\\",\\\\\"85030\\\\\",\\\\\"85033\\\\\",\\\\\"85275\\\\\",\\\\\"85032\\\\'", "label": 0}
{"id": 29826, "data": "zip ___ 't/537.36 (KHTML, like Gecko) HeadlessChrome/100.0.4889.0 Safari/537.36\\\\\"},\\\\\"v\\\\\":\\\\\"018124EB37E70201A074643266180AB2\\\\\",\\\\\"z\\\\\":\\\\\"<TARGET_ZIP>\\\\\"}]}\",\"frmrs_2382\":\"<!DOCTYPE html><html lang=\\\\\"fr\\\\\" dir=\\\\\"ltr\\\\\"><head><script>\\\\n/*\\\\n    TCF v2 version, //GDPR Stub file\\\\n  '", "label": 1}
{"id": 29827, "data": "zip ___ '\":\\\\\"FR\\\\\",\\\\\"client_continent_code\\\\\":\\\\\"EU\\\\\",\\\\\"client_metro_code\\\\\":\\\\\"250013\\\\\",\\\\\"client_postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"client_conn_speed\\\\\":\\\\\"broadband\\\\\",\\\\\"client_gmt_offset\\\\\":\\\\\"200\\\\\",\\\\\"client_latitude\\\\\":\\\\\"43.300\\\\\",\\\\'", "label": 1}
{"id": 29828, "data": "zip ___ 'ion\\\\\":\\\\\"__lcl\\\\\",\\\\\"vtp_waitForTags\\\\\":true,\\\\\"vtp_checkValidation\\\\\":false,\\\\\"vtp_waitForTagsTimeout\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"vtp_uniqueTriggerId\\\\\":\\\\\"43461_428\\\\\",\\\\\"tag_id\\\\\":794},{\\\\\"function\\\\\":\\\\\"__sdl\\\\\",\\\\\"vtp_verticalThresh'", "label": 0}
{"id": 29829, "data": "zip ___ ':\\\\\"vpn\\\\\",\\\\\"domain\\\\\":\\\\\"\\\\\"}\",\"usphx_886\":\"https://fan.api.espn.com/apis/v2/recommendations/postalCode/<TARGET_ZIP>?source=ESPN.com+-+FAM&displayEvents=true&displayNow=true&limit=15\",\"usphx_887\":\"https://fan.api.espn'", "label": 1}
{"id": 29830, "data": "zip ___ \"(335)]?_0x35537a[_0x3e<TARGET_ZIP>(697)]='\\\\\\\\x64\\\\\\\\x65\\\\\\\\x66\\\\\\\\x69\\\\\\\\x6e\\\\\\\\x65\\\\\\\\x64':_0x35537a['\\\\\\\\x6d\\\\\\\\x65\\\\\\\\x64']='\\\\\\\\x4e\\\\\\\\x41';},this['\\\\\\\\x64\\\\\\\\x64\\\\\\\\x5f\\\\\\\\x45']=function(){var _0x4a9b2b=_0x3160a9;try{var _0x53af81=document['\\\\\\\\x63\\\\\\\\x72\\\\\\\\x65\\\\\\\\x61\"", "label": 0}
{"id": 29831, "data": "zip ___ '\":\\\\\"FR\\\\\",\\\\\"client_continent_code\\\\\":\\\\\"EU\\\\\",\\\\\"client_metro_code\\\\\":\\\\\"250013\\\\\",\\\\\"client_postal_code\\\\\":\\\\\"<TARGET_ZIP>\\\\\",\\\\\"client_conn_speed\\\\\":\\\\\"broadband\\\\\",\\\\\"client_gmt_offset\\\\\":\\\\\"200\\\\\",\\\\\"client_latitude\\\\\":\\\\\"43.300\\\\\",\\\\'", "label": 1}
{"id": 29832, "data": "zip ___ '\\\\\\\\\\\\\\\\\\\\\"])(hours)) {\\\\\\\\\\\\\\\\n    throw Error(\\\\\\\\\\\\\\\\\\\\\"Malformed X-TIMESTAMP-MAP: Local:\\\\\\\\\\\\\\\\\\\\\" + timeString);\\\\\\\\\\\\\\\\n  }\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\n  ts += <TARGET_ZIP> * secs;\\\\\\\\\\\\\\\\n  ts += 60 * 1000 * mins;\\\\\\\\\\\\\\\\n  ts += 60 * 60 * 1000 * hours;\\\\\\\\\\\\\\\\n  return ts;\\\\\\\\\\\\\\\\n}; // From https://github.com/'", "label": 0}
{"id": 29833, "data": "zip ___ ' C(tg){return document.createElement(tg)}function trim(str){return String(str).replace(new RegExp(\\\\\"(^[\\\\\\\\\\\\\\\\s\\\\\\\\\\\\\\\\t\\\\\\\\\\\\\\\\xa0\\\\\\\\\\\\\\\\u<TARGET_ZIP>]+)|([\\\\\\\\\\\\\\\\u3000\\\\\\\\\\\\\\\\xa0\\\\\\\\\\\\\\\\s\\\\\\\\\\\\\\\\t]+$)\\\\\",\\\\\"g\\\\\"),\\\\\"\\\\\")}function trimAS(str){return String(str).replace(new RegExp(\\\\\"[\\\\\\\\\\\\\\\\s\\\\\\\\\\\\\\\\t\\\\\\\\'", "label": 0}
{"id": 29834, "data": "zip ___ '\\\\\": {\\\\\"id\\\\\": <TARGET_ZIP>, \\\\\"name\\\\\": \\\\\"Telefonica Moviles Espa\\\\\\\\u00f1a S.A.U\\\\\", \\\\\"purposes\\\\\": [1, 2, 3, 4, 7, 9, 10], \\\\\"legIntPurposes\\\\\": [], \\\\\"flexiblePurposes\\\\\": [], \\\\\"specialPurposes\\\\\": [], \\\\\"features\\\\\": [1, 2, 3], \\\\\"specia'", "label": 0}
{"id": 29835, "data": "zip ___ '{\\\\\\\\\\\\\"1a8b0a7907\\\\\\\\\\\\\":{\\\\\\\\\\\\\"a\\\\\\\\\\\\\":[\\\\\\\\\\\\\"p\\\\\\\\\\\\\",1]}},\\\\\\\\\\\\\"60326\\\\\\\\\\\\\":{\\\\\\\\\\\\\"4cbf238f30\\\\\\\\\\\\\":[\\\\\\\\\\\\\"p\\\\\\\\\\\\\",1]},\\\\\\\\\\\\\"<TARGET_ZIP>\\\\\\\\\\\\\":{\\\\\\\\\\\\\"56e28aa4d1\\\\\\\\\\\\\":[\\\\\\\\\\\\\"p\\\\\\\\\\\\\",\\\\\\\\\\\\\"u\\\\\\\\\\\\\",null,{\\\\\\\\\\\\\"5514244\\\\\\\\\\\\\":{\\\\\\\\\\\\\"901d424f-fec0-4801-ad1e-d365'", "label": 0}
{"id": 23404, "data": "city ___ 'https://www.<TARGET_CITY>.at/2022/06/1567356192_BLD_Online-16-9-600337031-320x180.jpg'", "label": 0}
{"id": 23405, "data": "city ___ '\\n\\n\\n\\njsonpFooterCallback({\"regionCode\":\"8036000600000000\",\"cityName\":\"<TARGET_CITY>\",\"countryCode\":\"AU\",\"ip\":\"116.206.229.100\",\"regionName\":\"Australian Capital Territory\",\"latitude\":\"-35.5\",\"postalCode\":\"8036'", "label": 1}
{"id": 23406, "data": "city ___ ' Zealand with Eventfinda, the guide to events in NZ - concerts, gigs, festivals, conferences, expos, theatre &amp; sports in <TARGET_CITY>, Wellington &amp; Christchurch\" />\\n<meta name=\"keywords\" content=\"events, nz events, new zealand events, events guide, what&'", "label": 0}
{"id": 23407, "data": "city ___ 'https://www.tv-<TARGET_CITY>.co.jp/tbcms/assets/images/logo_bs-tv-tokyo.png'", "label": 0}
{"id": 23408, "data": "city ___ 'https://conteudo.imguol.com.br/c/esporte/bf/2022/06/02/goncalo-guedes-e-koke-b<TARGET_CITY>m-pela-bola-durante-espanha-x-portugal-jogo-da-liga-das-nacoes-1654201234630_v2_300x225.jpg.webp'", "label": 0}
{"id": 23409, "data": "city ___ ' window[\\'optimizely\\'] || [];\\n  window[\\'optimizely\\'].push([\\'activateGeoDelayedExperiments\\', {\\n    \\'location\\':{\\n      \\'city\\': \"<TARGET_CITY>\",\\n      \\'continent\\': \"EU\",\\n      \\'country\\': \"SE\",\\n      \\'region\\': \"O\",\\n      \\'dma\\': \"\"\\n    },\\n    \\'ip\\':\"185.213.154.161\"\\n  }'", "label": 1}
{"id": 23410, "data": "city ___ 'me destinations\",\"bring me destinations\",\"Bring Me Destinations\",\"bring me united states\",\"Bring Me United States\",\"bring me <TARGET_CITY>\",6,8502,8501,8499,8496,8500,8498,8497,8397,8396,412,215,33,20,4524,7567,8528,8529,8306,103,658]),i.os(i.s,2,[\"Travel may be '", "label": 0}
{"id": 23411, "data": "city ___ 'reviewRenderer\\\\\":{\\\\\"title\\\\\":{\\\\\"runs\\\\\":[{\\\\\"text\\\\\":\\\\\"A Masters Degree Course in Computational Engineering at ICM University of <TARGET_CITY> (@SC\\\\u002720)\\\\\"}]},\\\\\"defaultThumbnail\\\\\":{\\\\\"thumbnails\\\\\":[{\\\\\"url\\\\\":\\\\\"https://i.ytimg.com/vi_webp/lygsB1I7a7w/default.webp\\\\\",\\\\'", "label": 0}
{"id": 23412, "data": "city ___ ',\"tokitaboat\",\"marunohi\",\"selfconfide777mc\",\"showtousagitokuma\",\"kva-v\",\"takayosimaru\",\"tosen_001\",\"<TARGET_CITY>jou\",\"antonio_kashima\",\"an-koron1215\",\"onozato7\",\"abcdefghij\",\"kismyft2_busaiku\",\"dreamsan_2006\",\"ta'", "label": 0}
{"id": 23413, "data": "city ___ 'views\":56},{\"articleUrl\":\"https://www.dailymail.co.uk/news/article-10873129/Dole-recipients-blasted-<TARGET_CITY>-trucking-company-applicants-refuse-up.html\",\"duration\":28000,\"externalVideoIdent\":\"4329498724176409'", "label": 0}
{"id": 23414, "data": "city ___ '{\"latitude\":\"-20.53861\",\"longitude\":\"-47.40083\",\"country_short\":\"BR\",\"country_long\":\"Brazil\",\"region\":\"Sao Paulo\",\"city\":\"<TARGET_CITY>\"}'", "label": 1}
{"id": 23415, "data": "city ___ '><p style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; A profession.hu Kft. (1123 <TARGET_CITY> Nagyenyed u. 8-14. IV. emelet, <a href=\"mailto:[email protected]\" style=\"\">[email protected]</a>, <a'", "label": 0}
{"id": 23416, "data": "city ___ '/* ======================================================================\\n * Custom mobile menu script for University of <TARGET_CITY>: www.ku.dk\\n * Refactored July 2019 by Frank Thomsen @ Magenta ApS\\n * ======================================================='", "label": 0}
{"id": 23417, "data": "city ___ 'stem_organization\":\"31173 Services AB\"},\"geo_info\":{\"continent\":\"Europe\",\"country\":\"Sweden\",\"city\":\"<TARGET_CITY>\",\"province\":\"Sk\u00e5ne County\"},\"classifications_watson\":{\"concepts\":[{\"text\":\"Technology\",\"relevance\":'", "label": 1}
{"id": 23418, "data": "city ___ '(),a.push([300,600]));return a}function jb(){if(!P&&q.pogoMasthead&&!0===q.pogoMasthead&&!ua.match(\"<TARGET_CITY>-preview\")&&\"/ad/feature/year-in-gifts\"!==B){var a=e.document.getElementById(\"pogo-quickslider\");if('", "label": 0}
{"id": 23419, "data": "city ___ '_feed?page=0&initial_request=true&locale=en-AU&recommendable_locale=true&recommendation_filter=default_AU&show_subscriptions=false&is_homepage=true&ip_country_code=AU&ip_city=<TARGET_CITY>&ip_region=SA&ip_postal_code=5000'", "label": 1}
{"id": 23420, "data": "city ___ 'etection\":{\"ip\":\"68.235.43.126\"}, \"geo_country\":\"US\", \"geo_countryname\":\"United States\", \"geo_subdivision\":\"Illinois\", \"geo_zip\":\"60605\", \"geo_city\":\"<TARGET_CITY>\", \"geo_lat\":\"41.869\", \"geo_long\":\"-87.6258\", \"requestMuid\":\"notFound\"}}}'", "label": 1}
{"id": 23421, "data": "city ___ '/**/__twttr.callbacks.tl_i0_profile_Radio<TARGET_CITY>_old({\"headers\":{\"status\":200,\"maxPosition\":\"1534147473723346944\",\"minPosition\":\"1531632041741139969\",\"xPolling\":30,\"time\":1654631966},\"body\":\"\\\\n<div class=\\\\\"timeline-Widget\\\\\"'", "label": 0}
{"id": 23422, "data": "city ___ '{\"timezone\":\"Europe/<TARGET_CITY>\",\"nextDay\":{\"sunrise\":\"2022-06-08T04:16:00+02:00\",\"sunset\":\"2022-06-08T20:54:00+02:00\"},\"current\":{\"dt\":\"2022-06-07T23:30:07+02:00\",\"sunrise\":\"2022-06-07T04:16:51+02:00\",\"sun'", "label": 1}
{"id": 23423, "data": "city ___ 'Land seine Verbindlichkeiten bedienen will und kann. Woran das liegt.</p>\\n\\n\\n\\n<p class=\"sz-teaser__author \">Von Markus Zydra, <TARGET_CITY></p>\\n\\n        </a>\\n        \\n\\n</div>\\n\\n    \\n        \\n<div data-teaserlist-element class=\"sz-teaserlist-element sz-teaserlist-el'", "label": 0}
{"id": 23424, "data": "city ___ 'https://aktuelles.uni-<TARGET_CITY>.de/wp-content/uploads/2022/05/beitragsbild_Elsen_Eckhard.jpg'", "label": 0}
{"id": 23425, "data": "city ___ '336\",\"origin\":\"default\",\"thumb-size\":\"3500x2336\",\"title\":\"Check Out The Latest Apartment Rentals in <TARGET_CITY>\",\"type\":\"text\",\"published-date\":\"1648496406\",\"branding-text\":\"Apartments.com\",\"url\":\"https://www.ap'", "label": 0}
{"id": 23426, "data": "city ___ '{\"data\":{\"<TARGET_CITY>Current\":{\"temp\":17.739999771118164,\"description\":\"\u044f\u0441\u043d\u043e\",\"__typename\":\"Forecast\"}}}'", "label": 1}
{"id": 23427, "data": "city ___ 'https://www.ft.com/__o<TARGET_CITY>mi/service/image/v2/images/raw/https%3A%2F%2Fnext-video-editor-images.s3.ap-northeast-1.amazonaws.com%2F1e1916fd-d199-4010-9259-cc3a98639cbb?source=next-home-page&dpr=2&width='", "label": 0}
{"id": 23428, "data": "city ___ 'rn r.getDate(e).toLocaleDateString(n,{year:\"numeric\",month:\"2-digit\",day:\"2-digit\",timeZone:\"Europe/<TARGET_CITY>\"})}static getShortDateString(e){return new Date(e).toLocaleDateString(n,{month:\"short\",day:\"2-digit'", "label": 1}
{"id": 23429, "data": "city ___ 'https://www.<TARGET_CITY>times.fi/images/2022/6-June/ballet.jpg'", "label": 0}
{"id": 23430, "data": "city ___ 'Subs (formerly Targeted Circ Touts)\",\"profile.tntId\":\"591cc0cd22b84a638f709080981ece70\",\"geo.city\":\"<TARGET_CITY>\",\"activity.id\":\"448352\",\"geo.state\":\"provence-alpes-cote-d\\'azur\",\"experience.name\":\"HBROUT-2665\",\"g'", "label": 1}
{"id": 23431, "data": "city ___ 'ction(sport){return sport=sport||espn.sports.getSport(),_.includes([\"boston\",\"chicago\",\"cleveland\",\"<TARGET_CITY>\",\"losangeles\",\"milwaukee\",\"newyork\"],espn.sports.getLeagueBySportAbbrev(sport))},isCollege:function'", "label": 0}
{"id": 23432, "data": "city ___ '76b9e54b4dd2777ccac28473afd08851c827c6dc544eab\",\"locType\":\"locid\",\"loc\":\"ALXX0002$1\",\"zip\":\"\",\"ct\":\"<TARGET_CITY>\",\"st\":\"11\",\"cc\":\"AL\",\"ent\":\"city\",\"dma\":\"nl\",\"dynght\":\"D\",\"hmid\":\"low\",\"wind\":\"lo\",\"uv\":\"nl\",\"tmp\":'", "label": 1}
{"id": 23433, "data": "city ___ '20Sell%20Tickets&sd=24-bit&sr=2048x1152&vp=800x600&je=0&ec=home&ea=PoorContent-%20on_tab_loading&el=<TARGET_CITY>&_u=aGBAAQABAAAAAC~&jid=&gjid=&cid=1428314674.1654467469&tid=UA-141520-1&_gid=483141748.1654467469&c'", "label": 0}
{"id": 23434, "data": "city ___ 'c\",\"countryCode\":\"IL\",\"countrName\":\"Israel\",\"cityName\":\"Herzliya\",\"cityNameId\":294778,\"regionName\":\"<TARGET_CITY>\",\"regionNameId\":\"TA\",\"latitude\":\"9579f1356cea040047656947ccf67247\",\"longitude\":\"53ecabfe4cdf58c2ff3'", "label": 1}
{"id": 23435, "data": "city ___ 'https://www.webdesigning<TARGET_CITY>.ae/wp-content/uploads/2019/02/04.png'", "label": 0}
{"id": 23436, "data": "city ___ 'https://sb.scorecardresearch.com/b?c1=2&c2=9576127&ns__t=1654099572245&ns_c=UTF-8&cv=3.5&c8=<TARGET_CITY>%2C%2011Parashikimi%20i%20motit%20dhe%20Kushtet%20-%20Weather%20Channel%20%7C%20Weather.com&c7=https%3A%2F%2Fweather.com%2Fsq'", "label": 0}
{"id": 23437, "data": "city ___ 'https://www.<TARGET_CITY>.es/UnidadWeb/UGBBDD/Actividades/ficheros/madridescena.bmp'", "label": 0}
{"id": 23438, "data": "city ___ 'wsArticle\",\"description\":\"Stars came out to celebrate the best in movies and television at the 2022\\xa0MTV Movie & TV Awards in\\xa0<TARGET_CITY>, however not all of them impressed on the red carpet.\\xa0\",\"headline\":\"MTV Awards worst dressed! Erika Jayne, Lisa Rinna,\\xa0Tamra'", "label": 0}
{"id": 23439, "data": "city ___ ' window[\\'optimizely\\'] || [];\\n  window[\\'optimizely\\'].push([\\'activateGeoDelayedExperiments\\', {\\n    \\'location\\':{\\n      \\'city\\': \"<TARGET_CITY>\",\\n      \\'continent\\': \"EU\",\\n      \\'country\\': \"DE\",\\n      \\'region\\': \"NW\",\\n      \\'dma\\': \"\"\\n    },\\n    \\'ip\\':\"185.254.75.23\"\\n  }]'", "label": 1}
{"id": 23440, "data": "city ___ 'x Fg I\"><div class=\"dEtPN _T Cj\"><a href=\"/AttractionProductReview-g186338-d11450034-Stonehenge_Windsor_Castle_and_Bath_from_<TARGET_CITY>-London_England.html\" class=\"iPqaD _F G- ddFHE eKwUx ecmMI\"><div class=\"slFui _T Pv\"><div class=\"btBEK eglJy\"><div class=\"bSE'", "label": 0}
{"id": 23441, "data": "city ___ 'gnt.otgc({\"country\":\"IL\",\"state\":\"TA\",\"stateName\":\"<TARGET_CITY>\",\"zipcode\":\"\",\"timezone\":\"Asia/Jerusalem\",\"latitude\":\"32.16790\",\"longitude\":\"34.83400\",\"city\":\"Herzliya\",\"continent\":\"AS\"})'", "label": 1}
{"id": 23442, "data": "city ___ 'lit(\"_\"),weekdaysMin:\"S\u00fa_L\u00fa_Ma_M\u00e1_Xh_Vi_S\u00e1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [<TARGET_CITY>] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",\\nLLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\\\\\'o|d\\\\\\'a/i,isPM:fun'", "label": 0}
{"id": 23443, "data": "city ___ 'cation\":{\"countryName\":\"France\",\"countryCode\":\"FR\",\"subdivisionName\":\"Bouches-du-Rh\u00f4ne\",\"cityName\":\"<TARGET_CITY>\",\"postalCode\":\"13015\"},\"treatments\":[{\"experimentName\":\"grammar_check_g4d_v4\",\"qualifiedName\":\"gram'", "label": 1}
{"id": 23444, "data": "city ___ ' 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|21e5\",\"Europe/<TARGET_CITY>|BMT EET EEST|-1I.o -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212'", "label": 1}
{"id": 23445, "data": "city ___ 'itle\":\"Austria\"},\"au\":{\"title\":\"Australia\",\"screenerName\":\"australia\",\"screenerTimezone\":\"Australia/<TARGET_CITY>\",\"exchangesStocks\":[\"ASX\"],\"group\":\"Asia / Pacific\"},\"be\":{\"title\":\"Belgium\",\"screenerName\":\"belgiu'", "label": 1}
{"id": 23446, "data": "city ___ 'name\":\"Pageview\",\"segments\":[76623,12928,13286,16669],\"properties\":{\"isp_info\":{\"isp\":\"TELEKS DOOEL <TARGET_CITY>\",\"organization\":\"TELEKS DOOEL Skopje\",\"autonomous_system_number\":205119,\"autonomous_system_organiza'", "label": 0}
{"id": 23447, "data": "city ___ '{\"country\":\"US\",\"state\":\"WA\",\"stateName\":\"Washington\",\"zipcode\":\"98121\",\"timezone\":\"America/Los_Angeles\",\"latitude\":\"47.61440\",\"longitude\":\"-122.34470\",\"city\":\"<TARGET_CITY>\",\"continent\":\"NA\"}'", "label": 1}
{"id": 23448, "data": "city ___ 'ica\",\"continent_code\":\"NA\",\"country\":\"United States\",\"country_code\":\"US\",\"state\":\"Illinois\",\"city\":\"<TARGET_CITY>\",\"postal\":\"60605\",\"time_zone\":\"America/Chicago\",\"region\":\"AMER\",\"ipAddress\":\"68.235.43.126\",\"latitu'", "label": 1}
{"id": 23449, "data": "city ___ '(UTC+00:00)\\\\\",\\\\\"json.timezones.EuropeLondon\\\\\":\\\\\"London (UTC+00:00)\\\\\",\\\\\"json.timezones.EtcGreenwich\\\\\":\\\\\"Greenwich Mean Time : <TARGET_CITY> (UTC+00:00)\\\\\",\\\\\"json.timezones.EuropeLisbon\\\\\":\\\\\"Lisbon (UTC+00:00)\\\\\",\\\\\"json.timezones.AfricaMonrovia\\\\\":\\\\\"Monrovia (UTC+00:00'", "label": 0}
{"id": 23450, "data": "city ___ '{\"@name\":\"Norwegian\",\"@id\":\"no\",\"bi\":\"Handelsh\u00f8yskolen BI\",\"bi-address\":{\"postal-code\":\"0442 <TARGET_CITY>\",\"street\":\"Nydalsveien 37 \"},\"header\":{\"ariaLabels\":{\"homelink\":\"Hjem\",\"login\":\"Logg inn\",\"language\":\"English\",\"menu\":\"Meny\"'", "label": 0}
{"id": 23451, "data": "city ___ 'er\":{\"username\":\"null\",\"loginStatus\":\"UNKNOWN\",\"swid\":\"null\",\"location\":{\"country\":\"latvia\",\"city\":\"<TARGET_CITY>\",\"state\":\"\",\"dma\":\"0\",\"zipcode\":\"lv-1002\",\"domain\":\"?\",\"ip\":\"31.170.22.17\",\"timeZone\":\"America/New_'", "label": 1}
{"id": 23452, "data": "city ___ 'o-sp|bragantino|chelsea|guarani|internazionale|juventus|liverpool|manchester-city|manchester-united|<TARGET_CITY>|monaco|napoli|oeste|paris-saint-germain|ponte-preta|porto|real-madrid|roma|santos|sao-bento|tottenh'", "label": 0}
{"id": 23453, "data": "city ___ 'iff\":0,\"value\":0,\"__typename\":\"Rate\"}],\"__typename\":\"Organization\"}],\"__typename\":\"RatesResponse\"},\"<TARGET_CITY>Current\":{\"cloud_percentage\":0,\"description\":\"\u044f\u0441\u043d\u043e\",\"forecast_date\":1654636501,\"humidity\":70,\"icon\":'", "label": 0}
{"id": 23454, "data": "city ___ 'vel--3\">\\n<ul>\\n<li class=\"\"><a href=\"//www.deakin.edu.au/business-and-community/community-engagement/<TARGET_CITY>-burwood\" class=\"side_nav_Level_3_Melbourne_Burwood \"><span>Melbourne Burwood</span></a></li>\\n<li cl'", "label": 0}
{"id": 23455, "data": "city ___ '92ef2ebda7c2-22080959d8d30038:T=1654636521:S=ALNI_MY4OqcXXRHDbrHop3XnCTPoBLQd3A\",1688332521,\"/\",\"tv-<TARGET_CITY>.co.jp\",1],[\"UID=00000672f89b0858:T=1654636521:RT=1654636521:S=ALNI_Mbe6nlLfeXMTIU4IK3bIct67HnQig\",1'", "label": 0}
{"id": 23456, "data": "city ___ '\\nfloat:none;\\n\\nwidth:auto;\\n\\n\\n\\n\\n\\n}\\n\\n\\n\\n.ant-bg {\\n\\nbackground-image:url(../images/homepage/ants_<TARGET_CITY>.jpg);\\n\\nbackground-repeat:no-repeat;\\n\\npadding:0px 0px 80px 0px;\\n\\nbackground-position:center;\\n\\nba'", "label": 0}
{"id": 23457, "data": "city ___ 'ttps%3A%2F%2Fwww.msn.com%23mnetcrid%3D341766935%23\\\\\",\\\\\"_mNL3\\\\\":{\\\\\"_ip2allsc\\\\\":\\\\\"NSW\\\\\",\\\\\"_ip2cty\\\\\":\\\\\"<TARGET_CITY>\\\\\",\\\\\"asnum\\\\\":\\\\\"133480\\\\\",\\\\\"vi\\\\\":\\\\\"1654107191531563263\\\\\",\\\\\"_akcip\\\\\":\\\\\"43.245.162.131\\\\\"},\\\\\"lpipe\\\\\":{\\\\\"g'", "label": 1}
{"id": 23458, "data": "city ___ 'mpromis h3,.elecciones-default.en-datos-partidos .mpais-cha-equo h3{color:#22dec6}.elecciones-default.en-datos-partidos .mas-<TARGET_CITY> .box{background-color:#54EFA5}.elecciones-default.en-datos-partidos .mas-madrid h3{color:#54EFA5}.elecciones-default.en-dato'", "label": 0}
{"id": 23459, "data": "city ___ '-392f-4e64-a614-9c3f3dc7d6ab.jpg!-#@984x656\",\"origin\":\"default\",\"thumb-size\":\"984x656\",\"placement-label\":\"17143404\",\"title\":\"<TARGET_CITY>: \u0414\u0438\u043b\u0435\u0440\u0438 \u043f\u0440\u043e\u0434\u0430\u0458\u0443 \u043d\u0435\u043f\u0440\u043e\u0434\u0430\u0442\u0435 \u0442\u0435\u0440\u0435\u043d\u0446\u0435 \u043e\u0434 2020. \u043f\u043e \u0446\u0435\u043d\u0430\u043c\u0430 \u0443 \u043a\u043e\u0458\u0435 \u043c\u043e\u0436\u0434\u0430 \u043d\u0435 \u0432\u0435\u0440\u0443\u0458\u0435\u0442\u0435\",\"type\":\"text\",\"published-date\":\"1649168580\",\"'", "label": 0}
{"id": 23460, "data": "city ___ 'eview&_s=1&dl=https%3A%2F%2Fwww.qmul.ac.uk%2F&ul=en-us&de=UTF-8&dt=Queen%20Mary%20University%20of%20<TARGET_CITY>&sd=24-bit&sr=2048x1152&vp=800x600&je=0&_u=IEBAAAABAAAAAC~&jid=2140663227&gjid=1767836300&cid=493903'", "label": 0}
{"id": 23461, "data": "city ___ 'https://www.u<TARGET_CITY>.ca/sites/default/files/css/css_k5l3L5A5r0k60nHjLOIV_aBYdylci4mFKqjhY8Z2-z8.css'", "label": 0}
{"id": 23462, "data": "city ___ 'ontainer role-pop thumb-image-container\" data-role=\"thumb-link\" href=\"https://xhamster.com/videos/2-<TARGET_CITY>-girls-13292217\" data-sprite=\"https://thumb-v7.xhcdn.com/a/HtFTN0dDKeQPnCY5wXCqig/013/292/217/526x29'", "label": 0}
{"id": 23463, "data": "city ___ ')(\"Swiss Franc\")},{value:\"HKD\",display:(0,a.ih)(\"Hong Kong Dollar\")},{value:\"SGD\",display:(0,a.ih)(\"<TARGET_CITY> Dollar\")},{value:\"SEK\",display:(0,a.ih)(\"Swedish Krona\")},{value:\"DKK\",display:(0,a.ih)(\"Danish Kro'", "label": 0}
{"id": 23464, "data": "city ___ 'https://www.<TARGET_CITY>.at/wp-content/themes/vodl/assets/scripts/toparticles.js?ver=21ee449'", "label": 0}
{"id": 23465, "data": "city ___ '>Askov</h3><p>Research station for field trials of fertilisers under the Department of Agroecology.</p>\",emdrup:\"<h3>Emdrup (<TARGET_CITY>)</h3><p>The Danish School of Education (DPU), approx. 320 employees and 2,100 students.</p>\",flakkebjerg:\"<h3>Flakkebjerg</h'", "label": 0}
{"id": 23466, "data": "city ___ '04524&amp;nx=CLICK_X&amp;ny=CLICK_Y&amp;nb=2&amp;adurl=https://www.amaru.com.au/plantation-shutters-<TARGET_CITY>%3Fgclid%3DEAIaIQobChMI8JWM5M-b-AIVLp9mAh16aQngEAEYASAAEgLzFvD_BwE\" id=aw0 on=\"tap:exit-api.exit(tar'", "label": 0}
{"id": 23467, "data": "city ___ 't for IE8 if enablesXDR is true\\n  // because loading bar keeps flashing when using jsonp-polling\\n  // https://github.com/yuji<TARGET_CITY>/socke.io-ie8-loading-example\\n\\n\\n  try {\\n    if (\"undefined\" !== typeof XDomainRequest && !xscheme && enablesXDR) {\\n      retu'", "label": 0}
{"id": 23468, "data": "city ___ '{content:\"\\\\f3da\"}.fa-person-booth:before{content:\"\\\\f756\"}.fa-phabricator:before{content:\"\\\\f3db\"}.fa-<TARGET_CITY>-framework:before{content:\"\\\\f3dc\"}.fa-phoenix-squadron:before{content:\"\\\\f511\"}.fa-phone:before{conte'", "label": 0}
{"id": 23469, "data": "city ___ 'es.EuropeBerlin\"},{value:\"Europe/Bratislava\",name:\"json.timezones.EuropeBratislava\"},{value:\"Europe/<TARGET_CITY>\",name:\"json.timezones.EuropeBrussels\"},{value:\"Europe/Budapest\",name:\"json.timezones.EuropeBudapest'", "label": 0}
{"id": 23470, "data": "city ___ 'ber\":39351,\"autonomous_system_organization\":\"31173 Services AB\"},\"geo_info\":{\"continent\":\"Europe\",\"country\":\"Sweden\",\"city\":\"<TARGET_CITY>\",\"province\":\"Sk\u00e5ne County\"},\"classifications_watson\":{\"taxonomy_labels\":[\"/law, govt and politics\",\"/society\",\"/society/unre'", "label": 1}
{"id": 23471, "data": "city ___ '{\"registry_company_name\":\"31173 Services AB\",\"registry_city\":\"<TARGET_CITY>\",\"registry_state\":\"O\",\"region_name\":\"V\u00e4stra G\u00f6taland County\",\"registry_zip_code\":\"415 02\",\"registry_area_code\":null,\"registry_dma_code\":null,\"registr'", "label": 0}
{"id": 23472, "data": "city ___ '22c.png!-#@600x500\",\"origin\":\"default\",\"thumb-size\":\"600x500\",\"placement-label\":\"17143406\",\"title\":\"<TARGET_CITY>: \u0426\u0438\u0442\u0430\u0442\u0438 \u0437\u0430 \u043f\u043e\u0433\u0440\u0435\u0431\u043d\u043e \u043e\u0441\u0438\u0433\u0443\u0440\u0430\u045a\u0435 - \u043f\u043e\u0433\u043b\u0435\u0434\u0430\u0458\u0442\u0435 \u043e\u0432\u0434\u0435\",\"type\":\"text\",\"published-date\":\"1650444452\",\"brand'", "label": 0}
{"id": 23473, "data": "city ___ '{\"as\":\"AS11878 tzulo, inc.\",\"city\":\"<TARGET_CITY>\",\"country\":\"United States\",\"countryCode\":\"US\",\"isp\":\"tzulo, inc.\",\"lat\":47.6144,\"lon\":-122.3447,\"org\":\"Tzulo-SEA\",\"query\":\"198.54.131.41\",\"region\":\"WA\",\"regionName\":\"Washingt'", "label": 1}
{"id": 23474, "data": "city ___ 'r,i=n(8),o=n.n(i),a=n(3),c=n(11),s=n(0),u=n(42),f=n(96),l=n(19),d=n(27),p=n(14),h=new c.a({\"ip2ct\":\"<TARGET_CITY>\",\"cugd\":\"\",\"coc\":\"EU\",\"ip2c\":\"AL\",\"cid\":\"AAXQJ1RH7\",\"dma\":\"\",\"app\":\"green\",\"dn\":\"www.forbes.com\",\"i'", "label": 1}
{"id": 23475, "data": "city ___ 'https://www.<TARGET_CITY>.nl/publish/pages/987083/car_new.svg'", "label": 0}
{"id": 23476, "data": "city ___ 'i\",text:\"\u611b\u77e5\"},{value:\"gifu\",text:\"\u5c90\u961c\"},{value:\"shizuoka\",text:\"\u9759\u5ca1\"},{value:\"mie\",text:\"\u4e09\u91cd\"},{value:\"<TARGET_CITY>\",text:\"\u5927\u962a\"},{value:\"hyogo\",text:\"\u5175\u5eab\"},{value:\"kyoto\",text:\"\u4eac\u90fd\"},{value:\"nara\",text:\"\u5948\u826f\"},{value:\"wa'", "label": 0}
{"id": 23477, "data": "city ___ 'nternet Solutions\"},\"geo_info\":{\"continent\":\"Asia\",\"country\":\"Israel\",\"city\":\"Herzliya\",\"province\":\"<TARGET_CITY>\"},\"article\":{\"businessSegment\":\"portal\",\"channel\":\"portal\",\"headline\":\"\",\"type\":\"index\",\"keywords\":'", "label": 1}
{"id": 23478, "data": "city ___ ' \\'function\\' && _dl.fn.dataSync.callback({\"location\":{\"country_code\":\"US\",\"region_code\":\"FL\",\"city\":\"<TARGET_CITY>\",\"zip\":\"33101-33102+33106+33111-33112+33114+33116+33122+33124-33138+33142-33147+33150-33159+33161-3'", "label": 1}
{"id": 23479, "data": "city ___ 'https://visit<TARGET_CITY>.ee/_nuxt/edf1326afba201fb0c4a.js'", "label": 0}
{"id": 23480, "data": "city ___ 'rmotProviderEnabled:!0,alwaysLoadFacebookSDK:!0,redirectsEnabled:!0},timestamp:{timezone:\"Australia/<TARGET_CITY>\",firstPublishFormat:\"DD/MM/YYYY hh:mma z\",lastPublishedFormat:\"MMMM D, YYYY\",attributeFormat:\"YYYY-'", "label": 1}
{"id": 23481, "data": "city ___ '{\"ip\":\"36a79e1eda71f2eb2c476cbe79e1daa6\",\"countryCode\":\"SE\",\"countrName\":\"Sweden\",\"cityName\":\"<TARGET_CITY>\",\"cityNameId\":2692969,\"regionName\":\"Sk\\\\u00e5ne County\",\"regionNameId\":\"M\",\"latitude\":\"195e7f650980e4a1232a0a71c95d2c87\",\"lon'", "label": 1}
{"id": 23482, "data": "city ___ 'nd%20Breaking%20News%2C%20Sport%2C%20Business%20and%20Entertainment%20from%20Belfast%20to%20Derry%2F<TARGET_CITY>derry%20-%20BelfastTelegraph.co.uk%20-%20BelfastTelegraph.co.uk&async=1&fmt=3&is_vtc=1&random=160397'", "label": 0}
{"id": 23483, "data": "city ___ '{\"registry_company_name\":\"TZULO\",\"registry_city\":\"<TARGET_CITY>\",\"registry_state\":\"CA\",\"registry_zip_code\":\"94086\",\"registry_area_code\":null,\"registry_dma_code\":807,\"registry_country\":\"United States\",\"registry_cou'", "label": 0}
{"id": 23484, "data": "city ___ '{\"geo_info\":{\"continent\":\"Europe\",\"country\":\"France\",\"city\":\"<TARGET_CITY>\",\"province\":\"Paris\"},\"isp_info\":{\"isp\":\"31173 Services AB\",\"organization\":\"31173 Services AB\",\"autonomous_system_number\":39351,\"autonomous_system_org'", "label": 1}
{"id": 23485, "data": "city ___ '{\"geo\":{\"georegion\":\"5\",\"country_code\":\"AL\",\"city\":\"<TARGET_CITY>\",\"timezone\":\"GMT+1\",\"continent\":\"EU\"},\"status\":200}'", "label": 1}
{"id": 23486, "data": "city ___ 't__nz-map__marker--northland{top:-14px;left:32px}.traveller-sidebar-item-component__nz-map__marker--<TARGET_CITY>{top:-4px;left:37px}.traveller-sidebar-item-component__nz-map__marker--waikato{top:5px;left:41px}.tr'", "label": 0}
{"id": 23487, "data": "city ___ '\"website_optimization\"],\"parent\":{\"domain\":null},\"ultimateParent\":{\"domain\":null}},\"geoIP\":{\"city\":\"<TARGET_CITY>\",\"state\":\"Australian Capital Territory\",\"stateCode\":\"ACT\",\"country\":\"Australia\",\"countryCode\":\"AU\"}'", "label": 1}
{"id": 23488, "data": "city ___ '{\"common_name\": \"\", \"short_name\": \"\", \"stations_list\": []}, \"station\": {\"site_address\": \"https://www.wpbt2.org\", \"address\": \"<TARGET_CITY>, FL\", \"short_name\": \"WPBT\", \"stationfinder_url\": \"http://www.pbs.org/about/faq/station-finder/station/\", \"black_logo_url\": \"'", "label": 1}
{"id": 23489, "data": "city ___ '{\"country\":\"MK\",\"state\":\"\",\"stateName\":\"\",\"zipcode\":\"\",\"timezone\":\"Europe/<TARGET_CITY>\",\"latitude\":\"41.66670\",\"longitude\":\"21.75000\",\"city\":\"\",\"continent\":\"EU\"}'", "label": 1}
{"id": 23490, "data": "city ___ 'DarkMode\":false,\"hexColor\":\"#F9CB96\",\"isGreyScale\":false}]}],\"provider\":{\"id\":\"AAx6gfT\",\"name\":\"CBS <TARGET_CITY>\",\"logoUrl\":\"https://img-s-msn-com.akamaized.net/tenant/amp/entityid/AAyWcOk.img\",\"profileId\":\"vid-0'", "label": 0}
{"id": 23491, "data": "city ___ '           \\n            <div class=\"h3 title\">\\n                In the slipstream\\n            </div>\\n\\n            \\n            <div class=\"description\">\\n                <p>New <TARGET_CITY> Airport chief executive Carrie Hurihanganui captains the business into the post-COVID era.</p>\\n\\n            </div>\\n            \\n            <a href=\"/content/asx/home/blog/li'", "label": 0}
{"id": 23492, "data": "city ___ '\",\"may\",\"july\",\"august\",\"october\",\"december\"],u=new Map([[\"America/Chicago\",\"US_CENTRAL\"],[\"America/<TARGET_CITY>\",\"US_CENTRAL\"],[\"America/Winnipeg\",\"US_CENTRAL\"],[\"America/New_York\",\"US_EAST\"],[\"America/Detroit\",'", "label": 0}
{"id": 23493, "data": "city ___ 'Subs (formerly Targeted Circ Touts)\",\"profile.tntId\":\"f269d8df1d0c414eab34c225407a556e\",\"geo.city\":\"<TARGET_CITY>\",\"activity.id\":\"448352\",\"geo.state\":\"milano\",\"experience.name\":\"HBROUT-2665\",\"geo.domainName\":\"m247'", "label": 1}
{"id": 23494, "data": "city ___ ',\"/university\",\"?subId1=\",\"Antigua\",\"Grenada\",\"WWI\",\"WWII\",\"action films\",\"activity-and-adventure\",\"<TARGET_CITY>\",\"ageless style\",\"agra\",\"amalfi\",\"amazon prime video\",\"amazon-prime-day\",\"amsterdam\",\"anfield\",\"ano'", "label": 0}
{"id": 23495, "data": "city ___ 'jQuery33100015279523922249183_1654189721451({\"country\":\"ie\",\"city\":\"<TARGET_CITY>\",\"latitude\":53.33,\"longitude\":-6.25,\"information_level\":\"Basic\"});'", "label": 1}
{"id": 23496, "data": "city ___ '0101010101010|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0|10\",\"Australia/<TARGET_CITY>|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101'", "label": 1}
{"id": 23497, "data": "city ___ 'https://www.webdesigning<TARGET_CITY>.ae/wp-content/plugins/wp-carousel-free/public/css/wp-carousel-free-public.min.css'", "label": 0}
{"id": 23498, "data": "city ___ 'https://english.radio.cz/sites/all/themes/custom/e7/images/logo/<TARGET_CITY>_colored-white.svg?timestamp=u3ea9fcc4'", "label": 0}
{"id": 23499, "data": "city ___ 'to/events/\" class=\"eds-global-footer__link\">Things to do in Toronto</a></li><li><a href=\"https://www.eventbrite.ca/d/canada--<TARGET_CITY>/events/\" class=\"eds-global-footer__link\">Things to do in Vancouver</a></li><li><a href=\"https://www.eventbrite.ca/d/canada--'", "label": 0}
{"id": 23500, "data": "city ___ '{\"geo_info\":{\"continent\":\"Oceania\",\"country\":\"Australia\",\"city\":\"<TARGET_CITY>\",\"province\":\"Queensland\"},\"isp_info\":{\"isp\":\"Intergrid Group Pty\",\"organization\":\"Intergrid Group Pty\",\"autonomous_system_number\":133480,\"autonomous_'", "label": 1}
{"id": 23501, "data": "city ___ ' src=//images02-www.oeamtc.at/spunq-assets/images/blank-16x9.gif                                        data-src=\"//images03-www.oeamtc.at/%C3%96AMTC_<TARGET_CITY>+w+VCC.jpg/oeamtc-two-teasers/31.740.536\"\\n                                        data-src-small=\"//images03-www.oeamtc.at/%C3%96AMTC_Vienna+w+VCC.jpg'", "label": 0}
{"id": 23502, "data": "city ___ 'https://www.<TARGET_CITY>times.fi/modules/mod_hot_joomla_carousel/js/jquery.carousel.js'", "label": 0}
{"id": 23503, "data": "city ___ 't3_PV5d7VHw70EvK5DIMNjtkZRr7Qm1koE5GU.gif\",\"city\":\"\u041b\u0438\u0441\u0441\u0430\u0431\u043e\u043d\",\"link\":\"https://pogoda.mail.ru/prognoz/<TARGET_CITY>/\",\"now\":{\"temp\":\"+19\",\"tempFeelsLike\":\"+17\",\"description\":\"\u043c\u0430\u043b\u043e\u043e\u0431\u043b\u0430\u0447\u043d\u043e\",\"descriptionShort\":\"\u043c\u0430\u043b\u043e\u043e\u0431\u043b'", "label": 1}
{"id": 23504, "data": "city ___ '{\"ip_address\":\"185.191.207.211\",\"country_name\":\"Israel\",\"country_iso_code\":\"IL\",\"state\":\"<TARGET_CITY>\",\"state_iso_code\":\"TA\",\"city\":\"Tel Aviv\",\"city_id\":293397,\"city_confidence\":-1,\"postal_code\":\"\",\"latitude\":32.0668,\"longitud'", "label": 1}
{"id": 26637, "data": "region ___ 'else if (item.templateName === \\'Header - Image Based Popup\\') {\\\\n  var preferredFont = item[\\'Font\\'] || \\'\\\\\"Escrow Condensed\\\\\", <TARGET_REGION>, times, serif\\';\\\\n  var titleFontWeight = item[\\'Is Title Bold\\'] === \\'true\\' ? \\'bold\\' : \\'normal\\';\\\\n  var subTitleFontWeight = i'", "label": 0}
{"id": 26638, "data": "region ___ 'ata-bbc-container=\"correspondent-headlines\" data-bbc-title=\"Ancient DNA reveals secrets of Pompeii victims\" data-bbc-source=\"<TARGET_REGION> Gill\" data-bbc-metadata=\\'{\"CHD\": \"card::4\" }\\' >  <div class=\"top-list-item__bullet\"> <div class=\"responsive-image\"><div clas'", "label": 0}
{"id": 26639, "data": "region ___ ',\"country\":\"AU\",\"region\":\"NSW\",\"longitude\":\"151.2312675\",\"localized_address_display\":\"University of <TARGET_REGION> Anzac Parade, Kensington, NSW 2052\",\"postal_code\":\"2052\",\"address_1\":\"University of New South Wales'", "label": 1}
{"id": 26640, "data": "region ___ '//cdn.cookielaw.org/logos/8930e991-baac-4a05-89f0-fc400879fa8a/588c044d-d998-4ba4-afd8-d225ee4e99d5/<TARGET_REGION>_Post_logo_logotype.png\",\"OneTrustFooterLogo\":\"https://cdn.cookielaw.org/logos/static/poweredBy_ot_l'", "label": 0}
{"id": 26641, "data": "region ___ '{\"coordinates\":{\"latitude\":45.4722,\"longitude\":9.1922},\"locationComponents\":[{\"longName\":\"<TARGET_REGION>\",\"shortName\":\"Lombardy\",\"code\":\"25\",\"type\":\"REGION\",\"isEUCountry\":true},{\"longName\":\"\",\"shortName\":\"\",\"code\":\"Europe/Rome\",\"'", "label": 1}
{"id": 26642, "data": "region ___ '{\"geo\":{\"georegion\":\"300\",\"country_code\":\"CA\",\"region_code\":\"QC\",\"city\":\"<TARGET_REGION>\",\"timezone\":\"EST\",\"continent\":\"NA\"},\"status\":200}'", "label": 1}
{"id": 26643, "data": "region ___ 'in\\\\\",\\\\\"json.regions.US.WY\\\\\":\\\\\"Wyoming\\\\\",\\\\\"json.regions.CA.AB\\\\\":\\\\\"Alberta\\\\\",\\\\\"json.regions.CA.BC\\\\\":\\\\\"<TARGET_REGION>\\\\\",\\\\\"json.regions.CA.MB\\\\\":\\\\\"Manitoba\\\\\",\\\\\"json.regions.CA.NB\\\\\":\\\\\"New Brunswick\\\\\",\\\\\"json.regions.CA.NL'", "label": 0}
{"id": 26644, "data": "region ___ ' Inc\",\"ispId\":138027,\"ispIndex\":null,\"location\":{\"latitude\":40.7597,\"longitude\":-73.981,\"cityName\":\"<TARGET_REGION>\",\"countryCode\":\"US\",\"countryName\":\"United States\",\"regionCode\":\"NY\",\"regionName\":\"New York\"},\"subsc'", "label": 1}
{"id": 26645, "data": "region ___ 'https://dij151upo6vad.cloudfront.net/2.latest/fonts/<TARGET_REGION>-sans-medium.woff'", "label": 0}
{"id": 26646, "data": "region ___ 't||(this.firefox=3),!t.querySelector||(this.firefox=3.5),!t.getElementsByTagName(\"head\")[0][\"mozMatc<TARGET_REGION>lector\"]||(this.firefox=3.6),!e.Uint8Array||(this.firefox=4),!Function.prototype[\"isGenerator\"]||(th'", "label": 0}
{"id": 26647, "data": "region ___ 'njag d\u00e5 t\u00e4nkte \\\\nminns den k\u00e4rlek \\\\njag Er sk\u00e4nkte \\\\nBegravningen \u00e4ger rum \\\\ntorsdagen den 16 juni kl 12.30 \\\\ni Nacka kyrka, <TARGET_REGION>. \\\\nValfri kl\u00e4dsel. Efter akten \\\\ninbjudes till minnesstund \\\\nmed anm\u00e4lan till S\u00f6derquist \\\\nbegr.byr\u00e5 tel 08-743 08 95 \\\\nsena'", "label": 0}
{"id": 26648, "data": "region ___ ',regionDisplay:\"Tennessee\"},{regionCode:\"TX\",regionDisplay:\"Texas\"},{regionCode:\"UT\",regionDisplay:\"<TARGET_REGION>\"},{regionCode:\"VT\",regionDisplay:\"Vermont\"},{regionCode:\"VA\",regionDisplay:\"Virginia\"},{regionCode:'", "label": 0}
{"id": 26649, "data": "region ___ 'rs_v2:4,PURR_AdConfiguration_v2:5,PURR_DataProcessingPreferenceUI:6,PURR_DataSaleOptOutUI_v2:7,PURR_<TARGET_REGION>NoticesUI:8,PURR_EmailMarketingOptInUI:9,PURR_DeleteIPAddress:10,PURR_AdConfiguration_v3:11},t=funct'", "label": 0}
{"id": 26650, "data": "region ___ 'at they can return to the markets and continue providing the vegetables and herbs grown on their farm located in Litchfield, <TARGET_REGION>. Donations are also accepted on Saturday mornings at the <a href=&quot;https://downtownphoenixfarmersmarket.org/&quot; targe'", "label": 0}
{"id": 26651, "data": "region ___ 'var geoinfo = { \"CountryCode\":\"US\",\"region_code\":\"NY\",\"city\":\"<TARGET_REGION>\", \"Continent\":\"NA\" }'", "label": 1}
{"id": 26652, "data": "region ___ '\":\"Europe\",\"continent_code\":\"EU\",\"country\":\"Latvia\",\"country_code\":\"LV\",\"state\":\"\",\"city\":\"\",\"postal\":\"\",\"time_zone\":\"Europe/<TARGET_REGION>\",\"region\":\"EMEA\",\"ipAddress\":\"31.170.22.17\",\"latitude\":57,\"longitude\":25}'", "label": 1}
{"id": 26653, "data": "region ___ 'e\",\"https://www.ssb.no/kommunefakta/kostra/molde/barnevern\",\"https://www.ssb.no/kommunefakta/kostra/<TARGET_REGION>\",\"https://www.ssb.no/kommunefakta/kostra/oslo/barnehager\",\"https://www.ssb.no/kommunefakta/kostra/o'", "label": 0}
{"id": 26654, "data": "region ___ 'https://www.ft.com/__o<TARGET_REGION>mi/service/image/v2/images/raw/https%3A%2F%2Fnext-video-editor-images.s3.ap-northeast-1.amazonaws.com%2F2785edcf-0377-4a15-a500-bea14518850c?source=next-home-page&dpr=2&width='", "label": 0}
{"id": 26655, "data": "region ___ '{\"geo_info\":{\"continent\":\"Oceania\",\"country\":\"Australia\",\"city\":\"Brisbane\",\"province\":\"<TARGET_REGION>\"},\"isp_info\":{\"isp\":\"Intergrid Group Pty\",\"organization\":\"Intergrid Group Pty\",\"autonomous_system_number\":133480,\"autonomous'", "label": 1}
{"id": 26656, "data": "region ___ 'EZONE\",\"isEUCountry\":false},{\"longName\":\"\",\"shortName\":\"\",\"code\":\"524\",\"type\":\"METRO_CODE\",\"isEUCountry\":false},{\"longName\":\"<TARGET_REGION>\",\"shortName\":\"Georgia\",\"code\":\"GA\",\"type\":\"REGION\",\"isEUCountry\":false}]}'", "label": 1}
{"id": 26657, "data": "region ___ 'https://assets.paperjam.lu/images/articles/<TARGET_REGION>-au-defi-nouvelle-di/0.5/0.5/312/208/490946.png'", "label": 0}
{"id": 26658, "data": "region ___ 'lType\":\"link\"},{\"__typename\":\"ExploreNavigationLinkItem\",\"airmoji\":null,\"badge\":null,\"description\":\"<TARGET_REGION>\",\"image\":null,\"picture\":null,\"searchHeaderIds\":[],\"searchParams\":null,\"subtitle\":null,\"title\":\"Alnw'", "label": 0}
{"id": 26659, "data": "region ___ 'https://assets.prod.app.<TARGET_REGION>-city.com/data/thumbs/a823f9f0-29bc-11eb-9b45-3d656617f052.jpg'", "label": 0}
{"id": 26660, "data": "region ___ '110\":\"KOSDAQ\",\"62\":\"Kuala Lumpur\",\"27\":\"Kuwait City\",\"96\":\"Lagos\",\"146\":\"LATIBEX\",\"64\":\"Lima\",\"10\":\"<TARGET_REGION>\",\"66\":\"Ljubljana\",\"3\":\"London\",\"61\":\"Luxembourg\",\"11\":\"Madrid\",\"87\":\"Malawi\",\"82\":\"Malta\",\"86\":\"Mau'", "label": 0}
{"id": 26661, "data": "region ___ '{\"geo_info\":{\"continent\":\"Oceania\",\"country\":\"Australia\",\"city\":\"Sydney\",\"province\":\"<TARGET_REGION>\"},\"isp_info\":{\"isp\":\"Intergrid Group Pty\",\"organization\":\"Intergrid Group Pty\",\"autonomous_system_number\":133480,\"autonomous'", "label": 1}
{"id": 26662, "data": "region ___ 'ue},\"isThumbnailsEnabled\":true,\"isFreeFormReportingAllowed\":true}},{\"node\":{\"id\":\"t5_2qx4q\",\"name\":\"<TARGET_REGION>\",\"publicDescriptionText\":\"Discussion, happenings and news related to Western Australia (including P'", "label": 0}
{"id": 26663, "data": "region ___ 'd\"!=typeof window){var e=Array.prototype.slice,t=Element.prototype.matches||Element.prototype.msMatc<TARGET_REGION>lector,o=[\"a[href]\",\"area[href]\",\"input:not([disabled])\",\"select:not([disabled])\",\"textarea:not([dis'", "label": 0}
{"id": 26664, "data": "region ___ 'mbia\",\"image\":null,\"picture\":null,\"searchHeaderIds\":[],\"searchParams\":null,\"subtitle\":null,\"title\":\"<TARGET_REGION>\",\"url\":\"/washington-dc/stays\",\"urlType\":\"link\"},{\"__typename\":\"ExploreNavigationLinkItem\",\"airmoji\"'", "label": 0}
{"id": 26665, "data": "region ___ 'nna:248|Australia/North:249|Australia/Currie:251|Australia/Tasmania:251|Australia/LHI:253|Australia/<TARGET_REGION>:254|Australia/West:255|Australia/ACT:256|Australia/Canberra:256|Australia/NSW:256|GMT:262|Etc/Green'", "label": 0}
{"id": 26666, "data": "region ___ 'https://<TARGET_REGION>ivate.platform.californiatimes.com/privacy/v1/c/r.rnc?n=0&c=2715&i=5i1au6&p=latimes&s=426&d=8BV7InZlcnNpb24iOiIxLjAuMCIsImdhdGV3YXkiOiIyLjMuNTYUAPIBY2xpZW50SWQiOjI3MTUsIhAA9BNOYW1lIjoiY2FsdGltZXMiLCJw'", "label": 0}
{"id": 26667, "data": "region ___ 'useum\",\"botany.museum\",\"brandywinevalley.museum\",\"brasil.museum\",\"bristol.museum\",\"british.museum\",\"<TARGET_REGION>.museum\",\"broadcast.museum\",\"brunel.museum\",\"brussel.museum\",\"brussels.museum\",\"bruxelles.museum\",\"b'", "label": 0}
{"id": 26668, "data": "region ___ ' src=//images02-www.oeamtc.at/spunq-assets/images/blank-16x9.gif                                        data-src=\"//images03-www.oeamtc.at/%C3%96AMTC_<TARGET_REGION>+w+VCC.jpg/oeamtc-two-teasers/31.740.536\"\\n                                        data-src-small=\"//images03-www.oeamtc.at/%C3%96AMTC_Vienna+w+VCC.jpg'", "label": 0}
{"id": 26669, "data": "region ___ 'n|nissay|norton|nowruz|office|olayan|online|oracle|orange|otsuka|pfizer|photos|physio|piaget|pictet|<TARGET_REGION>|racing|realty|reisen|repair|report|review|rocher|rogers|ryukyu|safety|sakura|sanofi|school|schule|s'", "label": 0}
{"id": 26670, "data": "region ___ 'ZW\"},{name:\"\u00c5land Islands\",abbreviation:\"AX\"}],provinces:[{name:\"Alberta\",abbreviation:\"AB\"},{name:\"<TARGET_REGION>\",abbreviation:\"BC\"},{name:\"Manitoba\",abbreviation:\"MB\"},{name:\"New Brunswick\",abbreviation:\"NB\"},{n'", "label": 0}
{"id": 26671, "data": "region ___ 'jsonFeed({\"country\":\"AU\",\"state\":\"SA\",\"stateName\":\"<TARGET_REGION>\",\"zipcode\":\"5000\",\"timezone\":\"Australia/Adelaide\",\"latitude\":\"-34.92740\",\"longitude\":\"138.60050\",\"city\":\"Adelaide\",\"continent\":\"OC\"});'", "label": 1}
{"id": 26672, "data": "region ___ 'an></h2>\\n<dl><dd>28. - 31. July 2022</dd>\\n<dd><a href=\"/2022/wiki/Location\" title=\"Location\"> Campsite Belved\u00e8re, Dudelange, <TARGET_REGION>, Earth</a></dd>\\n<dd>HaxoGreen is an international, 4-day open-air event for any people interested in technology or art.</dd>'", "label": 0}
{"id": 26673, "data": "region ___ 'lType\":\"link\"},{\"__typename\":\"ExploreNavigationLinkItem\",\"airmoji\":null,\"badge\":null,\"description\":\"<TARGET_REGION>\",\"image\":null,\"picture\":null,\"searchHeaderIds\":[],\"searchParams\":null,\"subtitle\":null,\"title\":\"New '", "label": 0}
{"id": 26674, "data": "region ___ 'rgrid group pty. ltd.\",\"magnite_site_id\":null,\"referer\":\"https://www.marketwatch.com/\",\"geo_state\":\"<TARGET_REGION>\",\"publisher_id\":220,\"adgroup_ids\":\"\",\"impression_id\":\"Ypebnqy2qp9ms48v5fSptwAAAB4\",\"adgroup_variant'", "label": 1}
{"id": 26675, "data": "region ___ '/kehitetaan-ikaihmisten-kotihoitoa-ja-vahvistetaan-kaiken-ikaisten-omaishoitoa-i-o-/i-o-maakunnissa/<TARGET_REGION>\\'><span><?xml version=\\'1.0\\' encoding=\\'UTF-8\\'?><root available-locales=\"fi_FI\" default-locale=\"fi_FI\"'", "label": 0}
{"id": 26676, "data": "region ___ '79\",\"postal\":\"40210\",\"countryCode\":\"276\",\"countryLong\":\"germany\",\"regionCode\":\"10528\",\"regionLong\":\"<TARGET_REGION>\",\"cityCode\":\"1769\",\"continentCode\":\"5\",\"countryAbbrev\":\"de\",\"areaCodes\":\"?\",\"offset\":\"+100\",\"dst\":\"'", "label": 1}
{"id": 26677, "data": "region ___ ':{\"basePath\":\"/sport/olympics\",\"canonicalSite\":\"edition\",\"children\":[],\"isSubsection\":true,\"label\":\"<TARGET_REGION> 2020\",\"parent\":\"sport\",\"sectionPath\":\"/olympics\",\"sites\":[\"www\",\"edition\"],\"title\":\"2020 Summer Oly'", "label": 0}
{"id": 26678, "data": "region ___ 'orativearts.museum\",\"usgarden.museum\",\"ushistory.museum\",\"ushuaia.museum\",\"uslivinghistory.museum\",\"<TARGET_REGION>.museum\",\"uvic.museum\",\"valley.museum\",\"vantaa.museum\",\"versailles.museum\",\"viking.museum\",\"village.'", "label": 0}
{"id": 26679, "data": "region ___ 'https://<TARGET_REGION>.azureedge.net/cdt/statetemplate/6.0.5/css/cagov.core.css'", "label": 0}
{"id": 26680, "data": "region ___ '\"WlYyy cPsXC biNiR cKUMi dpKLb eYhTT cWWWn fmARL fPuGr\"><div class=\"bsLRU btBEK fUpii\">Discover The Second Largest Favela Of <TARGET_REGION> &amp; Its Brilliant Artists \u2013Private</div></div><div class=\"dWcPT u\"><div class=\"RTVWf o W f u w dYMOQ\" aria-label=\"5.0 of 5'", "label": 0}
{"id": 26681, "data": "region ___ 'lvUGN302z6\",\"extra\":{},\"geoLocation\":{\"countryName\":\"Albania\",\"countryCode\":\"AL\",\"subdivisionName\":\"<TARGET_REGION> District\",\"cityName\":\"Tirana\"},\"treatments\":[{\"experimentName\":\"grammar_check_g4d_v4\",\"qualifiedNam'", "label": 1}
{"id": 26682, "data": "region ___ 'var country = \"canada\"; var countryisocode = \"can\"; var state = \"<TARGET_REGION>\"; var metro = \"quebec\"; var metrocode = \"124421\"; var postcode = \"g1r 1s3\"; var offset = \"-400\"; var dst = \"y\"; var countrycode = \"124\"; var connection = \"broadband\"; '", "label": 1}
{"id": 26683, "data": "region ___ 's_system_organization\":\"Keminet SHPK\"},\"geo_info\":{\"continent\":\"Europe\",\"country\":\"Albania\",\"city\":\"<TARGET_REGION>\",\"province\":\"Tirana District\"},\"content\":{\"type\":\"homepage\",\"pageType\":\"sectionfront\",\"publishDate\"'", "label": 1}
{"id": 26684, "data": "region ___ 'Jpld2T\",\"extra\":{},\"geoLocation\":{\"countryName\":\"Netherlands\",\"countryCode\":\"NL\",\"subdivisionName\":\"<TARGET_REGION>\",\"cityName\":\"Amsterdam\",\"postalCode\":\"1012\"},\"treatments\":[{\"experimentName\":\"grammar_check_g4d_v4\"'", "label": 1}
{"id": 26685, "data": "region ___ '{\"cc\": \"ro\", \"sc\": null, \"pc\": \"020331\", \"cic\": \"<TARGET_REGION>\", \"rc\": null, \"coc\": \"europe\", \"ac\": null, \"tzc\": \"2\", \"loc\": \"26.11401\", \"lac\": \"44.47748\", \"dmac\": null, \"msac\": null, \"ntc\": null, \"nsc\": null, \"ncc\": \"m247 ltd\", \"noc\": \"'", "label": 1}
{"id": 26686, "data": "region ___ 'er-right-lighter card__image--rounded-borders xs-absolute xs-t0 xs-b0 xs-l0 xs-col-5 md-col-4\">\\n    \\n    <img alt=\"Bella and <TARGET_REGION> labeled Jessica and Rosalie\"\\n      \\n      class=\"js-progressive-image\"\\n      data-width=\"300\"\\n      data-resize=\"300:*;\"\\n   '", "label": 0}
{"id": 26687, "data": "region ___ '\"]\"},!0)},function(e,t){Element.prototype.matches||(Element.prototype.matches=Element.prototype.matc<TARGET_REGION>lector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector||Element.prototype'", "label": 0}
{"id": 26688, "data": "region ___ 'ds.com/log?___stu13p=25bccp7ihn5fs6949k6cjst5iltv5zda4r85fx7&lwbsh=AAX&dgw=desktop&flg=AAX5DN745&fw=<TARGET_REGION>&ff=CH&xjg=4&dss=0&skw=600&slg=8PR6YK195&gq=time.com&vhuyqdph=ssp-serving-7b97c94ccd-kgvpc&vyu=05311'", "label": 0}
{"id": 26689, "data": "region ___ 'px;\\n}\\nspan.terms .pt-cv-tax-svet, \\nspan.terms a.pt-cv-tax-politika, \\nspan.terms a.pt-cv-tax-drustvo, \\nspan.terms a.pt-cv-tax-<TARGET_REGION>, \\nspan.terms a.pt-cv-tax-srbija,\\nspan.terms a.pt-cv-tax-crna-hronika,\\nspan.terms a.pt-cv-tax-ekonomija,\\nspan.terms a.pt-cv-t'", "label": 0}
{"id": 26690, "data": "region ___ 'ccept\",\"webDoNotSellSettingsSavedToast\":\"web_do_not_sell_settings_saved_toast\"}}},\"$subdivisions\":[\"<TARGET_REGION>\"],\"$nonce\":\"DiBrOuQDr4CcRGOgJJmH-\",\"$csrfToken\":\"GDpMFkTR-hmSgeO781UrIAy3DPiTzuUaT7O8\",\"$botType\":\"'", "label": 0}
{"id": 26691, "data": "region ___ 't_name\":\"Europe\",\"country_code\":\"NL\",\"country_name\":\"Netherlands\",\"region_code\":\"NH\",\"region_name\":\"<TARGET_REGION>\",\"city\":\"Diemen\",\"zip\":\"1096\",\"latitude\":52.33789825439453,\"longitude\":4.922070026397705,\"location\"'", "label": 1}
{"id": 26692, "data": "region ___ 'Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatc<TARGET_REGION>lector||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.oMatchesSelector),El'", "label": 0}
{"id": 26693, "data": "region ___ 'YT\"}],us_states_and_dc:[{name:\"Alabama\",abbreviation:\"AL\"},{name:\"Alaska\",abbreviation:\"AK\"},{name:\"<TARGET_REGION>\",abbreviation:\"AZ\"},{name:\"Arkansas\",abbreviation:\"AR\"},{name:\"California\",abbreviation:\"CA\"},{name'", "label": 0}
{"id": 26694, "data": "region ___ 'ion = \"{&quot;id&quot;:718345,&quot;name&quot;:&quot;Milan&quot;,&quot;slug&quot;:&quot;milan-milan-<TARGET_REGION>&quot;,&quot;short_name&quot;:&quot;Milan, Italy&quot;,&quot;displayable_name&quot;:&quot;Milan, Ita'", "label": 1}
{"id": 26695, "data": "region ___ 'url\":\"https://i.ytimg.com/vi_webp/U-wgudqE-Fs/maxresdefault.webp\",\"width\":1920,\"height\":1080}]},\"title\":{\"runs\":[{\"text\":\"VO <TARGET_REGION> Vanco Mihajlov po vtor pat megju Makedoncite!\"}]},\"shortBylineText\":{\"runs\":[{\"text\":\"Vasko Eftov\",\"navigationEndpoint\":{\"cl'", "label": 0}
{"id": 26696, "data": "region ___ 'lType\":\"link\"},{\"__typename\":\"ExploreNavigationLinkItem\",\"airmoji\":null,\"badge\":null,\"description\":\"<TARGET_REGION>\",\"image\":null,\"picture\":null,\"searchHeaderIds\":[],\"searchParams\":null,\"subtitle\":null,\"title\":\"Snow'", "label": 0}
{"id": 26697, "data": "region ___ 'egion\">en region</p>\\n      </div>\\n\\n  <div class=\"c-card__body\">\\n    <h3 class=\"c-card__body__title\">\\n      L\u2019endom\u00e9triose en <TARGET_REGION>    </h3>\\n    \\n  </div>\\n  <div class=\"c-card__footer\">\\n        <p class=\"c-card__footer__publication\">\\n      Publi\u00e9 le 10/03/'", "label": 0}
{"id": 26698, "data": "region ___ 'S\\\\\":\\\\\"Tasmania\\\\\",\\\\\"json.regions.AU.ACT\\\\\":\\\\\"Australian Capital Territory\\\\\",\\\\\"json.regions.AU.QLD\\\\\":\\\\\"<TARGET_REGION>\\\\\",\\\\\"json.regions.AU.JBT\\\\\":\\\\\"Jervis Bay Territory\\\\\",\\\\\"json.regions.GB.ENG\\\\\":\\\\\"England\\\\\",\\\\\"json.regio'", "label": 0}
{"id": 26699, "data": "region ___ 'city\",\"t\":\"custom\",\"v\":\"San Francisco\"},{\"e\":\"12105746290\",\"k\":\"cb_company_state\",\"t\":\"custom\",\"v\":\"<TARGET_REGION>\"},{\"e\":\"12093847555\",\"k\":\"cb_company_country\",\"t\":\"custom\",\"v\":\"United States\"},{\"e\":\"12105588415\",'", "label": 0}
{"id": 26700, "data": "region ___ 'zona\",stateCode2:\"AZ\"},{name:\"Arkansas\",stateCode2:\"AR\"},{name:\"California\",stateCode2:\"CA\"},{name:\"<TARGET_REGION>\",stateCode2:\"CO\"},{name:\"Connecticut\",stateCode2:\"CT\"},{name:\"Delaware\",stateCode2:\"DE\"},{name:\"Flo'", "label": 0}
{"id": 26701, "data": "region ___ '.7\",\"postal\":\"252 24\",\"countryCode\":\"752\",\"countryLong\":\"sweden\",\"regionCode\":\"11365\",\"regionLong\":\"<TARGET_REGION>\",\"cityCode\":\"17188\",\"continentCode\":\"5\",\"countryAbbrev\":\"se\",\"areaCodes\":\"?\",\"offset\":\"+100\",\"dst\":'", "label": 1}
{"id": 26702, "data": "region ___ 'orm=window.Adform=adform}]);Adform=Adform||{};\\nAdform.cache=\"626\";\\nAdform.locationInfo={Country: \\'United states\\', Region: \\'<TARGET_REGION>\\', City: \\'Tampa\\', Latitude: \\'28.05522\\', Longitude: \\'-82.45932\\'};\\n(adfjsonbanners=window.adfjsonbanners||[]).push({\"staticCon'", "label": 1}
{"id": 26703, "data": "region ___ 'artners Inc.\",\"RockYou\",1194,\"MindBody Software\",\"Ooyala\",\"American Automobile Association of Northern California\",\"Nevada & <TARGET_REGION>\",\"CSAA - Arizona\",\"Csaa Insurance Exchange\",1180,\"Intelligent Beauty\",\"Segment\",\"PriceGrabber.com\",\"Shopzilla\",\"Creative Art'", "label": 0}
{"id": 26704, "data": "region ___ 'inh\u00f5es como o que aconteceu no dia 06 de maio no ped\u00e1gio de Carmo da Cachoeira (MG), na Rodovia Fern\u00e3o Dias, km 735, sentido <TARGET_REGION> e ainda o motorista que atropoleu o motociclista parado em uma das cabines \\xa0fugiu sem prestar Socorro.</p>\\\\n<p>Vamos parar c'", "label": 0}
{"id": 26705, "data": "region ___ '\\n        \"id\": 8059758,\\n        \"type\": \"publication\",\\n        \"publicationId\": null\\n      }\\n    ]\\n  },\\n  {\\n    \"id\": \"701\",\\n    \"name\": \"P4 <TARGET_REGION>\",\\n    \"playlistAltText\": \"Ukrainska soldater p\u00e5 v\u00e4g till Karolinska universitetssjukhuset\\\\n\",\\n    \"count\": 10,\\n    \"overline\": \"KRIGET I UKRAINA\",'", "label": 0}
{"id": 26706, "data": "region ___ 'https://www.vdab.be/themes/vdab/vdab_basic/fonts/<TARGET_REGION>ArtSans-Medium.woff'", "label": 0}
{"id": 26707, "data": "region ___ 'ng-top:0 !important;}.nav > li > a:hover,.nav > li > a:focus{background:none;text-decoration:underline;}.item-list ul,.media_<TARGET_REGION> ul,.front_sednici ul,.node_fields_wraper ul,.submitted_date ol{list-style:none;margin:0;padding:0;}#main .field-name-body ol'", "label": 0}
{"id": 26708, "data": "region ___ '\":\"Football players tragic drowning accident\",\"funddescription\":\"<div>Darryl Blackmon is a 13year old young boy from Denver, <TARGET_REGION> who is currently at Children&#039;s Hopital in critical condition.\\\\n</div>\\\\n\\\\n<div>Darryl Blackmon is a Jr. Buffs footbal pl'", "label": 0}
{"id": 26709, "data": "region ___ 'd=\"web_headline\" href=\"https://www.washingtonpost.com/nation/2022/06/06/tempe-police-bickings-drowning/\"><span>Man drowns as <TARGET_REGION> police watch: \u2018I\u2019m not jumping in after you\u2019 </span></a></h2></div><div class=\"byline gray-dark font-xxxxs pb-xs\">By <a href'", "label": 0}
{"id": 26710, "data": "region ___ '.audience_segment\":\"Transportation & Logistics\",\"profiles.ip\":\"91.193.5.10\",\"profiles.region_name\":\"<TARGET_REGION>\",\"active_customer_cookie\":\"false\"}}},\"prefetch\":{\"views\":[{\"parameters\":{\"pageName\":\"Box \u2014 Secure C'", "label": 1}
{"id": 26711, "data": "region ___ 'ous_system_organization\":\"31173 Services AB\"},\"geo_info\":{\"continent\":\"Europe\",\"country\":\"Sweden\",\"city\":\"Malmo\",\"province\":\"<TARGET_REGION> County\"},\"classifications_watson\":{\"taxonomy_labels\":[\"/law, govt and politics\",\"/society\",\"/society/unrest and war\",\"/law, '", "label": 1}
{"id": 26712, "data": "region ___ ',{\"i\":5985,\"n\":\"Lisbon, Portugal\",\"s\":\" lisbon lisboa portogallo portugalia portugal\",\"p\":\"lisbon\",\"c\":\"326\"},{\"i\":5354,\"n\":\"<TARGET_REGION>, United States of America\",\"s\":\" florida stati uniti estados unidos etats-unis vereinigte staaten usa stany zjednoczone stat'", "label": 0}
{"id": 26713, "data": "region ___ 'anization\":\"tzulo-phx\",\"magnite_site_id\":null,\"referer\":\"https://www.marketwatch.com/\",\"geo_state\":\"<TARGET_REGION>\",\"publisher_id\":220,\"adgroup_ids\":\"104178,85585,103530,106551\",\"impression_id\":\"Yp43GXPd0DpKDgD-bgf'", "label": 1}
{"id": 26714, "data": "region ___ 'https://www.<TARGET_REGION>.at/2022/06/gotd-7471729-15864670-22-15-27117656447-640x436.jpg'", "label": 0}
{"id": 26715, "data": "region ___ '74,\"lon\":138.6005,\"metro\":0,\"isp\":\"Intergrid Group Pty\",\"country_label\":\"Australia\",\"region_label\":\"<TARGET_REGION>\",\"country3\":\"AUS\",\"continent\":\"OC\"};\\nTD.boot_data.geocode = \"en-au\";\\nTD.boot_data.intl_prefix = \"\\\\/'", "label": 0}
{"id": 26716, "data": "region ___ 'fw.dai_with_fw,params:this.fw.params}:{fw_link:this.fw.dvr_fw_link}}:{},\"CBSN-NY\"==n.edition)var o=\"<TARGET_REGION>\";else\"CBSN-PHI\"==n.edition?o=\"Philly\":\"CBSN-LA\"==n.edition?o=\"Los Angeles\":\"CBSN-DAL\"==n.edition?o='", "label": 0}
{"id": 26717, "data": "region ___ 'nsas\",\"california\",\"colorado\",\"connecticut\",\"delaware\",\"florida\",\"georgia\",\"guam\",\"hawaii\",\"idaho\",\"<TARGET_REGION>\",\"indiana\",\"iowa\",\"kansas\",\"kentucky\",\"louisiana\",\"maine\",\"maryland\",\"massachusetts\",\"michigan\",\"mi'", "label": 0}
{"id": 26718, "data": "region ___ 'n class=\"c-byline-wrapper\">\\n    \\n      By\\n      <span class=\"c-byline__item\">\\n        \\n          \\n          <a href=\"https://www.theverge.com/authors/<TARGET_REGION>-song\" data-analytics-link=\"author-name\"><span class=\"c-byline__author-name\">Victoria Song</span></a>\\n        \\n      </span>\\n      \\n        \\n         '", "label": 0}
{"id": 26719, "data": "region ___ '\"continentName\":\"AS\",\"countryCode\":\"JP\",\"countryName\":\"Japan\",\"ip\":\"45.8.223.197\",\"latitude\":34.693214416503906,\"longitude\":135.49314880371094,\"regionCode\":\"27\",\"regionName\":\"<TARGET_REGION>\",\"zip\":\"530-0005\"}}\\n'", "label": 1}
{"id": 26720, "data": "region ___ 'TelemachCgPortal ? [\"Bar\", \"Bijelo Polje\", \"Herceg Novi\", \"Kotor\", \"Nik\u0161i\u0107\", \"Pljevlja\", \"Podgorica\", \"Tivat\"] : [\"Arilje\", \"<TARGET_REGION>\", \"Bor\", \"\u010ca\u010dak\", \"Ivanjica\", \"Kikinda\", \"Kostolac\", \"Kragujevac\", \"Kraljevo\", \"Kru\u0161evac\", \"Kula\", \"Leskovac\", \"Mladenovac\",'", "label": 0}
{"id": 26721, "data": "region ___ ' remaining]\">naked 3 min [285 tokens remaining]</li>\\n</ul>\\n<ul class=\"sub-info\">\\n<li class=\"location\" style=\"display: none;\"><TARGET_REGION>, United States</li>\\n<li class=\"cams\">55 mins, 388 viewers</li>\\n</ul>\\n</div>\\n</li>\\n<li class=\"room_list_room\" onmousedown=\"ts'", "label": 0}
{"id": 26722, "data": "region ___ 'replace(\"www.\",\"myjobstreet\".concat(n,\".\")):e},a={sg:{href:i(\"https://www.jobstreet.com.sg/\"),text:\"<TARGET_REGION>\",objectType:\"TabItem\",linkContext:{source:\"Country - Singapore\"}},my:{href:i(\"https://www.jobstreet'", "label": 0}
{"id": 26723, "data": "region ___ 'ongName\":\"\",\"shortName\":\"\",\"code\":\"543-0062\",\"type\":\"POSTAL_CODE\",\"isEUCountry\":false},{\"longName\":\"<TARGET_REGION>\",\"shortName\":\"\u014csaka\",\"code\":\"27\",\"type\":\"REGION\",\"isEUCountry\":false},{\"longName\":\"\",\"shortName\":\"\"'", "label": 1}
{"id": 26724, "data": "region ___ 'ralia/Hobart|Australia/Tasmania\",\"Australia/Lord_Howe|Australia/LHI\",\"Australia/Melbourne|Australia/<TARGET_REGION>\",\"Australia/Perth|Australia/West\",\"Australia/Sydney|Antarctica/Macquarie\",\"Australia/Sydney|Austral'", "label": 0}
{"id": 26725, "data": "region ___ 'ion M(e){var t,i,r=this[0];if(!r||void 0===e)return!1;if(\"string\"==typeof e){if(r.matches)return r.matches(e);if(r.webkitMatc<TARGET_REGION>lector)return r.webkitMatchesSelector(e);if(r.msMatchesSelector)return r.msMatchesSelector(e);for(t=a(e),i=0;i<t.length;i+=1)'", "label": 0}
{"id": 26726, "data": "region ___ ' <p class=\"teaser\">Consumers are paying more around the country. No state\\'s average is below $4.28, according to AAA. But in <TARGET_REGION>, drivers are paying $2 more than that amount.</p>\\n            </a> \\n        </div> <!-- /.story-text -->\\n    </div> <!-- /.s'", "label": 0}
{"id": 26727, "data": "region ___ '{\"country\":\"AU\",\"state\":\"QLD\",\"stateName\":\"<TARGET_REGION>\",\"zipcode\":\"4000\",\"timezone\":\"Australia/Brisbane\",\"latitude\":\"-27.46790\",\"longitude\":\"153.03250\",\"city\":\"Brisbane\",\"continent\":\"OC\"}'", "label": 1}
{"id": 26728, "data": "region ___ 't_value)},_bindEvents:function(){var e=this;a()(window).on(\"tags.afterTagAdded\",(function(){e._check<TARGET_REGION>()?e._onSlideSet(1):e._onSlideSet(e.options.default_value)})),a()(\".registration_city\").on(\"change\",'", "label": 0}
{"id": 26729, "data": "region ___ '881518682001701_1654179233075({\"regionCode\":\"8208000500000000\",\"countryCode\":\"DK\",\"ip\":\"141.98.254.131\",\"regionName\":\"Region <TARGET_REGION>\",\"latitude\":\"55.83333\",\"countryName\":\"DENMARK\",\"lang\":\"da\",\"longitude\":\"12.33333\"});'", "label": 1}
{"id": 26730, "data": "region ___ '{\"ip_address\":\"43.245.160.163\",\"country_name\":\"Australia\",\"country_iso_code\":\"AU\",\"state\":\"<TARGET_REGION>\",\"state_iso_code\":\"QLD\",\"city\":\"Brisbane\",\"city_id\":2174003,\"city_confidence\":-1,\"postal_code\":\"400'", "label": 1}
{"id": 26731, "data": "region ___ 'use strict\";Object.defineProperty(exports,\"__esModule\",{value:!0});var vlWidgetUtility=require(\"@gov<TARGET_REGION>/vl-widget-utility\"),extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t'", "label": 0}
{"id": 26732, "data": "region ___ 'https://<TARGET_REGION>.azureedge.net/cdt/statetemplate/6.0.5/css/colorscheme-oceanside.css'", "label": 0}
{"id": 26733, "data": "region ___ 'dnsfeed({\"country\":\"IT\",\"state\":\"25\",\"stateName\":\"<TARGET_REGION>\",\"zipcode\":\"20153\",\"timezone\":\"Europe/Rome\",\"latitude\":\"45.47220\",\"longitude\":\"9.19220\",\"city\":\"Milan\",\"continent\":\"EU\"})'", "label": 1}
{"id": 26734, "data": "region ___ '79,\"lon\":153.0325,\"metro\":0,\"isp\":\"Intergrid Group Pty\",\"country_label\":\"Australia\",\"region_label\":\"<TARGET_REGION>\",\"country3\":\"AUS\",\"continent\":\"OC\"};\\nTD.boot_data.geocode = \"en-au\";\\nTD.boot_data.intl_prefix = \"\\\\/'", "label": 1}
{"id": 26735, "data": "region ___ 'do, The Johns Hopkins University Applied Physics Laboratory in Laurel, Maryland, NASA\u2019s Jet Propulsion Laboratory, Pasadena, <TARGET_REGION>, Malin Space Science Systems, San Diego, California, NASA\u2019s Langley Research Center, Hampton, Virginia, NASA\u2019s Ames Research'", "label": 0}
{"id": 26736, "data": "region ___ 'ntId\":\"ac064c25f81e478db7eee1809972e32a\",\"geo.city\":\"shinagawa\",\"activity.id\":\"448352\",\"geo.state\":\"<TARGET_REGION>\",\"experience.name\":\"HBROUT-2665\",\"geo.domainName\":\"\",\"option.name\":\"Offer2\",\"geo.zip\":\"140-0001\",\"o'", "label": 1}
{"id": 26737, "data": "region ___ 'https://t.tailtarget.com/__tt.gif?tA=TT-10162-1&tE=0&tF=&tI=_toronto_<TARGET_REGION>_ca_1654116837570_3325461588&tJ=&tQ=homepage&tU=0100007FE0D19762C806E172022DCB1B&tX=b.52&tY=1&tZ=745462082'", "label": 0}
{"id": 26738, "data": "region ___ '{\"country\":\"NL\",\"state\":\"NH\",\"stateName\":\"<TARGET_REGION>\",\"zipcode\":\"1012\",\"timezone\":\"Europe/Amsterdam\",\"latitude\":\"52.37590\",\"longitude\":\"4.89750\",\"city\":\"Amsterdam\",\"continent\":\"EU\"}'", "label": 1}
{"id": 26739, "data": "region ___ 'rgrid group pty. ltd.\",\"magnite_site_id\":null,\"referer\":\"https://www.marketwatch.com/\",\"geo_state\":\"<TARGET_REGION>\",\"publisher_id\":220,\"adgroup_ids\":\"\",\"impression_id\":\"Ypebnl4EJwXX5rDl9Nia_AAAABA\",\"adgroup_variant'", "label": 1}
{"id": 26740, "data": "region ___ 'Vladimir Script\",\"Vrinda\",\"Westminster\",\"WHITNEY\",\"Wide Latin\",\"ZapfEllipt BT\",\"ZapfHumnst BT\",\"ZapfHumnst Dm BT\",\"Zapfino\",\"<TARGET_REGION> BlkEx BT\",\"Zurich Ex BT\",\"ZWAdobeF\"])}n=(n=n.concat(t.fonts.userDefinedFonts)).filter((function(e,t){return n.indexOf(e)===t'", "label": 0}
{"id": 26741, "data": "region ___ 'er\":{\"username\":\"null\",\"loginStatus\":\"UNKNOWN\",\"swid\":\"null\",\"location\":{\"country\":\"canada\",\"city\":\"<TARGET_REGION>\",\"state\":\"\",\"dma\":\"124421\",\"zipcode\":\"g1r 1s3\",\"domain\":\"?\",\"ip\":\"89.36.78.25\",\"timeZone\":\"America/'", "label": 1}
{"id": 26742, "data": "region ___ 'a/ojo-bitola-povede-postapka-za-predizvikuvanje-opshta-opasnost-so-palenjeto-na-bugarskiot-kulturen-<TARGET_REGION>-vo-bitola/\"></a><img width=\"326\" height=\"245\" src=\"https://opserver.mk/wp-content/uploads/2021/05/o'", "label": 0}
{"id": 26743, "data": "region ___ 'room/1.0/theweatherchannel/get-action?page.url=https%3A%2F%2Fweather.com%2Fsq-AL%2Fmoti%2Fsot%2Fl%2F<TARGET_REGION>%2BQarku%2Bi%2BTiran%25C3%25ABs%3FcanonicalCityId%3Da605e93d3c90343b2fca2b09929feddbfe1e3c0de8add5f4'", "label": 1}
{"id": 26744, "data": "region ___ 'tohead\",\"y\":8,\"o\":11}\\' >\\n        \\n\\n\\n\\n            <a   href=\"/en-gb/news/uknews/patients-with-eating-disorders-sent-from-<TARGET_REGION>-to-scotland-due-to-lack-of-beds/ar-AAY2HBt?li=BBoPWjQ\"\\n        data-id=\"109\" data-m=\\'{\"i\":109,\"p\":108,\"n\":\"HeadlineItemView'", "label": 0}