-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntity_testdata3.sql
822 lines (809 loc) · 46.6 KB
/
Entity_testdata3.sql
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
-- phpMyAdmin SQL Dump
-- version 4.4.15.5
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Sep 27, 2016 at 11:47 AM
-- Server version: 5.6.30
-- PHP Version: 5.5.35
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `bookstore`
--
-- --------------------------------------------------------
--
-- Table structure for table `Entity`
--
CREATE TABLE IF NOT EXISTS `Entity` (
`ID` bigint(20) unsigned NOT NULL,
`EntityID` text NOT NULL,
`Class` text NOT NULL,
`Type` text NOT NULL,
`Caption` text NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=759 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `Entity`
--
INSERT INTO `Entity` (`ID`, `EntityID`, `Class`, `Type`, `Caption`) VALUES
(1, 'P1', 'Node', 'Publication', 'A fuzzy rule-based colour image segmentation algorithm.'),
(2, 'A1', 'Node', 'Author', 'Laurence Dooley'),
(3, 'E1', 'Edge', 'DirectedLink', 'authored by'),
(4, 'A2', 'Node', 'Author', 'Gour C. Karmakar'),
(5, 'E2', 'Edge', 'DirectedLink', 'authored by'),
(6, 'A3', 'Node', 'Author', 'M. Manzur Murshed'),
(7, 'E3', 'Edge', 'DirectedLink', 'authored by'),
(8, 'P2', 'Node', 'Publication', 'Semi-supervised learning for the identification of syn-expressed genes from fused microarray and in situ image data.'),
(9, 'A4', 'Node', 'Author', 'Ivan G. Costa'),
(10, 'E4', 'Edge', 'DirectedLink', 'authored by'),
(11, 'A5', 'Node', 'Author', 'Roland Krause'),
(12, 'E5', 'Edge', 'DirectedLink', 'authored by'),
(13, 'A6', 'Node', 'Author', 'Lennart Opitz'),
(14, 'E6', 'Edge', 'DirectedLink', 'authored by'),
(15, 'A7', 'Node', 'Author', 'Alexander Schliep'),
(16, 'E7', 'Edge', 'DirectedLink', 'authored by'),
(17, 'V1', 'Node', 'Venue', 'BMC Bioinformatics'),
(18, 'E8', 'Edge', 'DirectedLink', 'published in'),
(19, 'P3', 'Node', 'Publication', 'Optical Wireless Audio Communication Using LED Lighting System.'),
(20, 'A8', 'Node', 'Author', 'Shanthi Prince'),
(21, 'E9', 'Edge', 'DirectedLink', 'authored by'),
(22, 'A9', 'Node', 'Author', 'A. M. Vibin'),
(23, 'E10', 'Edge', 'DirectedLink', 'authored by'),
(24, 'V2', 'Node', 'Venue', 'Wireless Personal Communications'),
(25, 'E11', 'Edge', 'DirectedLink', 'published in'),
(26, 'P4', 'Node', 'Publication', 'Relevant Past Performance for Selecting Web Services.'),
(27, 'A10', 'Node', 'Author', 'Wanita Sherchan'),
(28, 'E12', 'Edge', 'DirectedLink', 'authored by'),
(29, 'A11', 'Node', 'Author', 'Shonali Krishnaswamy'),
(30, 'E13', 'Edge', 'DirectedLink', 'authored by'),
(31, 'A12', 'Node', 'Author', 'Seng Wai Loke'),
(32, 'E14', 'Edge', 'DirectedLink', 'authored by'),
(33, 'P5', 'Node', 'Publication', 'Optimization Techniques: Modeling and Optimization in the Service of Man, Part 2 - Proceedings, 7th IFIP Conference, Nice, September 8-12, 1975'),
(34, 'A13', 'Node', 'Author', 'Jean Cea'),
(35, 'E15', 'Edge', 'DirectedLink', 'edited by'),
(36, 'P6', 'Node', 'Publication', 'Discrimination and calibration of mortality risk prediction models in interventional cardiology.'),
(37, 'A14', 'Node', 'Author', 'Michael E. Matheny'),
(38, 'E16', 'Edge', 'DirectedLink', 'authored by'),
(39, 'A15', 'Node', 'Author', 'Lucila Ohno-Machado'),
(40, 'E17', 'Edge', 'DirectedLink', 'authored by'),
(41, 'A16', 'Node', 'Author', 'Frederic S. Resnic'),
(42, 'E18', 'Edge', 'DirectedLink', 'authored by'),
(43, 'V3', 'Node', 'Venue', 'Journal of Biomedical Informatics'),
(44, 'E19', 'Edge', 'DirectedLink', 'published in'),
(45, 'P7', 'Node', 'Publication', 'Maximum Induced Matchings of Random Regular Graphs.'),
(46, 'A17', 'Node', 'Author', 'Hilda Assiyatun'),
(47, 'E20', 'Edge', 'DirectedLink', 'authored by'),
(48, 'P8', 'Node', 'Publication', 'Caging Polygons with Two and Three Fingers.'),
(49, 'A18', 'Node', 'Author', 'Mostafa Vahedi'),
(50, 'E21', 'Edge', 'DirectedLink', 'authored by'),
(51, 'A19', 'Node', 'Author', 'A. Frank van der Stappen'),
(52, 'E22', 'Edge', 'DirectedLink', 'authored by'),
(53, 'P9', 'Node', 'Publication', 'Test Time Analysis for IEEE P1687.'),
(54, 'A20', 'Node', 'Author', 'Farrokh Ghani Zadegan'),
(55, 'E23', 'Edge', 'DirectedLink', 'authored by'),
(56, 'A21', 'Node', 'Author', 'Urban Ingelsson'),
(57, 'E24', 'Edge', 'DirectedLink', 'authored by'),
(58, 'A22', 'Node', 'Author', 'Gunnar Carlsson'),
(59, 'E25', 'Edge', 'DirectedLink', 'authored by'),
(60, 'A23', 'Node', 'Author', 'Erik Larsson'),
(61, 'E26', 'Edge', 'DirectedLink', 'authored by'),
(62, 'P10', 'Node', 'Publication', 'Composing dataflow analyses and transformations.'),
(63, 'A24', 'Node', 'Author', 'Sorin Lerner'),
(64, 'E27', 'Edge', 'DirectedLink', 'authored by'),
(65, 'A25', 'Node', 'Author', 'David Grove'),
(66, 'E28', 'Edge', 'DirectedLink', 'authored by'),
(67, 'A26', 'Node', 'Author', 'Craig Chambers'),
(68, 'E29', 'Edge', 'DirectedLink', 'authored by'),
(69, 'P11', 'Node', 'Publication', 'Map-Based Transparent Persistence for Very Large Models.'),
(70, 'A27', 'Node', 'Author', 'Abel Gómez'),
(71, 'E30', 'Edge', 'DirectedLink', 'authored by'),
(72, 'A28', 'Node', 'Author', 'Massimo Tisi'),
(73, 'E31', 'Edge', 'DirectedLink', 'authored by'),
(74, 'A29', 'Node', 'Author', 'Gerson Sunyé'),
(75, 'E32', 'Edge', 'DirectedLink', 'authored by'),
(76, 'A30', 'Node', 'Author', 'Jordi Cabot'),
(77, 'E33', 'Edge', 'DirectedLink', 'authored by'),
(78, 'P12', 'Node', 'Publication', 'Distributed SociaLite: A Datalog-Based Language for Large-Scale Graph Analysis.'),
(79, 'A31', 'Node', 'Author', 'Jiwon Seo'),
(80, 'E34', 'Edge', 'DirectedLink', 'authored by'),
(81, 'A32', 'Node', 'Author', 'Jongsoo Park'),
(82, 'E35', 'Edge', 'DirectedLink', 'authored by'),
(83, 'A33', 'Node', 'Author', 'Jaeho Shin 0001'),
(84, 'E36', 'Edge', 'DirectedLink', 'authored by'),
(85, 'A34', 'Node', 'Author', 'Monica S. Lam'),
(86, 'E37', 'Edge', 'DirectedLink', 'authored by'),
(87, 'V4', 'Node', 'Venue', 'PVLDB'),
(88, 'E38', 'Edge', 'DirectedLink', 'published in'),
(89, 'P13', 'Node', 'Publication', 'Soundness and Completeness of the Birkhoff Equational Calculus for Many-Sorted Algebras with Possibly Empty Carrier Sets.'),
(90, 'A35', 'Node', 'Author', 'Vincenzo Manca'),
(91, 'E39', 'Edge', 'DirectedLink', 'authored by'),
(92, 'A36', 'Node', 'Author', 'Antonino Salibra'),
(93, 'E40', 'Edge', 'DirectedLink', 'authored by'),
(94, 'V5', 'Node', 'Venue', 'Theor. Comput. Sci.'),
(95, 'E41', 'Edge', 'DirectedLink', 'published in'),
(96, 'P14', 'Node', 'Publication', 'Providing Context-Sensitive Access to the Earth Observation Product Library.'),
(97, 'A37', 'Node', 'Author', 'Stephan Kiemle'),
(98, 'E42', 'Edge', 'DirectedLink', 'authored by'),
(99, 'A38', 'Node', 'Author', 'Burkhard Freitag'),
(100, 'E43', 'Edge', 'DirectedLink', 'authored by'),
(101, 'P15', 'Node', 'Publication', 'Non-parametric Density Modeling and Outlier-Detection in Medical Imaging Datasets.'),
(102, 'A39', 'Node', 'Author', 'Virgile Fritsch'),
(103, 'E44', 'Edge', 'DirectedLink', 'authored by'),
(104, 'A40', 'Node', 'Author', 'Gaël Varoquaux'),
(105, 'E45', 'Edge', 'DirectedLink', 'authored by'),
(106, 'A41', 'Node', 'Author', 'Jean-Baptiste Poline'),
(107, 'E46', 'Edge', 'DirectedLink', 'authored by'),
(108, 'A42', 'Node', 'Author', 'Bertrand Thirion'),
(109, 'E47', 'Edge', 'DirectedLink', 'authored by'),
(110, 'P16', 'Node', 'Publication', 'UX Heatmaps: Mapping User Experience on Visual Interfaces.'),
(111, 'A43', 'Node', 'Author', 'Vanessa Georges'),
(112, 'E48', 'Edge', 'DirectedLink', 'authored by'),
(113, 'A44', 'Node', 'Author', 'François Courtemanche'),
(114, 'E49', 'Edge', 'DirectedLink', 'authored by'),
(115, 'A45', 'Node', 'Author', 'Sylvain Senecal'),
(116, 'E50', 'Edge', 'DirectedLink', 'authored by'),
(117, 'A46', 'Node', 'Author', 'Thierry Baccino'),
(118, 'E51', 'Edge', 'DirectedLink', 'authored by'),
(119, 'A47', 'Node', 'Author', 'Marc Fredette'),
(120, 'E52', 'Edge', 'DirectedLink', 'authored by'),
(121, 'A48', 'Node', 'Author', 'Pierre-Majorique Léger'),
(122, 'E53', 'Edge', 'DirectedLink', 'authored by'),
(123, 'P17', 'Node', 'Publication', 'Extraction de motifs séquentiels contextuels.'),
(124, 'A49', 'Node', 'Author', 'Julien Rabatel'),
(125, 'E54', 'Edge', 'DirectedLink', 'authored by'),
(126, 'A50', 'Node', 'Author', 'Sandra Bringay'),
(127, 'E55', 'Edge', 'DirectedLink', 'authored by'),
(128, 'P18', 'Node', 'Publication', 'A dynamic programming approach to optimal retargetable code generation for irregular architectures.'),
(129, 'S1', 'Node', 'School', 'Universität Linköping'),
(130, 'A51', 'Node', 'Author', 'Andrzej Bednarski'),
(131, 'E56', 'Edge', 'DirectedLink', 'authored by'),
(132, 'E57', 'Edge', 'DirectedLink', 'affiliated in'),
(133, 'P19', 'Node', 'Publication', 'On the degree of piecewise shape-preserving approximation by polynomials.'),
(134, 'A52', 'Node', 'Author', 'O. V. Vlasiuk'),
(135, 'E58', 'Edge', 'DirectedLink', 'authored by'),
(136, 'V6', 'Node', 'Venue', 'Journal of Approximation Theory'),
(137, 'E59', 'Edge', 'DirectedLink', 'published in'),
(138, 'P20', 'Node', 'Publication', 'A Novel Use of Hyperspectral Images for Human Brain Cancer Detection using in-Vivo Samples.'),
(139, 'A53', 'Node', 'Author', 'Himar Fabelo'),
(140, 'E60', 'Edge', 'DirectedLink', 'authored by'),
(141, 'A54', 'Node', 'Author', 'Samuel Ortega'),
(142, 'E61', 'Edge', 'DirectedLink', 'authored by'),
(143, 'A55', 'Node', 'Author', 'Raùl Guerra'),
(144, 'E62', 'Edge', 'DirectedLink', 'authored by'),
(145, 'A56', 'Node', 'Author', 'Gustavo Marrero Callicó'),
(146, 'E63', 'Edge', 'DirectedLink', 'authored by'),
(147, 'A57', 'Node', 'Author', 'Adam Szolna'),
(148, 'E64', 'Edge', 'DirectedLink', 'authored by'),
(149, 'A58', 'Node', 'Author', 'Juan F. Piñeiro'),
(150, 'E65', 'Edge', 'DirectedLink', 'authored by'),
(151, 'A59', 'Node', 'Author', 'Miguel Tejedor'),
(152, 'E66', 'Edge', 'DirectedLink', 'authored by'),
(153, 'A60', 'Node', 'Author', 'Sebastián López'),
(154, 'E67', 'Edge', 'DirectedLink', 'authored by'),
(155, 'A61', 'Node', 'Author', 'Roberto Sarmiento'),
(156, 'E68', 'Edge', 'DirectedLink', 'authored by'),
(157, 'P21', 'Node', 'Publication', 'Building a Results Review System: A Critical First Step in Transitioning from Paper Medical Records.'),
(158, 'A62', 'Node', 'Author', 'Wayne Wilbright'),
(159, 'E69', 'Edge', 'DirectedLink', 'authored by'),
(160, 'A63', 'Node', 'Author', 'Robert Marier'),
(161, 'E70', 'Edge', 'DirectedLink', 'authored by'),
(162, 'A64', 'Node', 'Author', 'Amir Abrams'),
(163, 'E71', 'Edge', 'DirectedLink', 'authored by'),
(164, 'A65', 'Node', 'Author', 'Luis Smith'),
(165, 'E72', 'Edge', 'DirectedLink', 'authored by'),
(166, 'A66', 'Node', 'Author', 'Duc Tran'),
(167, 'E73', 'Edge', 'DirectedLink', 'authored by'),
(168, 'A67', 'Node', 'Author', 'Alan Thriffiley Jr.'),
(169, 'E74', 'Edge', 'DirectedLink', 'authored by'),
(170, 'A68', 'Node', 'Author', 'Michael K. Butler'),
(171, 'E75', 'Edge', 'DirectedLink', 'authored by'),
(172, 'A69', 'Node', 'Author', 'Elmore Rigamer'),
(173, 'E76', 'Edge', 'DirectedLink', 'authored by'),
(174, 'A70', 'Node', 'Author', 'Clayton Williams'),
(175, 'E77', 'Edge', 'DirectedLink', 'authored by'),
(176, 'A71', 'Node', 'Author', 'Robert Post'),
(177, 'E78', 'Edge', 'DirectedLink', 'authored by'),
(178, 'P22', 'Node', 'Publication', 'Adaptive Learning and Control for MIMO System Based on Adaptive Dynamic Programming.'),
(179, 'A72', 'Node', 'Author', 'J. Fu'),
(180, 'E79', 'Edge', 'DirectedLink', 'authored by'),
(181, 'A73', 'Node', 'Author', 'H. He'),
(182, 'E80', 'Edge', 'DirectedLink', 'authored by'),
(183, 'A74', 'Node', 'Author', 'X. Zhou'),
(184, 'E81', 'Edge', 'DirectedLink', 'authored by'),
(185, 'V7', 'Node', 'Venue', 'IEEE Trans. Neural Networks'),
(186, 'E82', 'Edge', 'DirectedLink', 'published in'),
(187, 'P23', 'Node', 'Publication', 'Smartlow-cost weather sensor as an example for ''multi-component'' sensors.'),
(188, 'A75', 'Node', 'Author', 'Heinrich Ruser'),
(189, 'E83', 'Edge', 'DirectedLink', 'authored by'),
(190, 'P24', 'Node', 'Publication', 'The intersection problem for PBD(5*, 3)s.'),
(191, 'A76', 'Node', 'Author', 'Selda Küçükçifçi'),
(192, 'E84', 'Edge', 'DirectedLink', 'authored by'),
(193, 'V8', 'Node', 'Venue', 'Discrete Mathematics'),
(194, 'E85', 'Edge', 'DirectedLink', 'published in'),
(195, 'P25', 'Node', 'Publication', 'Reachability and controllability of a particle in a dielectrophoretic system.'),
(196, 'A77', 'Node', 'Author', 'Harsha Simha'),
(197, 'E86', 'Edge', 'DirectedLink', 'authored by'),
(198, 'A78', 'Node', 'Author', 'Ravi N. Banavar'),
(199, 'E87', 'Edge', 'DirectedLink', 'authored by'),
(200, 'A79', 'Node', 'Author', 'Dong Eui Chang'),
(201, 'E88', 'Edge', 'DirectedLink', 'authored by'),
(202, 'P26', 'Node', 'Publication', 'Functional test generation for path delay faults.'),
(203, 'A80', 'Node', 'Author', 'Mandyam-Komar Srinivas'),
(204, 'E89', 'Edge', 'DirectedLink', 'authored by'),
(205, 'A81', 'Node', 'Author', 'Vishwani D. Agrawal'),
(206, 'E90', 'Edge', 'DirectedLink', 'authored by'),
(207, 'A82', 'Node', 'Author', 'Michael L. Bushnell'),
(208, 'E91', 'Edge', 'DirectedLink', 'authored by'),
(209, 'P27', 'Node', 'Publication', 'Playback delay in mesh-based Peer-to-Peer systems with random packet forwarding and transmission capacity limitations.'),
(210, 'A83', 'Node', 'Author', 'Viktória Fodor'),
(211, 'E92', 'Edge', 'DirectedLink', 'authored by'),
(212, 'A84', 'Node', 'Author', 'Ilias Chatzidrossos'),
(213, 'E93', 'Edge', 'DirectedLink', 'authored by'),
(214, 'V9', 'Node', 'Venue', 'IJIPT'),
(215, 'E94', 'Edge', 'DirectedLink', 'published in'),
(216, 'P28', 'Node', 'Publication', 'Conceptualizing Information Systems: from ''Input-Processing-output'' Devices to Sociomaterial Apparatuses.'),
(217, 'A85', 'Node', 'Author', 'Sebastian K. Boell'),
(218, 'E95', 'Edge', 'DirectedLink', 'authored by'),
(219, 'A86', 'Node', 'Author', 'Dubravka Cecez-Kecmanovic'),
(220, 'E96', 'Edge', 'DirectedLink', 'authored by'),
(221, 'P29', 'Node', 'Publication', 'Nonlinear analysis of electromyogram following gait training with myoelectrically triggered neuromuscular electrical stimulation in stroke survivors.'),
(222, 'A87', 'Node', 'Author', 'Anirban Dutta'),
(223, 'E97', 'Edge', 'DirectedLink', 'authored by'),
(224, 'A88', 'Node', 'Author', 'Bhawna Khattar'),
(225, 'E98', 'Edge', 'DirectedLink', 'authored by'),
(226, 'A89', 'Node', 'Author', 'Alakananda Banerjee'),
(227, 'E99', 'Edge', 'DirectedLink', 'authored by'),
(228, 'V10', 'Node', 'Venue', 'EURASIP J. Adv. Sig. Proc.'),
(229, 'E100', 'Edge', 'DirectedLink', 'published in'),
(230, 'P30', 'Node', 'Publication', 'Least square method for the calculation of elastic constants.'),
(231, 'A90', 'Node', 'Author', 'Jun Li 0002'),
(232, 'E101', 'Edge', 'DirectedLink', 'authored by'),
(233, 'A91', 'Node', 'Author', 'Yi Sun'),
(234, 'E102', 'Edge', 'DirectedLink', 'authored by'),
(235, 'A92', 'Node', 'Author', 'Zhiwei Cui'),
(236, 'E103', 'Edge', 'DirectedLink', 'authored by'),
(237, 'A93', 'Node', 'Author', 'Fanlin Zeng'),
(238, 'E104', 'Edge', 'DirectedLink', 'authored by'),
(239, 'V11', 'Node', 'Venue', 'Computer Physics Communications'),
(240, 'E105', 'Edge', 'DirectedLink', 'published in'),
(241, 'P31', 'Node', 'Publication', 'Elemental Design Patterns Recognition In Java.'),
(242, 'A94', 'Node', 'Author', 'Francesca Arcelli Fontana'),
(243, 'E106', 'Edge', 'DirectedLink', 'authored by'),
(244, 'A95', 'Node', 'Author', 'Stefano Masiero'),
(245, 'E107', 'Edge', 'DirectedLink', 'authored by'),
(246, 'A96', 'Node', 'Author', 'Claudia Raibulet'),
(247, 'E108', 'Edge', 'DirectedLink', 'authored by'),
(248, 'P32', 'Node', 'Publication', 'Remote Awareness of Complicated Pattern Group in Ubiquitous Collaborative Graphics Editing Systems.'),
(249, 'A97', 'Node', 'Author', 'Bo Jiang'),
(250, 'E109', 'Edge', 'DirectedLink', 'authored by'),
(251, 'A98', 'Node', 'Author', 'Guozheng Wang'),
(252, 'E110', 'Edge', 'DirectedLink', 'authored by'),
(253, 'P33', 'Node', 'Publication', 'SLEUTH: Single-pubLisher attack dEtection Using correlaTion Hunting.'),
(254, 'A99', 'Node', 'Author', 'Ahmed Metwally'),
(255, 'E111', 'Edge', 'DirectedLink', 'authored by'),
(256, 'A100', 'Node', 'Author', 'Fatih Emekçi'),
(257, 'E112', 'Edge', 'DirectedLink', 'authored by'),
(258, 'A101', 'Node', 'Author', 'Divyakant Agrawal'),
(259, 'E113', 'Edge', 'DirectedLink', 'authored by'),
(260, 'A102', 'Node', 'Author', 'Amr El Abbadi'),
(261, 'E114', 'Edge', 'DirectedLink', 'authored by'),
(262, 'E115', 'Edge', 'DirectedLink', 'published in'),
(263, 'P34', 'Node', 'Publication', 'Impact of rate control on the capacity of an Iub link: single service case.'),
(264, 'A103', 'Node', 'Author', 'Cem Uygur Saraydar'),
(265, 'E116', 'Edge', 'DirectedLink', 'authored by'),
(266, 'A104', 'Node', 'Author', 'Santosh Paul Abraham'),
(267, 'E117', 'Edge', 'DirectedLink', 'authored by'),
(268, 'A105', 'Node', 'Author', 'Mooi Choo Chuah'),
(269, 'E118', 'Edge', 'DirectedLink', 'authored by'),
(270, 'A106', 'Node', 'Author', 'Ashwin Sampath'),
(271, 'E119', 'Edge', 'DirectedLink', 'authored by'),
(272, 'P35', 'Node', 'Publication', 'Corrigendum to "Can sliding-window correlations reveal dynamic functional connectivity in resting-state fMRI?" [NeuroImage 127 (2016) 242-256].'),
(273, 'A107', 'Node', 'Author', 'Rikkert Hindriks'),
(274, 'E120', 'Edge', 'DirectedLink', 'authored by'),
(275, 'A108', 'Node', 'Author', 'M. H. Adhikari'),
(276, 'E121', 'Edge', 'DirectedLink', 'authored by'),
(277, 'A109', 'Node', 'Author', 'Yusuke Murayama'),
(278, 'E122', 'Edge', 'DirectedLink', 'authored by'),
(279, 'A110', 'Node', 'Author', 'Marco Ganzetti'),
(280, 'E123', 'Edge', 'DirectedLink', 'authored by'),
(281, 'A111', 'Node', 'Author', 'Dante Mantini'),
(282, 'E124', 'Edge', 'DirectedLink', 'authored by'),
(283, 'A112', 'Node', 'Author', 'Nikos K. Logothetis'),
(284, 'E125', 'Edge', 'DirectedLink', 'authored by'),
(285, 'A113', 'Node', 'Author', 'Gustavo Deco'),
(286, 'E126', 'Edge', 'DirectedLink', 'authored by'),
(287, 'V12', 'Node', 'Venue', 'NeuroImage'),
(288, 'E127', 'Edge', 'DirectedLink', 'published in'),
(289, 'P36', 'Node', 'Publication', 'Economic Measures of Transaction Processing Performance.'),
(290, 'A114', 'Node', 'Author', 'James P. Bouhana'),
(291, 'E128', 'Edge', 'DirectedLink', 'authored by'),
(292, 'P37', 'Node', 'Publication', 'The intelligent street: responsive sound environments for social interaction.'),
(293, 'A115', 'Node', 'Author', 'Henrik Lörstad'),
(294, 'E129', 'Edge', 'DirectedLink', 'authored by'),
(295, 'A116', 'Node', 'Author', 'Mark d''Inverno'),
(296, 'E130', 'Edge', 'DirectedLink', 'authored by'),
(297, 'A117', 'Node', 'Author', 'John Eacott'),
(298, 'E131', 'Edge', 'DirectedLink', 'authored by'),
(299, 'P38', 'Node', 'Publication', 'Stochastic Modeling of Mouse Motor Activity under Deep Brain Stimulation: The Extraction of Arousal Information.'),
(300, 'A118', 'Node', 'Author', 'Daniel M. Keenan'),
(301, 'E132', 'Edge', 'DirectedLink', 'authored by'),
(302, 'A119', 'Node', 'Author', 'Amy W. Quinkert'),
(303, 'E133', 'Edge', 'DirectedLink', 'authored by'),
(304, 'A120', 'Node', 'Author', 'Donald W. Pfaff'),
(305, 'E134', 'Edge', 'DirectedLink', 'authored by'),
(306, 'V13', 'Node', 'Venue', 'PLoS Computational Biology'),
(307, 'E135', 'Edge', 'DirectedLink', 'published in'),
(308, 'P39', 'Node', 'Publication', 'Pitfalls of information technology management systems.'),
(309, 'A121', 'Node', 'Author', 'Raj Siriram'),
(310, 'E136', 'Edge', 'DirectedLink', 'authored by'),
(311, 'P40', 'Node', 'Publication', 'A Simulated Annealing Enhancement of the Best-Fit Heuristic for the Orthogonal Stock-Cutting Problem.'),
(312, 'A122', 'Node', 'Author', 'Edmund K. Burke'),
(313, 'E137', 'Edge', 'DirectedLink', 'authored by'),
(314, 'A123', 'Node', 'Author', 'Graham Kendall'),
(315, 'E138', 'Edge', 'DirectedLink', 'authored by'),
(316, 'A124', 'Node', 'Author', 'Glenn Whitwell'),
(317, 'E139', 'Edge', 'DirectedLink', 'authored by'),
(318, 'V14', 'Node', 'Venue', 'INFORMS Journal on Computing'),
(319, 'E140', 'Edge', 'DirectedLink', 'published in'),
(320, 'P41', 'Node', 'Publication', 'A Framework for dynamic and on-demand QoS to Videoconference Session.'),
(321, 'A125', 'Node', 'Author', 'Christos Bouras'),
(322, 'E141', 'Edge', 'DirectedLink', 'authored by'),
(323, 'A126', 'Node', 'Author', 'Apostolos Gkamas'),
(324, 'E142', 'Edge', 'DirectedLink', 'authored by'),
(325, 'A127', 'Node', 'Author', 'Dimitris Primpas'),
(326, 'E143', 'Edge', 'DirectedLink', 'authored by'),
(327, 'P42', 'Node', 'Publication', 'Kernel Density Estimation for Text-Based Geolocation.'),
(328, 'A128', 'Node', 'Author', 'Mans Hulden'),
(329, 'E144', 'Edge', 'DirectedLink', 'authored by'),
(330, 'A129', 'Node', 'Author', 'Miikka Silfverberg'),
(331, 'E145', 'Edge', 'DirectedLink', 'authored by'),
(332, 'A130', 'Node', 'Author', 'Jerid Francom'),
(333, 'E146', 'Edge', 'DirectedLink', 'authored by'),
(334, 'P43', 'Node', 'Publication', 'Balanced website design - optimising aesthetics, usability and purpose.'),
(335, 'A131', 'Node', 'Author', 'Dave Lawrence'),
(336, 'E147', 'Edge', 'DirectedLink', 'authored by'),
(337, 'A132', 'Node', 'Author', 'Soheyla Tavakol'),
(338, 'E148', 'Edge', 'DirectedLink', 'authored by'),
(339, 'P44', 'Node', 'Publication', 'Multiridge detection and time-frequency reconstruction.'),
(340, 'A133', 'Node', 'Author', 'René A. Carmona'),
(341, 'E149', 'Edge', 'DirectedLink', 'authored by'),
(342, 'A134', 'Node', 'Author', 'Wen L. Hwang'),
(343, 'E150', 'Edge', 'DirectedLink', 'authored by'),
(344, 'A135', 'Node', 'Author', 'Bruno Torrésani'),
(345, 'E151', 'Edge', 'DirectedLink', 'authored by'),
(346, 'V15', 'Node', 'Venue', 'IEEE Trans. Signal Processing'),
(347, 'E152', 'Edge', 'DirectedLink', 'published in'),
(348, 'P45', 'Node', 'Publication', 'Investigation on SAR ground moving target imaging under sparse Bayesian learning framework.'),
(349, 'A136', 'Node', 'Author', 'Lei Yang'),
(350, 'E153', 'Edge', 'DirectedLink', 'authored by'),
(351, 'A137', 'Node', 'Author', 'Lifan Zhao'),
(352, 'E154', 'Edge', 'DirectedLink', 'authored by'),
(353, 'A138', 'Node', 'Author', 'Xiumei Li'),
(354, 'E155', 'Edge', 'DirectedLink', 'authored by'),
(355, 'A139', 'Node', 'Author', 'Guoan Bi'),
(356, 'E156', 'Edge', 'DirectedLink', 'authored by'),
(357, 'P46', 'Node', 'Publication', 'Enabling Application Agility - Software as A Service, Cloud Computing and Dynamic Languages.'),
(358, 'A140', 'Node', 'Author', 'Dave Thomas'),
(359, 'E157', 'Edge', 'DirectedLink', 'authored by'),
(360, 'V16', 'Node', 'Venue', 'Journal of Object Technology'),
(361, 'E158', 'Edge', 'DirectedLink', 'published in'),
(362, 'P47', 'Node', 'Publication', 'B2P2: bounds based procedure placement for instruction TLB power reduction in embedded systems.'),
(363, 'A141', 'Node', 'Author', 'Reiley Jeyapaul'),
(364, 'E159', 'Edge', 'DirectedLink', 'authored by'),
(365, 'A142', 'Node', 'Author', 'Aviral Shrivastava'),
(366, 'E160', 'Edge', 'DirectedLink', 'authored by'),
(367, 'P48', 'Node', 'Publication', 'Health monitoring of obese people through a cloud-based serious game framework.'),
(368, 'A143', 'Node', 'Author', 'Mohammad Mehedi Hassan'),
(369, 'E161', 'Edge', 'DirectedLink', 'authored by'),
(370, 'A144', 'Node', 'Author', 'M. Anwar Hossain'),
(371, 'E162', 'Edge', 'DirectedLink', 'authored by'),
(372, 'A145', 'Node', 'Author', 'Yousuf Aldukhayyil'),
(373, 'E163', 'Edge', 'DirectedLink', 'authored by'),
(374, 'A146', 'Node', 'Author', 'Atif Alamri'),
(375, 'E164', 'Edge', 'DirectedLink', 'authored by'),
(376, 'A147', 'Node', 'Author', 'Muhammad Al-Qurishi'),
(377, 'E165', 'Edge', 'DirectedLink', 'authored by'),
(378, 'A148', 'Node', 'Author', 'M. Shamim Hossain'),
(379, 'E166', 'Edge', 'DirectedLink', 'authored by'),
(380, 'A149', 'Node', 'Author', 'Dewan Tanvir Ahmed'),
(381, 'E167', 'Edge', 'DirectedLink', 'authored by'),
(382, 'A150', 'Node', 'Author', 'Abdulmotaleb El-Saddik'),
(383, 'E168', 'Edge', 'DirectedLink', 'authored by'),
(384, 'P49', 'Node', 'Publication', 'Blockmodeling of multilevel networks.'),
(385, 'A151', 'Node', 'Author', 'Ales Ziberna'),
(386, 'E169', 'Edge', 'DirectedLink', 'authored by'),
(387, 'V17', 'Node', 'Venue', 'CoRR'),
(388, 'E170', 'Edge', 'DirectedLink', 'published in'),
(389, 'P50', 'Node', 'Publication', 'A General Framework for Bounds for Higher-Dimensional Orthogonal Packing Problems'),
(390, 'A152', 'Node', 'Author', 'Sándor P. Fekete'),
(391, 'E171', 'Edge', 'DirectedLink', 'authored by'),
(392, 'A153', 'Node', 'Author', 'Jörg Schepers'),
(393, 'E172', 'Edge', 'DirectedLink', 'authored by'),
(394, 'E173', 'Edge', 'DirectedLink', 'published in'),
(395, 'P51', 'Node', 'Publication', 'Designing for geometrical symmetry exploitation.'),
(396, 'A154', 'Node', 'Author', 'André Yamba Yamba'),
(397, 'E174', 'Edge', 'DirectedLink', 'authored by'),
(398, 'A155', 'Node', 'Author', 'Krister Åhlander'),
(399, 'E175', 'Edge', 'DirectedLink', 'authored by'),
(400, 'A156', 'Node', 'Author', 'Malin Ljungberg'),
(401, 'E176', 'Edge', 'DirectedLink', 'authored by'),
(402, 'V18', 'Node', 'Venue', 'Scientific Programming'),
(403, 'E177', 'Edge', 'DirectedLink', 'published in'),
(404, 'P52', 'Node', 'Publication', 'Generalising human demonstration data by identifying affordance symmetries in object interaction trajectories.'),
(405, 'A157', 'Node', 'Author', 'Jonathan Claassens'),
(406, 'E178', 'Edge', 'DirectedLink', 'authored by'),
(407, 'A158', 'Node', 'Author', 'Yiannis Demiris'),
(408, 'E179', 'Edge', 'DirectedLink', 'authored by'),
(409, 'P53', 'Node', 'Publication', 'Positive, Negative, or Neutral: Learning an Expanded Opinion Lexicon from Emoticon-Annotated Tweets.'),
(410, 'A159', 'Node', 'Author', 'Felipe Bravo-Marquez'),
(411, 'E180', 'Edge', 'DirectedLink', 'authored by'),
(412, 'A160', 'Node', 'Author', 'Eibe Frank'),
(413, 'E181', 'Edge', 'DirectedLink', 'authored by'),
(414, 'A161', 'Node', 'Author', 'Bernhard Pfahringer'),
(415, 'E182', 'Edge', 'DirectedLink', 'authored by'),
(416, 'P54', 'Node', 'Publication', 'An Approach for the Complementary Model to Improve Supervisory System.'),
(417, 'A162', 'Node', 'Author', 'Chau-Hung Wang'),
(418, 'E183', 'Edge', 'DirectedLink', 'authored by'),
(419, 'A163', 'Node', 'Author', 'Tsai-Duan Lin'),
(420, 'E184', 'Edge', 'DirectedLink', 'authored by'),
(421, 'P55', 'Node', 'Publication', 'Graphische Ausgabe für Werkzeuge zur Entwicklung interaktiver Benutzerschnittstellen.'),
(422, 'S2', 'Node', 'School', 'TH Darmstadt'),
(423, 'A164', 'Node', 'Author', 'Gregor Lux'),
(424, 'E185', 'Edge', 'DirectedLink', 'authored by'),
(425, 'E186', 'Edge', 'DirectedLink', 'affiliated in'),
(426, 'P56', 'Node', 'Publication', 'Compressing Elevation Data.'),
(427, 'A165', 'Node', 'Author', 'Wm. Randolph Franklin'),
(428, 'E187', 'Edge', 'DirectedLink', 'authored by'),
(429, 'P57', 'Node', 'Publication', 'A Fundamental Problem in Computer and Communication.'),
(430, 'A166', 'Node', 'Author', 'Sanguthevar Rajasekaran'),
(431, 'E188', 'Edge', 'DirectedLink', 'authored by'),
(432, 'A167', 'Node', 'Author', 'Jaime Davila'),
(433, 'E189', 'Edge', 'DirectedLink', 'authored by'),
(434, 'P58', 'Node', 'Publication', 'User-centric personalized extensibility for data-driven web applications.'),
(435, 'A168', 'Node', 'Author', 'Nitin Gupta 0003'),
(436, 'E190', 'Edge', 'DirectedLink', 'authored by'),
(437, 'A169', 'Node', 'Author', 'Fan Yang 0002'),
(438, 'E191', 'Edge', 'DirectedLink', 'authored by'),
(439, 'A170', 'Node', 'Author', 'Alan J. Demers'),
(440, 'E192', 'Edge', 'DirectedLink', 'authored by'),
(441, 'A171', 'Node', 'Author', 'Johannes Gehrke'),
(442, 'E193', 'Edge', 'DirectedLink', 'authored by'),
(443, 'A172', 'Node', 'Author', 'Jayavel Shanmugasundaram'),
(444, 'E194', 'Edge', 'DirectedLink', 'authored by'),
(445, 'P59', 'Node', 'Publication', 'Theoretical and empirical convergence results for additive congruential random number generators.'),
(446, 'A173', 'Node', 'Author', 'Roy S. Wikramaratna'),
(447, 'E195', 'Edge', 'DirectedLink', 'authored by'),
(448, 'V19', 'Node', 'Venue', 'J. Computational Applied Mathematics'),
(449, 'E196', 'Edge', 'DirectedLink', 'published in'),
(450, 'P60', 'Node', 'Publication', 'Strategy Construction Using Homomorphisms Between Games.'),
(451, 'A174', 'Node', 'Author', 'Ranan B. Banerji'),
(452, 'E197', 'Edge', 'DirectedLink', 'authored by'),
(453, 'A175', 'Node', 'Author', 'George W. Ernst'),
(454, 'E198', 'Edge', 'DirectedLink', 'authored by'),
(455, 'V20', 'Node', 'Venue', 'Artif. Intell.'),
(456, 'E199', 'Edge', 'DirectedLink', 'published in'),
(457, 'P61', 'Node', 'Publication', 'Tackling the Cognitive Processes That Underlie Brands'' Assessments Using Artificial Neural Networks and Whole Brain fMRI Acquisitions.'),
(458, 'A176', 'Node', 'Author', 'José Paulo Marques dos Santos'),
(459, 'E200', 'Edge', 'DirectedLink', 'authored by'),
(460, 'A177', 'Node', 'Author', 'Luiz Moutinho'),
(461, 'E201', 'Edge', 'DirectedLink', 'authored by'),
(462, 'P62', 'Node', 'Publication', 'Design guidelines for industrial power assist robots for lifting heavy objects based on human''s weight perception for better HRI.'),
(463, 'A178', 'Node', 'Author', 'S. M. Mizanoor Rahman'),
(464, 'E202', 'Edge', 'DirectedLink', 'authored by'),
(465, 'A179', 'Node', 'Author', 'Ryojun Ikeura'),
(466, 'E203', 'Edge', 'DirectedLink', 'authored by'),
(467, 'A180', 'Node', 'Author', 'Masaya Nobe'),
(468, 'E204', 'Edge', 'DirectedLink', 'authored by'),
(469, 'A181', 'Node', 'Author', 'Hideki Sawai'),
(470, 'E205', 'Edge', 'DirectedLink', 'authored by'),
(471, 'P63', 'Node', 'Publication', 'Fault Injection for the Masses.'),
(472, 'A182', 'Node', 'Author', 'Jeffrey M. Voas'),
(473, 'E206', 'Edge', 'DirectedLink', 'authored by'),
(474, 'V21', 'Node', 'Venue', 'IEEE Computer'),
(475, 'E207', 'Edge', 'DirectedLink', 'published in'),
(476, 'P64', 'Node', 'Publication', 'Position paper for EUSE 2007 at Dagstuhl.'),
(477, 'A183', 'Node', 'Author', 'Mary Beth Rosson'),
(478, 'E208', 'Edge', 'DirectedLink', 'authored by'),
(479, 'P65', 'Node', 'Publication', 'Blueprinting the Cloud.'),
(480, 'A184', 'Node', 'Author', 'Michael P. Papazoglou'),
(481, 'E209', 'Edge', 'DirectedLink', 'authored by'),
(482, 'A185', 'Node', 'Author', 'Willem-Jan van den Heuvel'),
(483, 'E210', 'Edge', 'DirectedLink', 'authored by'),
(484, 'V22', 'Node', 'Venue', 'IEEE Internet Computing'),
(485, 'E211', 'Edge', 'DirectedLink', 'published in'),
(486, 'P66', 'Node', 'Publication', 'Cover and Decomposition Index Calculus on Elliptic Curves Made Practical - Application to a Previously Unreachable Curve over $\\mathbb{F}_{p^6}$.'),
(487, 'A186', 'Node', 'Author', 'Antoine Joux'),
(488, 'E212', 'Edge', 'DirectedLink', 'authored by'),
(489, 'A187', 'Node', 'Author', 'Vanessa Vitse'),
(490, 'E213', 'Edge', 'DirectedLink', 'authored by'),
(491, 'P67', 'Node', 'Publication', 'Why we use dependency grammar.'),
(492, 'A188', 'Node', 'Author', 'Eva Hajicová'),
(493, 'E214', 'Edge', 'DirectedLink', 'authored by'),
(494, 'P68', 'Node', 'Publication', 'Winner-take-all selection in a neural system with delayed feedback.'),
(495, 'A189', 'Node', 'Author', 'Sebastian F. Brandt'),
(496, 'E215', 'Edge', 'DirectedLink', 'authored by'),
(497, 'A190', 'Node', 'Author', 'Ralf Wessel'),
(498, 'E216', 'Edge', 'DirectedLink', 'authored by'),
(499, 'V23', 'Node', 'Venue', 'Biological Cybernetics'),
(500, 'E217', 'Edge', 'DirectedLink', 'published in'),
(501, 'P69', 'Node', 'Publication', 'A Randomized Algorithm for Finding Frequent Elements in Streams Using O(loglogN) Space.'),
(502, 'A191', 'Node', 'Author', 'Masatora Ogata'),
(503, 'E218', 'Edge', 'DirectedLink', 'authored by'),
(504, 'A192', 'Node', 'Author', 'Yukiko Yamauchi'),
(505, 'E219', 'Edge', 'DirectedLink', 'authored by'),
(506, 'A193', 'Node', 'Author', 'Shuji Kijima'),
(507, 'E220', 'Edge', 'DirectedLink', 'authored by'),
(508, 'A194', 'Node', 'Author', 'Masafumi Yamashita'),
(509, 'E221', 'Edge', 'DirectedLink', 'authored by'),
(510, 'P70', 'Node', 'Publication', 'Max-Min Energy Efficient Beamforming for Multicell Multiuser Joint Transmission Systems.'),
(511, 'A195', 'Node', 'Author', 'Shiwen He'),
(512, 'E222', 'Edge', 'DirectedLink', 'authored by'),
(513, 'A196', 'Node', 'Author', 'Yongming Huang'),
(514, 'E223', 'Edge', 'DirectedLink', 'authored by'),
(515, 'A197', 'Node', 'Author', 'Shi Jin'),
(516, 'E224', 'Edge', 'DirectedLink', 'authored by'),
(517, 'A198', 'Node', 'Author', 'Fei Yu 0003'),
(518, 'E225', 'Edge', 'DirectedLink', 'authored by'),
(519, 'A199', 'Node', 'Author', 'Luxi Yang'),
(520, 'E226', 'Edge', 'DirectedLink', 'authored by'),
(521, 'E227', 'Edge', 'DirectedLink', 'published in'),
(522, 'P71', 'Node', 'Publication', 'A Two Stage Approach for Contiguous Sequential Pattern Mining.'),
(523, 'A200', 'Node', 'Author', 'Jinlin Chen'),
(524, 'E228', 'Edge', 'DirectedLink', 'authored by'),
(525, 'A201', 'Node', 'Author', 'Subash Shankar'),
(526, 'E229', 'Edge', 'DirectedLink', 'authored by'),
(527, 'A202', 'Node', 'Author', 'Angela Kelly'),
(528, 'E230', 'Edge', 'DirectedLink', 'authored by'),
(529, 'A203', 'Node', 'Author', 'Serigne Geingue'),
(530, 'E231', 'Edge', 'DirectedLink', 'authored by'),
(531, 'A204', 'Node', 'Author', 'Rathika Rajaravivarma'),
(532, 'E232', 'Edge', 'DirectedLink', 'authored by'),
(533, 'P72', 'Node', 'Publication', 'DepSky: Dependable and Secure Storage in a Cloud-of-Clouds.'),
(534, 'A205', 'Node', 'Author', 'Alysson Neves Bessani'),
(535, 'E233', 'Edge', 'DirectedLink', 'authored by'),
(536, 'A206', 'Node', 'Author', 'Miguel Correia'),
(537, 'E234', 'Edge', 'DirectedLink', 'authored by'),
(538, 'A207', 'Node', 'Author', 'Bruno Quaresma'),
(539, 'E235', 'Edge', 'DirectedLink', 'authored by'),
(540, 'A208', 'Node', 'Author', 'Fernando André'),
(541, 'E236', 'Edge', 'DirectedLink', 'authored by'),
(542, 'A209', 'Node', 'Author', 'Paulo Sousa'),
(543, 'E237', 'Edge', 'DirectedLink', 'authored by'),
(544, 'V24', 'Node', 'Venue', 'TOS'),
(545, 'E238', 'Edge', 'DirectedLink', 'published in'),
(546, 'P73', 'Node', 'Publication', 'A WCDMA/WLAN digital polar transmitter with AM replica feedback linearization in 65nm CMOS.'),
(547, 'A210', 'Node', 'Author', 'Shiyuan Zheng'),
(548, 'E239', 'Edge', 'DirectedLink', 'authored by'),
(549, 'A211', 'Node', 'Author', 'Howard C. Luong'),
(550, 'E240', 'Edge', 'DirectedLink', 'authored by'),
(551, 'P74', 'Node', 'Publication', 'Asymptotic consistency and order specification for logistic classifier chains in multi-label learning.'),
(552, 'A212', 'Node', 'Author', 'Pawel Teisseyre'),
(553, 'E241', 'Edge', 'DirectedLink', 'authored by'),
(554, 'E242', 'Edge', 'DirectedLink', 'published in'),
(555, 'P75', 'Node', 'Publication', 'Virtual Resectoscope Interface for a Surgery Simulation Training System of the Prostate.'),
(556, 'A213', 'Node', 'Author', 'Miguel A. Padilla'),
(557, 'E243', 'Edge', 'DirectedLink', 'authored by'),
(558, 'A214', 'Node', 'Author', 'Felipe Altamirano del Monte'),
(559, 'E244', 'Edge', 'DirectedLink', 'authored by'),
(560, 'A215', 'Node', 'Author', 'Fernando Arámbula Cosío'),
(561, 'E245', 'Edge', 'DirectedLink', 'authored by'),
(562, 'P76', 'Node', 'Publication', 'Optimal Agendas and Procedures for N-Issue Negotiation: An Inductive Definition.'),
(563, 'A216', 'Node', 'Author', 'Saidalavi Kalady'),
(564, 'E246', 'Edge', 'DirectedLink', 'authored by'),
(565, 'A217', 'Node', 'Author', 'B. Dev'),
(566, 'E247', 'Edge', 'DirectedLink', 'authored by'),
(567, 'A218', 'Node', 'Author', 'A. N. Arun'),
(568, 'E248', 'Edge', 'DirectedLink', 'authored by'),
(569, 'A219', 'Node', 'Author', 'V. K. Govindan'),
(570, 'E249', 'Edge', 'DirectedLink', 'authored by'),
(571, 'A220', 'Node', 'Author', 'Abraham T. Mathew'),
(572, 'E250', 'Edge', 'DirectedLink', 'authored by'),
(573, 'P77', 'Node', 'Publication', 'Multifactor Modelling with Regularization.'),
(574, 'A221', 'Node', 'Author', 'Ventsislav Nikolov'),
(575, 'E251', 'Edge', 'DirectedLink', 'authored by'),
(576, 'P78', 'Node', 'Publication', 'Computing Norms of group-Invariant Transition Operators.'),
(577, 'A222', 'Node', 'Author', 'Laurent Saloff-Coste'),
(578, 'E252', 'Edge', 'DirectedLink', 'authored by'),
(579, 'A223', 'Node', 'Author', 'Wolfgang Woess'),
(580, 'E253', 'Edge', 'DirectedLink', 'authored by'),
(581, 'V25', 'Node', 'Venue', 'Combinatorics, Probability & Computing'),
(582, 'E254', 'Edge', 'DirectedLink', 'published in'),
(583, 'P79', 'Node', 'Publication', 'Indoor Ventilation in Hospital Operating Rooms.'),
(584, 'A224', 'Node', 'Author', 'Ana Margarida Cunha'),
(585, 'E255', 'Edge', 'DirectedLink', 'authored by'),
(586, 'A225', 'Node', 'Author', 'Vasco A. Campos'),
(587, 'E256', 'Edge', 'DirectedLink', 'authored by'),
(588, 'A226', 'Node', 'Author', 'José Carlos Teixeira'),
(589, 'E257', 'Edge', 'DirectedLink', 'authored by'),
(590, 'A227', 'Node', 'Author', 'Senhorinha F. C. F. Teixeira'),
(591, 'E258', 'Edge', 'DirectedLink', 'authored by'),
(592, 'P80', 'Node', 'Publication', 'Diversity analysis of antenna selection over frequency-selective MIMO channels.'),
(593, 'A228', 'Node', 'Author', 'Shuichi Ohno'),
(594, 'E259', 'Edge', 'DirectedLink', 'authored by'),
(595, 'A229', 'Node', 'Author', 'Kok Ann Donny Teo'),
(596, 'E260', 'Edge', 'DirectedLink', 'authored by'),
(597, 'P81', 'Node', 'Publication', 'A Multi-Level View Model for Secure Object-Oriented Databases.'),
(598, 'A230', 'Node', 'Author', 'Ahmad Baraani-Dastjerdi'),
(599, 'E261', 'Edge', 'DirectedLink', 'authored by'),
(600, 'A231', 'Node', 'Author', 'Josef Pieprzyk'),
(601, 'E262', 'Edge', 'DirectedLink', 'authored by'),
(602, 'A232', 'Node', 'Author', 'Reihaneh Safavi-Naini'),
(603, 'E263', 'Edge', 'DirectedLink', 'authored by'),
(604, 'V26', 'Node', 'Venue', 'Data Knowl. Eng.'),
(605, 'E264', 'Edge', 'DirectedLink', 'published in'),
(606, 'P82', 'Node', 'Publication', 'MSV3d: database of human MisSense variants mapped to 3D protein structure.'),
(607, 'A233', 'Node', 'Author', 'Tien-Dao Luu'),
(608, 'E265', 'Edge', 'DirectedLink', 'authored by'),
(609, 'A234', 'Node', 'Author', 'Alin-Mihai Rusu'),
(610, 'E266', 'Edge', 'DirectedLink', 'authored by'),
(611, 'A235', 'Node', 'Author', 'Vincent Walter'),
(612, 'E267', 'Edge', 'DirectedLink', 'authored by'),
(613, 'A236', 'Node', 'Author', 'Raymond Ripp'),
(614, 'E268', 'Edge', 'DirectedLink', 'authored by'),
(615, 'A237', 'Node', 'Author', 'Luc Moulinier'),
(616, 'E269', 'Edge', 'DirectedLink', 'authored by'),
(617, 'A238', 'Node', 'Author', 'Jean Muller'),
(618, 'E270', 'Edge', 'DirectedLink', 'authored by'),
(619, 'A239', 'Node', 'Author', 'Thierry Toursel'),
(620, 'E271', 'Edge', 'DirectedLink', 'authored by'),
(621, 'A240', 'Node', 'Author', 'Julie D. Thompson'),
(622, 'E272', 'Edge', 'DirectedLink', 'authored by'),
(623, 'A241', 'Node', 'Author', 'Olivier Poch'),
(624, 'E273', 'Edge', 'DirectedLink', 'authored by'),
(625, 'A242', 'Node', 'Author', 'Hoan Nguyen'),
(626, 'E274', 'Edge', 'DirectedLink', 'authored by'),
(627, 'V27', 'Node', 'Venue', 'Database'),
(628, 'E275', 'Edge', 'DirectedLink', 'published in'),
(629, 'P83', 'Node', 'Publication', 'SOMwise regression: a new clusterwise regression method.'),
(630, 'A243', 'Node', 'Author', 'Jorge Muruzábal'),
(631, 'E276', 'Edge', 'DirectedLink', 'authored by'),
(632, 'A244', 'Node', 'Author', 'Diego Vidaurre'),
(633, 'E277', 'Edge', 'DirectedLink', 'authored by'),
(634, 'A245', 'Node', 'Author', 'Julián Sánchez'),
(635, 'E278', 'Edge', 'DirectedLink', 'authored by'),
(636, 'V28', 'Node', 'Venue', 'Neural Computing and Applications'),
(637, 'E279', 'Edge', 'DirectedLink', 'published in'),
(638, 'P84', 'Node', 'Publication', 'A SNoW Based Supertagger with Application to NP Chunking.'),
(639, 'A246', 'Node', 'Author', 'Libin Shen'),
(640, 'E280', 'Edge', 'DirectedLink', 'authored by'),
(641, 'A247', 'Node', 'Author', 'Aravind K. Joshi'),
(642, 'E281', 'Edge', 'DirectedLink', 'authored by'),
(643, 'P85', 'Node', 'Publication', 'A Component Model to Support Dynamic Unanticipated Software Evolution.'),
(644, 'A248', 'Node', 'Author', 'Hyggo Oliveira de Almeida'),
(645, 'E282', 'Edge', 'DirectedLink', 'authored by'),
(646, 'A249', 'Node', 'Author', 'Angelo Perkusich'),
(647, 'E283', 'Edge', 'DirectedLink', 'authored by'),
(648, 'A250', 'Node', 'Author', 'Glauber Ferreira'),
(649, 'E284', 'Edge', 'DirectedLink', 'authored by'),
(650, 'A251', 'Node', 'Author', 'Emerson Loureiro'),
(651, 'E285', 'Edge', 'DirectedLink', 'authored by'),
(652, 'A252', 'Node', 'Author', 'Evandro de Barros Costa'),
(653, 'E286', 'Edge', 'DirectedLink', 'authored by'),
(654, 'P86', 'Node', 'Publication', 'A bitstream-based front-end for wireless speech recognition on IS-136 communications system.'),
(655, 'A253', 'Node', 'Author', 'Hong Kook Kim'),
(656, 'E287', 'Edge', 'DirectedLink', 'authored by'),
(657, 'A254', 'Node', 'Author', 'Richard V. Cox'),
(658, 'E288', 'Edge', 'DirectedLink', 'authored by'),
(659, 'V29', 'Node', 'Venue', 'IEEE Trans. Speech and Audio Processing'),
(660, 'E289', 'Edge', 'DirectedLink', 'published in'),
(661, 'P87', 'Node', 'Publication', 'The Notion of a Model.'),
(662, 'A255', 'Node', 'Author', 'Bernhard Thalheim'),
(663, 'E290', 'Edge', 'DirectedLink', 'authored by'),
(664, 'A256', 'Node', 'Author', 'Ivor Nissen'),
(665, 'E291', 'Edge', 'DirectedLink', 'authored by'),
(666, 'P88', 'Node', 'Publication', 'Electronic marketplaces: an empirical study in the UK healthcare sector.'),
(667, 'A257', 'Node', 'Author', 'Andrew D. White'),
(668, 'E292', 'Edge', 'DirectedLink', 'authored by'),
(669, 'A258', 'Node', 'Author', 'Elizabeth M. Daniel'),
(670, 'E293', 'Edge', 'DirectedLink', 'authored by'),
(671, 'V30', 'Node', 'Venue', 'IJEB'),
(672, 'E294', 'Edge', 'DirectedLink', 'published in'),
(673, 'P89', 'Node', 'Publication', 'Web services security configuration in a service-oriented architecture.'),
(674, 'A259', 'Node', 'Author', 'Takeshi Imamura'),
(675, 'E295', 'Edge', 'DirectedLink', 'authored by'),
(676, 'A260', 'Node', 'Author', 'Michiaki Tatsubori'),
(677, 'E296', 'Edge', 'DirectedLink', 'authored by'),
(678, 'A261', 'Node', 'Author', 'Yuichi Nakamura'),
(679, 'E297', 'Edge', 'DirectedLink', 'authored by'),
(680, 'A262', 'Node', 'Author', 'Christopher Giblin'),
(681, 'E298', 'Edge', 'DirectedLink', 'authored by'),
(682, 'P90', 'Node', 'Publication', 'Ergodic rate analysis for massive MIMO relay systems with multi-pair users under imperfect CSI.'),
(683, 'A263', 'Node', 'Author', 'Yi Wang'),
(684, 'E299', 'Edge', 'DirectedLink', 'authored by'),
(685, 'A264', 'Node', 'Author', 'Shidang Li'),
(686, 'E300', 'Edge', 'DirectedLink', 'authored by'),
(687, 'A265', 'Node', 'Author', 'Chunguo Li'),
(688, 'E301', 'Edge', 'DirectedLink', 'authored by'),
(689, 'E302', 'Edge', 'DirectedLink', 'authored by'),
(690, 'E303', 'Edge', 'DirectedLink', 'authored by'),
(691, 'P91', 'Node', 'Publication', 'Performance of random medium access control, an asymptotic approach.'),
(692, 'A266', 'Node', 'Author', 'Charles Bordenave'),
(693, 'E304', 'Edge', 'DirectedLink', 'authored by'),
(694, 'A267', 'Node', 'Author', 'David D. McDonald 0001'),
(695, 'E305', 'Edge', 'DirectedLink', 'authored by'),
(696, 'A268', 'Node', 'Author', 'Alexandre Proutière'),
(697, 'E306', 'Edge', 'DirectedLink', 'authored by'),
(698, 'P92', 'Node', 'Publication', 'Teaching real time OSs with DORITOS.'),
(699, 'A269', 'Node', 'Author', 'Jae C. Oh'),
(700, 'E307', 'Edge', 'DirectedLink', 'authored by'),
(701, 'A270', 'Node', 'Author', 'Daniel Mossé'),
(702, 'E308', 'Edge', 'DirectedLink', 'authored by'),
(703, 'P93', 'Node', 'Publication', 'Joint image representation and classification in random semantic spaces.'),
(704, 'A271', 'Node', 'Author', 'Chunjie Zhang'),
(705, 'E309', 'Edge', 'DirectedLink', 'authored by'),
(706, 'A272', 'Node', 'Author', 'Xiaobin Zhu'),
(707, 'E310', 'Edge', 'DirectedLink', 'authored by'),
(708, 'A273', 'Node', 'Author', 'Liang Li'),
(709, 'E311', 'Edge', 'DirectedLink', 'authored by'),
(710, 'A274', 'Node', 'Author', 'Yifan Zhang'),
(711, 'E312', 'Edge', 'DirectedLink', 'authored by'),
(712, 'A275', 'Node', 'Author', 'Jing Liu'),
(713, 'E313', 'Edge', 'DirectedLink', 'authored by'),
(714, 'A276', 'Node', 'Author', 'Qingming Huang'),
(715, 'E314', 'Edge', 'DirectedLink', 'authored by'),
(716, 'A277', 'Node', 'Author', 'Qi Tian'),
(717, 'E315', 'Edge', 'DirectedLink', 'authored by'),
(718, 'V31', 'Node', 'Venue', 'Neurocomputing'),
(719, 'E316', 'Edge', 'DirectedLink', 'published in'),
(720, 'P94', 'Node', 'Publication', 'RESQUE: Network Reduction Using Semi-Markov Random Walk Scores for Efficient Querying of Biological Networks (Extended Abstract).'),
(721, 'A278', 'Node', 'Author', 'Sayed Mohammad Ebrahim Sahraeian'),
(722, 'E317', 'Edge', 'DirectedLink', 'authored by'),
(723, 'A279', 'Node', 'Author', 'Byung-Jun Yoon'),
(724, 'E318', 'Edge', 'DirectedLink', 'authored by'),
(725, 'P95', 'Node', 'Publication', 'On analysis of wireless uplink using analog network coding with non-coherent modulations.'),
(726, 'A280', 'Node', 'Author', 'Wei Guan'),
(727, 'E319', 'Edge', 'DirectedLink', 'authored by'),
(728, 'A281', 'Node', 'Author', 'K. J. Ray Liu'),
(729, 'E320', 'Edge', 'DirectedLink', 'authored by'),
(730, 'P96', 'Node', 'Publication', 'Simulation Study of Effect of Dispersions on Recording Performances in Perpendicular Magnetic Recording Media.'),
(731, 'A282', 'Node', 'Author', 'Naoki Honda'),
(732, 'E321', 'Edge', 'DirectedLink', 'authored by'),
(733, 'A283', 'Node', 'Author', 'Kazuhiro Ouchi'),
(734, 'E322', 'Edge', 'DirectedLink', 'authored by'),
(735, 'V32', 'Node', 'Venue', 'IEICE Transactions'),
(736, 'E323', 'Edge', 'DirectedLink', 'published in'),
(737, 'P97', 'Node', 'Publication', 'Data Mining from Functional Brain Images.'),
(738, 'A284', 'Node', 'Author', 'Mitsuru Kakimoto'),
(739, 'E324', 'Edge', 'DirectedLink', 'authored by'),
(740, 'A285', 'Node', 'Author', 'Chie Morita'),
(741, 'E325', 'Edge', 'DirectedLink', 'authored by'),
(742, 'A286', 'Node', 'Author', 'Yoshiaki Kikuchi'),
(743, 'E326', 'Edge', 'DirectedLink', 'authored by'),
(744, 'A287', 'Node', 'Author', 'Hiroshi Tsukimoto'),
(745, 'E327', 'Edge', 'DirectedLink', 'authored by'),
(746, 'P98', 'Node', 'Publication', 'A tale of four kernels.'),
(747, 'A288', 'Node', 'Author', 'Diomidis Spinellis'),
(748, 'E328', 'Edge', 'DirectedLink', 'authored by'),
(749, 'P99', 'Node', 'Publication', 'Shape-Preserving Response Prediction for Engineering Design Optimization.'),
(750, 'A289', 'Node', 'Author', 'Slawomir Koziel'),
(751, 'E329', 'Edge', 'DirectedLink', 'authored by'),
(752, 'A290', 'Node', 'Author', 'Leifur Þ. Leifsson'),
(753, 'E330', 'Edge', 'DirectedLink', 'authored by'),
(754, 'P100', 'Node', 'Publication', 'A TDMA Based Scheduling Scheme in 802.11b WLANs with Access Point.'),
(755, 'A291', 'Node', 'Author', 'Osama M. F. Abu-Sharkh'),
(756, 'E331', 'Edge', 'DirectedLink', 'authored by'),
(757, 'A292', 'Node', 'Author', 'Ahmed H. Tewfik'),
(758, 'E332', 'Edge', 'DirectedLink', 'authored by');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `Entity`
--
ALTER TABLE `Entity`
ADD PRIMARY KEY (`ID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `Entity`
--
ALTER TABLE `Entity`
MODIFY `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=759;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;