forked from dice-group/n3-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRSS-500.ttl
12574 lines (11060 loc) · 629 KB
/
RSS-500.ttl
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
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix nif: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#> .
@prefix itsrdf: <http://www.w3.org/2005/11/its/rdf#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix aksw: <http://aksw.org/> .
<http://aksw.org/N3/RSS-500/197#char=0,184>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "184"^^xsd:nonNegativeInteger ;
nif:isString "Officer Korey Lankow was placed on administrative leave after leaving Jeg , a drug-sniffing dog , in his squad car outside DPS headquarters in Tucson for more than an hour on July 11 ."@en .
<http://aksw.org/N3/RSS-500/160#char=137,153>
a nif:RFC5147String ;
nif:anchorOf "Texas Department"^^xsd:string ;
nif:beginIndex "137"^^xsd:nonNegativeInteger ;
nif:endIndex "153"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/160#char=0,180> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/State_Health_Services> .
<http://aksw.org/N3/RSS-500/499#char=0,218>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "218"^^xsd:nonNegativeInteger ;
nif:isString "McCotter 's abrupt exit from Congress July 6 would have ended any potential ethics investigation into him or his staff , said Melanie Sloan , executive director of Citizens for Responsibility and Ethics in Washington ."@en .
<http://aksw.org/N3/RSS-500/235#char=56,75>
a nif:RFC5147String ;
nif:anchorOf "Knoxville Nationals"^^xsd:string ;
nif:beginIndex "56"^^xsd:nonNegativeInteger ;
nif:endIndex "75"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/235#char=0,235> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Knoxville_Nationals> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/313#char=9,12>
a nif:RFC5147String ;
nif:anchorOf "GOP"^^xsd:string ;
nif:beginIndex "9"^^xsd:nonNegativeInteger ;
nif:endIndex "12"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/313#char=0,268> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Republican_Party_(United_States)> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/25#char=0,230>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "230"^^xsd:nonNegativeInteger ;
nif:isString "Two boxes containing 70,000 petitions were taken to the Russian Embassy in Washington on Tuesday , but a Russian diplomat carried them outside and dumped them on the sidewalk , Amnesty International spokeswoman Sharon Singh said ."@en .
<http://aksw.org/N3/RSS-500/79#char=100,120>
a nif:RFC5147String ;
nif:anchorOf "Bridgemont Community"^^xsd:string ;
nif:beginIndex "100"^^xsd:nonNegativeInteger ;
nif:endIndex "120"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/79#char=0,189> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Bridgemont_Community_and_Technical_College> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/189#char=68,75>
a nif:RFC5147String ;
nif:anchorOf "Cowboys"^^xsd:string ;
nif:beginIndex "68"^^xsd:nonNegativeInteger ;
nif:endIndex "75"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/189#char=0,122> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Dallas_Cowboys> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/372#char=0,2>
a nif:RFC5147String ;
nif:anchorOf "Hu"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "2"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/372#char=0,180> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Hu_Jintao> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/248#char=0,99>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "99"^^xsd:nonNegativeInteger ;
nif:isString "`` We lost the kids that moved the ball for us last year , '' East Jackson coach Brian Smith said ."@en .
<http://aksw.org/N3/RSS-500/443#char=80,94>
a nif:RFC5147String ;
nif:anchorOf "Oakland County"^^xsd:string ;
nif:beginIndex "80"^^xsd:nonNegativeInteger ;
nif:endIndex "94"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/443#char=0,96> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Oakland_County,_Michigan> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/186#char=19,30>
a nif:RFC5147String ;
nif:anchorOf "Cory Curtis"^^xsd:string ;
nif:beginIndex "19"^^xsd:nonNegativeInteger ;
nif:endIndex "30"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/186#char=0,135> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Cory_Curtis> .
<http://aksw.org/N3/RSS-500/277#char=0,177>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "177"^^xsd:nonNegativeInteger ;
nif:isString "FCC chairman Julius Genachowski cited as a major reason for allowing the deal that Verizon has pledged to sell some spectrum to T-Mobile USA , the No. 4 U.S. cellphone company ."@en .
<http://aksw.org/N3/RSS-500/155#char=90,102>
a nif:RFC5147String ;
nif:anchorOf "Libertyville"^^xsd:string ;
nif:beginIndex "90"^^xsd:nonNegativeInteger ;
nif:endIndex "102"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/155#char=0,124> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Libertyville,_Illinois> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/329#char=166,180>
a nif:RFC5147String ;
nif:anchorOf "Young Brothers"^^xsd:string ;
nif:beginIndex "166"^^xsd:nonNegativeInteger ;
nif:endIndex "180"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/329#char=0,182> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Young_Brothers> .
<http://aksw.org/N3/RSS-500/473#char=0,216>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "216"^^xsd:nonNegativeInteger ;
nif:isString "Top quotes : Fox and MLB Network analyst Harold Reynolds on Bryce Harper 's Major League debut with the Washington Nationals : `` I played with Ken Griffey Jr. at 19 , and he did n't have this kind of popularity . ''"@en .
<http://aksw.org/N3/RSS-500/351#char=0,158>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "158"^^xsd:nonNegativeInteger ;
nif:isString "Jimmie Johnson finished a distant third , replacing Hendrick Motorsports teammate Dale Earnhardt Jr. -LRB- 28th after a late spin -RRB- as the points leader ."@en .
<http://aksw.org/N3/RSS-500/379#char=0,108>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "108"^^xsd:nonNegativeInteger ;
nif:isString "And check out In-Game editor Todd Kenreck 's review above of `` LEGO Star Wars III : The Clone Wars 3DS . ''"@en .
nif:anchorOf
a owl:DatatypeProperty .
<http://aksw.org/N3/RSS-500/463#char=159,169>
a nif:RFC5147String ;
nif:anchorOf "Department"^^xsd:string ;
nif:beginIndex "159"^^xsd:nonNegativeInteger ;
nif:endIndex "169"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/463#char=0,184> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/United_States_Department_of_Education> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/468#char=5,23>
a nif:RFC5147String ;
nif:anchorOf "Los Angeles Lakers"^^xsd:string ;
nif:beginIndex "5"^^xsd:nonNegativeInteger ;
nif:endIndex "23"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/468#char=0,190> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Los_Angeles_Lakers> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/34#char=0,205>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "205"^^xsd:nonNegativeInteger ;
nif:isString "`` I see risk here for both sides ; I think it 's at least worth one more chance , '' Koh said , while asking that Apple chief Tim Cook and Samsung boss Kwon Oh-hyun personally connect to end the dispute ."@en .
<http://aksw.org/N3/RSS-500/108#char=0,130>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "130"^^xsd:nonNegativeInteger ;
nif:isString "Brinker praised Thompson 's work in expanding Komen 's influence in scientific , community health , advocacy and global programs ."@en .
<http://aksw.org/N3/RSS-500/225#char=0,411>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "411"^^xsd:nonNegativeInteger ;
nif:isString "On The Agenda The following items will be on the agenda for action Monday night : • approval of a schedule of events for the Downtown Development Authority , including the Tigers on the Town Pep Rally Aug. 30 , a movie in the park on Sept. 28 , a `` Commerce goes Pink Party '' on Oct. 4 with Northridge Medical Center ; the Fall and Winter Fashion Show on Oct. 25 , and the downtown trick-or-treat on Oct. 31 ."@en .
<http://aksw.org/N3/RSS-500/457#char=0,12>
a nif:RFC5147String ;
nif:anchorOf "Leslie Drake"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "12"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/457#char=0,143> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Leslie_Drake> .
<http://aksw.org/N3/RSS-500/398#char=228,240>
a nif:RFC5147String ;
nif:anchorOf "Donald Young"^^xsd:string ;
nif:beginIndex "228"^^xsd:nonNegativeInteger ;
nif:endIndex "240"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/398#char=0,417> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Donald_Young_%28tennis%29> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/456#char=26,43>
a nif:RFC5147String ;
nif:anchorOf "Lenny B. Robinson"^^xsd:string ;
nif:beginIndex "26"^^xsd:nonNegativeInteger ;
nif:endIndex "43"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/456#char=0,195> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Lenny_B._Robinson> .
<http://aksw.org/N3/RSS-500/256#char=19,33>
a nif:RFC5147String ;
nif:anchorOf "Robyn Kneubuhl"^^xsd:string ;
nif:beginIndex "19"^^xsd:nonNegativeInteger ;
nif:endIndex "33"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/256#char=0,122> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Robyn_Kneubuhl> .
<http://aksw.org/N3/RSS-500/429#char=250,280>
a nif:RFC5147String ;
nif:anchorOf "Detroit Federation of Teachers"^^xsd:string ;
nif:beginIndex "250"^^xsd:nonNegativeInteger ;
nif:endIndex "280"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/429#char=0,299> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Detroit_Federation_of_Teachers> .
<http://aksw.org/N3/RSS-500/101#char=13,17>
a nif:RFC5147String ;
nif:anchorOf "Bowl"^^xsd:string ;
nif:beginIndex "13"^^xsd:nonNegativeInteger ;
nif:endIndex "17"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/101#char=0,157> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Pro_Bowl> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/116#char=23,33>
a nif:RFC5147String ;
nif:anchorOf "CBS Sports"^^xsd:string ;
nif:beginIndex "23"^^xsd:nonNegativeInteger ;
nif:endIndex "33"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/116#char=0,138> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/CBS_Sports> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/302#char=43,49>
a nif:RFC5147String ;
nif:anchorOf "France"^^xsd:string ;
nif:beginIndex "43"^^xsd:nonNegativeInteger ;
nif:endIndex "49"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/302#char=0,78> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/France_women%27s_national_basketball_team> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/84#char=0,151>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "151"^^xsd:nonNegativeInteger ;
nif:isString "Before 1997 , law schools could decide whether blind people must take the exam , according to Binno 's lawyer , Richard Bernstein , who is also blind ."@en .
<http://aksw.org/N3/RSS-500/231#char=0,199>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "199"^^xsd:nonNegativeInteger ;
nif:isString "DAVIE , Fla. -- Dolphins receiver Chad Johnson was released from jail Sunday on $ 2,500 bond , a day after his wife accused him of head-butting her during an argument in front of their Florida home ."@en .
<http://aksw.org/N3/RSS-500/436#char=0,142>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "142"^^xsd:nonNegativeInteger ;
nif:isString "Klein comes to Portland by way of Norcross , Ga. , where she has been the human resource manager for the Deutz Corp. for the last four years ."@en .
<http://aksw.org/N3/RSS-500/309#char=0,180>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "180"^^xsd:nonNegativeInteger ;
nif:isString "`` We 've got sort of this life-size timeline , Corvette timeline , we 're setting up that will have real Corvettes and real Corvette engines , '' said GM spokesman Tom Wilkinson ."@en .
<http://aksw.org/N3/RSS-500/314#char=55,58>
a nif:RFC5147String ;
nif:anchorOf "GOP"^^xsd:string ;
nif:beginIndex "55"^^xsd:nonNegativeInteger ;
nif:endIndex "58"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/314#char=0,119> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Republican_Party_(United_States)> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/456#char=0,195>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "195"^^xsd:nonNegativeInteger ;
nif:isString "The Batman in question is Lenny B. Robinson , known as the Route 29 Batman - a Maryland businessman who has committed himself to brightening the days of children hospitalized across the country ."@en .
<http://aksw.org/N3/RSS-500/200#char=129,150>
a nif:RFC5147String ;
nif:anchorOf "California Department"^^xsd:string ;
nif:beginIndex "129"^^xsd:nonNegativeInteger ;
nif:endIndex "150"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/200#char=0,184> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/California_Department_of_Forestry_and_Fire_Protection> .
<http://aksw.org/N3/RSS-500/57#char=28,51>
a nif:RFC5147String ;
nif:anchorOf "BIMP-EAGA Mountain Bike"^^xsd:string ;
nif:beginIndex "28"^^xsd:nonNegativeInteger ;
nif:endIndex "51"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/57#char=0,155> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/BIMP-EAGA> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/25#char=177,198>
a nif:RFC5147String ;
nif:anchorOf "Amnesty International"^^xsd:string ;
nif:beginIndex "177"^^xsd:nonNegativeInteger ;
nif:endIndex "198"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/25#char=0,230> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Amnesty_International> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/337#char=0,8>
a nif:RFC5147String ;
nif:anchorOf "Gregoire"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "8"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/337#char=0,135> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Christine_Gregoire> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/108#char=16,24>
a nif:RFC5147String ;
nif:anchorOf "Thompson"^^xsd:string ;
nif:beginIndex "16"^^xsd:nonNegativeInteger ;
nif:endIndex "24"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/108#char=0,130> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Thompson> .
<http://aksw.org/N3/RSS-500/185#char=48,73>
a nif:RFC5147String ;
nif:anchorOf "Highland Capital Partners"^^xsd:string ;
nif:beginIndex "48"^^xsd:nonNegativeInteger ;
nif:endIndex "73"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/185#char=0,304> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Highland_Capital_Partners> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/143#char=16,32>
a nif:RFC5147String ;
nif:anchorOf "Sgt. Tom Lovejoy"^^xsd:string ;
nif:beginIndex "16"^^xsd:nonNegativeInteger ;
nif:endIndex "32"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/143#char=0,136> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Tom_Lovejoy> .
<http://aksw.org/N3/RSS-500/449#char=0,296>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "296"^^xsd:nonNegativeInteger ;
nif:isString "It has burned 675 square miles , and firefighters hoped to have it contained Thursday evening , A firefighter who suffered minor burns while battling the Holloway fire was a member of the Zuni Interagency Hotshots from New Mexico , U.S. Bureau of Land Management spokesman Michael Campbell said ."@en .
<http://aksw.org/N3/RSS-500/137#char=27,37>
a nif:RFC5147String ;
nif:anchorOf "Daily News"^^xsd:string ;
nif:beginIndex "27"^^xsd:nonNegativeInteger ;
nif:endIndex "37"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/137#char=0,130> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Philadelphia_Daily_News> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/77#char=0,130>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "130"^^xsd:nonNegativeInteger ;
nif:isString "`` We want a fun , new fundraising event that can be done mostly outside , '' said Beverly Heritage Center manager Terry Hackney ."@en .
<http://aksw.org/N3/RSS-500/434#char=38,42>
a nif:RFC5147String ;
nif:anchorOf "John"^^xsd:string ;
nif:beginIndex "38"^^xsd:nonNegativeInteger ;
nif:endIndex "42"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/434#char=0,166> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/John_Calipari> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/471#char=485,497>
a nif:RFC5147String ;
nif:anchorOf "Luis Luciano"^^xsd:string ;
nif:beginIndex "485"^^xsd:nonNegativeInteger ;
nif:endIndex "497"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/471#char=0,1000> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Luis_Luciano> .
<http://aksw.org/N3/RSS-500/445#char=101,104>
a nif:RFC5147String ;
nif:anchorOf "LSU"^^xsd:string ;
nif:beginIndex "101"^^xsd:nonNegativeInteger ;
nif:endIndex "104"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/445#char=0,127> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/LSU_Tigers> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/347#char=19,49>
a nif:RFC5147String ;
nif:anchorOf "Athens Regional Medical Center"^^xsd:string ;
nif:beginIndex "19"^^xsd:nonNegativeInteger ;
nif:endIndex "49"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/347#char=0,253> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Athens_Regional_Medical_Center> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/372#char=0,180>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "180"^^xsd:nonNegativeInteger ;
nif:isString "Hu praised Jang for his `` huge amount of work for the friendly relations between China and North Korea as two neighboring countries , '' the official China News Service reported ."@en .
<http://aksw.org/N3/RSS-500/463#char=0,184>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "184"^^xsd:nonNegativeInteger ;
nif:isString "`` The core message -LRB- of the program -RRB- is that it does matter what you say , what you do and how you act , '' said Liza Cordeiro , spokeswoman for the Department of Education ."@en .
<http://aksw.org/N3/RSS-500/444#char=0,134>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "134"^^xsd:nonNegativeInteger ;
nif:isString "All seasonal workers will be on the job by the end of October or the beginning of November , said L.L. Bean spokeswoman Carolyn Beem ."@en .
<http://aksw.org/N3/RSS-500/287#char=0,15>
a nif:RFC5147String ;
nif:anchorOf "Felix Hernandez"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "15"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/287#char=0,171> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/F%C3%A9lix_Hern%C3%A1ndez> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/179#char=27,38>
a nif:RFC5147String ;
nif:anchorOf "Cathy Moses"^^xsd:string ;
nif:beginIndex "27"^^xsd:nonNegativeInteger ;
nif:endIndex "38"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/179#char=0,136> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Cathy_Moses> .
<http://aksw.org/N3/RSS-500/252#char=0,68>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "68"^^xsd:nonNegativeInteger ;
nif:isString "Education Secretary Arne Duncan praised Rhee as a leader of change ."@en .
<http://aksw.org/N3/RSS-500/245#char=40,54>
a nif:RFC5147String ;
nif:anchorOf "Dunkin' Donuts"^^xsd:string ;
nif:beginIndex "40"^^xsd:nonNegativeInteger ;
nif:endIndex "54"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/245#char=0,121> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Dunkin%27_Donuts> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/125#char=0,10>
a nif:RFC5147String ;
nif:anchorOf "California"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "10"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/125#char=0,143> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/California> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/36#char=0,217>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "217"^^xsd:nonNegativeInteger ;
nif:isString "Apple lawyer Bill Lee went after Yang , noting that none of the inventors on the patents testified as part of the trial , and furthermore that Samsung was n't actually using any of the patents in its own smartphones ."@en .
<http://aksw.org/N3/RSS-500/142#char=17,25>
a nif:RFC5147String ;
nif:anchorOf "November"^^xsd:string ;
nif:beginIndex "17"^^xsd:nonNegativeInteger ;
nif:endIndex "25"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/142#char=0,96> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/November> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/395#char=0,151>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "151"^^xsd:nonNegativeInteger ;
nif:isString "`` I just hear you talking out of two sides and I 'm looking for some clarity , '' Jenkins told Tina Bailes , DHHR 's deputy commissioner for finance ."@en .
<http://aksw.org/N3/RSS-500/272#char=22,36>
a nif:RFC5147String ;
nif:anchorOf "Evans Disposal"^^xsd:string ;
nif:beginIndex "22"^^xsd:nonNegativeInteger ;
nif:endIndex "36"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/272#char=0,157> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Evans_Disposal> .
<http://aksw.org/N3/RSS-500/324#char=37,46>
a nif:RFC5147String ;
nif:anchorOf "Hurricane"^^xsd:string ;
nif:beginIndex "37"^^xsd:nonNegativeInteger ;
nif:endIndex "46"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/324#char=0,70> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Hurricane_Redskins> .
<http://aksw.org/N3/RSS-500/420#char=0,109>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "109"^^xsd:nonNegativeInteger ;
nif:isString "Weaver told KHOU reporter Drew Karedes over the telephone that he was worried his stepson was going to snap ."@en .
<http://aksw.org/N3/RSS-500/145#char=110,135>
a nif:RFC5147String ;
nif:anchorOf "Jet Propulsion Laboratory"^^xsd:string ;
nif:beginIndex "110"^^xsd:nonNegativeInteger ;
nif:endIndex "135"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/145#char=0,180> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Jet_Propulsion_Laboratory> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/387#char=0,135>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "135"^^xsd:nonNegativeInteger ;
nif:isString "`` I thought the defeat was unfair , but what was important for me was to evaluate the players , '' Italy coach Cesare Prandelli said ."@en .
<http://aksw.org/N3/RSS-500/188#char=0,14>
a nif:RFC5147String ;
nif:anchorOf "Costa-Castillo"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "14"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/188#char=0,98> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Costa-Castillo> .
<http://aksw.org/N3/RSS-500/96#char=23,38>
a nif:RFC5147String ;
nif:anchorOf "Bobby Valentine"^^xsd:string ;
nif:beginIndex "23"^^xsd:nonNegativeInteger ;
nif:endIndex "38"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/96#char=0,199> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Bobby_Valentine> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/371#char=149,159>
a nif:RFC5147String ;
nif:anchorOf "Hu Zhanfan"^^xsd:string ;
nif:beginIndex "149"^^xsd:nonNegativeInteger ;
nif:endIndex "159"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/371#char=0,204> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Hu_Zhanfan> .
<http://aksw.org/N3/RSS-500/411#char=0,182>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "182"^^xsd:nonNegativeInteger ;
nif:isString "`` It 's a marker for the community , for posterity and tourism , too , '' said Jonelle Kearney , a spokeswoman for Mid-America Asset Management , which manages the shopping center ."@en .
<http://aksw.org/N3/RSS-500/375#char=14,28>
a nif:RFC5147String ;
nif:anchorOf "Bruno Ferrante"^^xsd:string ;
nif:beginIndex "14"^^xsd:nonNegativeInteger ;
nif:endIndex "28"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/375#char=0,153> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Bruno_Ferrante> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/278#char=22,32>
a nif:RFC5147String ;
nif:anchorOf "Jerry Rice"^^xsd:string ;
nif:beginIndex "22"^^xsd:nonNegativeInteger ;
nif:endIndex "32"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/278#char=0,151> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Jerry_Rice> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/216#char=0,8>
a nif:RFC5147String ;
nif:anchorOf "Demailly"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "8"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/216#char=0,201> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Gilles_Demailly> .
<http://aksw.org/N3/RSS-500/234#char=0,6>
a nif:RFC5147String ;
nif:anchorOf "Donnan"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "6"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/234#char=0,187> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Donnan> .
<http://aksw.org/N3/RSS-500/260#char=174,181>
a nif:RFC5147String ;
nif:anchorOf "England"^^xsd:string ;
nif:beginIndex "174"^^xsd:nonNegativeInteger ;
nif:endIndex "181"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/260#char=0,222> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/England_cricket_team> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/364#char=49,57>
a nif:RFC5147String ;
nif:anchorOf "Honolulu"^^xsd:string ;
nif:beginIndex "49"^^xsd:nonNegativeInteger ;
nif:endIndex "57"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/364#char=0,99> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Ralph_Honma> .
<http://aksw.org/N3/RSS-500/145#char=0,180>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "180"^^xsd:nonNegativeInteger ;
nif:isString "`` The team went to the Olympics and we were n't sure what would happen , '' Charles Elachi , director of the Jet Propulsion Laboratory , told the crowd at the Jet Propulsion Lab ."@en .
<http://aksw.org/N3/RSS-500/378#char=0,118>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "118"^^xsd:nonNegativeInteger ;
nif:isString "`` Navy Pier is today 's Ellis Island , '' said Illinois congressman Luis Gutierrez , as a new federal program began ."@en .
<http://aksw.org/N3/RSS-500/154#char=0,17>
a nif:RFC5147String ;
nif:anchorOf "Chicago White Sox"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "17"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/154#char=0,83> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Chicago_White_Sox> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/244#char=0,208>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "208"^^xsd:nonNegativeInteger ;
nif:isString "When Obama and Duncan arrived in Washington , the Harvard-educated , basketball-playing buddies stormed onto the field of education reform like a pair of Chicago Bulls in a china shop , and appropriately so ."@en .
<http://aksw.org/N3/RSS-500/26#char=149,166>
a nif:RFC5147String ;
nif:anchorOf "Andrea Hlavackova"^^xsd:string ;
nif:beginIndex "149"^^xsd:nonNegativeInteger ;
nif:endIndex "166"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/26#char=0,232> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Andrea_Hlav%C3%A1%C4%8Dkov%C3%A1> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/126#char=0,9>
a nif:RFC5147String ;
nif:anchorOf "Callaghan"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "9"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/126#char=0,284> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Callaghan> .
<http://aksw.org/N3/RSS-500/29#char=6,22>
a nif:RFC5147String ;
nif:anchorOf "Angelique Kerber"^^xsd:string ;
nif:beginIndex "6"^^xsd:nonNegativeInteger ;
nif:endIndex "22"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/29#char=0,68> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Angelique_Kerber> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/451#char=62,78>
a nif:RFC5147String ;
nif:anchorOf "Larry Fitzgerald"^^xsd:string ;
nif:beginIndex "62"^^xsd:nonNegativeInteger ;
nif:endIndex "78"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/451#char=0,306> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Larry_Fitzgerald> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/176#char=35,46>
a nif:RFC5147String ;
nif:anchorOf "Brady Smith"^^xsd:string ;
nif:beginIndex "35"^^xsd:nonNegativeInteger ;
nif:endIndex "46"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/176#char=0,118> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Brady_Smith> .
<http://aksw.org/N3/RSS-500/147#char=0,254>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "254"^^xsd:nonNegativeInteger ;
nif:isString "`` He was selected after a six-month national search and brings important experience in strategic planning , museum operations , and capital campaigns , '' Charles J. Micoleau , chairman of the Maine State Museum Commission , said in a statement Monday ."@en .
<http://aksw.org/N3/RSS-500/340#char=51,58>
a nif:RFC5147String ;
nif:anchorOf "Hampden"^^xsd:string ;
nif:beginIndex "51"^^xsd:nonNegativeInteger ;
nif:endIndex "58"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/340#char=0,85> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Hampden_Academy> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/60#char=0,80>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "80"^^xsd:nonNegativeInteger ;
nif:isString "Baffert won the Haskell with Coil last year , and with Lookin At Lucky in 2010 ."@en .
<http://aksw.org/N3/RSS-500/44#char=0,74>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "74"^^xsd:nonNegativeInteger ;
nif:isString "Associated Press writer David Runk in Detroit contributed to this report ."@en .
<http://aksw.org/N3/RSS-500/416#char=0,128>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "128"^^xsd:nonNegativeInteger ;
nif:isString "That happened at a recent appraisal session with David McCarron at Judy Frankel Antiques , part of the Antiques Centre of Troy ."@en .
<http://aksw.org/N3/RSS-500/345#char=168,180>
a nif:RFC5147String ;
nif:anchorOf "Hassan Jaber"^^xsd:string ;
nif:beginIndex "168"^^xsd:nonNegativeInteger ;
nif:endIndex "180"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/345#char=0,213> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Hassan_Jaber> .
<http://aksw.org/N3/RSS-500/469#char=0,131>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "131"^^xsd:nonNegativeInteger ;
nif:isString "What you see is just a very small part of what it 's all about , '' said Louis Zona , executive director of the Butler Art Museum ."@en .
<http://aksw.org/N3/RSS-500/78#char=135,156>
a nif:RFC5147String ;
nif:anchorOf "Mohr Davidow Ventures"^^xsd:string ;
nif:beginIndex "135"^^xsd:nonNegativeInteger ;
nif:endIndex "156"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/78#char=0,324> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Mohr_Davidow_Ventures> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/243#char=68,75>
a nif:RFC5147String ;
nif:anchorOf "Detroit"^^xsd:string ;
nif:beginIndex "68"^^xsd:nonNegativeInteger ;
nif:endIndex "75"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/243#char=0,172> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Detroit> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/345#char=205,211>
a nif:RFC5147String ;
nif:anchorOf "ACCESS"^^xsd:string ;
nif:beginIndex "205"^^xsd:nonNegativeInteger ;
nif:endIndex "211"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/345#char=0,213> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Arab_Community_Center_for_Economic_and_Social_Services> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/469#char=112,129>
a nif:RFC5147String ;
nif:anchorOf "Butler Art Museum"^^xsd:string ;
nif:beginIndex "112"^^xsd:nonNegativeInteger ;
nif:endIndex "129"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/469#char=0,131> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Butler_Art_Museum> .
<http://aksw.org/N3/RSS-500/435#char=66,79>
a nif:RFC5147String ;
nif:anchorOf "Henry Kennedy"^^xsd:string ;
nif:beginIndex "66"^^xsd:nonNegativeInteger ;
nif:endIndex "79"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/435#char=0,156> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Henry_H._Kennedy,_Jr.> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/223#char=134,155>
a nif:RFC5147String ;
nif:anchorOf "Development Authority"^^xsd:string ;
nif:beginIndex "134"^^xsd:nonNegativeInteger ;
nif:endIndex "155"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/223#char=0,411> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Development_Authority> .
<http://aksw.org/N3/RSS-500/298#char=34,45>
a nif:RFC5147String ;
nif:anchorOf "Rico Brogna"^^xsd:string ;
nif:beginIndex "34"^^xsd:nonNegativeInteger ;
nif:endIndex "45"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/298#char=0,189> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Rico_Brogna> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/98#char=0,79>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "79"^^xsd:nonNegativeInteger ;
nif:isString "Boston manager Bobby Valentine said simply , `` Kelly was claimed by the Mets ."@en .
<http://aksw.org/N3/RSS-500/205#char=163,176>
a nif:RFC5147String ;
nif:anchorOf "Darryl Larson"^^xsd:string ;
nif:beginIndex "163"^^xsd:nonNegativeInteger ;
nif:endIndex "176"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/205#char=0,271> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Darryl_Larson> .
<http://aksw.org/N3/RSS-500/257#char=0,191>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "191"^^xsd:nonNegativeInteger ;
nif:isString "South Africa completed a good morning 's work when Morne Morkel bowled England captain Andrew Strauss off the last ball before lunch on the second day of the third Test at Lord 's yesterday ."@en .
<http://aksw.org/N3/RSS-500/297#char=0,176>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "176"^^xsd:nonNegativeInteger ;
nif:isString "`` The brief stay in New York is purely a transit , '' Ministry of Foreign Affairs spokesman Steve Hsia -LRB- 夏季昌 -RRB- said , in an apparent bid to keep the trip low profile ."@en .
<http://aksw.org/N3/RSS-500/154#char=0,83>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "83"^^xsd:nonNegativeInteger ;
nif:isString "Chicago White Sox third baseman Kevin Youkilis is coming back to Boston a new man ."@en .
<http://aksw.org/N3/RSS-500/418#char=106,120>
a nif:RFC5147String ;
nif:anchorOf "Justin Draeger"^^xsd:string ;
nif:beginIndex "106"^^xsd:nonNegativeInteger ;
nif:endIndex "120"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/418#char=0,202> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Justin_Draeger> .
<http://aksw.org/N3/RSS-500/19#char=0,14>
a nif:RFC5147String ;
nif:anchorOf "Alexandru Ivan"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "14"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/19#char=0,71> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Alexandru_Ivan> .
<http://aksw.org/N3/RSS-500/268#char=95,102>
a nif:RFC5147String ;
nif:anchorOf "Erskine"^^xsd:string ;
nif:beginIndex "95"^^xsd:nonNegativeInteger ;
nif:endIndex "102"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/268#char=0,129> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Erskine> .
<http://aksw.org/N3/RSS-500/306#char=0,154>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "154"^^xsd:nonNegativeInteger ;
nif:isString "The last time two riders from the same nation finished first and second in the Tour was in 1984 , when Frenchman Laurent Fignon defeated Bernard Hinault ."@en .
<http://aksw.org/N3/RSS-500/191#char=67,96>
a nif:RFC5147String ;
nif:anchorOf "Rangeley Lakes Heritage Trust"^^xsd:string ;
nif:beginIndex "67"^^xsd:nonNegativeInteger ;
nif:endIndex "96"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/191#char=0,98> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Rangeley_Lakes_Heritage_Trust> .
<http://aksw.org/N3/RSS-500/333#char=0,8>
a nif:RFC5147String ;
nif:anchorOf "Gonzalez"^^xsd:string ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "8"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/333#char=0,131> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Gio_Gonzalez> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/415#char=0,290>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "290"^^xsd:nonNegativeInteger ;
nif:isString "`` The good news is that despite the challenging economic and political environment , the clean energy industry is still creating badly needed American jobs all across the country , '' Judith Albert , executive director of Environmental Entrepreneurs , said in a conference call Wednesday ."@en .
<http://aksw.org/N3/RSS-500/22#char=0,86>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "86"^^xsd:nonNegativeInteger ;
nif:isString "Blue Origin , a Kent , Wash.-based start-up , is backed by Amazon founder Jeff Bezos ."@en .
<http://aksw.org/N3/RSS-500/459#char=0,50>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "50"^^xsd:nonNegativeInteger ;
nif:isString "Word had just come that Liddell died in February ."@en .
itsrdf:taIdentRef
a owl:DatatypeProperty .
<http://aksw.org/N3/RSS-500/184#char=22,28>
a nif:RFC5147String ;
nif:anchorOf "Conway"^^xsd:string ;
nif:beginIndex "22"^^xsd:nonNegativeInteger ;
nif:endIndex "28"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/184#char=0,67> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Conway,_Arkansas> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/117#char=32,46>
a nif:RFC5147String ;
nif:anchorOf "Leslie Moonves"^^xsd:string ;
nif:beginIndex "32"^^xsd:nonNegativeInteger ;
nif:endIndex "46"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/117#char=0,128> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/Leslie_Moonves> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/314#char=65,80>
a nif:RFC5147String ;
nif:anchorOf "Rep. John Adams"^^xsd:string ;
nif:beginIndex "65"^^xsd:nonNegativeInteger ;
nif:endIndex "80"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/314#char=0,119> ;
itsrdf:taIdentRef <http://dbpedia.org/resource/John_Adams> ;
itsrdf:taSource "DBpedia_en_3.9"^^xsd:string .
<http://aksw.org/N3/RSS-500/117#char=0,128>
a nif:String , nif:Context , nif:RFC5147String ;
nif:beginIndex "0"^^xsd:nonNegativeInteger ;
nif:endIndex "128"^^xsd:nonNegativeInteger ;
nif:isString "The next call went to CBS chief Leslie Moonves , `` to make sure he was OK with Jay being on our network during the Super Bowl ."@en .
<http://aksw.org/N3/RSS-500/238#char=44,51>
a nif:RFC5147String ;
nif:anchorOf "Kanawha"^^xsd:string ;
nif:beginIndex "44"^^xsd:nonNegativeInteger ;
nif:endIndex "51"^^xsd:nonNegativeInteger ;
nif:referenceContext
<http://aksw.org/N3/RSS-500/238#char=0,136> ;
itsrdf:taIdentRef <http://aksw.org/notInWiki/Kanawha-Charleston_Health_Department> .
<http://aksw.org/N3/RSS-500/393#char=39,49>
a nif:RFC5147String ;