This repository was archived by the owner on Aug 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathach_backupPROD.sql
More file actions
602 lines (516 loc) · 138 KB
/
Copy pathach_backupPROD.sql
File metadata and controls
602 lines (516 loc) · 138 KB
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
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64)
--
-- Host: localhost Database: scalar_app
-- ------------------------------------------------------
-- Server version 5.7.21
/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Current Database: `scalar_app`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `scalar_app` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `scalar_app`;
--
-- Table structure for table `scalar_db_books`
--
DROP TABLE IF EXISTS `scalar_db_books`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_books` (
`book_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`url_is_public` tinyint(1) unsigned NOT NULL DEFAULT '0',
`display_in_index` tinyint(1) unsigned NOT NULL DEFAULT '0',
`is_featured` tinyint(1) unsigned NOT NULL DEFAULT '0',
`editorial_is_on` tinyint(1) unsigned NOT NULL DEFAULT '0',
`thumbnail` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`background` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`template` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'cantaloupe',
`stylesheet` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_style` text COLLATE utf8_unicode_ci,
`custom_js` text COLLATE utf8_unicode_ci,
`scope` enum('book','article','project') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'book',
`publisher` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`publisher_thumbnail` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`user` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`book_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_books`
--
LOCK TABLES `scalar_db_books` WRITE;
/*!40000 ALTER TABLE `scalar_db_books` DISABLE KEYS */;
INSERT INTO `scalar_db_books` VALUES (1,'Always Coming Home','The American Female Veteran Experience Archive ','Always Coming Home: The American Female Veteran Experience Archive is designed to provide ongoing documentation of the diverse combat and service situations women in the military face as well as recording the experiences of the increasing numbers of female veterans whose return to civilian life has been affected by their years of service.','always-coming-home',1,1,0,0,'','http://achimages.dev-cdh.org/ach_banner.png','cantaloupe','minimal','','','book','',NULL,'1','2018-03-26 17:46:27'),(2,'Tylers Book',NULL,NULL,'tylers-book',0,0,0,0,NULL,NULL,'cantaloupe','minimal',NULL,NULL,'book',NULL,NULL,'2','2018-04-04 19:17:44');
/*!40000 ALTER TABLE `scalar_db_books` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_content`
--
DROP TABLE IF EXISTS `scalar_db_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_content` (
`content_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`book_id` int(10) unsigned NOT NULL DEFAULT '0',
`recent_version_id` int(10) unsigned NOT NULL DEFAULT '0',
`slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` enum('composite','media') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'composite',
`is_live` tinyint(1) unsigned NOT NULL DEFAULT '1',
`paywall` tinyint(1) unsigned NOT NULL DEFAULT '0',
`thumbnail` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`background` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`banner` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_style` text COLLATE utf8_unicode_ci,
`custom_scripts` text COLLATE utf8_unicode_ci,
`color` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`audio` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`category` enum('commentary','review','term') COLLATE utf8_unicode_ci DEFAULT NULL,
`user` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`content_id`),
KEY `book_id` (`book_id`)
) ENGINE=MyISAM AUTO_INCREMENT=149 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_content`
--
LOCK TABLES `scalar_db_content` WRITE;
/*!40000 ALTER TABLE `scalar_db_content` DISABLE KEYS */;
INSERT INTO `scalar_db_content` VALUES (9,1,260,'index','composite',1,0,'','','','','','','',NULL,'1','2018-03-30 23:21:32'),(3,1,263,'homepage','composite',1,0,'','','http://achimages.dev-cdh.org/ach_banner.png','','','','',NULL,'1','2018-03-26 17:57:19'),(11,1,95,'beatrice-sharpe','media',1,0,'','','','','','','',NULL,'1','2018-03-30 23:40:55'),(8,1,8,'ach_banner','media',1,0,'','','','','','','',NULL,'1','2018-03-30 22:18:15'),(10,1,13,'athena-shoemaker-1','media',1,0,'','','','','','','',NULL,'1','2018-03-30 23:23:16'),(12,1,20,'carolyn-washington','media',1,0,'','','','','','','',NULL,'1','2018-03-30 23:41:29'),(13,1,21,'carrie-frohnapfel','media',1,0,'','','','','','','',NULL,'1','2018-03-30 23:42:10'),(14,1,22,'charlotte-lee','media',1,0,'','','','','','','',NULL,'1','2018-03-30 23:42:42'),(15,1,39,'cuisha-pierce-lunderman','media',1,0,'','','','','','','',NULL,'1','2018-03-30 23:43:15'),(16,1,208,'athena-shoemaker','composite',1,0,'http://achimages.dev-cdh.org/AthenaShoemaker.png','','','','','','',NULL,'1','2018-04-02 19:23:00'),(27,1,47,'jennifer-morse','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:54:30'),(26,1,46,'ida-ostendorf','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:53:58'),(25,1,45,'hope-furtado','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:53:15'),(24,1,43,'helen-rooks','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:52:48'),(23,1,42,'halsey-hinson','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:49:11'),(22,1,104,'dr-neumann','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:48:39'),(28,1,48,'jeretha-moore','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:56:27'),(29,1,50,'jeri-steedly-and-beverly-oliss','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:57:16'),(30,1,51,'kashuni-edwards','media',1,0,'','','','','','','',NULL,'1','2018-04-04 19:58:40'),(31,1,52,'libby-steadman','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:03:57'),(32,1,53,'linda-bowman','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:04:22'),(33,1,54,'lisa-leask','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:05:09'),(34,1,124,'mary-heriot','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:05:34'),(39,1,71,'mary-resch','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:26:00'),(36,1,57,'mary-jane-matthews','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:06:12'),(40,1,72,'michelle-hutchinson','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:26:26'),(38,1,227,'mary-jane-matthews-1','composite',1,0,'http://achimages.dev-cdh.org/MaryJaneMatthews.png','','','','','','',NULL,'1','2018-04-04 20:19:33'),(41,1,73,'neisie-jacobs','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:26:49'),(42,1,74,'norma-king','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:27:14'),(43,1,75,'peggy-butler','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:27:34'),(44,1,76,'rebekah-havrilla','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:28:00'),(45,1,77,'roberta-lockwood','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:28:23'),(46,1,78,'roxanne-cheney','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:28:44'),(47,1,79,'sharon-pierre','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:29:40'),(48,1,80,'sona-lyttle','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:30:16'),(49,1,209,'beatrice-sharpe-1','composite',1,0,'http://achimages.dev-cdh.org/BeatriceSharpe.png','','','','','','',NULL,'1','2018-04-04 20:31:36'),(50,1,84,'susan-fillmore','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:33:48'),(51,1,85,'tashima-martin','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:34:16'),(52,1,86,'thelma-hodge','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:35:03'),(53,1,87,'wanda-pearson','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:36:41'),(54,1,88,'jenny-pournelle','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:40:29'),(55,1,89,'hlile-dixon','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:40:58'),(56,1,90,'mary-rock','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:41:37'),(57,1,92,'myra-reichart','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:42:26'),(58,1,93,'susan-jarvie','media',1,0,'','','','','','','',NULL,'1','2018-04-04 20:43:09'),(59,1,210,'carolyn-washington-1','composite',1,0,'http://achimages.dev-cdh.org/CarolynWashington.png','','','','','','',NULL,'1','2018-04-04 21:00:32'),(60,1,211,'carrie-frohnapfel-1','composite',1,0,'http://achimages.dev-cdh.org/CarrieFrohnapfel.png','','','','','','',NULL,'1','2018-04-04 21:01:19'),(61,1,212,'charlotte-lee-1','composite',1,0,'http://achimages.dev-cdh.org/CharlotteLee.png','','','','','','',NULL,'1','2018-04-04 21:01:44'),(99,1,163,'athenashoemakerpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:33:02'),(63,1,213,'cuisha-pierce-lauderman-1','composite',1,0,'http://achimages.dev-cdh.org/CuishaPeirceLunderman.png','','','','','','',NULL,'1','2018-04-04 21:02:34'),(64,1,214,'dr-neumann-1','composite',1,0,'http://achimages.dev-cdh.org/DrNeumann.png','','','','','','',NULL,'1','2018-04-04 21:03:26'),(65,1,215,'halsey-hison','composite',1,0,'http://achimages.dev-cdh.org/HalseyHinson.png','','','','','','',NULL,'1','2018-04-04 21:05:02'),(66,1,216,'helen-rooks-1','composite',1,0,'http://achimages.dev-cdh.org/HelenRooks.png','','','','','','',NULL,'1','2018-04-04 21:06:22'),(67,1,217,'hlile-dixon-1','composite',1,0,'http://achimages.dev-cdh.org/HileDixon.png','','','','','','',NULL,'1','2018-04-04 21:06:49'),(68,1,218,'hope-furtado-1','composite',1,0,'http://achimages.dev-cdh.org/HopeFurtado.png','','','','','','',NULL,'1','2018-04-04 21:07:13'),(69,1,219,'ida-ostendorf-1','composite',1,0,'http://achimages.dev-cdh.org/IdaOstendorf.png','','','','','','',NULL,'1','2018-04-04 21:07:51'),(70,1,220,'jennifer-morse-1','composite',1,0,'http://achimages.dev-cdh.org/JenniferMorse.png','','','','','','',NULL,'1','2018-04-04 21:08:22'),(81,1,228,'mary-resch-1','composite',1,0,'http://achimages.dev-cdh.org/MaryResch.png','','','','','','',NULL,'1','2018-04-04 21:35:24'),(72,1,221,'jenny-pournelle-1','composite',1,0,'http://achimages.dev-cdh.org/JennyPournelle.png','','','','','','',NULL,'1','2018-04-04 21:09:08'),(73,1,222,'jeretha-moore-1','composite',1,0,'http://achimages.dev-cdh.org/JerethaMoore.png','','','','','','',NULL,'1','2018-04-04 21:09:34'),(74,1,256,'jeri-steedly-and-beverly-oliss-1','composite',1,0,'http://achimages.dev-cdh.org/JeriSteedlyandBeverlyOliss.png','','','','','','',NULL,'1','2018-04-04 21:10:08'),(75,1,223,'kashuni-edwards-1','composite',1,0,'http://achimages.dev-cdh.org/KashuniEdwards.png','','','','','','',NULL,'1','2018-04-04 21:10:41'),(76,1,254,'libby-steadman-1','composite',1,0,'http://achimages.dev-cdh.org/LibbySteadman.png','','','','','','',NULL,'1','2018-04-04 21:10:59'),(80,1,226,'mary-heriot-1','composite',1,0,'http://achimages.dev-cdh.org/MaryHeriot.png','','','','','','',NULL,'1','2018-04-04 21:34:10'),(78,1,259,'linda-bowman-1','composite',1,0,'http://achimages.dev-cdh.org/LindaBowman.png','','','','','','',NULL,'1','2018-04-04 21:16:28'),(79,1,225,'lisa-leask-1','composite',1,0,'http://achimages.dev-cdh.org/LisaLeask.png','','','','','','',NULL,'1','2018-04-04 21:17:55'),(82,1,229,'mary-rock-1','composite',1,0,'http://achimages.dev-cdh.org/MaryRock.png','','','','','','',NULL,'1','2018-04-04 21:35:46'),(83,1,230,'michelle-hutchinson-1','composite',1,0,'http://achimages.dev-cdh.org/MitchelleHutchinson.png','','','','','','',NULL,'1','2018-04-04 21:36:10'),(84,1,233,'myra-reichart-1','composite',1,0,'http://achimages.dev-cdh.org/MyraReichart.png','','','','','','',NULL,'1','2018-04-04 21:36:39'),(85,1,232,'neisie-jacobs-1','composite',1,0,'http://achimages.dev-cdh.org/NeiseJacobs.png','','','','','','',NULL,'1','2018-04-04 21:37:12'),(86,1,234,'norma-king-1','composite',1,0,'http://achimages.dev-cdh.org/NormaKing.png','','','','','','',NULL,'1','2018-04-04 21:40:31'),(87,1,235,'peggy-butler-1','composite',1,0,'http://achimages.dev-cdh.org/PeggyButler.png','','','','','','',NULL,'1','2018-04-04 21:41:10'),(88,1,237,'rebekah-havrilla-1','composite',1,0,'http://achimages.dev-cdh.org/RebekahHavrilla.png','','','','','','',NULL,'1','2018-04-04 21:41:31'),(89,1,238,'roberta-lockwood-1','composite',1,0,'http://achimages.dev-cdh.org/RobertaLockwood.png','','','','','','',NULL,'1','2018-04-04 21:41:52'),(92,1,241,'sharon-pierre-1','composite',1,0,'http://achimages.dev-cdh.org/SharonPierre.png','','','','','','',NULL,'1','2018-04-04 21:45:45'),(91,1,239,'roxanne-cheney-1','composite',1,0,'http://achimages.dev-cdh.org/RoxanneCheney.png','','','','','','',NULL,'1','2018-04-04 21:45:21'),(93,1,242,'sona-lyttle-1','composite',1,0,'http://achimages.dev-cdh.org/SonaLyttle.png','','','','','','',NULL,'1','2018-04-04 21:46:16'),(94,1,243,'susan-fillmore-1','composite',1,0,'http://achimages.dev-cdh.org/SusanFillmore.png','','','','','','',NULL,'1','2018-04-04 21:46:36'),(95,1,244,'susan-jarvie-1','composite',1,0,'http://achimages.dev-cdh.org/SusanJarvie.png','','','','','','',NULL,'1','2018-04-04 21:47:12'),(96,1,245,'tashima-martin-1','composite',1,0,'http://achimages.dev-cdh.org/TashimaMartin.png','','','','','','',NULL,'1','2018-04-04 21:47:38'),(97,1,246,'thelma-hodge-1','composite',1,0,'http://achimages.dev-cdh.org/ThelmaHodge.png','','','','','','',NULL,'1','2018-04-04 21:47:57'),(98,1,247,'wanda-pearson-1','composite',1,0,'http://achimages.dev-cdh.org/WandaPearson.png','','','','','','',NULL,'1','2018-04-04 21:48:14'),(100,1,164,'beatricesharpepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:33:33'),(101,1,165,'carolynwashingtonpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:34:00'),(102,1,166,'carriefrohnapfelpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:34:17'),(103,1,167,'charlotteleepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:34:35'),(104,1,168,'cuishapeircelundermanpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:34:54'),(105,1,169,'drneumannpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:35:12'),(106,1,170,'halseyhinsonpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:35:38'),(107,1,171,'helenrookspng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:35:53'),(108,1,172,'hiledixonpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:36:05'),(109,1,173,'hopefurtadopng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:36:25'),(110,1,174,'idaostendorfpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:36:50'),(111,1,175,'jennifermorsepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:37:04'),(112,1,176,'jennypournellepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:37:20'),(113,1,177,'jerethamoorepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:37:36'),(114,1,178,'jeristeedlyandbeverlyolisspng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:37:59'),(115,1,179,'kashuniedwardspng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:38:17'),(116,1,180,'lindabowmanpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:38:35'),(117,1,181,'lisaleaskpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:38:49'),(118,1,182,'maryheriotpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:39:04'),(119,1,183,'maryjanematthewspng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:39:19'),(120,1,184,'maryreschpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:39:36'),(121,1,185,'maryrockpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:39:53'),(122,1,186,'mitchellehutchinsonpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:40:09'),(123,1,187,'myrareichartpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:40:22'),(124,1,188,'neisejacobspng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:40:37'),(125,1,189,'normakingpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:40:51'),(126,1,190,'peggybutlerpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:41:03'),(127,1,191,'rebekahhavrillapng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:41:19'),(128,1,192,'rfc_achjennypournelle_acc1m4v','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:41:34'),(129,1,193,'rfc_achliledixon_acc1m4v','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:41:54'),(130,1,194,'rfc_achmaryrock_acc1m4v','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:42:16'),(131,1,195,'rfc_achmyrareichart_acc1m4v','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:42:32'),(132,1,196,'rfc_achsusanjarvie_acc1m4v','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:42:45'),(133,1,197,'robertalockwoodpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:43:13'),(134,1,198,'roxannecheneypng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:43:26'),(135,1,199,'sharonpierrepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:43:40'),(136,1,200,'sonalyttlepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:43:53'),(137,1,201,'susanfillmorepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:44:05'),(138,1,202,'susanjarviepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:44:25'),(139,1,203,'tashimamartinpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:44:40'),(140,1,204,'thelmahodgepng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:44:54'),(141,1,205,'virginiajamiesonpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:45:19'),(142,1,206,'wandapearsonpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 15:47:24'),(143,1,248,'virginia-jamieson','composite',1,0,'http://achimages.dev-cdh.org/VirginiaJamieson.png','','','','','','',NULL,'1','2018-04-13 16:32:16'),(144,1,251,'rfc_achvirginiajamieson_acc1m4v','media',1,0,'','','','','','','',NULL,'1','2018-04-13 16:33:43'),(145,1,252,'virginia-jamison','composite',1,0,'http://achimages.dev-cdh.org/VirginiaJamieson.png','','','','','','',NULL,'1','2018-04-13 16:37:17'),(146,1,253,'libbysteadmanpng','media',1,0,'','','','','','','',NULL,'1','2018-04-13 16:38:23'),(147,1,255,'jeristeedlyandbeverlyolisspng-1','media',1,0,'','','','','','','',NULL,'1','2018-04-13 16:39:11'),(148,1,258,'lindabowmanpng-1','media',1,0,'','','','','','','',NULL,'1','2018-04-13 16:42:17');
/*!40000 ALTER TABLE `scalar_db_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_rel_annotated`
--
DROP TABLE IF EXISTS `scalar_db_rel_annotated`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_rel_annotated` (
`parent_version_id` int(10) unsigned DEFAULT '0',
`child_version_id` int(10) unsigned NOT NULL DEFAULT '0',
`start_seconds` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
`end_seconds` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
`start_line_num` smallint(2) unsigned NOT NULL DEFAULT '0',
`end_line_num` smallint(2) unsigned NOT NULL DEFAULT '0',
`points` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
KEY `parent_child` (`parent_version_id`,`child_version_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_rel_annotated`
--
LOCK TABLES `scalar_db_rel_annotated` WRITE;
/*!40000 ALTER TABLE `scalar_db_rel_annotated` DISABLE KEYS */;
/*!40000 ALTER TABLE `scalar_db_rel_annotated` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_rel_contained`
--
DROP TABLE IF EXISTS `scalar_db_rel_contained`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_rel_contained` (
`parent_version_id` int(10) unsigned NOT NULL DEFAULT '0',
`child_version_id` int(10) unsigned NOT NULL DEFAULT '0',
`sort_number` int(5) unsigned NOT NULL DEFAULT '0',
KEY `parent_child` (`parent_version_id`,`child_version_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_rel_contained`
--
LOCK TABLES `scalar_db_rel_contained` WRITE;
/*!40000 ALTER TABLE `scalar_db_rel_contained` DISABLE KEYS */;
INSERT INTO `scalar_db_rel_contained` VALUES (11,10,1),(11,14,1),(11,15,1),(11,16,1),(11,17,1),(11,18,1),(11,24,1),(25,13,1),(11,25,1),(26,13,1),(11,26,1),(27,13,1),(11,27,1),(28,13,1),(11,28,1),(29,13,1),(11,29,1),(30,13,1),(11,30,1),(11,32,1),(58,13,1),(11,58,1),(59,13,1),(59,31,2),(11,59,1),(60,13,1),(60,31,2),(11,60,1),(11,61,1),(11,63,1),(11,68,1),(11,83,1),(97,83,1),(97,118,1),(97,119,1),(97,145,1),(97,148,1),(97,149,1),(97,150,1),(97,151,1),(97,152,1),(97,153,1),(155,153,1),(155,156,1),(155,157,1),(158,154,1),(160,159,1),(160,154,2),(160,98,3),(160,99,4),(160,100,5),(162,154,2),(160,102,7),(160,105,8),(160,106,9),(160,107,10),(160,108,11),(160,109,12),(160,110,13),(160,111,14),(160,113,15),(160,114,16),(160,115,17),(160,116,18),(160,117,19),(160,121,20),(160,122,21),(160,125,22),(160,70,23),(160,126,24),(160,127,25),(160,128,26),(160,129,27),(160,130,28),(160,131,29),(160,132,30),(160,133,31),(160,134,32),(160,136,33),(160,138,34),(160,139,35),(160,140,36),(160,141,37),(160,142,38),(160,143,39),(160,144,40),(155,160,1),(161,159,1),(161,154,2),(161,98,3),(161,99,4),(161,100,5),(162,159,1),(161,102,7),(161,105,8),(161,106,9),(161,107,10),(161,108,11),(161,109,12),(161,110,13),(161,111,14),(161,113,15),(161,114,16),(161,115,17),(161,116,18),(161,117,19),(161,121,20),(161,122,21),(161,125,22),(161,70,23),(161,126,24),(161,127,25),(161,128,26),(161,129,27),(161,130,28),(161,131,29),(161,132,30),(161,133,31),(161,134,32),(161,136,33),(161,138,34),(161,139,35),(161,140,36),(161,141,37),(161,142,38),(161,143,39),(161,144,40),(155,161,1),(162,98,3),(162,99,4),(162,100,5),(162,102,6),(162,105,7),(162,106,8),(162,107,9),(162,108,10),(162,109,11),(162,110,12),(162,111,13),(162,113,14),(162,114,15),(162,115,16),(162,116,17),(162,117,18),(162,121,19),(162,122,20),(162,125,21),(162,70,22),(162,126,23),(162,127,24),(162,128,25),(162,129,26),(162,130,27),(162,131,28),(162,132,29),(162,133,30),(162,134,31),(162,136,32),(162,138,33),(162,139,34),(162,140,35),(162,141,36),(162,142,37),(162,143,38),(162,144,39),(155,162,1),(162,207,1),(162,208,1),(162,209,2),(162,210,3),(162,211,4),(162,212,5),(162,213,6),(162,214,7),(162,215,8),(162,216,9),(162,217,10),(162,218,11),(162,219,12),(162,220,13),(162,221,14),(162,222,15),(162,223,17),(162,224,18),(162,225,20),(162,226,21),(162,227,22),(162,228,23),(162,229,24),(162,230,25),(162,231,26),(162,232,27),(162,233,26),(162,234,28),(162,235,29),(162,236,30),(162,237,30),(162,238,31),(162,239,32),(162,240,33),(162,241,33),(162,242,34),(162,243,35),(162,244,36),(162,245,37),(162,246,38),(162,247,39),(162,254,18),(162,256,16),(162,259,19),(260,208,1),(260,209,2),(260,210,3),(260,211,4),(260,212,5),(260,213,6),(260,214,7),(260,215,8),(260,216,9),(260,217,10),(260,218,11),(260,219,12),(260,220,13),(260,221,14),(260,222,15),(260,256,16),(260,223,17),(260,254,18),(260,259,19),(260,225,20),(260,226,21),(260,227,22),(260,228,23),(260,229,24),(260,230,25),(260,233,26),(260,232,27),(260,234,28),(260,235,29),(260,237,30),(260,238,31),(260,239,32),(260,241,33),(260,242,34),(260,243,35),(260,244,36),(260,245,37),(260,246,38),(260,247,39),(155,260,1),(261,260,1),(262,260,1),(263,260,1);
/*!40000 ALTER TABLE `scalar_db_rel_contained` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_rel_referenced`
--
DROP TABLE IF EXISTS `scalar_db_rel_referenced`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_rel_referenced` (
`parent_version_id` int(10) unsigned NOT NULL DEFAULT '0',
`child_version_id` int(10) unsigned NOT NULL DEFAULT '0',
`reference_text` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
KEY `parent_child` (`parent_version_id`,`child_version_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_rel_referenced`
--
LOCK TABLES `scalar_db_rel_referenced` WRITE;
/*!40000 ALTER TABLE `scalar_db_rel_referenced` DISABLE KEYS */;
INSERT INTO `scalar_db_rel_referenced` VALUES (62,13,''),(64,13,''),(65,13,''),(67,57,''),(70,57,''),(81,19,''),(82,19,''),(94,19,''),(94,95,''),(96,95,''),(98,20,''),(99,21,''),(100,22,''),(207,13,''),(102,39,''),(103,40,''),(103,104,''),(105,104,''),(106,42,''),(107,43,''),(108,89,''),(109,45,''),(110,46,''),(111,47,''),(123,124,''),(113,88,''),(114,48,''),(115,50,''),(116,51,''),(117,52,''),(123,55,''),(121,53,''),(122,54,''),(125,124,''),(126,71,''),(127,90,''),(128,72,''),(129,72,''),(130,73,''),(131,74,''),(132,75,''),(133,76,''),(134,77,''),(136,78,''),(137,79,''),(138,79,''),(139,80,''),(140,84,''),(141,93,''),(142,85,''),(143,86,''),(144,87,''),(146,13,''),(147,13,''),(154,95,''),(158,13,''),(159,13,''),(208,13,''),(209,95,''),(210,20,''),(211,21,''),(212,22,''),(213,39,''),(214,104,''),(215,42,''),(216,43,''),(217,89,''),(218,45,''),(219,46,''),(220,47,''),(221,88,''),(222,48,''),(223,51,''),(224,52,''),(225,54,''),(226,124,''),(227,57,''),(228,71,''),(229,90,''),(230,72,''),(231,72,''),(232,73,''),(233,72,''),(234,74,''),(235,75,''),(236,76,''),(237,76,''),(238,77,''),(239,78,''),(240,79,''),(241,79,''),(242,80,''),(243,84,''),(244,93,''),(245,85,''),(246,86,''),(247,87,''),(252,251,''),(254,52,''),(256,50,''),(259,53,'');
/*!40000 ALTER TABLE `scalar_db_rel_referenced` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_rel_replied`
--
DROP TABLE IF EXISTS `scalar_db_rel_replied`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_rel_replied` (
`parent_version_id` int(10) unsigned NOT NULL DEFAULT '0',
`child_version_id` int(10) unsigned NOT NULL DEFAULT '0',
`paragraph_num` int(5) unsigned NOT NULL DEFAULT '0',
`datetime` timestamp NOT NULL DEFAULT '1970-01-01 00:00:01' ON UPDATE CURRENT_TIMESTAMP,
KEY `parent_child` (`parent_version_id`,`child_version_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_rel_replied`
--
LOCK TABLES `scalar_db_rel_replied` WRITE;
/*!40000 ALTER TABLE `scalar_db_rel_replied` DISABLE KEYS */;
/*!40000 ALTER TABLE `scalar_db_rel_replied` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_rel_tagged`
--
DROP TABLE IF EXISTS `scalar_db_rel_tagged`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_rel_tagged` (
`parent_version_id` int(10) unsigned DEFAULT '0',
`child_version_id` int(10) unsigned NOT NULL DEFAULT '0',
KEY `parent_child` (`parent_version_id`,`child_version_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_rel_tagged`
--
LOCK TABLES `scalar_db_rel_tagged` WRITE;
/*!40000 ALTER TABLE `scalar_db_rel_tagged` DISABLE KEYS */;
INSERT INTO `scalar_db_rel_tagged` VALUES (13,31),(13,62),(18,13),(24,13),(24,13),(24,19),(24,20),(24,21),(24,22),(24,23),(25,13),(25,19),(25,20),(25,21),(25,22),(25,23),(26,13),(26,19),(26,20),(26,21),(26,22),(26,23),(27,13),(27,19),(27,20),(27,21),(27,22),(27,23),(28,13),(28,19),(28,20),(28,21),(28,22),(28,23),(29,13),(29,19),(29,20),(29,21),(29,22),(29,23),(30,13),(30,19),(30,20),(30,21),(30,22),(30,23),(32,13),(32,19),(32,20),(32,21),(32,22),(32,23),(32,38),(32,39),(58,13),(58,19),(58,20),(58,21),(58,22),(58,39),(59,13),(59,19),(59,20),(59,21),(59,22),(59,39),(60,13),(60,19),(60,20),(60,21),(60,22),(60,39),(61,13),(61,19),(61,20),(61,21),(61,22),(61,39),(63,62),(63,64),(63,65),(68,65),(68,67),(68,70),(83,65),(83,70),(83,82),(83,94),(83,96),(118,65),(118,65),(118,70),(118,70),(118,96),(118,96),(118,97),(118,98),(118,99),(118,100),(118,102),(118,105),(118,106),(118,107),(118,108),(118,109),(118,110),(118,111),(118,113),(118,114),(118,115),(118,116),(118,117),(118,118),(119,65),(119,70),(119,96),(119,97),(119,98),(119,99),(119,100),(119,102),(119,105),(119,106),(119,107),(119,108),(119,109),(119,110),(119,111),(119,113),(119,114),(119,115),(119,116),(119,117),(119,119),(145,65),(145,70),(145,96),(145,98),(145,99),(145,100),(145,102),(145,105),(145,106),(145,107),(145,108),(145,109),(145,110),(145,111),(145,113),(145,114),(145,115),(145,116),(145,117),(145,121),(145,122),(145,125),(145,126),(145,127),(145,128),(145,129),(145,130),(145,131),(145,132),(145,133),(145,134),(145,136),(145,138),(145,139),(145,140),(145,141),(145,142),(145,143),(145,144),(145,145),(145,146),(145,147),(148,70),(148,96),(148,98),(148,99),(148,100),(148,102),(148,105),(148,106),(148,107),(148,108),(148,109),(148,110),(148,111),(148,113),(148,114),(148,115),(148,116),(148,117),(148,121),(148,122),(148,125),(148,126),(148,127),(148,128),(148,129),(148,130),(148,131),(148,132),(148,133),(148,134),(148,136),(148,138),(148,139),(148,140),(148,141),(148,142),(148,143),(148,144),(148,147),(148,148),(148,148);
/*!40000 ALTER TABLE `scalar_db_rel_tagged` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_resources`
--
DROP TABLE IF EXISTS `scalar_db_resources`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_resources` (
`field` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`value` mediumtext COLLATE utf8_unicode_ci NOT NULL,
KEY `field` (`field`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_resources`
--
LOCK TABLES `scalar_db_resources` WRITE;
/*!40000 ALTER TABLE `scalar_db_resources` DISABLE KEYS */;
/*!40000 ALTER TABLE `scalar_db_resources` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_sessions`
--
DROP TABLE IF EXISTS `scalar_db_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_sessions` (
`session_id` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
`ip_address` varchar(45) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
`user_agent` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`last_activity` int(10) unsigned NOT NULL DEFAULT '0',
`user_data` mediumtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`session_id`),
KEY `last_activity_idx` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_sessions`
--
LOCK TABLES `scalar_db_sessions` WRITE;
/*!40000 ALTER TABLE `scalar_db_sessions` DISABLE KEYS */;
INSERT INTO `scalar_db_sessions` VALUES ('66b72082bba8088dcccd62b0df3d7216','172.18.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1524316310,'a:2:{s:9:\"user_data\";s:0:\"\";s:23:\"http://ach.dev-cdh.org/\";a:3:{s:12:\"is_logged_in\";b:0;s:5:\"error\";N;s:3:\"uri\";s:1:\"/\";}}'),('e400ba4f5cd7339217c092ee9d4ef0ae','172.18.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1524235424,'a:2:{s:9:\"user_data\";s:0:\"\";s:23:\"http://ach.dev-cdh.org/\";a:3:{s:12:\"is_logged_in\";b:0;s:5:\"error\";N;s:3:\"uri\";s:1:\"/\";}}'),('dbd3a6f50786b4e2686d11785cb77796','172.18.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.3',1524233485,'a:2:{s:9:\"user_data\";s:0:\"\";s:23:\"http://ach.dev-cdh.org/\";a:3:{s:12:\"is_logged_in\";b:0;s:5:\"error\";N;s:3:\"uri\";s:171:\"/always-coming-home/rdf/node/virginia-jamison?format=json&rec=1&ref=0&start=0&results=20&prov=0&versions=0&callback=jQuery1705380244124137064_1524233648720&_=1524233673085\";}}'),('b4ac630c62d2a93904113982ceb8e1e1','172.18.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:59.0) Gecko/20100101 Firefox/59.0',1524233554,'a:2:{s:9:\"user_data\";s:0:\"\";s:23:\"http://ach.dev-cdh.org/\";a:3:{s:12:\"is_logged_in\";b:0;s:5:\"error\";N;s:3:\"uri\";s:154:\"/always-coming-home/rdf/node/athenashoemakerpng?format=json&rec=1&ref=1&prov=0&versions=0&callback=jQuery1704626980465141942_1524233561768&_=1524233563718\";}}'),('e3d2778786e32f624847584ab9657e74','172.18.0.1','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5',1524167976,'a:2:{s:9:\"user_data\";s:0:\"\";s:23:\"http://ach.dev-cdh.org/\";a:3:{s:12:\"is_logged_in\";b:0;s:5:\"error\";N;s:3:\"uri\";s:1:\"/\";}}'),('a9fe97f738b6082ef842ec1fa280c37f','172.18.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.3',1524167815,'a:2:{s:9:\"user_data\";s:0:\"\";s:23:\"http://ach.dev-cdh.org/\";a:3:{s:12:\"is_logged_in\";b:0;s:5:\"error\";N;s:3:\"uri\";s:1:\"/\";}}'),('3da687b81b259fa60d53ff2f628b07c9','172.18.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1524082238,'a:2:{s:9:\"user_data\";s:0:\"\";s:23:\"http://ach.dev-cdh.org/\";a:3:{s:12:\"is_logged_in\";b:0;s:5:\"error\";N;s:3:\"uri\";s:1:\"/\";}}'),('1b8e5f4159abbe4de2d5ecaa39e83e45','172.18.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.3',1524065948,'a:2:{s:9:\"user_data\";s:0:\"\";s:23:\"http://ach.dev-cdh.org/\";a:10:{s:7:\"user_id\";s:1:\"1\";s:5:\"email\";s:17:\"[email protected]\";s:8:\"fullname\";s:12:\"Robert Carff\";s:8:\"password\";s:128:\"412695077737870f6dc84a8c1f71db02269cbd4528f8be6992bba84b7c2ab45294dd3fe25af18cf0eee6679b991ec72925ebd6952cd70d76fd9714b9d1177fa7\";s:12:\"reset_string\";s:0:\"\";s:3:\"url\";N;s:8:\"is_super\";s:1:\"0\";s:12:\"is_logged_in\";b:1;s:5:\"error\";N;s:3:\"uri\";s:171:\"/always-coming-home/rdf/node/virginia-jamison?format=json&rec=1&ref=0&start=0&results=20&prov=0&versions=0&callback=jQuery1702745842318406462_1524066063955&_=1524066064403\";}}');
/*!40000 ALTER TABLE `scalar_db_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_user_books`
--
DROP TABLE IF EXISTS `scalar_db_user_books`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_user_books` (
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
`book_id` int(10) unsigned NOT NULL DEFAULT '0',
`relationship` enum('author','commentator','reviewer','reader') COLLATE utf8_unicode_ci NOT NULL,
`list_in_index` tinyint(1) unsigned NOT NULL DEFAULT '1',
`sort_number` int(10) unsigned NOT NULL DEFAULT '0',
`api_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`whitelist` tinyint(1) unsigned NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_user_books`
--
LOCK TABLES `scalar_db_user_books` WRITE;
/*!40000 ALTER TABLE `scalar_db_user_books` DISABLE KEYS */;
INSERT INTO `scalar_db_user_books` VALUES (1,1,'author',1,0,NULL,0),(2,2,'author',1,0,NULL,0);
/*!40000 ALTER TABLE `scalar_db_user_books` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_user_history`
--
DROP TABLE IF EXISTS `scalar_db_user_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_user_history` (
`history_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) NOT NULL,
`content_id` int(10) NOT NULL,
`book_id` int(10) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`history_id`),
KEY `user_id` (`user_id`,`content_id`,`book_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_user_history`
--
LOCK TABLES `scalar_db_user_history` WRITE;
/*!40000 ALTER TABLE `scalar_db_user_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `scalar_db_user_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_users`
--
DROP TABLE IF EXISTS `scalar_db_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_users` (
`user_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`fullname` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`reset_string` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_super` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_users`
--
LOCK TABLES `scalar_db_users` WRITE;
/*!40000 ALTER TABLE `scalar_db_users` DISABLE KEYS */;
INSERT INTO `scalar_db_users` VALUES (1,'[email protected]','Robert Carff','412695077737870f6dc84a8c1f71db02269cbd4528f8be6992bba84b7c2ab45294dd3fe25af18cf0eee6679b991ec72925ebd6952cd70d76fd9714b9d1177fa7','',NULL,0),(2,'[email protected]','Tyler Moon','221405f04eceb278283102cefa2f6c745eb41d82210ec26de01d521b15f98bde17599064112176fd74c15dfd110049d5459ea43ba6f85bb2998f0a2d41c51bee','',NULL,0);
/*!40000 ALTER TABLE `scalar_db_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_versions`
--
DROP TABLE IF EXISTS `scalar_db_versions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_versions` (
`version_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`content_id` int(10) unsigned NOT NULL DEFAULT '0',
`version_num` int(10) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`content` mediumtext COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`default_view` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'plain',
`continue_to_content_id` int(10) NOT NULL DEFAULT '0',
`sort_number` smallint(2) unsigned NOT NULL DEFAULT '0',
`user` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`created` datetime NOT NULL,
`attribution` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`version_id`),
KEY `content_id` (`content_id`)
) ENGINE=MyISAM AUTO_INCREMENT=264 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_versions`
--
LOCK TABLES `scalar_db_versions` WRITE;
/*!40000 ALTER TABLE `scalar_db_versions` DISABLE KEYS */;
INSERT INTO `scalar_db_versions` VALUES (8,8,1,'ACH_Banner','The banner for the project','','http://achimages.dev-cdh.org/ach_banner.png','plain',0,0,'1','2018-03-30 22:18:15','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(9,3,2,'Always Coming Home','','','','book_splash',0,0,'1','2018-03-30 22:20:46','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(11,3,3,'Always Coming Home','','','','book_splash',0,0,'1','2018-03-30 23:21:35','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(12,10,1,'Athena Shoemaker','Athena Shoemakers Experiences','','http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v','plain',0,0,'1','2018-03-30 23:23:16','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(10,9,1,'Athena Shoemaker','Athena shoemakers experiences','','','plain',0,0,'1','2018-03-30 23:21:32','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(3,3,1,'Always Coming Home','','','','book_splash',0,0,'1','2018-03-26 17:57:19','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.4\";}\";'),(13,10,2,'Athena Shoemaker','Athena Shoemakers Experiences','','http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v','plain',0,0,'1','2018-03-30 23:24:24','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(14,9,2,'Athena Shoemaker','Athena shoemakers experiences','','','structured_gallery',0,0,'1','2018-03-30 23:25:50','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(15,9,3,'Library page','Athena shoemakers experiences','','','structured_gallery',0,0,'1','2018-03-30 23:33:17','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(16,9,4,'Library page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-03-30 23:33:35','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(17,9,5,'Library page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-03-30 23:36:32','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(18,9,6,'Library page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-03-30 23:39:19','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(19,11,1,'Beatrice Sharpe','Video 2','','http://achimages.dev-cdh.org/ACH_BeatriceSharpe_Mez1_Acc.m4v','plain',0,0,'1','2018-03-30 23:40:55','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(20,12,1,'Carolyn Washington','Video 3','','http://achimages.dev-cdh.org/ACH_CarolynWashington_Mez1_Acc.m4v','plain',0,0,'1','2018-03-30 23:41:30','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(21,13,1,'Carrie Frohnapfel','Video 4','','http://achimages.dev-cdh.org/ACH_CarrieFrohnapfel_Mez1_Acc.m4v','plain',0,0,'1','2018-03-30 23:42:10','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(22,14,1,'Charlotte Lee','Video 5','','http://achimages.dev-cdh.org/ACH_CharlotteLee_Mez1_Acc.m4v','plain',0,0,'1','2018-03-30 23:42:42','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(23,15,1,'Cuisha Pierce-Lunderman','Video 6','','http://achimages.dev-cdh.org/ACH_Cuisha_Pierce-Lunderman_Mez1_Acc','plain',0,0,'1','2018-03-30 23:43:15','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(24,9,7,'Library page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-03-30 23:44:19','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(25,9,8,'Library page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-03-30 23:53:05','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(26,9,9,'Library page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-03-30 23:53:07','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(27,9,10,'Index Page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-04-02 19:14:36','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(28,9,11,'Index Page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-04-02 19:14:38','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(29,9,12,'Index Page','Page displaying all video pages','','','vistoc',0,0,'1','2018-04-02 19:15:06','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(30,9,13,'Index Page','Page displaying all video pages','','','structured_gallery',0,0,'1','2018-04-02 19:15:57','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(31,16,1,'Athena Shoemaker','Athena Shoemakers Experiences','','','plain',0,0,'1','2018-04-02 19:23:00','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(32,9,14,'Index Page','Page displaying all video pages','','','structured_gallery',16,0,'1','2018-04-02 19:25:23','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(41,23,1,'Dr Neumann','','','http://achimages.dev-cdh.org/ACH_DrNeumann1_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:49:11','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(40,22,1,'Dr Neumann','','','http://achimages.dev-cdh.org/CH_DrNeumann1_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:48:39','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(39,15,3,'Cuisha Pierce-Lunderman','Video 6','','http://achimages.dev-cdh.org/ACH_Cuisha_Pierce-Lunderman_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:46:03','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(38,15,2,'Cuisha Pierce-Lunderman','Video 6','','http://achimages.dev-cdh.org/ACH_Cuisha_Pierce-Lunderman_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:46:01','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(42,23,2,'Halsey Hinson','','','http://achimages.dev-cdh.org/ACH_HalseyHinson_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:49:40','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(43,24,1,'Helen Rooks','','','http://achimages.dev-cdh.org/ACH_HelenRooks_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:52:48','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(44,25,1,'Hope Furtado','','','http://achimages.dev-cdh.org/ACH_Hope_Furtado_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:53:15','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(45,25,2,'Hope Furtado','','','http://achimages.dev-cdh.org/ACH_Hope_Furtado_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:53:17','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(46,26,1,'Ida Ostendorf','','','http://achimages.dev-cdh.org/ACH_IdaOstendorf_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:53:58','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(47,27,1,'Jennifer Morse','','','http://achimages.dev-cdh.org/ACH_JenniferMorse_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:54:30','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(48,28,1,'Jeretha Moore','','','http://achimages.dev-cdh.org/ACH_JerethaMoore_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:56:27','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(49,29,1,'Jeri Steedly and Beverly Oliss','','','http://achimages.dev-cdh.org/ACH_Jeri_Steedly_Beverly_Oliss_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:57:16','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(50,29,2,'Jeri Steedly and Beverly Oliss','','','http://achimages.dev-cdh.org/ACH_Jeri_Steedly_Beverly_Oliss_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:57:19','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(51,30,1,'Kashuni Edwards','','','http://achimages.dev-cdh.org/ACH_Kashuni_Edwards_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 19:58:40','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(52,31,1,'Libby Steadman','','','http://achimages.dev-cdh.org/ACH_Libby_Steadman_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:03:57','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(53,32,1,'Linda Bowman','','','http://achimages.dev-cdh.org/ACH_Linda_Bowman_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:04:22','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(54,33,1,'Lisa Leask','','','http://achimages.dev-cdh.org/ACH_LisaLeask_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:05:09','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(55,34,1,'Mary Heriot','','','http://achimages.dev-cdh.org/CH_MaryHeriot_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:05:34','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(71,39,1,'Mary Resch','','','http://achimages.dev-cdh.org/ACH_MaryResch_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:26:00','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(57,36,1,'Mary Jane Matthews','','','http://achimages.dev-cdh.org/ACH_MaryJaneMatthews_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:06:12','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(58,9,15,'Index Page','Page displaying all video pages','','','structured_gallery',16,0,'1','2018-04-04 20:07:04','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(59,9,16,'Index Page','Page displaying all video pages','','','structured_gallery',16,0,'1','2018-04-04 20:07:37','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(60,9,17,'Index Page','Page displaying all video pages','This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 20:09:24','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(61,9,18,'Index Page','Page displaying all video pages','This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 20:11:43','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(62,16,2,'Athena Shoemaker','Athena Shoemakers Experiences','<a name=\"scalar-inline-media\" data-size=\"medium\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\" resource=\"athena-shoemaker-1\"></a>','','plain',0,0,'1','2018-04-04 20:14:10','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(63,9,19,'Index Page','Page displaying all video pages','This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 20:14:45','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(64,16,3,'Athena Shoemaker','Athena Shoemakers Experiences','<a data-size=\"medium\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"athena-shoemaker-1\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 20:15:59','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(65,16,4,'Athena Shoemaker','Athena Shoemakers Interveiw','<a data-size=\"medium\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"athena-shoemaker-1\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 20:17:07','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(73,41,1,'Neisie Jacobs','','','http://achimages.dev-cdh.org/ACH_NeisieJacobs_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:26:49','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(67,38,1,'Mary Jane Matthews','Mary Jane Matthews Interview','<a name=\"scalar-inline-media\" data-size=\"medium\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_MaryJaneMatthews_Mez1_Acc.m4v\" resource=\"mary-jane-matthews\"></a>','','plain',0,0,'1','2018-04-04 20:19:33','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(68,9,20,'Index Page','Page displaying all video pages','This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 20:20:54','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(72,40,1,'Michelle Hutchinson','','','http://achimages.dev-cdh.org/ACH_MichelleHutchinson_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:26:26','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(70,38,2,'Mary Jane Matthews','Mary Jane Matthews Interview','<a data-size=\"medium\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"mary-jane-matthews\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_MaryJaneMatthews_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 20:23:45','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(74,42,1,'Norma King','','','http://achimages.dev-cdh.org/ACH_Norma_King_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:27:14','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(75,43,1,'Peggy Butler','','','http://achimages.dev-cdh.org/ACH_PeggyButler_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:27:34','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(76,44,1,'Rebekah Havrilla','','','http://achimages.dev-cdh.org/ACH_RebekahHavrilla_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:28:00','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(77,45,1,'Roberta Lockwood','','','http://achimages.dev-cdh.org/ACH_Roberta_Lockwood_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:28:23','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(78,46,1,'Roxanne Cheney','','','http://achimages.dev-cdh.org/ACH_Roxanne_Cheney_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:28:44','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(79,47,1,'Sharon Pierre','','','http://achimages.dev-cdh.org/ACH_SharonPierre_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:29:40','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(80,48,1,'Sona Lyttle','','','http://achimages.dev-cdh.org/ACH_SonaLyttle_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:30:16','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(81,49,1,'Beatrice Sharpe','','<a name=\"scalar-inline-media\" data-size=\"native\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_BeatriceSharpe_Mez1_Acc.m4v\" resource=\"beatrice-sharpe\"></a>','','plain',0,0,'1','2018-04-04 20:31:36','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(82,49,2,'Beatrice Sharpe','','<a name=\"scalar-inline-media\" data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"beatrice-sharpe\" href=\"http://achimages.dev-cdh.org/ACH_BeatriceSharpe_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 20:31:53','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(83,9,21,'Index Page','Page displaying all video pages','This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 20:32:07','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(84,50,1,'Susan Fillmore','','','http://achimages.dev-cdh.org/ACH_SusanFillmore_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:33:48','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(85,51,1,'Tashima Martin','','','http://achimages.dev-cdh.org/ACH_TashimaMartin_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:34:16','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(86,52,1,'Thelma Hodge','','','http://achimages.dev-cdh.org/ACH_ThelmaHodge_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:35:03','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(87,53,1,'Wanda Pearson','','','http://achimages.dev-cdh.org/ACH_WandaPearson_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:36:41','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(88,54,1,'Jenny Pournelle','','','http://achimages.dev-cdh.org/RFC_ACHjennypournelle_Acc1.m4v','plain',0,0,'1','2018-04-04 20:40:29','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(89,55,1,'Hlile Dixon','','','http://achimages.dev-cdh.org/RFC_ACHliledixon_Acc1.m4v','plain',0,0,'1','2018-04-04 20:40:58','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(90,56,1,'Mary Rock','','','http://achimages.dev-cdh.org/RFC_ACHmaryrock_Acc1.m4v','plain',0,0,'1','2018-04-04 20:41:37','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(91,57,1,'Myra Reichart','','','http://achimages.dev-cdh.org/FC_ACHmyrareichart_Acc1.m4v','plain',0,0,'1','2018-04-04 20:42:26','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(92,57,2,'Myra Reichart','','','http://achimages.dev-cdh.org/RFC_ACHmyrareichart_Acc1.m4v','plain',0,0,'1','2018-04-04 20:42:36','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(93,58,1,'Susan Jarvie','','','http://achimages.dev-cdh.org/RFC_ACHsusanjarvie_Acc1.m4v','plain',0,0,'1','2018-04-04 20:43:09','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(94,49,3,'Beatrice Sharpe','Mrs. Sharpe\'s experiences in WWII','<a data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"beatrice-sharpe\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_BeatriceSharpe_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 20:52:46','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(95,11,2,'Beatrice Sharpe','Mrs. Sharpe\'s experiences in WWII','','http://achimages.dev-cdh.org/ACH_BeatriceSharpe_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 20:53:32','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(96,49,4,'Beatrice Sharpe','Mrs. Sharpe\'s experiences in WWII','<a data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"beatrice-sharpe\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_BeatriceSharpe_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 20:55:25','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(97,3,4,'Always Coming Home','','','','book_splash',0,0,'1','2018-04-04 20:58:16','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(98,59,1,'Carolyn Washington','Carolyn Washington\'s Interview','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_CarolynWashington_Mez1_Acc.m4v\" resource=\"carolyn-washington\"></a>','','plain',0,0,'1','2018-04-04 21:00:32','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(99,60,1,'Carrie Frohnapfel','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_CarrieFrohnapfel_Mez1_Acc.m4v\" resource=\"carrie-frohnapfel\"></a>','','plain',0,0,'1','2018-04-04 21:01:19','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(100,61,1,'Charlotte Lee','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_CharlotteLee_Mez1_Acc.m4v\" resource=\"charlotte-lee\"></a>','','plain',0,0,'1','2018-04-04 21:01:44','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(162,9,35,'Index','Page displaying all video pages','<span style=\"color: rgb(0, 0, 0); font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; font-size: 12.8px;\">Always Coming Home: The American Female Veteran Experience Archive is designed to provide ongoing documentation of the diverse combat and service situations women in the military face as well as recording the experiences of the increasing numbers of female veterans whose return to civilian life has been affected by their years of service. Women veterans are interviewed, on video, and invited to share their reasons for joining the military, their experiences while in service, and the opportunities and setbacks they have faced upon return to civilian life. This project includes the short documentary “Soldier Girl.” There are currently over 50 interviews in the archive, some of which you can view here.</span><br /><br /><a name=\"scalar-inline-widget\" data-widget=\"card\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,jennifer-morse-1,jenny-pournelle-1,jeretha-moore-1,jeri-steedly-and-beverly-oliss-1,kashuni-edwards-1,libby-steadman-1,linda-bowman-1,lisa-leask-1,mary-heriot-1,mary-jane-matthews-1,mary-resch-1,mary-rock-1,michelle-hutchinson-1,myra-reichart-1,neisie-jacobs-1,norma-king-1,peggy-butler-1,rebekah-havrilla-1,roberta-lockwood-1,roxanne-cheney-1,sharon-pierre-1,sona-lyttle-1,susan-fillmore-1,susan-jarvie-1,tashima-martin-1,thelma-hodge-1,wanda-pearson-1\" data-size=\"medium\" data-align=\"center\" class=\"inlineWidget inline\"></a><br /><br /><br /><br /> ','','plain',0,0,'1','2018-04-13 15:28:22','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(102,63,1,'Cuisha Pierce-Lauderman','','<a name=\"scalar-inline-media\" data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"cuisha-pierce-lunderman\" href=\"http://achimages.dev-cdh.org/ACH_Cuisha_Pierce-Lunderman_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 21:02:34','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(103,64,1,'Dr. Neumann','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/CH_DrNeumann1_Mez1_Acc.m4v\" resource=\"dr-neumann\"></a>','','plain',0,0,'1','2018-04-04 21:03:26','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(104,22,2,'Dr Neumann','','','http://achimages.dev-cdh.org/ACH_DrNeumann1_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 21:04:14','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(105,64,2,'Dr. Neumann','','<a name=\"scalar-inline-media\" data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"dr-neumann\" href=\"http://achimages.dev-cdh.org/ACH_DrNeumann1_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 21:04:33','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(106,65,1,'Halsey Hison','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_HalseyHinson_Mez1_Acc.m4v\" resource=\"halsey-hinson\"></a>','','plain',0,0,'1','2018-04-04 21:05:02','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(107,66,1,'Helen Rooks','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_HelenRooks_Mez1_Acc.m4v\" resource=\"helen-rooks\"></a>','','plain',0,0,'1','2018-04-04 21:06:22','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(108,67,1,'Hlile Dixon','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/RFC_ACHliledixon_Acc1.m4v\" resource=\"hlile-dixon\"></a>','','plain',0,0,'1','2018-04-04 21:06:49','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(109,68,1,'Hope Furtado','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Hope_Furtado_Mez1_Acc.m4v\" resource=\"hope-furtado\"></a>','','plain',0,0,'1','2018-04-04 21:07:13','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(110,69,1,'Ida Ostendorf','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_IdaOstendorf_Mez1_Acc.m4v\" resource=\"ida-ostendorf\"></a>','','plain',0,0,'1','2018-04-04 21:07:51','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(111,70,1,'Jennifer Morse','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_JenniferMorse_Mez1_Acc.m4v\" resource=\"jennifer-morse\"></a>','','plain',0,0,'1','2018-04-04 21:08:22','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(124,34,2,'Mary Heriot','','','http://achimages.dev-cdh.org/ACH_MaryHeriot_Mez1_Acc.m4v','plain',0,0,'1','2018-04-04 21:34:30','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(125,80,2,'Mary Heriot','','<a name=\"scalar-inline-media\" data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"mary-heriot\" href=\"http://achimages.dev-cdh.org/ACH_MaryHeriot_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 21:34:41','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(113,72,1,'Jenny Pournelle','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/RFC_ACHjennypournelle_Acc1.m4v\" resource=\"jenny-pournelle\"></a>','','plain',0,0,'1','2018-04-04 21:09:08','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(114,73,1,'Jeretha Moore','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_JerethaMoore_Mez1_Acc.m4v\" resource=\"jeretha-moore\"></a>','','plain',0,0,'1','2018-04-04 21:09:34','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(115,74,1,'Jeri Steedly and Beverly Oliss','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Jeri_Steedly_Beverly_Oliss_Mez1_Acc.m4v\" resource=\"jeri-steedly-and-beverly-oliss\"></a>','','plain',0,0,'1','2018-04-04 21:10:08','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(116,75,1,'Kashuni Edwards','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Kashuni_Edwards_Mez1_Acc.m4v\" resource=\"kashuni-edwards\"></a>','','plain',0,0,'1','2018-04-04 21:10:41','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(117,76,1,'Libby Steadman','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Libby_Steadman_Mez1_Acc.m4v\" resource=\"libby-steadman\"></a>','','plain',0,0,'1','2018-04-04 21:10:59','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(118,9,22,'Index Page','Page displaying all video pages','This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 21:11:22','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(119,9,23,'Index Page','Page displaying all video pages','This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 21:14:49','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(123,80,1,'Mary Heriot','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/CH_MaryHeriot_Mez1_Acc.m4v\" resource=\"mary-heriot\"></a>','','plain',0,0,'1','2018-04-04 21:34:10','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(121,78,1,'Linda Bowman','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Linda_Bowman_Mez1_Acc.m4v\" resource=\"linda-bowman\"></a>','','plain',0,0,'1','2018-04-04 21:16:28','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(122,79,1,'Lisa Leask','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_LisaLeask_Mez1_Acc.m4v\" resource=\"lisa-leask\"></a>','','plain',0,0,'1','2018-04-04 21:17:55','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(126,81,1,'Mary Resch','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_MaryResch_Mez1_Acc.m4v\" resource=\"mary-resch\"></a>','','plain',0,0,'1','2018-04-04 21:35:24','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(127,82,1,'Mary Rock','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/RFC_ACHmaryrock_Acc1.m4v\" resource=\"mary-rock\"></a>','','plain',0,0,'1','2018-04-04 21:35:46','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(128,83,1,'Michelle Hutchinson','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_MichelleHutchinson_Mez1_Acc.m4v\" resource=\"michelle-hutchinson\"></a>','','plain',0,0,'1','2018-04-04 21:36:10','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(129,84,1,'Myra Reichart','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_MichelleHutchinson_Mez1_Acc.m4v\" resource=\"michelle-hutchinson\"></a>','','plain',0,0,'1','2018-04-04 21:36:39','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(130,85,1,'Neisie Jacobs','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_NeisieJacobs_Mez1_Acc.m4v\" resource=\"neisie-jacobs\"></a>','','plain',0,0,'1','2018-04-04 21:37:12','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(131,86,1,'Norma King','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Norma_King_Mez1_Acc.m4v\" resource=\"norma-king\"></a>','','plain',0,0,'1','2018-04-04 21:40:31','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(132,87,1,'Peggy Butler','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_PeggyButler_Mez1_Acc.m4v\" resource=\"peggy-butler\"></a>','','plain',0,0,'1','2018-04-04 21:41:10','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(133,88,1,'Rebekah Havrilla','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_RebekahHavrilla_Mez1_Acc.m4v\" resource=\"rebekah-havrilla\"></a>','','plain',0,0,'1','2018-04-04 21:41:31','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(134,89,1,'Roberta Lockwood','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Roberta_Lockwood_Mez1_Acc.m4v\" resource=\"roberta-lockwood\"></a>','','plain',0,0,'1','2018-04-04 21:41:52','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(136,91,1,'Roxanne Cheney','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Roxanne_Cheney_Mez1_Acc.m4v\" resource=\"roxanne-cheney\"></a>','','plain',0,0,'1','2018-04-04 21:45:21','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(137,92,1,'Sharon Pierre','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_SharonPierre_Mez1_Acc.m4v\" resource=\"sharon-pierre\"></a>','','plain',0,0,'1','2018-04-04 21:45:45','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(138,92,2,'Sharon Pierre','','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"sharon-pierre\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_SharonPierre_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 21:45:58','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(139,93,1,'Sona Lyttle','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_SonaLyttle_Mez1_Acc.m4v\" resource=\"sona-lyttle\"></a>','','plain',0,0,'1','2018-04-04 21:46:16','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(140,94,1,'Susan Fillmore','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_SusanFillmore_Mez1_Acc.m4v\" resource=\"susan-fillmore\"></a>','','plain',0,0,'1','2018-04-04 21:46:36','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(141,95,1,'Susan Jarvie','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/RFC_ACHsusanjarvie_Acc1.m4v\" resource=\"susan-jarvie\"></a>','','plain',0,0,'1','2018-04-04 21:47:12','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(142,96,1,'Tashima Martin','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_TashimaMartin_Mez1_Acc.m4v\" resource=\"tashima-martin\"></a>','','plain',0,0,'1','2018-04-04 21:47:38','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(143,97,1,'Thelma Hodge','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_ThelmaHodge_Mez1_Acc.m4v\" resource=\"thelma-hodge\"></a>','','plain',0,0,'1','2018-04-04 21:47:57','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(144,98,1,'Wanda Pearson','','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_WandaPearson_Mez1_Acc.m4v\" resource=\"wanda-pearson\"></a>','','plain',0,0,'1','2018-04-04 21:48:14','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(145,9,24,'Index Page','Page displaying all video pages','This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 21:49:47','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(146,16,5,'Athena Shoemaker','Athena Shoemakers Interveiw','<a data-align=\"left\" data-annotations=\"\" class=\"inline\" name=\"scalar-inline-media\" data-size=\"full\" data-caption=\"description\" resource=\"athena-shoemaker-1\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 21:51:15','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(147,16,6,'Athena Shoemaker','Athena Shoemakers Interveiw','<a data-annotations=\"\" class=\"inline\" name=\"scalar-inline-media\" data-caption=\"description\" data-size=\"medium\" data-align=\"left\" resource=\"athena-shoemaker-1\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\"></a><a name=\"scalar-inline-widget\" data-widget=\"card\" data-nodes=\"athena-shoemaker\" data-size=\"medium\" data-align=\"right\" class=\"inlineWidget inline\"></a>','','plain',0,0,'1','2018-04-04 21:56:02','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(148,9,25,'Index Page','Page displaying all video pages','<a name=\"scalar-inline-widget\" data-widget=\"card\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,mary-heriot-1,sharon-pierre-1,mary-jane-matthews-1,mary-rock-1,susan-fillmore-1,jennifer-morse-1,michelle-hutchinson-1,susan-jarvie-1,jenny-pournelle-1,myra-reichart-1,tashima-martin-1,jeretha-moore-1,neisie-jacobs-1,thelma-hodge-1,jeri-steedly-and-beverly-oliss-1,norma-king-1,wanda-pearson-1,kashuni-edwards-1,peggy-butler-1,libby-steadman-1,rebekah-havrilla-1,linda-bowman-1,roberta-lockwood-1,lisa-leask-1,roxanne-cheney-1,mary-resch-1,sona-lyttle-1\" data-size=\"medium\" data-align=\"right\" class=\"inlineWidget inline\"></a>This page showcases our female veterans and videos of their stories. Click on a face to hear their story. ','','structured_gallery',16,0,'1','2018-04-04 22:17:14','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(149,9,26,'Index Page','Page displaying all video pages','<a name=\"scalar-inline-widget\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,mary-heriot-1,sharon-pierre-1,mary-jane-matthews-1,mary-rock-1,susan-fillmore-1,jennifer-morse-1,michelle-hutchinson-1,susan-jarvie-1,jenny-pournelle-1,myra-reichart-1,tashima-martin-1,jeretha-moore-1,neisie-jacobs-1,thelma-hodge-1,jeri-steedly-and-beverly-oliss-1,norma-king-1,wanda-pearson-1,kashuni-edwards-1,peggy-butler-1,libby-steadman-1,rebekah-havrilla-1,linda-bowman-1,roberta-lockwood-1,lisa-leask-1,roxanne-cheney-1,mary-resch-1,sona-lyttle-1\" data-align=\"left\" class=\"inlineWidget inline\" data-widget=\"card\" data-size=\"medium\"></a>','','structured_gallery',16,0,'1','2018-04-04 22:39:00','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(150,9,27,'Index Page','Page displaying all video pages','<a data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,mary-heriot-1,sharon-pierre-1,mary-jane-matthews-1,mary-rock-1,susan-fillmore-1,jennifer-morse-1,michelle-hutchinson-1,susan-jarvie-1,jenny-pournelle-1,myra-reichart-1,tashima-martin-1,jeretha-moore-1,neisie-jacobs-1,thelma-hodge-1,jeri-steedly-and-beverly-oliss-1,norma-king-1,wanda-pearson-1,kashuni-edwards-1,peggy-butler-1,libby-steadman-1,rebekah-havrilla-1,linda-bowman-1,roberta-lockwood-1,lisa-leask-1,roxanne-cheney-1,mary-resch-1,sona-lyttle-1\" data-align=\"left\" class=\"inlineWidget inline\" data-widget=\"card\" data-size=\"medium\" name=\"scalar-inline-widget\"></a>','','structured_gallery',16,0,'1','2018-04-04 22:39:51','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(151,9,28,'Index','Page displaying all video pages','<a data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,mary-heriot-1,sharon-pierre-1,mary-jane-matthews-1,mary-rock-1,susan-fillmore-1,jennifer-morse-1,michelle-hutchinson-1,susan-jarvie-1,jenny-pournelle-1,myra-reichart-1,tashima-martin-1,jeretha-moore-1,neisie-jacobs-1,thelma-hodge-1,jeri-steedly-and-beverly-oliss-1,norma-king-1,wanda-pearson-1,kashuni-edwards-1,peggy-butler-1,libby-steadman-1,rebekah-havrilla-1,linda-bowman-1,roberta-lockwood-1,lisa-leask-1,roxanne-cheney-1,mary-resch-1,sona-lyttle-1\" data-align=\"left\" class=\"inlineWidget inline\" data-widget=\"card\" data-size=\"medium\" name=\"scalar-inline-widget\">This Page displays</a>','','structured_gallery',16,0,'1','2018-04-04 22:40:39','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(152,9,29,'Index','Page displaying all video pages','<a data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,mary-heriot-1,sharon-pierre-1,mary-jane-matthews-1,mary-rock-1,susan-fillmore-1,jennifer-morse-1,michelle-hutchinson-1,susan-jarvie-1,jenny-pournelle-1,myra-reichart-1,tashima-martin-1,jeretha-moore-1,neisie-jacobs-1,thelma-hodge-1,jeri-steedly-and-beverly-oliss-1,norma-king-1,wanda-pearson-1,kashuni-edwards-1,peggy-butler-1,libby-steadman-1,rebekah-havrilla-1,linda-bowman-1,roberta-lockwood-1,lisa-leask-1,roxanne-cheney-1,mary-resch-1,sona-lyttle-1\" data-align=\"left\" class=\"inlineWidget inline\" data-widget=\"card\" data-size=\"medium\" name=\"scalar-inline-widget\"></a>','','plain',16,0,'1','2018-04-04 22:44:35','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(153,9,30,'Index','Page displaying all video pages','<span style=\"color: rgb(0, 0, 0); font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; font-size: 12.8px;\">Always Coming Home: The American Female Veteran Experience Archive is designed to provide ongoing documentation of the diverse combat and service situations women in the military face as well as recording the experiences of the increasing numbers of female veterans whose return to civilian life has been affected by their years of service. Women veterans are interviewed, on video, and invited to share their reasons for joining the military, their experiences while in service, and the opportunities and setbacks they have faced upon return to civilian life. This project includes the short documentary “Soldier Girl.” There are currently over 50 interviews in the archive, some of which you can view here.<br /><br /><a name=\"scalar-inline-widget\" data-widget=\"card\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,jennifer-morse-1,jenny-pournelle-1,jeretha-moore-1,jeri-steedly-and-beverly-oliss-1,kashuni-edwards-1,libby-steadman-1,linda-bowman-1,lisa-leask-1,mary-heriot-1,mary-jane-matthews-1,mary-resch-1,mary-rock-1,michelle-hutchinson-1,myra-reichart-1,neisie-jacobs-1,norma-king-1,peggy-butler-1,rebekah-havrilla-1,roberta-lockwood-1,roxanne-cheney-1,sharon-pierre-1,sona-lyttle-1,susan-fillmore-1,susan-jarvie-1,tashima-martin-1,thelma-hodge-1,wanda-pearson-1\" data-size=\"medium\" data-align=\"left\" class=\"inlineWidget inline\"></a></span>','','plain',16,0,'1','2018-04-04 22:45:54','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(154,49,5,'Beatrice Sharpe','Mrs. Sharpe\'s experiences in WWII','<a data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"beatrice-sharpe\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_BeatriceSharpe_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 22:46:45','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(155,3,5,'Always Coming Home','','','','book_splash',0,0,'1','2018-04-04 22:47:59','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(156,9,31,'Index','Page displaying all video pages','<span style=\"color: rgb(0, 0, 0); font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; font-size: 12.8px;\">Always Coming Home: The American Female Veteran Experience Archive is designed to provide ongoing documentation of the diverse combat and service situations women in the military face as well as recording the experiences of the increasing numbers of female veterans whose return to civilian life has been affected by their years of service. Women veterans are interviewed, on video, and invited to share their reasons for joining the military, their experiences while in service, and the opportunities and setbacks they have faced upon return to civilian life. This project includes the short documentary “Soldier Girl.” There are currently over 50 interviews in the archive, some of which you can view here.<br /><br /><a data-widget=\"card\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,jennifer-morse-1,jenny-pournelle-1,jeretha-moore-1,jeri-steedly-and-beverly-oliss-1,kashuni-edwards-1,libby-steadman-1,linda-bowman-1,lisa-leask-1,mary-heriot-1,mary-jane-matthews-1,mary-resch-1,mary-rock-1,michelle-hutchinson-1,myra-reichart-1,neisie-jacobs-1,norma-king-1,peggy-butler-1,rebekah-havrilla-1,roberta-lockwood-1,roxanne-cheney-1,sharon-pierre-1,sona-lyttle-1,susan-fillmore-1,susan-jarvie-1,tashima-martin-1,thelma-hodge-1,wanda-pearson-1\" data-size=\"medium\" data-align=\"left\" class=\"inlineWidget inline\" name=\"scalar-inline-widget\"></a></span><br /><br /><br /><br /><br /><br /><br /><a href=\"athena-shoemaker\">Continue to Athena</a>','','plain',16,0,'1','2018-04-04 22:50:07','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(157,9,32,'Index','Page displaying all video pages','<span style=\"color: rgb(0, 0, 0); font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; font-size: 12.8px;\">Always Coming Home: The American Female Veteran Experience Archive is designed to provide ongoing documentation of the diverse combat and service situations women in the military face as well as recording the experiences of the increasing numbers of female veterans whose return to civilian life has been affected by their years of service. Women veterans are interviewed, on video, and invited to share their reasons for joining the military, their experiences while in service, and the opportunities and setbacks they have faced upon return to civilian life. This project includes the short documentary “Soldier Girl.” There are currently over 50 interviews in the archive, some of which you can view here.<br /><br /><a data-widget=\"card\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,jennifer-morse-1,jenny-pournelle-1,jeretha-moore-1,jeri-steedly-and-beverly-oliss-1,kashuni-edwards-1,libby-steadman-1,linda-bowman-1,lisa-leask-1,mary-heriot-1,mary-jane-matthews-1,mary-resch-1,mary-rock-1,michelle-hutchinson-1,myra-reichart-1,neisie-jacobs-1,norma-king-1,peggy-butler-1,rebekah-havrilla-1,roberta-lockwood-1,roxanne-cheney-1,sharon-pierre-1,sona-lyttle-1,susan-fillmore-1,susan-jarvie-1,tashima-martin-1,thelma-hodge-1,wanda-pearson-1\" data-size=\"medium\" data-align=\"left\" class=\"inlineWidget inline\" name=\"scalar-inline-widget\"></a></span><br /><br /><br /><br /><br /><br /><br /><a href=\"athena-shoemaker\">Continue to Athena</a>','','plain',16,0,'1','2018-04-04 22:50:33','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(158,16,7,'Athena Shoemaker','Athena Shoemakers Interveiw','<a data-annotations=\"\" class=\"inline\" data-caption=\"description\" data-size=\"medium\" data-align=\"left\" resource=\"athena-shoemaker-1\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 22:51:27','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(159,16,8,'Athena Shoemaker','Athena Shoemakers Interveiw','<a class=\"inline\" data-size=\"full\" name=\"scalar-inline-media\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" resource=\"athena-shoemaker-1\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-04 22:51:54','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(160,9,33,'Index','Page displaying all video pages','<span style=\"color: rgb(0, 0, 0); font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; font-size: 12.8px;\">Always Coming Home: The American Female Veteran Experience Archive is designed to provide ongoing documentation of the diverse combat and service situations women in the military face as well as recording the experiences of the increasing numbers of female veterans whose return to civilian life has been affected by their years of service. Women veterans are interviewed, on video, and invited to share their reasons for joining the military, their experiences while in service, and the opportunities and setbacks they have faced upon return to civilian life. This project includes the short documentary “Soldier Girl.” There are currently over 50 interviews in the archive, some of which you can view here.<br /><br /><a data-widget=\"card\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,jennifer-morse-1,jenny-pournelle-1,jeretha-moore-1,jeri-steedly-and-beverly-oliss-1,kashuni-edwards-1,libby-steadman-1,linda-bowman-1,lisa-leask-1,mary-heriot-1,mary-jane-matthews-1,mary-resch-1,mary-rock-1,michelle-hutchinson-1,myra-reichart-1,neisie-jacobs-1,norma-king-1,peggy-butler-1,rebekah-havrilla-1,roberta-lockwood-1,roxanne-cheney-1,sharon-pierre-1,sona-lyttle-1,susan-fillmore-1,susan-jarvie-1,tashima-martin-1,thelma-hodge-1,wanda-pearson-1\" data-size=\"medium\" data-align=\"left\" class=\"inlineWidget inline\" name=\"scalar-inline-widget\"></a></span><br /><br /><br /><br /><br /><br /><br /><a href=\"athena-shoemaker\">Continue to Athena</a>','','plain',16,0,'1','2018-04-04 22:53:10','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(161,9,34,'Index','Page displaying all video pages','<span style=\"color: rgb(0, 0, 0); font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; font-size: 12.8px;\">Always Coming Home: The American Female Veteran Experience Archive is designed to provide ongoing documentation of the diverse combat and service situations women in the military face as well as recording the experiences of the increasing numbers of female veterans whose return to civilian life has been affected by their years of service. Women veterans are interviewed, on video, and invited to share their reasons for joining the military, their experiences while in service, and the opportunities and setbacks they have faced upon return to civilian life. This project includes the short documentary “Soldier Girl.” There are currently over 50 interviews in the archive, some of which you can view here.<br /><br /><a data-widget=\"card\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,jennifer-morse-1,jenny-pournelle-1,jeretha-moore-1,jeri-steedly-and-beverly-oliss-1,kashuni-edwards-1,libby-steadman-1,linda-bowman-1,lisa-leask-1,mary-heriot-1,mary-jane-matthews-1,mary-resch-1,mary-rock-1,michelle-hutchinson-1,myra-reichart-1,neisie-jacobs-1,norma-king-1,peggy-butler-1,rebekah-havrilla-1,roberta-lockwood-1,roxanne-cheney-1,sharon-pierre-1,sona-lyttle-1,susan-fillmore-1,susan-jarvie-1,tashima-martin-1,thelma-hodge-1,wanda-pearson-1\" data-size=\"medium\" data-align=\"left\" class=\"inlineWidget inline\" name=\"scalar-inline-widget\"></a></span><br /><br /><br /><br /> ','','plain',0,0,'1','2018-04-04 22:56:10','s:66:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:11:\"172.18.0.11\";}\";'),(163,99,1,'AthenaShoemaker.png','','','http://achimages.dev-cdh.org/AthenaShoemaker.png','plain',0,0,'1','2018-04-13 15:33:02','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(164,100,1,'BeatriceSharpe.png','','','http://achimages.dev-cdh.org/BeatriceSharpe.png','plain',0,0,'1','2018-04-13 15:33:33','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(165,101,1,'CarolynWashington.png','','','http://achimages.dev-cdh.org/CarolynWashington.png','plain',0,0,'1','2018-04-13 15:34:00','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(166,102,1,'CarrieFrohnapfel.png','','','http://achimages.dev-cdh.org/CarrieFrohnapfel.png','plain',0,0,'1','2018-04-13 15:34:17','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(167,103,1,'CharlotteLee.png','','','http://achimages.dev-cdh.org/CharlotteLee.png','plain',0,0,'1','2018-04-13 15:34:35','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(168,104,1,'CuishaPeirceLunderman.png','','','http://achimages.dev-cdh.org/CuishaPeirceLunderman.png','plain',0,0,'1','2018-04-13 15:34:54','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(169,105,1,'DrNeumann.png','','','http://achimages.dev-cdh.org/DrNeumann.png','plain',0,0,'1','2018-04-13 15:35:12','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(170,106,1,'HalseyHinson.png','','','http://achimages.dev-cdh.org/HalseyHinson.png','plain',0,0,'1','2018-04-13 15:35:38','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(171,107,1,'HelenRooks.png','','','http://achimages.dev-cdh.org/HelenRooks.png','plain',0,0,'1','2018-04-13 15:35:53','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(172,108,1,'HileDixon.png','','','http://achimages.dev-cdh.org/HileDixon.png','plain',0,0,'1','2018-04-13 15:36:05','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(173,109,1,'HopeFurtado.png','','','http://achimages.dev-cdh.org/HopeFurtado.png','plain',0,0,'1','2018-04-13 15:36:25','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(174,110,1,'IdaOstendorf.png','','','http://achimages.dev-cdh.org/IdaOstendorf.png','plain',0,0,'1','2018-04-13 15:36:50','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(175,111,1,'JenniferMorse.png','','','http://achimages.dev-cdh.org/JenniferMorse.png','plain',0,0,'1','2018-04-13 15:37:04','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(176,112,1,'JennyPournelle.png','','','http://achimages.dev-cdh.org/JennyPournelle.png','plain',0,0,'1','2018-04-13 15:37:20','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(177,113,1,'JerethaMoore.png','','','http://achimages.dev-cdh.org/JerethaMoore.png','plain',0,0,'1','2018-04-13 15:37:36','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(178,114,1,'JeriSteedlyandBeverlyOliss.png','','','http://achimages.dev-cdh.org/JeriSteedlyandBeverlyOliss.png','plain',0,0,'1','2018-04-13 15:37:59','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(179,115,1,'KashuniEdwards.png','','','http://achimages.dev-cdh.org/KashuniEdwards.png','plain',0,0,'1','2018-04-13 15:38:17','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(180,116,1,'LindaBowman.png','','','http://achimages.dev-cdh.org/LindaBowman.png','plain',0,0,'1','2018-04-13 15:38:35','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(181,117,1,'LisaLeask.png','','','http://achimages.dev-cdh.org/LisaLeask.png','plain',0,0,'1','2018-04-13 15:38:49','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(182,118,1,'MaryHeriot.png','','','http://achimages.dev-cdh.org/MaryHeriot.png','plain',0,0,'1','2018-04-13 15:39:04','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(183,119,1,'MaryJaneMatthews.png','','','http://achimages.dev-cdh.org/MaryJaneMatthews.png','plain',0,0,'1','2018-04-13 15:39:19','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(184,120,1,'MaryResch.png','','','http://achimages.dev-cdh.org/MaryResch.png','plain',0,0,'1','2018-04-13 15:39:36','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(185,121,1,'MaryRock.png','','','http://achimages.dev-cdh.org/MaryRock.png','plain',0,0,'1','2018-04-13 15:39:53','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(186,122,1,'MitchelleHutchinson.png','','','http://achimages.dev-cdh.org/MitchelleHutchinson.png','plain',0,0,'1','2018-04-13 15:40:09','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(187,123,1,'MyraReichart.png','','','http://achimages.dev-cdh.org/MyraReichart.png','plain',0,0,'1','2018-04-13 15:40:22','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(188,124,1,'NeiseJacobs.png','','','http://achimages.dev-cdh.org/NeiseJacobs.png','plain',0,0,'1','2018-04-13 15:40:37','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(189,125,1,'NormaKing.png','','','http://achimages.dev-cdh.org/NormaKing.png','plain',0,0,'1','2018-04-13 15:40:51','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(190,126,1,'PeggyButler.png','','','http://achimages.dev-cdh.org/PeggyButler.png','plain',0,0,'1','2018-04-13 15:41:03','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(191,127,1,'RebekahHavrilla.png','','','http://achimages.dev-cdh.org/RebekahHavrilla.png','plain',0,0,'1','2018-04-13 15:41:19','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(192,128,1,'RFC_ACHjennypournelle_Acc1.m4v','','','http://achimages.dev-cdh.org/RFC_ACHjennypournelle_Acc1.m4v','plain',0,0,'1','2018-04-13 15:41:34','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(193,129,1,'RFC_ACHliledixon_Acc1.m4v','','','http://achimages.dev-cdh.org/RFC_ACHliledixon_Acc1.m4v','plain',0,0,'1','2018-04-13 15:41:54','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(194,130,1,'RFC_ACHmaryrock_Acc1.m4v','','','http://achimages.dev-cdh.org/RFC_ACHmaryrock_Acc1.m4v','plain',0,0,'1','2018-04-13 15:42:16','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(195,131,1,'RFC_ACHmyrareichart_Acc1.m4v','','','http://achimages.dev-cdh.org/RFC_ACHmyrareichart_Acc1.m4v','plain',0,0,'1','2018-04-13 15:42:32','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(196,132,1,'RFC_ACHsusanjarvie_Acc1.m4v','','','http://achimages.dev-cdh.org/RFC_ACHsusanjarvie_Acc1.m4v','plain',0,0,'1','2018-04-13 15:42:45','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(197,133,1,'RobertaLockwood.png','','','http://achimages.dev-cdh.org/RobertaLockwood.png','plain',0,0,'1','2018-04-13 15:43:13','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(198,134,1,'RoxanneCheney.png','','','http://achimages.dev-cdh.org/RoxanneCheney.png','plain',0,0,'1','2018-04-13 15:43:26','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(199,135,1,'SharonPierre.png','','','http://achimages.dev-cdh.org/SharonPierre.png','plain',0,0,'1','2018-04-13 15:43:41','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(200,136,1,'SonaLyttle.png','','','http://achimages.dev-cdh.org/SonaLyttle.png','plain',0,0,'1','2018-04-13 15:43:53','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(201,137,1,'SusanFillmore.png','','','http://achimages.dev-cdh.org/SusanFillmore.png','plain',0,0,'1','2018-04-13 15:44:05','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(202,138,1,'SusanJarvie.png','','','http://achimages.dev-cdh.org/SusanJarvie.png','plain',0,0,'1','2018-04-13 15:44:25','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(203,139,1,'TashimaMartin.png','','','http://achimages.dev-cdh.org/TashimaMartin.png','plain',0,0,'1','2018-04-13 15:44:40','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(204,140,1,'ThelmaHodge.png','','','http://achimages.dev-cdh.org/ThelmaHodge.png','plain',0,0,'1','2018-04-13 15:44:54','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(205,141,1,'VirginiaJamieson.png','','','http://achimages.dev-cdh.org/VirginiaJamieson.png','plain',0,0,'1','2018-04-13 15:45:19','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(206,142,1,'WandaPearson.png','','','http://achimages.dev-cdh.org/WandaPearson.png','plain',0,0,'1','2018-04-13 15:47:24','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(207,16,9,'Athena Shoemaker','Athena Shoemakers Interveiw','<a class=\"inline\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" resource=\"athena-shoemaker-1\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:48:07','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(208,16,10,'Athena Shoemaker','Interview with Athene Shoemaker (US Air Force), conducted at USC in June 2012','<a class=\"inline\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" resource=\"athena-shoemaker-1\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_AthenaShoemaker_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:48:37','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(209,49,6,'Beatrice Sharpe','Interview with Beatrice Sharpe (Telephone Operator, WWII, Pearl Harbor), conducted at USC, Columbia, SC, in June 2012.','<a data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"beatrice-sharpe\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_BeatriceSharpe_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:49:21','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(210,59,2,'Carolyn Washington','Interview with Carolyn Washington (US Army), conducted at the Technical College, Lowcountry, SC in August 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"carolyn-washington\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_CarolynWashington_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:49:49','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(211,60,2,'Corrie Frohnapfel','Interview with Corrie Frohnapfel (US Marine Corps), conducted at the Technical college, Lowcountry, SC in August 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"carrie-frohnapfel\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_CarrieFrohnapfel_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:50:44','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(212,61,2,'Charlotte Lee','Interview with Charlotte E. Lee (US Army), conducted in March 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"charlotte-lee\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_CharlotteLee_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:51:15','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(213,63,2,'Cuisha Pierce-Lauderman','Interviw with Cursha Pierce-Lunderman (US Army, US Army Reserves), conducted at USC, Columbia, SC in June 2010.','<a data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"cuisha-pierce-lunderman\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Cuisha_Pierce-Lunderman_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:51:44','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(214,64,3,'Dr. Neumann','Tape 1 of 2. Interview with Dr. Gloria Neumann at the Veterans Hospital. Interview conducted by Cathy Brookshire with Dr Neumann at Dorn Veterans Administration, Columbia, SC in 2010.','<a data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"dr-neumann\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_DrNeumann1_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:52:10','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(215,65,2,'Halsey Hison','Interview with Halsey Hinson (US Army) and Taranda Frost (US Army) conducted in March 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"halsey-hinson\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_HalseyHinson_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:52:59','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(216,66,2,'Helen Rooks','Interview with Helen Rooks (US Coast Guard), conducted at the Technical College, Lowcountry, SC in August 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"helen-rooks\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_HelenRooks_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:53:33','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(217,67,2,'Lile Dixon','Interview with Lile Dixon, conducted at the Center for Women in Charleston, SC in July 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"hlile-dixon\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/RFC_ACHliledixon_Acc1.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:54:42','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(218,68,2,'Hope Furtado','Interview with Hope Furtado (US Army), conducted at Angel House, Columbia, SC in April 2010. Views of interior of Angel House.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"hope-furtado\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Hope_Furtado_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:55:10','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(219,69,2,'Ida Ostendorf','Interview with Ida Ostendorff (Womens Army Corps, US Army), conducted at the Center for Women in Charleston, SC in July 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"ida-ostendorf\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_IdaOstendorf_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:55:46','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(220,70,2,'Jennifer Morse','Interview with Jennifer Morse (US Air Force) and Elizabeth Beckmann (US Army), conducted at the Center for Women in Charleston, SC in July 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"jennifer-morse\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_JenniferMorse_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:57:22','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(221,72,2,'Jenny Pournelle','Interview with Jenny Pournelle, conducted at her office in Columbia, SC in May 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"jenny-pournelle\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/RFC_ACHjennypournelle_Acc1.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:57:53','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(222,73,2,'Jeretha Moore','Interview with Jeretha Moore (US Army), conducted in March 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"jeretha-moore\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_JerethaMoore_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:58:35','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(223,75,2,'Kashuni Edwards','Interview with Kashuni Edwards (US Army) and Barbara Guest (US Air Force), conducted at the Center for Women, Charleston, SC in July 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"kashuni-edwards\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Kashuni_Edwards_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 15:59:46','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(224,76,2,'Libby Steadman','Interview with Elizabeth Steadman (US Army Reserves), conducted at the Lowcountry Technical College, SC in August 2010','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"libby-steadman\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Libby_Steadman_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:00:22','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(225,79,2,'Lisa Leask','Interview with Lisa Liesk (US Navy, US Navy Reserves), conducted at the Center for Women, Charleston, SC in July 2010. Includes husband Noah Liesk and daughters Peyton, Brianna and Logan.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"lisa-leask\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_LisaLeask_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:01:14','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(226,80,3,'Mary Heriot','Interview with Mary Heriot (US Army Nurse Corps), conducted in March 2012.','<a data-align=\"left\" data-annotations=\"\" class=\"inline\" data-size=\"full\" data-caption=\"description\" resource=\"mary-heriot\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_MaryHeriot_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:01:57','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(227,38,3,'Mary Jane Matthews','Interview with Mary Jane Matthews (US Marine Corps), conducted at the Technical College, Lowcountry, SC in August 2010.','<a data-size=\"medium\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"mary-jane-matthews\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_MaryJaneMatthews_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:02:25','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(228,81,2,'Mary Reich','Interview with Mary Louise Reich (US Army, US Army Reserves), conducted in March 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"mary-resch\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_MaryResch_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:03:20','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(229,82,2,'Mary Rock','Interview with Mary Rock (US Marine Corps), conducted at the Technical College, Lowcountry, SC in August 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"mary-rock\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/RFC_ACHmaryrock_Acc1.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:03:56','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(230,83,2,'Michelle Hutchinson','Interview with Michelle Hutchinson (US Army) conducted at USC, Columbia, SC in June 2012','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"michelle-hutchinson\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_MichelleHutchinson_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:04:27','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(231,84,2,'Myra Reichart','Interview with Myra Reichert (US Marine Corps), conducted at the Technical College, Lowcountry, SC in August 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"michelle-hutchinson\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_MichelleHutchinson_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:05:15','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(232,85,2,'Neisie Jacobs','Interview with Neisie Jacobs (US Army), conducted at USC, Columbia, SC, in June 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"neisie-jacobs\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_NeisieJacobs_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:06:08','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(233,84,3,'Myra Reichart','Interview with Myra Reichert (US Marine Corps), conducted at the Technical College, Lowcountry, SC in August 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"michelle-hutchinson\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_MichelleHutchinson_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:06:44','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(234,86,2,'Norma King','Interview with Norma King (US Marine Corps) and Cindy Williams (US Air Force), conducted at the Center for Women in Charleston, SC in July 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"norma-king\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Norma_King_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:07:51','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(235,87,2,'Peggy Butler','Interview with Peggy Butler (SC National Guard) conducted at USC, Columbia, SC in June 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"peggy-butler\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_PeggyButler_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:08:31','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(236,88,2,'Rebekah Havrilla','Interview with Rebekah Havrilla (US Army), conducted at USC, Columbia, SC in April 2010. Tape 1 of 2.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"rebekah-havrilla\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_RebekahHavrilla_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:09:07','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(237,88,3,'Rebekah Havrilla','Interview with Rebekah Havrilla (US Army), conducted at USC, Columbia, SC in April 2010. Tape 1 of 2.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"rebekah-havrilla\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_RebekahHavrilla_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:09:18','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(238,89,2,'Roberta Lockwood','Interview with Roberta Lockwood (US Army), conducted at Angel House, Columbia, SC in April 2010. Includes views of the exterior of Angel House.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"roberta-lockwood\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Roberta_Lockwood_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:10:11','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(239,91,2,'Roxanne Cheney','Interview with Roxanne Chaney (US Marine Corps), conducted at the Technical College, Lowcountry, SC in August 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"roxanne-cheney\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Roxanne_Cheney_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:10:56','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(240,92,3,'Sharon Pierre','Interview with Sharon Pierre (US Army), conducted in March 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"sharon-pierre\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_SharonPierre_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:11:31','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(241,92,4,'Sharon Pierre','Interview with Sharon Pierre (US Army), conducted in March 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"sharon-pierre\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_SharonPierre_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:11:47','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(242,93,2,'Sona Lyttle','Interview with Sona Lyttle (US Navy Reserves), conducted at the Technical College, Lowcountry, SC in August 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"sona-lyttle\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_SonaLyttle_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:12:53','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(243,94,2,'Susan Fillmore','Interview with Susan Fillmore (US Marine Corps), conducted at the Lowcountry Technical College, SC in August 2010','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"susan-fillmore\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_SusanFillmore_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:13:27','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(244,95,2,'Susan Jarvie','Interview with Susan Jarvie (US Air Force) conducted at her office in Columbia, SC in March 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"susan-jarvie\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/RFC_ACHsusanjarvie_Acc1.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:14:11','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(245,96,2,'Tashima Martin','Interview with Tashmina Martin (US Air Force), conducted in March 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"tashima-martin\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_TashimaMartin_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:15:12','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(246,97,2,'Thelma Hodge','Interview with Thelma Hodge (US Army), conducted at USC, in June 2012','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"thelma-hodge\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_ThelmaHodge_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:16:02','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(247,98,2,'Wanda Pearson','Interview with Wanda Pearson (US Air Force) conducted at USC, in June 2012.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"wanda-pearson\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_WandaPearson_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:16:59','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(248,143,1,'Virginia Jamieson','Interview with Virginia Jamison (US Army) conducted at the Center for Women in Charleston, SC in July 2010.','','','plain',0,0,'1','2018-04-13 16:32:16','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(249,144,1,'RFC_ACHvirginiajamieson_Acc1.m4v','','','http://achimages.dev-cdh.org/RFC_ACHvirginiajamieson_Acc1.m4v','plain',0,0,'1','2018-04-13 16:33:43','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(250,144,2,'RFC_ACHvirginiajamieson_Acc1.m4v','','','http://achimages.dev-cdh.org/RFC_ACHvirginiajamieson_Acc1.m4v','plain',0,0,'1','2018-04-13 16:33:54','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(251,144,3,'RFC_ACHvirginiajamieson_Acc1.m4v','','','http://achimages.dev-cdh.org/RFC_ACHvirginiajamieson_Acc1.m4v','plain',0,0,'1','2018-04-13 16:36:17','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(252,145,1,'Virginia Jamison','Interview with Virginia Jamison (US Army) conducted at the Center for Women in Charleston, SC in July 2010.','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/RFC_ACHvirginiajamieson_Acc1.m4v\" resource=\"rfc_achvirginiajamieson_acc1m4v\"></a>','','plain',0,0,'1','2018-04-13 16:37:17','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(253,146,1,'LibbySteadman.png','','','http://achimages.dev-cdh.org/LibbySteadman.png','plain',0,0,'1','2018-04-13 16:38:23','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(254,76,3,'Libby Steadman','Interview with Elizabeth Steadman (US Army Reserves), conducted at the Lowcountry Technical College, SC in August 2010','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"libby-steadman\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Libby_Steadman_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:38:36','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(255,147,1,'JeriSteedlyandBeverlyOliss.png','','','http://achimages.dev-cdh.org/JeriSteedlyandBeverlyOliss.png','plain',0,0,'1','2018-04-13 16:39:11','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(256,74,2,'Interview with Beverly Oliss and Geraldine Steedly','Interview with Beverly Oliss and Geraldine Steedly (Jerri) (US Army Reserves), conducted at the Center for Women, Charleston, SC in May 2010.','<a data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" resource=\"jeri-steedly-and-beverly-oliss\" name=\"scalar-inline-media\" href=\"http://achimages.dev-cdh.org/ACH_Jeri_Steedly_Beverly_Oliss_Mez1_Acc.m4v\"></a>','','plain',0,0,'1','2018-04-13 16:40:59','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(257,148,1,'LindaBowman.png','','','http://achimages.dev-cdh.org/LindaBowman.png','plain',0,0,'1','2018-04-13 16:42:17','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(258,148,2,'LindaBowman.png','','','http://achimages.dev-cdh.org/LindaBowman.png','plain',0,0,'1','2018-04-13 16:45:04','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(259,78,2,'Linda Bowman','Interview with Linda Darnelle Bowman (US Army) conducted at USC, Columbia, SC in May 2010.','<a name=\"scalar-inline-media\" data-size=\"full\" data-align=\"left\" data-caption=\"description\" data-annotations=\"\" class=\"inline\" href=\"http://achimages.dev-cdh.org/ACH_Linda_Bowman_Mez1_Acc.m4v\" resource=\"linda-bowman\"></a>','','plain',0,0,'1','2018-04-13 16:45:17','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(260,9,36,'Index','Page displaying all video pages','<span style=\"color: rgb(0, 0, 0); font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; font-size: 12.8px;\">Always Coming Home: The American Female Veteran Experience Archive is designed to provide ongoing documentation of the diverse combat and service situations women in the military face as well as recording the experiences of the increasing numbers of female veterans whose return to civilian life has been affected by their years of service. Women veterans are interviewed, on video, and invited to share their reasons for joining the military, their experiences while in service, and the opportunities and setbacks they have faced upon return to civilian life. This project includes the short documentary “Soldier Girl.” There are currently over 50 interviews in the archive, some of which you can view here.</span><br /><br /><a name=\"scalar-inline-widget\" data-widget=\"card\" data-nodes=\"athena-shoemaker,beatrice-sharpe-1,carolyn-washington-1,carrie-frohnapfel-1,charlotte-lee-1,cuisha-pierce-lauderman-1,dr-neumann-1,halsey-hison,helen-rooks-1,hlile-dixon-1,hope-furtado-1,ida-ostendorf-1,jennifer-morse-1,jenny-pournelle-1,jeretha-moore-1,jeri-steedly-and-beverly-oliss-1,kashuni-edwards-1,libby-steadman-1,linda-bowman-1,lisa-leask-1,mary-heriot-1,mary-jane-matthews-1,mary-resch-1,mary-rock-1,michelle-hutchinson-1,myra-reichart-1,neisie-jacobs-1,norma-king-1,peggy-butler-1,rebekah-havrilla-1,roberta-lockwood-1,roxanne-cheney-1,sharon-pierre-1,sona-lyttle-1,susan-fillmore-1,susan-jarvie-1,tashima-martin-1,thelma-hodge-1,wanda-pearson-1,virginia-jamieson,virginia-jamison\" data-size=\"medium\" data-align=\"center\" class=\"inlineWidget inline\"></a><br /><br /><br /><br /> ','','plain',0,0,'1','2018-04-13 16:46:06','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(261,3,6,'Always Coming Home','','','','book_splash',0,0,'1','2018-04-18 15:18:06','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(262,3,7,'Always Coming Home','','','','book_splash',0,0,'1','2018-04-18 15:29:56','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";'),(263,3,8,'Always Coming Home','','','','book_splash',0,0,'1','2018-04-18 15:29:57','s:65:\"O:8:\"stdClass\":2:{s:8:\"fullname\";b:0;s:2:\"ip\";s:10:\"172.18.0.1\";}\";');
/*!40000 ALTER TABLE `scalar_db_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_db_whitelist`
--
DROP TABLE IF EXISTS `scalar_db_whitelist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_db_whitelist` (
`book_id` int(10) unsigned NOT NULL DEFAULT '0',
`domain` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
KEY `book_id` (`book_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_db_whitelist`
--
LOCK TABLES `scalar_db_whitelist` WRITE;
/*!40000 ALTER TABLE `scalar_db_whitelist` DISABLE KEYS */;
/*!40000 ALTER TABLE `scalar_db_whitelist` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_store_g2t`
--
DROP TABLE IF EXISTS `scalar_store_g2t`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_store_g2t` (
`g` mediumint(8) unsigned NOT NULL,
`t` mediumint(8) unsigned NOT NULL,
UNIQUE KEY `gt` (`g`,`t`),
KEY `tg` (`t`,`g`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci DELAY_KEY_WRITE=1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_store_g2t`
--
LOCK TABLES `scalar_store_g2t` WRITE;
/*!40000 ALTER TABLE `scalar_store_g2t` DISABLE KEYS */;
INSERT INTO `scalar_store_g2t` VALUES (1,1),(1,2),(1,3),(1,4),(1,5);
/*!40000 ALTER TABLE `scalar_store_g2t` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_store_id2val`
--
DROP TABLE IF EXISTS `scalar_store_id2val`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_store_id2val` (
`id` mediumint(8) unsigned NOT NULL,
`misc` tinyint(1) NOT NULL DEFAULT '0',
`val` text COLLATE utf8_unicode_ci NOT NULL,
`val_type` tinyint(1) NOT NULL DEFAULT '0',
UNIQUE KEY `id` (`id`,`val_type`),
KEY `v` (`val`(64))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci DELAY_KEY_WRITE=1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_store_id2val`
--
LOCK TABLES `scalar_store_id2val` WRITE;
/*!40000 ALTER TABLE `scalar_store_id2val` DISABLE KEYS */;
INSERT INTO `scalar_store_id2val` VALUES (1,0,'urn:scalar',0),(3,0,'http://purl.org/dc/terms/source',0),(5,0,'',2),(6,0,'http://simile.mit.edu/2003/10/ontologies/artstor#sourceLocation',0),(8,0,'http://purl.org/dc/terms/contributor',0),(10,0,'http://purl.org/dc/terms/date',0),(12,0,'http://purl.org/dc/terms/identifier',0);
/*!40000 ALTER TABLE `scalar_store_id2val` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_store_o2val`
--
DROP TABLE IF EXISTS `scalar_store_o2val`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_store_o2val` (
`id` mediumint(8) unsigned NOT NULL,
`misc` tinyint(1) NOT NULL DEFAULT '0',
`val_hash` char(32) COLLATE utf8_unicode_ci NOT NULL,
`val` text COLLATE utf8_unicode_ci NOT NULL,
UNIQUE KEY `id` (`id`),
KEY `vh` (`val_hash`),
KEY `v` (`val`(64))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci DELAY_KEY_WRITE=1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_store_o2val`
--
LOCK TABLES `scalar_store_o2val` WRITE;
/*!40000 ALTER TABLE `scalar_store_o2val` DISABLE KEYS */;
INSERT INTO `scalar_store_o2val` VALUES (4,0,'2683768726','YouTube'),(7,0,'1099080175','https://www.youtube.com/watch?v=5EtjoIvb2H0'),(9,0,'273721056','HenkHeidstra'),(11,0,'2596291027','2013-07-17T00:16:33.000Z'),(13,0,'768556524','5EtjoIvb2H0');
/*!40000 ALTER TABLE `scalar_store_o2val` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_store_s2val`
--
DROP TABLE IF EXISTS `scalar_store_s2val`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_store_s2val` (
`id` mediumint(8) unsigned NOT NULL,
`misc` tinyint(1) NOT NULL DEFAULT '0',
`val_hash` char(32) COLLATE utf8_unicode_ci NOT NULL,
`val` text COLLATE utf8_unicode_ci NOT NULL,
UNIQUE KEY `id` (`id`),
KEY `vh` (`val_hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci DELAY_KEY_WRITE=1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_store_s2val`
--
LOCK TABLES `scalar_store_s2val` WRITE;
/*!40000 ALTER TABLE `scalar_store_s2val` DISABLE KEYS */;
INSERT INTO `scalar_store_s2val` VALUES (2,0,'1929789873','urn:scalar:version:5');
/*!40000 ALTER TABLE `scalar_store_s2val` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_store_setting`
--
DROP TABLE IF EXISTS `scalar_store_setting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_store_setting` (
`k` char(32) COLLATE utf8_unicode_ci NOT NULL,
`val` text COLLATE utf8_unicode_ci NOT NULL,
UNIQUE KEY `k` (`k`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci DELAY_KEY_WRITE=1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_store_setting`
--
LOCK TABLES `scalar_store_setting` WRITE;
/*!40000 ALTER TABLE `scalar_store_setting` DISABLE KEYS */;
/*!40000 ALTER TABLE `scalar_store_setting` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scalar_store_triple`
--
DROP TABLE IF EXISTS `scalar_store_triple`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scalar_store_triple` (
`t` mediumint(8) unsigned NOT NULL,
`s` mediumint(8) unsigned NOT NULL,
`p` mediumint(8) unsigned NOT NULL,
`o` mediumint(8) unsigned NOT NULL,
`o_lang_dt` mediumint(8) unsigned NOT NULL,
`o_comp` char(35) COLLATE utf8_unicode_ci NOT NULL,
`s_type` tinyint(1) NOT NULL DEFAULT '0',
`o_type` tinyint(1) NOT NULL DEFAULT '0',
`misc` tinyint(1) NOT NULL DEFAULT '0',
UNIQUE KEY `t` (`t`),
KEY `sp` (`s`,`p`),
KEY `os` (`o`,`s`),
KEY `po` (`p`,`o`),
KEY `misc` (`misc`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci DELAY_KEY_WRITE=1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scalar_store_triple`
--
LOCK TABLES `scalar_store_triple` WRITE;
/*!40000 ALTER TABLE `scalar_store_triple` DISABLE KEYS */;
/*!40000 ALTER TABLE `scalar_store_triple` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-04-21 14:25:50