WordPress

Briefly unavailable for scheduled maintenance.
Check back in a some hours.
403WebShell
403Webshell
Server IP : 38.242.244.58  /  Your IP : 216.73.217.10
Web Server : Apache/2.4.41 (Ubuntu)
System : Linux vmi1486879.contaboserver.net 5.4.0-166-generic #183-Ubuntu SMP Mon Oct 2 11:28:33 UTC 2023 x86_64
User : root ( 0)
PHP Version : 7.4.3-4ubuntu2.19
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/sura/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/sura/sura.sql
-- MySQL dump 10.13  Distrib 8.0.19, for Linux (x86_64)
--
-- Host: localhost    Database: sura
-- ------------------------------------------------------
-- Server version	8.0.19

/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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: `sura`
--

/*!40000 DROP DATABASE IF EXISTS `sura`*/;

CREATE DATABASE sura CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;


USE `sura`;

--
-- Table structure for table `about_page`
--

DROP TABLE IF EXISTS `about_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `about_page` (
  `id` int NOT NULL AUTO_INCREMENT,
  `banner_stock` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `bannner_header_text` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `banner_sub_header_text` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `mission` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `title_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `mission_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `featured_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `about_page`
--

LOCK TABLES `about_page` WRITE;
/*!40000 ALTER TABLE `about_page` DISABLE KEYS */;
/*!40000 ALTER TABLE `about_page` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blog`
--

DROP TABLE IF EXISTS `blog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blog` (
  `id` int NOT NULL AUTO_INCREMENT,
  `category_id` int DEFAULT NULL,
  `writer_id` int DEFAULT NULL,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `display_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_C015514312469DE2` (`category_id`),
  KEY `IDX_C01551431BC7E6B6` (`writer_id`),
  CONSTRAINT `FK_C015514312469DE2` FOREIGN KEY (`category_id`) REFERENCES `blog_category` (`id`),
  CONSTRAINT `FK_C01551431BC7E6B6` FOREIGN KEY (`writer_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blog`
--

LOCK TABLES `blog` WRITE;
/*!40000 ALTER TABLE `blog` DISABLE KEYS */;
INSERT INTO `blog` VALUES (1,1,2,'Testing','Testing','GettyImages-174986554_20191130.jpeg','2019-11-30 08:10:46');
/*!40000 ALTER TABLE `blog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blog_category`
--

DROP TABLE IF EXISTS `blog_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blog_category` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blog_category`
--

LOCK TABLES `blog_category` WRITE;
/*!40000 ALTER TABLE `blog_category` DISABLE KEYS */;
INSERT INTO `blog_category` VALUES (1,'Sura new','New sura');
/*!40000 ALTER TABLE `blog_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cart`
--

DROP TABLE IF EXISTS `cart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cart` (
  `id` int NOT NULL AUTO_INCREMENT,
  `buyer_id` int NOT NULL,
  `create_time` datetime NOT NULL,
  `total` double NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_BA388B76C755722` (`buyer_id`),
  CONSTRAINT `FK_BA388B76C755722` FOREIGN KEY (`buyer_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cart`
--

LOCK TABLES `cart` WRITE;
/*!40000 ALTER TABLE `cart` DISABLE KEYS */;
/*!40000 ALTER TABLE `cart` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cart_item`
--

DROP TABLE IF EXISTS `cart_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cart_item` (
  `id` int NOT NULL AUTO_INCREMENT,
  `stock_id` int NOT NULL,
  `create_by_id` int NOT NULL,
  `amount` double NOT NULL,
  `create_time` datetime NOT NULL,
  `cart_id` int NOT NULL,
  `size` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_exclusive` tinyint(1) NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `thumb_nail_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exclusive_licence` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exclusive_licence_duration` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_F0FE2527DCD6110` (`stock_id`),
  KEY `IDX_F0FE25279E085865` (`create_by_id`),
  KEY `IDX_F0FE25271AD5CDBF` (`cart_id`),
  CONSTRAINT `FK_F0FE25271AD5CDBF` FOREIGN KEY (`cart_id`) REFERENCES `cart` (`id`),
  CONSTRAINT `FK_F0FE25279E085865` FOREIGN KEY (`create_by_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_F0FE2527DCD6110` FOREIGN KEY (`stock_id`) REFERENCES `stock` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cart_item`
--

LOCK TABLES `cart_item` WRITE;
/*!40000 ALTER TABLE `cart_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `cart_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_us_messages`
--

DROP TABLE IF EXISTS `contact_us_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_us_messages` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reply` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_us_messages`
--

LOCK TABLES `contact_us_messages` WRITE;
/*!40000 ALTER TABLE `contact_us_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_us_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contributor_email`
--

DROP TABLE IF EXISTS `contributor_email`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contributor_email` (
  `id` int NOT NULL AUTO_INCREMENT,
  `category_id` int DEFAULT NULL,
  `author_id` int DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_762558B612469DE2` (`category_id`),
  KEY `IDX_762558B6F675F31B` (`author_id`),
  CONSTRAINT `FK_762558B612469DE2` FOREIGN KEY (`category_id`) REFERENCES `email_category` (`id`),
  CONSTRAINT `FK_762558B6F675F31B` FOREIGN KEY (`author_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contributor_email`
--

LOCK TABLES `contributor_email` WRITE;
/*!40000 ALTER TABLE `contributor_email` DISABLE KEYS */;
/*!40000 ALTER TABLE `contributor_email` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `country`
--

DROP TABLE IF EXISTS `country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `country` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `iso2` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `country`
--

LOCK TABLES `country` WRITE;
/*!40000 ALTER TABLE `country` DISABLE KEYS */;
INSERT INTO `country` VALUES (3,'Algeria','DZ'),(4,'American Samoa','AS'),(5,'Andorra','AD'),(6,'Angola','AO'),(7,'Anguilla','AI'),(8,'Antarctica','AQ'),(9,'Antigua And Barbuda','AG'),(10,'Argentina','AR'),(11,'Armenia','AM'),(12,'Aruba','AW'),(13,'Australia','AU'),(14,'Austria','AT'),(15,'Azerbaijan','AZ'),(16,'Bahamas','BS'),(17,'Bahrain','BH'),(18,'Bangladesh','BD'),(19,'Barbados','BB'),(20,'Belarus','BY'),(21,'Belgium','BE'),(22,'Belize','BZ'),(23,'Benin','BJ'),(24,'Bermuda','BM'),(25,'Bhutan','BT'),(26,'Bolivia','BO'),(27,'Bosnia and Herzegovina','BA'),(28,'Botswana','BW'),(29,'Bouvet Island','BV'),(30,'Brazil','BR'),(31,'British Indian Ocean Territory','IO'),(32,'Brunei','BN'),(33,'Bulgaria','BG'),(34,'Burkina Faso','BF'),(35,'Burundi','BI'),(36,'Cambodia','KH'),(37,'Cameroon','CM'),(38,'Canada','CA'),(39,'Cape Verde','CV'),(40,'Cayman Islands','KY'),(41,'Central African Republic','CF'),(42,'Chad','TD'),(43,'Chile','CL'),(44,'China','CN'),(45,'Christmas Island','CX'),(46,'Cocos (Keeling) Islands','CC'),(47,'Colombia','CO'),(48,'Comoros','KM'),(49,'Congo','CG'),(50,'Democratic Republic of Congo','CD'),(51,'Cook Islands','CK'),(52,'Costa Rica','CR'),(53,'Cote D\'Ivoire (Ivory Coast)','CI'),(54,'Croatia (Hrvatska)','HR'),(55,'Cuba','CU'),(56,'Cyprus','CY'),(57,'Czech Republic','CZ'),(58,'Denmark','DK'),(59,'Djibouti','DJ'),(60,'Dominica','DM'),(61,'Dominican Republic','DO'),(62,'East Timor','TP'),(63,'Ecuador','EC'),(64,'Egypt','EG'),(65,'El Salvador','SV'),(66,'Equatorial Guinea','GQ'),(67,'Eritrea','ER'),(68,'Estonia','EE'),(69,'Ethiopia','ET'),(70,'External Territories of Australia','XA'),(71,'Falkland Islands','FK'),(72,'Faroe Islands','FO'),(73,'Fiji Islands','FJ'),(74,'Finland','FI'),(75,'France','FR'),(76,'French Guiana','GF'),(77,'French Polynesia','PF'),(78,'French Southern Territories','TF'),(79,'Gabon','GA'),(80,'Gambia The','GM'),(81,'Georgia','GE'),(82,'Germany','DE'),(83,'Ghana','GH'),(84,'Gibraltar','GI'),(85,'Greece','GR'),(86,'Greenland','GL'),(87,'Grenada','GD'),(88,'Guadeloupe','GP'),(89,'Guam','GU'),(90,'Guatemala','GT'),(91,'Guernsey and Alderney','XU'),(92,'Guinea','GN'),(93,'Guinea-Bissau','GW'),(94,'Guyana','GY'),(95,'Haiti','HT'),(96,'Heard and McDonald Islands','HM'),(97,'Honduras','HN'),(98,'Hong Kong S.A.R.','HK'),(99,'Hungary','HU'),(100,'Iceland','IS'),(101,'India','IN'),(102,'Indonesia','ID'),(103,'Iran','IR'),(104,'Iraq','IQ'),(105,'Ireland','IE'),(106,'Israel','IL'),(107,'Italy','IT'),(108,'Jamaica','JM'),(109,'Japan','JP'),(110,'Jersey','XJ'),(111,'Jordan','JO'),(112,'Kazakhstan','KZ'),(113,'Kenya','KE'),(114,'Kiribati','KI'),(115,'Korea North','KP'),(116,'Korea South','KR'),(117,'Kuwait','KW'),(118,'Kyrgyzstan','KG'),(119,'Laos','LA'),(120,'Latvia','LV'),(121,'Lebanon','LB'),(122,'Lesotho','LS'),(123,'Liberia','LR'),(124,'Libya','LY'),(125,'Liechtenstein','LI'),(126,'Lithuania','LT'),(127,'Luxembourg','LU'),(128,'Macau S.A.R.','MO'),(129,'Macedonia','MK'),(130,'Madagascar','MG'),(131,'Malawi','MW'),(132,'Malaysia','MY'),(133,'Maldives','MV'),(134,'Mali','ML'),(135,'Malta','MT'),(136,'Man (Isle of)','XM'),(137,'Marshall Islands','MH'),(138,'Martinique','MQ'),(139,'Mauritania','MR'),(140,'Mauritius','MU'),(141,'Mayotte','YT'),(142,'Mexico','MX'),(143,'Micronesia','FM'),(144,'Moldova','MD'),(145,'Monaco','MC'),(146,'Mongolia','MN'),(147,'Montserrat','MS'),(148,'Morocco','MA'),(149,'Mozambique','MZ'),(150,'Myanmar','MM'),(151,'Namibia','NA'),(152,'Nauru','NR'),(153,'Nepal','NP'),(154,'Netherlands Antilles','AN'),(155,'Netherlands The','NL'),(156,'New Caledonia','NC'),(157,'New Zealand','NZ'),(158,'Nicaragua','NI'),(159,'Niger','NE'),(160,'Nigeria','NG'),(161,'Niue','NU'),(162,'Norfolk Island','NF'),(163,'Northern Mariana Islands','MP'),(164,'Norway','NO'),(165,'Oman','OM'),(166,'Pakistan','PK'),(167,'Palau','PW'),(168,'Palestinian Territory Occupied','PS'),(169,'Panama','PA'),(170,'Papua new Guinea','PG'),(171,'Paraguay','PY'),(172,'Peru','PE'),(173,'Philippines','PH'),(174,'Pitcairn Island','PN'),(175,'Poland','PL'),(176,'Portugal','PT'),(177,'Puerto Rico','PR'),(178,'Qatar','QA'),(179,'Reunion','RE'),(180,'Romania','RO'),(181,'Russia','RU'),(182,'Rwanda','RW'),(183,'Saint Helena','SH'),(184,'Saint Kitts And Nevis','KN'),(185,'Saint Lucia','LC'),(186,'Saint Pierre and Miquelon','PM'),(187,'Saint Vincent And The Grenadines','VC'),(188,'Samoa','WS'),(189,'San Marino','SM'),(190,'Sao Tome and Principe','ST'),(191,'Saudi Arabia','SA'),(192,'Senegal','SN'),(193,'Serbia','RS'),(194,'Seychelles','SC'),(195,'Sierra Leone','SL'),(196,'Singapore','SG'),(197,'Slovakia','SK'),(198,'Slovenia','SI'),(199,'Smaller Territories of the UK','XG'),(200,'Solomon Islands','SB'),(201,'Somalia','SO'),(202,'South Africa','ZA'),(203,'South Georgia','GS'),(204,'South Sudan','SS'),(205,'Spain','ES'),(206,'Sri Lanka','LK'),(207,'Sudan','SD'),(208,'Suriname','SR'),(209,'Svalbard And Jan Mayen Islands','SJ'),(210,'Swaziland','SZ'),(211,'Sweden','SE'),(212,'Switzerland','CH'),(213,'Syria','SY'),(214,'Taiwan','TW'),(215,'Tajikistan','TJ'),(216,'Tanzania','TZ'),(217,'Thailand','TH'),(218,'Togo','TG'),(219,'Tokelau','TK'),(220,'Tonga','TO'),(221,'Trinidad And Tobago','TT'),(222,'Tunisia','TN'),(223,'Turkey','TR'),(224,'Turkmenistan','TM'),(225,'Turks And Caicos Islands','TC'),(226,'Tuvalu','TV'),(227,'Uganda','UG'),(228,'Ukraine','UA'),(229,'United Arab Emirates','AE'),(230,'United Kingdom','GB'),(231,'United States','US'),(232,'United States Minor Outlying Islands','UM'),(233,'Uruguay','UY'),(234,'Uzbekistan','UZ'),(235,'Vanuatu','VU'),(236,'Vatican City State (Holy See)','VA'),(237,'Venezuela','VE'),(238,'Vietnam','VN'),(239,'Virgin Islands (British)','VG'),(240,'Virgin Islands (US)','VI'),(241,'Wallis And Futuna Islands','WF'),(242,'Western Sahara','EH'),(243,'Yemen','YE'),(244,'Yugoslavia','YU'),(245,'Zambia','ZM'),(246,'Zimbabwe','ZW');
/*!40000 ALTER TABLE `country` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_category`
--

DROP TABLE IF EXISTS `email_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_category` (
  `id` int NOT NULL AUTO_INCREMENT,
  `category` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_category`
--

LOCK TABLES `email_category` WRITE;
/*!40000 ALTER TABLE `email_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_subscription`
--

DROP TABLE IF EXISTS `email_subscription`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_subscription` (
  `id` int NOT NULL AUTO_INCREMENT,
  `email_category_id` int DEFAULT NULL,
  `user_id` int DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_F6D58280486E155` (`email_category_id`),
  KEY `IDX_F6D58280A76ED395` (`user_id`),
  CONSTRAINT `FK_F6D58280486E155` FOREIGN KEY (`email_category_id`) REFERENCES `email_category` (`id`),
  CONSTRAINT `FK_F6D58280A76ED395` FOREIGN KEY (`user_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_subscription`
--

LOCK TABLES `email_subscription` WRITE;
/*!40000 ALTER TABLE `email_subscription` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_subscription` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `faqs`
--

DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs` (
  `id` int NOT NULL AUTO_INCREMENT,
  `question` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `answer` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `f_aqs_category_id` int NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_8934BEE5E7388BE4` (`f_aqs_category_id`),
  CONSTRAINT `FK_8934BEE5E7388BE4` FOREIGN KEY (`f_aqs_category_id`) REFERENCES `faqs_category` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `faqs`
--

LOCK TABLES `faqs` WRITE;
/*!40000 ALTER TABLE `faqs` DISABLE KEYS */;
INSERT INTO `faqs` VALUES (1,'Who is a contributor on Sura Images?','Any person registered with Sura Images to sells his/her content on the site.',2),(2,'How do i become a contributor on Sura Images?','To become a contributor you’ll first create an account with Sura Images. Click here to become a contributor.',2),(3,'What file size is recommended for upload?','All files contributor uploads should be of high resolution for the benefit of the buyer. See contributor’s agreement on the recommended file size for both images and footage under ‘submission of content’.',2),(4,'Which content (images and/or footage) sells best?','What sells best is content with high commercial value. Creative people look for the most popular subjects, such as business people, people at work, financial concepts, lifestyle and sport concepts, food and drink, healthcare, social issues and science and technology that has good storytelling outcome.',2),(5,'How much can i make by selling content on Sura Images?','The way Sura Images works, it allows contributors to price their own work and every time it’s purchased, contributor gets 60% commission on each sale. The more content you have on the Sura Images site the higher the chances of selling more content.',2),(6,'How do I get paid once my content is sold?','Payments are made by 10th of every month and the disbursement is made based on the contributor preferred mode of payment which the contributor chooses during registration.',2),(7,'What is Exclusive Agreement?','It means that you agree to sell your content on Sura Images only. Your content remain exclusive to Sura Images and you cannot sell them elsewhere unless there is termination of agreement between both parties. This agreement guarantee your content will be licensed with an extended license which is exclusive license which protect the value of your work as well as maximising your worth.',2),(8,'Who is a member on Sura Images?','Any person registered with Sura Images to buy content from the site.',1),(9,'How do i become a member on Sura Images?','To become a member you’ll first create an account with Sura Images. Click here to become a member.',1),(10,'How do i find the right content to buy?','Just like any other search engine, to find the right content for you on Sura Images you type in relevant keywords of content you’re looking for on the search bar and the results of your search will be displayed for you to choose.',1),(11,'How do I pay for the content i want on Sura Images?','For every content you want to buy, first, it has to be put on a shopping basket after which you check out for payment and it’s from here you choose your mode of payment either by card (MasterCard, American Express, Visa) or by bank (available banks are listed) or by mobile money.',1),(12,'How do I download my purchased content on Sura Images?','Once your transaction is complete and verified which just takes seconds, you will get a download your package button on the site where once clicked your content is downloaded as a zipped file. After the download is complete you can unzip your download to get your content (files).',1),(13,'Can I download free content (images or footage) on Sura Images?','No. We are currently not offering free downloads on the site.',1);
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `faqs_category`
--

DROP TABLE IF EXISTS `faqs_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs_category` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `faqs_category`
--

LOCK TABLES `faqs_category` WRITE;
/*!40000 ALTER TABLE `faqs_category` DISABLE KEYS */;
INSERT INTO `faqs_category` VALUES (1,'For Members'),(2,'For Contributors');
/*!40000 ALTER TABLE `faqs_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_category`
--

DROP TABLE IF EXISTS `file_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_category` (
  `id` int NOT NULL AUTO_INCREMENT,
  `stock_id` int NOT NULL,
  `category_id` int NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_B71C965CDCD6110` (`stock_id`),
  KEY `IDX_B71C965C12469DE2` (`category_id`),
  CONSTRAINT `FK_B71C965C12469DE2` FOREIGN KEY (`category_id`) REFERENCES `stock_category` (`id`),
  CONSTRAINT `FK_B71C965CDCD6110` FOREIGN KEY (`stock_id`) REFERENCES `stock` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_category`
--

LOCK TABLES `file_category` WRITE;
/*!40000 ALTER TABLE `file_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fos_user`
--

DROP TABLE IF EXISTS `fos_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fos_user` (
  `id` int NOT NULL AUTO_INCREMENT,
  `username` varchar(180) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `username_canonical` varchar(180) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(180) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_canonical` varchar(180) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `enabled` tinyint(1) NOT NULL,
  `salt` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_login` datetime DEFAULT NULL,
  `confirmation_token` varchar(180) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `password_requested_at` datetime DEFAULT NULL,
  `roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `identity_verified` int NOT NULL,
  `identity_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `create_by_id` int DEFAULT NULL,
  `phone_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `registration_complete` tinyint(1) NOT NULL,
  `joined_on` datetime DEFAULT NULL,
  `security_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_exclusive` tinyint(1) DEFAULT NULL,
  `approver_id` int DEFAULT NULL,
  `rejected_by_id` int DEFAULT NULL,
  `reject_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rejected_at` datetime DEFAULT NULL,
  `approved_at` datetime DEFAULT NULL,
  `suspended_member` tinyint(1) DEFAULT NULL,
  `suspension_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `old_id` int DEFAULT NULL,
  `facebook_id` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_957A647992FC23A8` (`username_canonical`),
  UNIQUE KEY `UNIQ_957A6479A0D96FBF` (`email_canonical`),
  UNIQUE KEY `UNIQ_957A6479C05FB297` (`confirmation_token`),
  KEY `IDX_957A64799E085865` (`create_by_id`),
  KEY `IDX_957A6479BB23766C` (`approver_id`),
  KEY `IDX_957A6479CBF05FC9` (`rejected_by_id`),
  CONSTRAINT `FK_957A64799E085865` FOREIGN KEY (`create_by_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_957A6479BB23766C` FOREIGN KEY (`approver_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_957A6479CBF05FC9` FOREIGN KEY (`rejected_by_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1374 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fos_user`
--

LOCK TABLES `fos_user` WRITE;
/*!40000 ALTER TABLE `fos_user` DISABLE KEYS */;
INSERT INTO `fos_user` VALUES (2,'komu','komu','komu@yahoo.com','komu@yahoo.com',1,NULL,'$2y$13$iVWy/hBJ4OX.FnIUgAr5Sep8NDLYpHXAB/cdok2YtU/wW0.brl83C','2020-01-03 15:59:09','JbAvuQCyj-NBSBvwn_ntwKHnqolE27AfxoSue71pZ1s','2020-01-02 11:10:37','a:1:{i:0;s:10:\"ROLE_ADMIN\";}','John','Komu',2,'784fd6b1773e5bcb87c6d7266da45f2a.pdf',NULL,NULL,'ef9d6c9ada9704d80d0e30a93832d1a2.jpeg',0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),(1341,'admin@suraimages.com','admin@suraimages.com','admin@suraimages.com','admin@suraimages.com',0,'I4R7QcZ4A4z7dZNHp8G88bkFW339VrEkFB5C7Q9t3Ew','$argon2id$v=19$m=65536,t=4,p=1$cXsSagKeZ1QtMjLq0Hg1tw$oEcQDKcv4WnnjgIJnC37j/kge6Gbrdz70WfcGIRklcA',NULL,'cwLk_a3dr9Q9qzB7__OIG-XGpBjxNumvdB5RM-UjlD0',NULL,'a:0:{}','Griffin','Muteti',0,NULL,2,'070299800',NULL,0,'2020-01-02 18:01:58','JkNbKeLR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL),(1342,'namuksz@gmail.com','namuksz@gmail.com','namuksz@gmail.com','namuksz@gmail.com',0,'8rSWGOjGitBibMvGGDZfGfPXwOU2cIWsH1VgMw/u9fQ','$argon2id$v=19$m=65536,t=4,p=1$xPR+tea9wmnaOLH59mn3/w$Y2QslkNtOm370wzEyitrCCOzS/3Qih7E4AgoOdURyls',NULL,'YIHwip4YJg_nxoERWNH4QtURfbPU0hlNkXiaDSsdBwk',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','William','Miriga Ngari',1,'William_Mariga_NATIONAL_ID.pdf',2,'0733962980',NULL,0,'2020-01-02 18:01:58','Sr5Aobl2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,NULL),(1343,'gitonga@egmgem.com','gitonga@egmgem.com','gitonga@egmgem.com','gitonga@egmgem.com',0,'m7X1y0tFOnUJ.oAEgmSvDmz39bUxYkULk6Hu7Ph94uo','$argon2id$v=19$m=65536,t=4,p=1$g30r9FHWmKtE/2a3qo3Y6A$dTvRMCyzvpCuUlzjyZ8n+DT+MV/RbcqJXEOXKk1AiZ8',NULL,'b2VzBAbtMypdTIIbkkx5YQJUs4d6tM2VfBqq1LwX8Cw',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Eric','Gitonga',1,'EricID.pdf',2,'',NULL,0,'2020-01-02 18:01:58','7tdmlAM3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30,NULL),(1344,'info@alfredmwangi.co.ke','info@alfredmwangi.co.ke','info@alfredmwangi.co.ke','info@alfredmwangi.co.ke',0,'N8KiIQd1a7YAqDYnY6Ae.hjS3twrHEgvoMuV3PN.hPs','$argon2id$v=19$m=65536,t=4,p=1$jabJYEmsmHdRiWTq8j5F7w$8KjRFGBuKuHDRbfGM3KGf/bEi5SpO7AW1Rn3yWmfB3I',NULL,'D19rE0y21D23eHDPJLnl89XpCGo0z4NN-SipLp8sg6w',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Alfred','Njoroge Mwangi',1,'ID_Front.JPG',2,'0720924660',NULL,0,'2020-01-02 18:01:58','3HJroBU4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,37,NULL),(1345,'unicisaac@gmail.com','unicisaac@gmail.com','unicisaac@gmail.com','unicisaac@gmail.com',0,'kZEKUBdfBmixsRQPWIRtZFV9mpSKAs7ModXIH9kQ4l8','$argon2id$v=19$m=65536,t=4,p=1$6TIxgScu4BwIraLScFGfXg$Mmg6vACLqjUscqX/sJPsdmWgol1Wzvj/Biredk+XfPs',NULL,'WEVq0rGx3Lf4A2Iq7HRLeGHweKM51Z-X1v5bmKKL2yI',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Isaac','Kaigi Thairu',1,'IMGL8612.jpg',2,'',NULL,0,'2020-01-02 18:01:59','EUHnH5YO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,38,NULL),(1346,'machariajustun@gmail.com','machariajustun@gmail.com','machariajustun@gmail.com','machariajustun@gmail.com',0,'S2DVBYyr11jggJW5hLfmm9sfssRuBk0ryHL.aqSAxpg','$argon2id$v=19$m=65536,t=4,p=1$R8zU+9jFQAuy0OlRcc1cLA$D6Jb8CCwezOz6SHjewLB+M3gUJSnDXYnoVlkAfLSdOI',NULL,'fSPPGkvLrU8RakhGac0A3lfdf1_cJ3nPYwNNBdqdhdQ',NULL,'a:1:{i:0;s:11:\"ROLE_MEMBER\";}','Justun','Macharia',0,NULL,2,NULL,NULL,0,'2020-01-02 18:01:59','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,39,NULL),(1347,'e.thuophotography@gmail.com','e.thuophotography@gmail.com','e.thuophotography@gmail.com','e.thuophotography@gmail.com',0,'ZVCC.S6pncbyvc2egGv7ea0TzPqJu1C2WBqCQY/yX.M','$argon2id$v=19$m=65536,t=4,p=1$xBI/l6oRahD7ZQ1fq8R0GA$lxs0BGOwxK8T7fJXlQTzEqYJatkjNQHnbzkv/AGLZQE',NULL,'zuyU6HN63vZU1kBb5XDFBpS1R1eT-DwwxJEeQQNIS-o',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Emmanuel ','Thuo Kamau',1,'WP_20151125_10_39_40_Pro.jpg',2,'0725896685',NULL,0,'2020-01-02 18:01:59','FQWubq6a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,42,NULL),(1348,'kvnwanjala776@gmail.com','kvnwanjala776@gmail.com','kvnwanjala776@gmail.com','kvnwanjala776@gmail.com',0,'RsoA4t6XbDCoxfqD4acQ5DMcORR3sq2e1vocSjIqe5g','$argon2id$v=19$m=65536,t=4,p=1$OgUJJBMPbknKeOrL/iKq+Q$K4zSKEXE0ImJ3lQLX/Utp22pxXkTlMVF3k8BE2gjn2w',NULL,'Tfx2RAxHCryBrJD7Q2WIUdl7nTTcGWnRAkQobTuEIAg',NULL,'a:1:{i:0;s:11:\"ROLE_MEMBER\";}','kevin','wanjala',0,NULL,2,NULL,NULL,0,'2020-01-02 18:01:59','A7LLeaK4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,46,NULL),(1349,'gerahuini@gmail.com','gerahuini@gmail.com','gerahuini@gmail.com','gerahuini@gmail.com',0,'cZwJ302eU9Kl0kj5GEASOum7xLEXxrG9mwZWLp5WIvg','$argon2id$v=19$m=65536,t=4,p=1$XX0CA8cCHrurkr3zli+32g$kMcdZ18zluFm7FzAhNUJsqWHsp4jBdHrpfLF5eYLk5E',NULL,'iV8r1piz6gRKmEvbrPoJ5MawcssqcH_ey5X4qoBPcbs',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','gerald','waihuini',1,'IMG_20170726_103434.jpg',2,'0705293039',NULL,0,'2020-01-02 18:02:00','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,82,NULL),(1350,'tracy.mutugi@gmail.com','tracy.mutugi@gmail.com','tracy.mutugi@gmail.com','tracy.mutugi@gmail.com',0,'y43gBj3DVdQS4vfuUgky2ZI5DwO3CILG41sL4//W1vk','$argon2id$v=19$m=65536,t=4,p=1$vLYT300a4J66X73wF6MkFQ$v/aA+z16igY+D5jt0rFN6vmlpic30RYgzi9HahHgG34',NULL,'X_5pyVmPlA1VlokPc1O2IpH8PnvCeiaP70aPdN4BZks',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Tracy','W Mutugi',1,'IMG_20170722_135135.jpg',2,'+254798041105',NULL,0,'2020-01-02 18:02:00','no8U4VwT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,86,NULL),(1351,'abdulwahabelhady@gmail.com','abdulwahabelhady@gmail.com','abdulwahabelhady@gmail.com','abdulwahabelhady@gmail.com',0,'uGh1OHRc.3KGv5rDXWnujd3RmJDTm5ccVX16SUYquMI','$argon2id$v=19$m=65536,t=4,p=1$a9l0XV7IW6ReqXOY/qVRMw$l0GZQWjQpsLG1b3UrEm1NXwU9N1d1ttYjE5j+WajjiM',NULL,'duwsxpVmRJp-M-bIV9FFKSy4hYTeWplvd6EIK6HihaQ',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','abdi ahmed','ahmed',0,NULL,2,NULL,NULL,0,'2020-01-02 18:02:00','biHt6Hc6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,91,NULL),(1352,'rushil_s_shah@hotmail.com','rushil_s_shah@hotmail.com','rushil_s_shah@hotmail.com','rushil_s_shah@hotmail.com',0,'dg7jKFNtnYIUdjA9wLkfy/32hVujLPRJxLM.itc.1M4','$argon2id$v=19$m=65536,t=4,p=1$R7hsnmq5J/xUm498d0SNJg$7Otmuy9Sg/kXamagm4jVdV+jJ7VpZPYmday0Gf/mHtE',NULL,'MEHoJmhaWlucuOGuhtks8z-wgSFEzKxriMwdLN-DqDI',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Rushil','Shah',1,'ID_Card_Copy.jpg',2,'0706081567',NULL,0,'2020-01-02 18:02:00','NfV4NqSb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,165,NULL),(1353,'churchilloele254@gmail.com','churchilloele254@gmail.com','churchilloele254@gmail.com','churchilloele254@gmail.com',0,'DYBV86rSEAJZCKclQWRxvXvIwnWNVGPalbmh42XrX2E','$argon2id$v=19$m=65536,t=4,p=1$soOwaQT+0DMrCIiyOMbKKw$qP7ETe7P1L1NWJqInRFHaVRU3r4uRJVMgYqplpLeXUc',NULL,'FoghDHmfwX9LyS87tRjUBrJtn4El_gAKvj3SugIVJBE',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','churchill','omondi oele',1,'20170814_113113.jpg',2,'0706678900',NULL,0,'2020-01-02 18:02:01','AYONHW3X',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,166,NULL),(1354,'a.mutuma@gmail.com','a.mutuma@gmail.com','a.mutuma@gmail.com','a.mutuma@gmail.com',0,'c1371D2iLjXi8.6ladiVoJTuiku91iLvYaYUOZ23mYo','$argon2id$v=19$m=65536,t=4,p=1$VK+QTkXR0/UsDXeLJE6qcQ$Y6zhjV7kTtmgR10uHPfOba5yBemIbYLJhQRg7EDxAr4',NULL,'qrfK6BwvOth2ki2P6oqr4VaKqADZn7ZHnyaNEnWWNPA',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Abdul','Mutuma Kimathi',1,'Abdul_ID_photo.jpg',2,'0726379190',NULL,0,'2020-01-02 18:02:01','O5ZKmeRI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,169,NULL),(1355,'ian.chewaini@gmail.com','ian.chewaini@gmail.com','ian.chewaini@gmail.com','ian.chewaini@gmail.com',0,'9p5JszubzI2yhuKomWnEm5.XwxLF5gPzTn.6jpQSXqA','$argon2id$v=19$m=65536,t=4,p=1$nvnAzbZQxw/xmdKo/uA7Lw$s5rqJOXge63LpsTfIx6SqvKesBX+4nEjk8+4n9tCLzY',NULL,'Ute74TFxvxuY26ero7wPAuubRJj83N-dgBrsN3f3Wpg',NULL,'a:1:{i:0;s:11:\"ROLE_MEMBER\";}','Ian','Chewaini',0,NULL,2,NULL,NULL,0,'2020-01-02 18:02:01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,170,NULL),(1356,'timngula@gmail.com','timngula@gmail.com','timngula@gmail.com','timngula@gmail.com',0,'7TClZu4n6c3DbadE2hLkFfUvUoMTCN9Cchk2N9zYd8I','$argon2id$v=19$m=65536,t=4,p=1$uOuLy00lLePeZjnkUWikRg$2matyRvaWrlF5qoGHWhmT4MgGywA9ozwF2mjf1qPNdo',NULL,'0gMuJIl-p7v5IQQbFbd4ivM2tfjlzfUg0PEO8UA2-Hg',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Timothy','Ngula Mbae',1,'IMG_20170731_121253_621.jpg',2,'+254724121508',NULL,0,'2020-01-02 18:02:01','g8IGgsBQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,171,NULL),(1357,'ondiekphotography@gmail.com','ondiekphotography@gmail.com','ondiekphotography@gmail.com','ondiekphotography@gmail.com',0,'7c6yXhtbA.Z02BuTUmEiR0QbBy66O.1IU7RBu45vfTc','$argon2id$v=19$m=65536,t=4,p=1$Jd6mxcppfwZf11N2PIjIeg$30FH3sHujNBe/AkAsCY4FIhDukSosQTeqn84pfUnfcI',NULL,'ckM0pG16x8zSvR0akdqMqPzBloI6OEU_IiNIvYp2bs0',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Absalom ','Odhiambo Ayany',1,'Scan.pdf',2,'',NULL,0,'2020-01-02 18:02:01','f5ODP45z',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,173,NULL),(1358,'emily.a.corkill@gmail.com','emily.a.corkill@gmail.com','emily.a.corkill@gmail.com','emily.a.corkill@gmail.com',0,'gSdPJFjC8f5.TRnpAdZ/yteF3WxNl/q6dLBIy9Urp6Y','$argon2id$v=19$m=65536,t=4,p=1$hnUqtG6xwyMLqLSXON98Yw$6k7MIG+agT8mWuw4PYB//Varo3+dnobRAx2LcHanKSc',NULL,'aBHXhMn7eOBt8CSg2-ooLvaiN_Tr0Ljf2u78agBDe9Y',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Emily','A Corkill',1,'IMG_0827_2.JPG',2,'',NULL,0,'2020-01-02 18:02:01','n1TQsYBY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,175,NULL),(1359,'gngechu@gmail.com','gngechu@gmail.com','gngechu@gmail.com','gngechu@gmail.com',0,'bHlabS03dURP1wHq/sJbmwgRUl0cVy6of061y0/KBCc','$argon2id$v=19$m=65536,t=4,p=1$45Pfz8ESPbMgS/6SHgmIfg$7CrmqfG2NhX6G4cFuPAY+WKpfq3YjIvNk42HaAFE6EY',NULL,'WnNBlFqd0yP4-wD_Tdd1jWwdejrT0ZBbggXWmKh7WSQ',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Joj','Ngechu',1,'Screen_Shot_2017-08-31_at_23_48_44.png',2,'',NULL,0,'2020-01-02 18:02:02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,177,NULL),(1360,'valerielihabi20@gmail.com','valerielihabi20@gmail.com','valerielihabi20@gmail.com','valerielihabi20@gmail.com',0,'sGPvz9414/8Q.zyudjnLGt9n8u.98TEF7S6XY5rtfOw','$argon2id$v=19$m=65536,t=4,p=1$wK9hdIGFC3xxjopgvaDTfw$P8Q21wFFGB5p+/AjYUI/NLiQj1q8vJwIcjBImtxQlwc',NULL,'rH-ydb9nhngnP7J-KRoOmOgEA_gKisF738KNMU_3Js0',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Valerie','Lihabi',1,'20170926_124234.jpg',2,'0712094549',NULL,0,'2020-01-02 18:02:02','UqeFsXHX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,180,NULL),(1361,'njunge.sherry@gmail.com','njunge.sherry@gmail.com','njunge.sherry@gmail.com','njunge.sherry@gmail.com',0,'OHOGXlGU2WEAt3mbCeorBR./wMnvAZtpjVtQycia/h0','$argon2id$v=19$m=65536,t=4,p=1$LBS63mJoftOF8y+rkgIWFA$OGbbMNShvwNZDV7HFvJj09qOXJZAzdUZTAALS114QKo',NULL,'OtMPVQPAHVnI2vy_wAOIXeFq7F82afwxRxIEsmAvqe4',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Ashadieeyah','Njeri Njung\'e',1,'passpor.jpg',2,'0710344541',NULL,0,'2020-01-02 18:02:02','N0GQeNTO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,181,NULL),(1362,'info@byruffie.com','info@byruffie.com','info@byruffie.com','info@byruffie.com',0,'Zt/fDjkFnQqf4qHDIHAHPdGb//icx7jL.E08YXV/Wy4','$argon2id$v=19$m=65536,t=4,p=1$GyPVKbCf1IMePGthKLQnVQ$nZQpymDtzUulvUlRX8CzNyqiLd8gn82onlS3y5+LbjA',NULL,'NJ9i3ofCSX3dFM5pLYzBp-i4RE9cvgv4jCdikvvT5Hc',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Joy ','Ruth Wahome',1,'Joy_Wahome_passport_(2).pdf',2,'+254701156682',NULL,0,'2020-01-02 18:02:02','KlrUUFns',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,184,NULL),(1363,'deenjeru@gmail.com','deenjeru@gmail.com','deenjeru@gmail.com','deenjeru@gmail.com',0,'YScPgPHzW0JldCGCvIyUP6UxvSaXzm7Rv15/fnmpRLA','$argon2id$v=19$m=65536,t=4,p=1$jqzoopJTHrzNq0UlJe/HPg$PS1cqOIKkAN8dY6Og0M0TNR+J5tKFUz8/TEQ1jA7dm0',NULL,'1nMzYNMZc25CvegTBVBhzeGYohONyIXzkIJMdRXdMXY',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Diana','Njeru',1,'IMG-20171205-WA0010.jpg',2,'0722162021',NULL,0,'2020-01-02 18:02:02','qXKl7b0W',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,189,NULL),(1364,'serah.kariuki@scangroup.biz','serah.kariuki@scangroup.biz','serah.kariuki@scangroup.biz','serah.kariuki@scangroup.biz',0,'s/2RElCrfFKcNg3CLSWBuuz4Y4KwQW8IxULW6SkPKy0','$argon2id$v=19$m=65536,t=4,p=1$2i6rn8K+cz+G79fXT60KMw$ufVHLHSa+z1mi3oZ8SUxdrOWSVbVc6bUuuhK6YoPJjc',NULL,'D0m8wb0i_NWv7olh2V5kUTaX0t4n6WN5VkXsDPYg89I',NULL,'a:0:{}','Serah','Kariuki Kariuki',0,NULL,2,NULL,NULL,0,'2020-01-02 18:02:02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,192,NULL),(1365,'karanjaeric19@gmail.com','karanjaeric19@gmail.com','karanjaeric19@gmail.com','karanjaeric19@gmail.com',0,'SFPVKDt/9qYC8YsUPWZ69taXEKyLF1zFx1tB5g62jaA','$argon2id$v=19$m=65536,t=4,p=1$za0LSZb+AoiEmFprrIMgvg$ITp9sLfS3PlzoykHLR8vVYf/cSG7hbw7v7V6NDTUX3g',NULL,'miSEynoQjys4yRZrV2iCvyvYCHoabmaKgFn_sI8So-4',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Eric','Andrew Karanja',1,'my_id.jpg',2,'',NULL,0,'2020-01-02 18:02:02','LQMiXJ37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,195,NULL),(1366,'lilhipoly@yahoo.com','lilhipoly@yahoo.com','lilhipoly@yahoo.com','lilhipoly@yahoo.com',0,'TDI9PJdOSJ2zoZNNUIcSD/GIFgA6gurHer/8y9vAIxk','$argon2id$v=19$m=65536,t=4,p=1$VZ4VjyDYbQSw0Rk9mGzJEg$7Deydh+nMBwfuOpd8obAiu/+G5JGUhvHNSfG8sY5VxM',NULL,'0ohF91whnjCKogKLpMWAStI0GV8V1fvTXjntpDTb5JA',NULL,'a:1:{i:0;s:11:\"ROLE_MEMBER\";}','Lilthelion','Hipolyte',0,NULL,2,NULL,NULL,0,'2020-01-02 18:02:03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,196,NULL),(1367,'Serah.kariuki@ogilvyafrica.com','serah.kariuki@ogilvyafrica.com','Serah.kariuki@ogilvyafrica.com','serah.kariuki@ogilvyafrica.com',0,'0B/hOeGBUuO9/j.ClZip7UuvmYNkFpe7FSxtl3jgUek','$argon2id$v=19$m=65536,t=4,p=1$hpThvDC0OHD+Ryu5yzRjZA$m+SwUBr6ZgYQfA98bb3A/ExW+fADjPTYY9pALQ1fsnw',NULL,'JVlpXmnzbYFfDzyTnfhaRNsQaeYppSong0ZCWrQoZHI',NULL,'a:1:{i:0;s:11:\"ROLE_MEMBER\";}','Serah','Wangui Kariuki',0,NULL,2,NULL,NULL,0,'2020-01-02 18:02:03','CWGFjMQ8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,197,NULL),(1368,'express@ma-ideastech.co.ke','express@ma-ideastech.co.ke','express@ma-ideastech.co.ke','express@ma-ideastech.co.ke',0,'x2yQ.mfclXtaB.hUrBaCYgWk3D9jUjvn0JPlhFGMbUI','$argon2id$v=19$m=65536,t=4,p=1$hXsSDQz7GbBrWgEH1gIjJQ$QwfDrGhE2DBbHzuBbugduv3pZkbuvZQM64ER/zkzb20',NULL,'m7PIx-py8BM_qB6UdxJXbflq2vp8a4s8yWGxTp3FB3U',NULL,'a:1:{i:0;s:11:\"ROLE_MEMBER\";}','Denno','Mwangi',0,NULL,2,NULL,NULL,0,'2020-01-02 18:02:03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL),(1369,'moengbm@gmail.com','moengbm@gmail.com','moengbm@gmail.com','moengbm@gmail.com',0,'vlq8XRSN4aFBfZZx5tELnjwhaCGx/j1bYuiZAFmGmY4','$argon2id$v=19$m=65536,t=4,p=1$ovTVBK335KEAdcU73wg46A$ihr7cLwnbgWSo2rUz2P97XMO//8OJB/I4/Ed2XEWrj8',NULL,'37tljH7YhKncNM9E9Dqfu9YhAHGPzih-MDTkTuRztsI',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Moeng@gmail.com','Muchiri',1,'I_D.jpg',2,'0720256410',NULL,0,'2020-01-02 18:02:03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,222,NULL),(1370,'george.ngechu@suraimages.com','george.ngechu@suraimages.com','george.ngechu@suraimages.com','george.ngechu@suraimages.com',0,'5VL.mcyJM0wAYblAjOHIf.vDBS6.8hV1g/5Kvu8vHQs','$argon2id$v=19$m=65536,t=4,p=1$4uP8nn3WZUWduV8Kw4iqOw$0zZa2IxedHobq1a3Aq2ZOqG7zCNrZ7Qd2PjgdgD2aYk',NULL,'onQIUXHqXCFGyccg5ICHOLMmn6VSItM546jJwKgKZrk',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','George','Ngechu',1,'IMG_20140902_235831.jpg',2,'0723866717',NULL,0,'2020-01-02 18:02:03','3GFduEK8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,225,NULL),(1371,'ellrussbest@gmail.com','ellrussbest@gmail.com','ellrussbest@gmail.com','ellrussbest@gmail.com',0,'a0Okl2FMC8fzXAr5lM6uDZcXmeq2BeV7PNKRnXDsalg','$argon2id$v=19$m=65536,t=4,p=1$UNqNA6nfIuIyJ1gr16pOvw$gA+yrUoTOB9BmedDiKhjZMTknEVdxb4C1MyKEjnnsq8',NULL,'3jAZSwfrDSSiiQ4efXp3qKBCbFkFQ3FTONfGM92GcsM',NULL,'a:1:{i:0;s:11:\"ROLE_MEMBER\";}','Russell','Best',0,NULL,2,NULL,NULL,0,'2020-01-02 18:02:03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,232,NULL),(1372,'Anne.Ngugi@wpp-scangroup.com','anne.ngugi@wpp-scangroup.com','Anne.Ngugi@wpp-scangroup.com','anne.ngugi@wpp-scangroup.com',0,'h.sVj/meeFkx75FIba3XzhZ9dw4NCc9O4NpA3ht.yls','$argon2id$v=19$m=65536,t=4,p=1$+WKzVulvBCzJ8tKx1l4Zzg$HaOtrNSwowxa2YbrCRPCoQ46ptDsER3OEhayq+NsRuk',NULL,'6FAlIrJE4cLo00FEMxeQHtMt8SQkQlCU7Guf06EcQYs',NULL,'a:1:{i:0;s:11:\"ROLE_MEMBER\";}','ANNE','N NGUGI',0,NULL,2,NULL,NULL,0,'2020-01-02 18:02:03','Ub4HPukn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,233,NULL),(1373,'katumomaithya@yahoo.com','katumomaithya@yahoo.com','katumomaithya@yahoo.com','katumomaithya@yahoo.com',0,'Pg3x8M9LEBMf5pJrL07DSZfYHaMBgOwFUqcKIWl6Oag','$argon2id$v=19$m=65536,t=4,p=1$H/Sgtw97FBj+67wraBiXcA$gk/2yo894xJM5gdIGmjQmCWmBdW8qWKM92i0Z4aMnnw',NULL,'o42BarCV2q4fNvPwn9ZHz-8vQWOthQP798MLJbdgYLc',NULL,'a:1:{i:0;s:16:\"ROLE_CONTRIBUTOR\";}','Maithya','Katumo',1,'t1_001.jpg',2,'',NULL,0,'2020-01-02 18:02:04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,237,NULL);
/*!40000 ALTER TABLE `fos_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ftpgroup`
--

DROP TABLE IF EXISTS `ftpgroup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ftpgroup` (
  `id` int NOT NULL AUTO_INCREMENT,
  `groupname` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `gid` smallint NOT NULL,
  `members` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ftpgroup`
--

LOCK TABLES `ftpgroup` WRITE;
/*!40000 ALTER TABLE `ftpgroup` DISABLE KEYS */;
INSERT INTO `ftpgroup` VALUES (1,'ftp',5500,'komu');
/*!40000 ALTER TABLE `ftpgroup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ftpuser`
--

DROP TABLE IF EXISTS `ftpuser`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ftpuser` (
  `id` int NOT NULL AUTO_INCREMENT,
  `userid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `passwd` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `uid` int NOT NULL,
  `gid` int NOT NULL,
  `homedir` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `shell` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `count` int NOT NULL,
  `accessed` datetime NOT NULL,
  `modified` datetime NOT NULL,
  `user_id` int NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_B0BC00ECA76ED395` (`user_id`),
  CONSTRAINT `FK_B0BC00ECA76ED395` FOREIGN KEY (`user_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1314 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ftpuser`
--

LOCK TABLES `ftpuser` WRITE;
/*!40000 ALTER TABLE `ftpuser` DISABLE KEYS */;
INSERT INTO `ftpuser` VALUES (1281,'admin@suraimages.com','5e0e05e63884f',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1341','/sbin/nologin',0,'2020-01-02 18:01:58','2020-01-02 18:01:58',1341),(1282,'namuksz@gmail.com','5e0e05e68a0af',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1342','/sbin/nologin',0,'2020-01-02 18:01:58','2020-01-02 18:01:58',1342),(1283,'gitonga@egmgem.com','5e0e05e6c5ef5',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1343','/sbin/nologin',0,'2020-01-02 18:01:58','2020-01-02 18:01:58',1343),(1284,'info@alfredmwangi.co.ke','5e0e05e701e57',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1344','/sbin/nologin',0,'2020-01-02 18:01:59','2020-01-02 18:01:59',1344),(1285,'unicisaac@gmail.com','5e0e05e74514a',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1345','/sbin/nologin',0,'2020-01-02 18:01:59','2020-01-02 18:01:59',1345),(1286,'machariajustun@gmail.com','5e0e05e77d6b3',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1346','/sbin/nologin',0,'2020-01-02 18:01:59','2020-01-02 18:01:59',1346),(1287,'e.thuophotography@gmail.com','5e0e05e7aec4d',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1347','/sbin/nologin',0,'2020-01-02 18:01:59','2020-01-02 18:01:59',1347),(1288,'kvnwanjala776@gmail.com','5e0e05e815e7a',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1348','/sbin/nologin',0,'2020-01-02 18:02:00','2020-01-02 18:02:00',1348),(1289,'gerahuini@gmail.com','5e0e05e851c02',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1349','/sbin/nologin',0,'2020-01-02 18:02:00','2020-01-02 18:02:00',1349),(1290,'tracy.mutugi@gmail.com','5e0e05e882056',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1350','/sbin/nologin',0,'2020-01-02 18:02:00','2020-01-02 18:02:00',1350),(1291,'abdulwahabelhady@gmail.com','5e0e05e8da4e6',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1351','/sbin/nologin',0,'2020-01-02 18:02:00','2020-01-02 18:02:00',1351),(1292,'rushil_s_shah@hotmail.com','5e0e05e91a7c8',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1352','/sbin/nologin',0,'2020-01-02 18:02:01','2020-01-02 18:02:01',1352),(1293,'churchilloele254@gmail.com','5e0e05e93d913',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1353','/sbin/nologin',0,'2020-01-02 18:02:01','2020-01-02 18:02:01',1353),(1294,'a.mutuma@gmail.com','5e0e05e96c9e5',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1354','/sbin/nologin',0,'2020-01-02 18:02:01','2020-01-02 18:02:01',1354),(1295,'ian.chewaini@gmail.com','5e0e05e994a3f',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1355','/sbin/nologin',0,'2020-01-02 18:02:01','2020-01-02 18:02:01',1355),(1296,'timngula@gmail.com','5e0e05e9b64d4',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1356','/sbin/nologin',0,'2020-01-02 18:02:01','2020-01-02 18:02:01',1356),(1297,'ondiekphotography@gmail.com','5e0e05e9db2f3',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1357','/sbin/nologin',0,'2020-01-02 18:02:01','2020-01-02 18:02:01',1357),(1298,'emily.a.corkill@gmail.com','5e0e05ea120a3',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1358','/sbin/nologin',0,'2020-01-02 18:02:02','2020-01-02 18:02:02',1358),(1299,'gngechu@gmail.com','5e0e05ea388c3',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1359','/sbin/nologin',0,'2020-01-02 18:02:02','2020-01-02 18:02:02',1359),(1300,'valerielihabi20@gmail.com','5e0e05ea5ee06',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1360','/sbin/nologin',0,'2020-01-02 18:02:02','2020-01-02 18:02:02',1360),(1301,'njunge.sherry@gmail.com','5e0e05ea8106e',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1361','/sbin/nologin',0,'2020-01-02 18:02:02','2020-01-02 18:02:02',1361),(1302,'info@byruffie.com','5e0e05eaaa8f2',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1362','/sbin/nologin',0,'2020-01-02 18:02:02','2020-01-02 18:02:02',1362),(1303,'deenjeru@gmail.com','5e0e05eaca968',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1363','/sbin/nologin',0,'2020-01-02 18:02:02','2020-01-02 18:02:02',1363),(1304,'serah.kariuki@scangroup.biz','5e0e05eaeab5f',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1364','/sbin/nologin',0,'2020-01-02 18:02:02','2020-01-02 18:02:02',1364),(1305,'karanjaeric19@gmail.com','5e0e05eb1b701',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1365','/sbin/nologin',0,'2020-01-02 18:02:03','2020-01-02 18:02:03',1365),(1306,'lilhipoly@yahoo.com','5e0e05eb3c13e',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1366','/sbin/nologin',0,'2020-01-02 18:02:03','2020-01-02 18:02:03',1366),(1307,'serah.kariuki@ogilvyafrica.com','5e0e05eb5c193',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1367','/sbin/nologin',0,'2020-01-02 18:02:03','2020-01-02 18:02:03',1367),(1308,'express@ma-ideastech.co.ke','5e0e05eb7cc26',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1368','/sbin/nologin',0,'2020-01-02 18:02:03','2020-01-02 18:02:03',1368),(1309,'moengbm@gmail.com','5e0e05eb9d9ac',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1369','/sbin/nologin',0,'2020-01-02 18:02:03','2020-01-02 18:02:03',1369),(1310,'george.ngechu@suraimages.com','5e0e05ebbdb47',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1370','/sbin/nologin',0,'2020-01-02 18:02:03','2020-01-02 18:02:03',1370),(1311,'ellrussbest@gmail.com','5e0e05ebdeedd',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1371','/sbin/nologin',0,'2020-01-02 18:02:03','2020-01-02 18:02:03',1371),(1312,'anne.ngugi@wpp-scangroup.com','5e0e05ec0e099',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1372','/sbin/nologin',0,'2020-01-02 18:02:04','2020-01-02 18:02:04',1372),(1313,'katumomaithya@yahoo.com','5e0e05ec2f717',5500,5500,'/var/www/html/da/2019/sura/public/uploads/ftp/1373','/sbin/nologin',0,'2020-01-02 18:02:04','2020-01-02 18:02:04',1373);
/*!40000 ALTER TABLE `ftpuser` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `home_featured_stock`
--

DROP TABLE IF EXISTS `home_featured_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `home_featured_stock` (
  `id` int NOT NULL AUTO_INCREMENT,
  `contributor_id` int DEFAULT NULL,
  `type_id` int DEFAULT NULL,
  `file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_920775F17A19A357` (`contributor_id`),
  KEY `IDX_920775F1C54C8C93` (`type_id`),
  CONSTRAINT `FK_920775F17A19A357` FOREIGN KEY (`contributor_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_920775F1C54C8C93` FOREIGN KEY (`type_id`) REFERENCES `stock_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `home_featured_stock`
--

LOCK TABLES `home_featured_stock` WRITE;
/*!40000 ALTER TABLE `home_featured_stock` DISABLE KEYS */;
INSERT INTO `home_featured_stock` VALUES (2,2,4,'GettyImages-178150393_20191129.jpeg',NULL),(4,2,4,'GettyImages-184091239_20191129.jpeg',NULL),(5,2,4,'GettyImages-524772297_20191129.jpeg',NULL),(6,2,5,'gettyimages-103329035-640_adpp_20191207.mp4',NULL),(7,2,5,'gettyimages-1019211310-640_adpp_20191207.mp4',NULL),(8,2,5,'gettyimages-1045671668-640_adpp_20191207.mp4',NULL),(9,2,4,'GettyImages-143917249_20191218.jpeg',NULL);
/*!40000 ALTER TABLE `home_featured_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `home_page`
--

DROP TABLE IF EXISTS `home_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `home_page` (
  `id` int NOT NULL AUTO_INCREMENT,
  `feature_photo_id` int DEFAULT NULL,
  `feature_video_id` int DEFAULT NULL,
  `banner` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `welcome_message` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_352C07EF773E3B3` (`feature_photo_id`),
  KEY `IDX_352C07EF502CAF71` (`feature_video_id`),
  CONSTRAINT `FK_352C07EF502CAF71` FOREIGN KEY (`feature_video_id`) REFERENCES `stock` (`id`),
  CONSTRAINT `FK_352C07EF773E3B3` FOREIGN KEY (`feature_photo_id`) REFERENCES `stock` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `home_page`
--

LOCK TABLES `home_page` WRITE;
/*!40000 ALTER TABLE `home_page` DISABLE KEYS */;
INSERT INTO `home_page` VALUES (1,NULL,NULL,'banner_20171012-IMG_9853_20191207.jpeg','Get authentic African Images, Videos for commercial, editorial or personal use all in Royalty Free, Rights Managed & Rights Ready licenses.');
/*!40000 ALTER TABLE `home_page` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `invoice`
--

DROP TABLE IF EXISTS `invoice`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `invoice` (
  `id` int NOT NULL AUTO_INCREMENT,
  `create_by_id` int NOT NULL,
  `create_time` datetime NOT NULL,
  `total` double NOT NULL,
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pesapal_status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pesapal_tracking_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_906517449E085865` (`create_by_id`),
  CONSTRAINT `FK_906517449E085865` FOREIGN KEY (`create_by_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice`
--

LOCK TABLES `invoice` WRITE;
/*!40000 ALTER TABLE `invoice` DISABLE KEYS */;
/*!40000 ALTER TABLE `invoice` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `invoice_items`
--

DROP TABLE IF EXISTS `invoice_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `invoice_items` (
  `id` int NOT NULL AUTO_INCREMENT,
  `stock_id` int NOT NULL,
  `amount` double NOT NULL,
  `created_at` datetime NOT NULL,
  `file_size` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `licence_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `invoice_id` int NOT NULL,
  `downloaded` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_DCC4B9F8DCD6110` (`stock_id`),
  KEY `IDX_DCC4B9F82989F1FD` (`invoice_id`),
  CONSTRAINT `FK_DCC4B9F82989F1FD` FOREIGN KEY (`invoice_id`) REFERENCES `invoice` (`id`),
  CONSTRAINT `FK_DCC4B9F8DCD6110` FOREIGN KEY (`stock_id`) REFERENCES `stock` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice_items`
--

LOCK TABLES `invoice_items` WRITE;
/*!40000 ALTER TABLE `invoice_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `invoice_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `messages`
--

DROP TABLE IF EXISTS `messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `messages` (
  `id` int NOT NULL AUTO_INCREMENT,
  `message_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cost` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `message_parts` int NOT NULL,
  `phone_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `messages`
--

LOCK TABLES `messages` WRITE;
/*!40000 ALTER TABLE `messages` DISABLE KEYS */;
INSERT INTO `messages` VALUES (1,'ATXid_ebede8e0ec54d3e63d7db29471718859','KES 0.8000',1,'+254723536737','Success','101','A Model account has been created @SuraImages\nYour username is: gngechu@hotmail.com \nYour password is: 12345\n'),(2,'ATXid_a9b265c3295efd3272bf69aece56e702','KES 0.8000',1,'+254744556677','Success','101','A Model account has been created @SuraImages\nYour username is: dmukunzi@gmail.com \nYour password is: 12345\n'),(3,'ATXid_f32cad3931708eb1de23b18bc9d8d381','KES 0.8000',1,'+254723866717','Success','101','Your Sura verification code: 6467'),(4,'ATXid_8045e9b73979b70685f83d294e5a28de','KES 0.8000',1,'+254723866717','Success','101','Your Sura verification code: 9368'),(5,'ATXid_bc91c8e7133212b68650baf5eea612b7','KES 0.8000',1,'+254770328938','Success','101','Your Sura verification code: 8484'),(6,'ATXid_c724ab213b8245ec3bcd99075c6f8e1d','KES 0.8000',1,'+254721101542','Success','101','Your Sura verification code: 9272'),(7,'ATXid_22e92fef187534ea22a61cd3ae04d6c7','KES 0.8000',1,'+254721101542','Success','101','Your Sura verification code: 6507'),(8,'ATXid_6e18f5d6e72117ffe8e44852d3012a6d','KES 0.8000',1,'+254723866717','Success','101','Your Sura verification code: 2755'),(9,'ATXid_4ff37843a85c2ea9120b2733916c1c94','KES 0.8000',1,'+254723866717','Success','101','Your Sura verification code: 8805'),(10,'ATXid_1ebc2c8778bee5ae832e6e402d28f8ab','KES 0.8000',1,'+254723536737','Success','101','A Model account has been created @SuraImages\nYour username is: debramukunzi@gmail.com \nYour password is: 12345\n');
/*!40000 ALTER TABLE `messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `migration_versions`
--

DROP TABLE IF EXISTS `migration_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migration_versions` (
  `version` varchar(14) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `executed_at` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',
  PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `migration_versions`
--

LOCK TABLES `migration_versions` WRITE;
/*!40000 ALTER TABLE `migration_versions` DISABLE KEYS */;
INSERT INTO `migration_versions` VALUES ('20190528200514','2019-05-28 20:21:58'),('20190531170954','2019-05-31 17:11:03'),('20190606162354','2019-06-06 16:24:50'),('20190613163434','2019-06-13 16:34:54'),('20190613164419','2019-06-13 16:48:45'),('20190617075803','2019-06-17 07:58:20'),('20190623181245','2019-06-23 18:13:05'),('20190623192708','2019-06-23 19:27:27'),('20190625181544','2019-06-25 18:15:51'),('20190625193902','2019-06-25 19:39:31'),('20190701181541','2019-07-01 18:15:54'),('20190701184807','2019-07-01 18:48:20'),('20190702133218','2019-07-02 13:33:26'),('20190702134628','2019-07-02 13:46:39'),('20190720103604','2019-07-20 10:36:19'),('20190720103829','2019-07-20 10:38:33'),('20190720121142','2019-07-20 12:12:00'),('20190720121527','2019-07-20 12:15:32'),('20190720172135','2019-07-20 17:21:42'),('20190720172917','2019-07-20 17:29:23'),('20190721072945','2019-07-21 07:29:59'),('20190724162859','2019-07-24 16:29:12'),('20190812081104','2019-08-12 08:11:13'),('20190813175908','2019-08-13 17:59:20'),('20190815091537','2019-08-15 09:21:20'),('20190815101552','2019-08-15 14:04:50'),('20190815123621','2019-08-15 12:36:47'),('20190815140433','2019-08-15 14:08:25'),('20190815142823','2019-08-15 14:36:53'),('20190823203047','2019-08-23 20:35:12'),('20190826181956','2019-08-26 18:27:39'),('20190828170047','2019-08-30 07:12:47'),('20190830132608','2019-08-30 13:26:32'),('20190914111655','2019-09-14 11:51:46'),('20190921114400','2019-09-21 11:44:15'),('20191013191334','2019-10-15 15:32:50'),('20191017124212','2019-10-17 15:03:05'),('20191017182929','2019-10-19 09:46:09');
/*!40000 ALTER TABLE `migration_versions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `model`
--

DROP TABLE IF EXISTS `model`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `model` (
  `id` int NOT NULL AUTO_INCREMENT,
  `user_id` int DEFAULT NULL,
  `created_by_id` int DEFAULT NULL,
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gender` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_D79572D9B03A8386` (`created_by_id`),
  KEY `IDX_D79572D9A76ED395` (`user_id`),
  CONSTRAINT `FK_D79572D9A76ED395` FOREIGN KEY (`user_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_D79572D9B03A8386` FOREIGN KEY (`created_by_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `model`
--

LOCK TABLES `model` WRITE;
/*!40000 ALTER TABLE `model` DISABLE KEYS */;
/*!40000 ALTER TABLE `model` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `model_release`
--

DROP TABLE IF EXISTS `model_release`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `model_release` (
  `id` int NOT NULL AUTO_INCREMENT,
  `model_id` int NOT NULL,
  `the_release_id` int NOT NULL,
  `model_pivot_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_FED46AEC7975B7E7` (`model_id`),
  KEY `IDX_FED46AEC7F9F645B` (`the_release_id`),
  KEY `IDX_FED46AECA6C23385` (`model_pivot_id`),
  CONSTRAINT `FK_FED46AEC7975B7E7` FOREIGN KEY (`model_id`) REFERENCES `model` (`id`),
  CONSTRAINT `FK_FED46AEC7F9F645B` FOREIGN KEY (`the_release_id`) REFERENCES `release_form` (`id`),
  CONSTRAINT `FK_FED46AECA6C23385` FOREIGN KEY (`model_pivot_id`) REFERENCES `model` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `model_release`
--

LOCK TABLES `model_release` WRITE;
/*!40000 ALTER TABLE `model_release` DISABLE KEYS */;
/*!40000 ALTER TABLE `model_release` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `my_model`
--

DROP TABLE IF EXISTS `my_model`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `my_model` (
  `id` int NOT NULL AUTO_INCREMENT,
  `model_id` int NOT NULL,
  `contributor_id` int NOT NULL,
  `link_date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_BB53C01D7975B7E7` (`model_id`),
  KEY `IDX_BB53C01D7A19A357` (`contributor_id`),
  CONSTRAINT `FK_BB53C01D7975B7E7` FOREIGN KEY (`model_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_BB53C01D7A19A357` FOREIGN KEY (`contributor_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `my_model`
--

LOCK TABLES `my_model` WRITE;
/*!40000 ALTER TABLE `my_model` DISABLE KEYS */;
/*!40000 ALTER TABLE `my_model` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `numbers`
--

DROP TABLE IF EXISTS `numbers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `numbers` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `numbers`
--

LOCK TABLES `numbers` WRITE;
/*!40000 ALTER TABLE `numbers` DISABLE KEYS */;
INSERT INTO `numbers` VALUES (1),(2),(3),(4),(5),(6),(7),(8);
/*!40000 ALTER TABLE `numbers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page`
--

DROP TABLE IF EXISTS `page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `page` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` int NOT NULL,
  `image_header` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page`
--

LOCK TABLES `page` WRITE;
/*!40000 ALTER TABLE `page` DISABLE KEYS */;
INSERT INTO `page` VALUES (1,'Terms of Service','terms-of-service','<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">The following is a legal agreement between you and the owners and operators of suraimages.com (Website). By accessing, purchasing or using any Content from Sura Images website, you agree to be bound by the terms of this Agreement. If you do not agree with the Terms of Use, you are not allowed to use the Website. This agreement may be revised or updated without notice.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif; font-weight: normal; font-size: 1.8em; color: #3d4562; background-color: #fbfbfd;\">The Use of this Website</h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">Version: June, 2019&nbsp;<a style=\"box-sizing: border-box; margin: 0px; padding: 0px; color: #282034; outline: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\" href=\"http://sura.digitalmold.co.ke/home/terms/of/service\" target=\"_blank\" rel=\"noopener\">Download PDF</a></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">You warrant that you are of legal age to use the Website and to create binding legal obligations for any liability you may incur as a result of the use of the Website. You agree that you are responsible for all of your use of the site including for the use of your account by others.</p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 5px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif; font-weight: normal; font-size: 1.2em; color: #3d4562; background-color: #fbfbfd;\">A. Definitions:</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">All capitalized terms shall have the meaning set forth and elsewhere in these terms and conditions.</p>\r\n<ol style=\"box-sizing: border-box; margin: 0px 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"End Use\"</span>&nbsp;means the final work created with the content as authorized.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"License\"</span>&nbsp;means the permission granted by Sura Images to Licensee to use the Content as specified in and subject to the terms and conditions of the Agreement.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Licensee\"</span>&nbsp;means the person who is registered with Sura Images as a member and is listed as the registrant of the Sura Images account through which the License is granted.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Material\"</span>&nbsp;and&nbsp;<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Images\"</span>&nbsp;means all material and images respectively, and related informational materials in any medium obtained from or furnished by Sura Images hereunder, including without limitation related metadata, text, captions, or information.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Model Release\"</span>&nbsp;means that the contributor/photographer of Content has obtained permission for all permitted licensing type uses from people who are visible and recognizable in the Content.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Property Release\"</span>&nbsp;means that the contributor/photographer of Content has obtained permission for all permitted licensing type uses from the owner of the tangible property depicted in the Content. &ldquo;Property Release&rdquo; does not include any permission for any intellectual property depicted in the Content.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Rights-Managed Content\"</span>&nbsp;means Content licensed for a fee on a per-use basis and expressly designated as &ldquo;Rights-Managed&rdquo; or &ldquo;RM&rdquo; by Sura Images.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Royalty-Free Content\"</span>&nbsp;means Content licensed for an unlimited number of permitted uses for a one-time flat fee and expressly designated as &ldquo;Royalty-Free&rdquo; or &ldquo;RF&rdquo; by Sura Images.</li>\r\n</ol>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 5px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif; font-weight: normal; font-size: 1.2em; color: #3d4562; background-color: #fbfbfd;\">B. License:</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">The following are the types of license rights available from Sura Images:-</p>\r\n<ol style=\"box-sizing: border-box; margin: 0px 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">Who May Use the Content:</span>&nbsp;Only Licensee may use the Content and the End Use must be solely for Licensee&rsquo;s own use. Licensee&rsquo;s employees and contractors (if any) may use the Content as necessary to create the End Use as provided, provided that each such employee or contractor has agreed to comply with the terms hereof, and further provided that Licensee remains liable for any breach of the terms of this Agreement by such employee(s) or contractor(s).</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">License Types:</span><br style=\"box-sizing: border-box; margin: 0px; padding: 0px;\" />\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">(i) Rights Managed (RM):</span>&nbsp;Rights-managed content are licensed with restrictions on usage, such as limitations on size, placement, duration of use, regional distribution etc. You will be asked to submit information concerning your intended use of the content, which will determine the scope of usage rights granted. Our price calculator or one of our sales representatives can help you determine the price.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">(ii) Royalty-Free (RF):</span>&nbsp;Royalty-free licensing is based solely on the file size of the content you need and not for specific use. Once purchased, it can be used multiple times on different media by your client/employer/ licensee without incurring additional fees.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">(iii) Editorial (RM):</span>&nbsp;This type of license is licensed with restrictions on usage, such as media placement, size, placement, duration and regional distribution. Editorial content must be used for editorial use only that is newsworthy or of public interest.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">(iv) Editorial (RF):</span>&nbsp;Editorial Royalty-Free content must be used for editorial use only that is newsworthy or of public interest and have no restrictions on usage, such as media placement, size, placement, duration and regional distribution. It is based solely on the file size of the content you need and not for specific use.</p>\r\n</li>\r\n</ol>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 5px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif; font-weight: normal; font-size: 1.2em; color: #3d4562; background-color: #fbfbfd;\">C. Parties:</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">This Agreement is binding between Sura Images Limited (<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Sura Images\"</span>) and Licensee.&nbsp;<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Licensee\"</span>&nbsp;means:</p>\r\n<ol style=\"box-sizing: border-box; margin: 0px 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\">the individual listed as the registrant of the Sura Images account through which the License is granted (<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Registrant\"</span>) and</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 15px; padding: 0px;\">if Registrant is entering into this Agreement for the benefit of, or as an agent on behalf of, Registrant&rsquo;s employer (<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Employer\"</span>) or a third party (<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif;\">\"Principal\"</span>)</li>\r\n</ol>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 5px; padding: 0px; font-family: AvenirLTStdHeavy, Helvetica, sans-serif; font-weight: normal; font-size: 1.2em; color: #3d4562; background-color: #fbfbfd;\">D. Ownership and Intellectual Property:</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 25px; padding: 0px; color: #3d4562; font-family: AvenirLTStdBook, Helvetica, sans-serif; font-size: 14px; background-color: #fbfbfd;\">Sura Images and its Content sources retain all right, title, and interest in and to all of the copyrights and any other proprietary rights in the Content. No rights in any Content are granted except the Licenses specified in this Agreement. Any right, title or interest arising in any compilation or derivative work created using any Content shall not entitle Licensee to use any Content except as permitted hereunder.</p>',1,'20171016-IMG_1193_20191207.jpeg'),(2,'Privacy Policy','privacy-policy','The following is a legal agreement between you and the owners and operators of suraimages.com (Website). By accessing, purchasing or using any Content from Sura Images website, you agree to be bound by the terms of this Agreement. If you do not agree with the Terms of Use, you are not allowed to use the Website. This agreement may be revised or updated without notice.\r\nThe Use of this Website\r\n\r\nYou warrant that you are of legal age to use the Website and to create binding legal obligations for any liability you may incur as a result of the use of the Website. You agree that you are responsible for all of your use of the site including for the use of your account by others.\r\n1. Definitions:\r\n\r\nAll capitalized terms shall have the meaning set forth and elsewhere in these terms and conditions.\r\n\r\n    (a) “End Use” means the final work created with the content as authorized. (b) “License” means the permission granted by Sura Images to Licensee to use the Content as specified in and subject to the terms and conditions of the Agreement. (c) “Licensee” means the person who is registered with Sura Images as a member and is listed as the registrant of the Sura Images account through which the License is granted. (d) “Material” and “Images” means all material and images respectively, and related informational materials in any medium obtained from or furnished by Sura Images hereunder, including without limitation related metadata, text, captions, or information. (e) “Model Release” means that the contributor/photographer of Content has obtained permission for all permitted licensing type uses from people who are visible and recognizable in the Content. (f) “Property Release” means that the contributor/photographer of Content has obtained permission for all permitted licensing type uses from the owner of the tangible property depicted in the Content. “Property Release” does not include any permission for any intellectual property depicted in the Content. (g) “Rights-Managed Content” means Content licensed for a fee on a per-use basis and expressly designated as “Rights-Managed” or “RM” by Sura Images. (h) “Royalty-Free Content” means Content licensed for an unlimited number of permitted uses for a one-time flat fee and expressly designated as “Royalty-Free” or “RF” by Sura Images. \r\n\r\n2. License:\r\n\r\nThe following are the types of license rights available from Sura Images:-\r\n\r\n    (a) Who May Use the Content: Only Licensee may use the Content and the End Use must be solely for Licensee’s own use. Licensee’s employees and contractors (if any) may use the Content as necessary to create the End Use as provided, provided that each such employee or contractor has agreed to comply with the terms hereof, and further provided that Licensee remains liable for any breach of the terms of this Agreement by such employee(s) or contractor(s). (b) License Types:\r\n        (i) Rights Managed (RM): Rights-managed content are licensed with restrictions on usage, such as limitations on size, placement, duration of use, regional distribution etc. You will be asked to submit information concerning your intended use of the content, which will determine the scope of usage rights granted. Our price calculator or one of our sales representatives can help you determine the price. (ii) Royalty-Free (RF): Royalty-free licensing is based solely on the file size of the content you need and not for specific use. Once purchased, it can be used multiple times on different media by your client/employer/ licensee without incurring additional fees. (iii) Editorial (RM): This type of license is licensed with restrictions on usage, such as media placement, size, placement, duration and regional distribution. Editorial content must be used for editorial use only that is newsworthy or of public interest. (iv) Editorial (RF): Editorial Royalty-Free content must be used for editorial use only that is newsworthy or of public interest and have no restrictions on usage, such as media placement, size, placement, duration and regional distribution. It is based solely on the file size of the content you need and not for specific use. \r\n\r\n3. Parties:\r\n\r\nThis Agreement is binding between Sura Images Limited (“Sura Images”) and Licensee. “Licensee” means:\r\n\r\n    (a) the individual listed as the registrant of the Sura Images account through which the License is granted (“Registrant”) and (b) if Registrant is entering into this Agreement for the benefit of, or as an agent on behalf of, Registrant’s employer (“Employer”) or a third party (“Principal”) \r\n\r\n4. Ownership and Intellectual Property:\r\n\r\nSura Images and its Content sources retain all right, title, and interest in and to all of the copyrights and any other proprietary rights in the Content. No rights in any Content are granted except the Licenses specified in this Agreement. Any right, title or interest arising in any compilation or derivative work created using any Content shall not entitle Licensee to use any Content except as',1,NULL);
/*!40000 ALTER TABLE `page` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payout_details`
--

DROP TABLE IF EXISTS `payout_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payout_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `user_id` int NOT NULL,
  `mode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `bank_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `account_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `account_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `branch_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` int NOT NULL,
  `postal_adress` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zip_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_4C1DF959A76ED395` (`user_id`),
  KEY `IDX_4C1DF959F92F3E70` (`country_id`),
  CONSTRAINT `FK_4C1DF959A76ED395` FOREIGN KEY (`user_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_4C1DF959F92F3E70` FOREIGN KEY (`country_id`) REFERENCES `country` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payout_details`
--

LOCK TABLES `payout_details` WRITE;
/*!40000 ALTER TABLE `payout_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `payout_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payouts`
--

DROP TABLE IF EXISTS `payouts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payouts` (
  `id` int NOT NULL AUTO_INCREMENT,
  `payout_to_id` int NOT NULL,
  `created_at` datetime NOT NULL,
  `amount` double NOT NULL,
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payout_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_F54E808EB01B82D2` (`payout_to_id`),
  CONSTRAINT `FK_F54E808EB01B82D2` FOREIGN KEY (`payout_to_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payouts`
--

LOCK TABLES `payouts` WRITE;
/*!40000 ALTER TABLE `payouts` DISABLE KEYS */;
/*!40000 ALTER TABLE `payouts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `release_form`
--

DROP TABLE IF EXISTS `release_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `release_form` (
  `id` int NOT NULL AUTO_INCREMENT,
  `create_by_id` int DEFAULT NULL,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `create_at` datetime NOT NULL,
  `model_id` int DEFAULT NULL,
  `payout_percent` double DEFAULT NULL,
  `old_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_1F7F4D589E085865` (`create_by_id`),
  KEY `IDX_1F7F4D587975B7E7` (`model_id`),
  CONSTRAINT `FK_1F7F4D587975B7E7` FOREIGN KEY (`model_id`) REFERENCES `model` (`id`),
  CONSTRAINT `FK_1F7F4D589E085865` FOREIGN KEY (`create_by_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `release_form`
--

LOCK TABLES `release_form` WRITE;
/*!40000 ALTER TABLE `release_form` DISABLE KEYS */;
/*!40000 ALTER TABLE `release_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reported_stock`
--

DROP TABLE IF EXISTS `reported_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reported_stock` (
  `id` int NOT NULL AUTO_INCREMENT,
  `stock_id` int NOT NULL,
  `source_id` int DEFAULT NULL,
  `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `report_date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_E6CD9E62DCD6110` (`stock_id`),
  KEY `IDX_E6CD9E62953C1C61` (`source_id`),
  CONSTRAINT `FK_E6CD9E62953C1C61` FOREIGN KEY (`source_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_E6CD9E62DCD6110` FOREIGN KEY (`stock_id`) REFERENCES `stock` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reported_stock`
--

LOCK TABLES `reported_stock` WRITE;
/*!40000 ALTER TABLE `reported_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `reported_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `resource`
--

DROP TABLE IF EXISTS `resource`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `resource` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resource`
--

LOCK TABLES `resource` WRITE;
/*!40000 ALTER TABLE `resource` DISABLE KEYS */;
INSERT INTO `resource` VALUES (1,'Model Payout','model-payout','Model Payout'),(2,'License information','license-information','License information');
/*!40000 ALTER TABLE `resource` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `resources`
--

DROP TABLE IF EXISTS `resources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `resources` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL,
  `type_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_EF66EBAEC54C8C93` (`type_id`),
  CONSTRAINT `FK_EF66EBAEC54C8C93` FOREIGN KEY (`type_id`) REFERENCES `resources_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resources`
--

LOCK TABLES `resources` WRITE;
/*!40000 ALTER TABLE `resources` DISABLE KEYS */;
INSERT INTO `resources` VALUES (1,'Africa Cuisine - Photography Brief','Capturing all types of Africa cuisine in Africa','africa-cuisine---photography-brief','Creative Photography Brief_African Cuisine_20191207.pdf','2019-12-07 12:38:04',1),(2,'Urban lifestyle - Photography Brief','Urban life in Africa cities and towns','urban-lifestyle---photography-brief','Creative Photography Brief_Urban Lifestyle_20191208.pdf','2019-12-08 14:21:06',2);
/*!40000 ALTER TABLE `resources` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `resources_type`
--

DROP TABLE IF EXISTS `resources_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `resources_type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resources_type`
--

LOCK TABLES `resources_type` WRITE;
/*!40000 ALTER TABLE `resources_type` DISABLE KEYS */;
INSERT INTO `resources_type` VALUES (1,'Model Releases','model-releases','Model Releases'),(2,'Photography Briefs','photography-briefs','Photography Briefs');
/*!40000 ALTER TABLE `resources_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `right_managed_pricing`
--

DROP TABLE IF EXISTS `right_managed_pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `right_managed_pricing` (
  `id` int NOT NULL AUTO_INCREMENT,
  `sub_region_price` int DEFAULT NULL,
  `region_price` int NOT NULL,
  `usage_advertising` int DEFAULT NULL,
  `usage_editorial` int DEFAULT NULL,
  `usage_internal_company_use` int DEFAULT NULL,
  `media_advertising_print` int DEFAULT NULL,
  `media_advertising_commercial` int DEFAULT NULL,
  `media_advertising_digital` int DEFAULT NULL,
  `media_editorial_print` int DEFAULT NULL,
  `media_editorial_commercial` int DEFAULT NULL,
  `media_editorial_digital` int DEFAULT NULL,
  `media_internal_company_use_print` int DEFAULT NULL,
  `media_internal_company_use_digital` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `details_advertising_print_newspaper` int DEFAULT NULL,
  `details_advertising_print_magazine` int DEFAULT NULL,
  `details_advertising_print_outdoor` int DEFAULT NULL,
  `details_advertising_print_pos` int DEFAULT NULL,
  `details_advertising_print_all` int DEFAULT NULL,
  `details_editorial_print_newspaper` int DEFAULT NULL,
  `details_editorial_print_magazine` int DEFAULT NULL,
  `details_editorial_print_book` int DEFAULT NULL,
  `details_editorial_print_collateral` int DEFAULT NULL,
  `details_advertising_commercial_tv` int DEFAULT NULL,
  `details_editorial_commercial_program` int DEFAULT NULL,
  `details_editorial_commercial_film` int DEFAULT NULL,
  `details_advertising_digital_website` int DEFAULT NULL,
  `details_advertising_digital_mobile` int DEFAULT NULL,
  `details_advertising_digital_social` int DEFAULT NULL,
  `details_advertising_digital_all` int DEFAULT NULL,
  `details_editorial_digital_website` int DEFAULT NULL,
  `details_editorial_digital_mobile` int DEFAULT NULL,
  `details_editorial_digital_social` int DEFAULT NULL,
  `details_editorial_digital_all` int DEFAULT NULL,
  `details_internal_company_use_digital_website` int DEFAULT NULL,
  `details_internal_company_use_digital_presentation` int DEFAULT NULL,
  `duration_advertising_one_day` int DEFAULT NULL,
  `duration_advertising_one_month` int DEFAULT NULL,
  `duration_advertising_three_months` int DEFAULT NULL,
  `duration_advertising_six_months` int DEFAULT NULL,
  `duration_advertising_one_year` int DEFAULT NULL,
  `duration_advertising_two_years` int DEFAULT NULL,
  `duration_advertising_one_week` int DEFAULT NULL,
  `duration_editorial_one_day` int DEFAULT NULL,
  `duration_editorial_one_week` int DEFAULT NULL,
  `duration_editorial_one_month` int DEFAULT NULL,
  `duration_editorial_three_months` int DEFAULT NULL,
  `duration_editorial_six_months` int DEFAULT NULL,
  `duration_editorial_one_year` int DEFAULT NULL,
  `duration_editorial_two_years` int DEFAULT NULL,
  `duration_internal_use_one_day` int DEFAULT NULL,
  `duration_internal_use_one_week` int DEFAULT NULL,
  `duration_internal_use_one_month` int DEFAULT NULL,
  `duration_internal_use_three_months` int DEFAULT NULL,
  `duration_internal_use_six_months` int DEFAULT NULL,
  `duration_internal_use_one_year` int DEFAULT NULL,
  `duration_internal_use_two_years` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `right_managed_pricing`
--

LOCK TABLES `right_managed_pricing` WRITE;
/*!40000 ALTER TABLE `right_managed_pricing` DISABLE KEYS */;
INSERT INTO `right_managed_pricing` VALUES (1,10,20,180,160,130,160,130,140,120,140,110,120,'140',10,120,140,120,100,120,120,120,120,100,10,120,120,120,120,120,140,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120);
/*!40000 ALTER TABLE `right_managed_pricing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `right_ready_pricing`
--

DROP TABLE IF EXISTS `right_ready_pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `right_ready_pricing` (
  `id` int NOT NULL AUTO_INCREMENT,
  `sub_region_price` int DEFAULT NULL,
  `region_price` int NOT NULL,
  `usage_advertising` int DEFAULT NULL,
  `usage_editorial` int DEFAULT NULL,
  `usage_internal_company_use` int DEFAULT NULL,
  `media_advertising_print` int DEFAULT NULL,
  `media_advertising_commercial` int DEFAULT NULL,
  `media_advertising_digital` int DEFAULT NULL,
  `media_editorial_print` int DEFAULT NULL,
  `media_editorial_commercial` int DEFAULT NULL,
  `media_editorial_digital` int DEFAULT NULL,
  `media_internal_company_use_print` int DEFAULT NULL,
  `media_internal_company_use_digital` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `details_advertising_print_newspaper` int DEFAULT NULL,
  `details_advertising_print_magazine` int DEFAULT NULL,
  `details_advertising_print_outdoor` int DEFAULT NULL,
  `details_advertising_print_pos` int DEFAULT NULL,
  `details_advertising_print_all` int DEFAULT NULL,
  `details_editorial_print_newspaper` int DEFAULT NULL,
  `details_editorial_print_magazine` int DEFAULT NULL,
  `details_editorial_print_book` int DEFAULT NULL,
  `details_editorial_print_collateral` int DEFAULT NULL,
  `details_advertising_commercial_tv` int DEFAULT NULL,
  `details_editorial_commercial_program` int DEFAULT NULL,
  `details_editorial_commercial_film` int DEFAULT NULL,
  `details_advertising_digital_website` int DEFAULT NULL,
  `details_advertising_digital_mobile` int DEFAULT NULL,
  `details_advertising_digital_social` int DEFAULT NULL,
  `details_advertising_digital_all` int DEFAULT NULL,
  `details_editorial_digital_website` int DEFAULT NULL,
  `details_editorial_digital_mobile` int DEFAULT NULL,
  `details_editorial_digital_social` int DEFAULT NULL,
  `details_editorial_digital_all` int DEFAULT NULL,
  `details_internal_company_use_digital_website` int DEFAULT NULL,
  `details_internal_company_use_digital_presentation` int DEFAULT NULL,
  `duration_advertising_one_day` int DEFAULT NULL,
  `duration_advertising_one_month` int DEFAULT NULL,
  `duration_advertising_three_months` int DEFAULT NULL,
  `duration_advertising_six_months` int DEFAULT NULL,
  `duration_advertising_one_year` int DEFAULT NULL,
  `duration_advertising_two_years` int DEFAULT NULL,
  `duration_advertising_one_week` int DEFAULT NULL,
  `duration_editorial_one_day` int DEFAULT NULL,
  `duration_editorial_one_week` int DEFAULT NULL,
  `duration_editorial_one_month` int DEFAULT NULL,
  `duration_editorial_three_months` int DEFAULT NULL,
  `duration_editorial_six_months` int DEFAULT NULL,
  `duration_editorial_one_year` int DEFAULT NULL,
  `duration_editorial_two_years` int DEFAULT NULL,
  `duration_internal_use_one_day` int DEFAULT NULL,
  `duration_internal_use_one_week` int DEFAULT NULL,
  `duration_internal_use_one_month` int DEFAULT NULL,
  `duration_internal_use_three_months` int DEFAULT NULL,
  `duration_internal_use_six_months` int DEFAULT NULL,
  `duration_internal_use_one_year` int DEFAULT NULL,
  `duration_internal_use_two_years` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `right_ready_pricing`
--

LOCK TABLES `right_ready_pricing` WRITE;
/*!40000 ALTER TABLE `right_ready_pricing` DISABLE KEYS */;
/*!40000 ALTER TABLE `right_ready_pricing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_user`
--

DROP TABLE IF EXISTS `role_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_user` (
  `id` int NOT NULL AUTO_INCREMENT,
  `user_id` int DEFAULT NULL,
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gender` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '(DC2Type:array)',
  PRIMARY KEY (`id`),
  KEY `IDX_332CA4DDA76ED395` (`user_id`),
  CONSTRAINT `FK_332CA4DDA76ED395` FOREIGN KEY (`user_id`) REFERENCES `fos_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_user`
--

LOCK TABLES `role_user` WRITE;
/*!40000 ALTER TABLE `role_user` DISABLE KEYS */;
/*!40000 ALTER TABLE `role_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `royalty_free_pricing`
--

DROP TABLE IF EXISTS `royalty_free_pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `royalty_free_pricing` (
  `id` int NOT NULL AUTO_INCREMENT,
  `type_id` int DEFAULT NULL,
  `minimum` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `maximum` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_2BE25EC0C54C8C93` (`type_id`),
  CONSTRAINT `FK_2BE25EC0C54C8C93` FOREIGN KEY (`type_id`) REFERENCES `stock_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `royalty_free_pricing`
--

LOCK TABLES `royalty_free_pricing` WRITE;
/*!40000 ALTER TABLE `royalty_free_pricing` DISABLE KEYS */;
INSERT INTO `royalty_free_pricing` VALUES (1,4,'25','100'),(2,5,'20','200');
/*!40000 ALTER TABLE `royalty_free_pricing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `search_analysis`
--

DROP TABLE IF EXISTS `search_analysis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `search_analysis` (
  `id` int NOT NULL AUTO_INCREMENT,
  `search` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `frequency` int NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_analysis`
--

LOCK TABLES `search_analysis` WRITE;
/*!40000 ALTER TABLE `search_analysis` DISABLE KEYS */;
INSERT INTO `search_analysis` VALUES (1,'nature',10,'2019-11-15 14:25:39'),(2,'ride',2,'2019-11-15 14:27:55'),(3,'classic',2,'2019-11-15 14:28:01'),(4,'high definition',2,'2019-11-15 14:28:06'),(5,'art',2,'2019-11-15 14:28:15'),(6,'car',2,'2019-11-15 14:37:00'),(7,'jeep',2,'2019-11-15 14:37:11'),(8,'nairobi',47,'2019-11-16 09:24:11'),(9,'sky',2,'2019-11-16 09:28:17'),(10,' parliament',2,'2019-11-16 09:39:34'),(11,' nairobi',6,'2019-11-16 09:40:26'),(12,'elephant',4,'2019-11-16 09:40:36'),(13,'building',3,'2019-11-16 09:40:45'),(14,' skyline',2,'2019-11-16 09:41:06'),(15,'nectar',2,'2019-11-16 09:45:08'),(16,'flying',2,'2019-11-16 09:45:16'),(17,'nyayo',2,'2019-11-16 09:50:46'),(18,'industrial',2,'2019-11-16 09:51:00'),(19,' nightfall',1,'2019-11-16 11:41:21'),(20,' evening',1,'2019-11-16 11:42:08'),(21,'rihanna',3,'2019-11-16 11:54:20'),(22,' kenya',2,'2019-11-16 11:54:39'),(23,'sgr',6,'2019-11-16 12:41:16'),(24,'mombasa',5,'2019-11-16 12:41:39'),(25,'sgr in mombasa',2,'2019-11-16 12:42:01'),(26,'nairobi skyline',3,'2019-11-16 12:53:53'),(27,'east',2,'2019-11-16 12:54:12'),(28,'people',45,'2019-11-16 13:28:59'),(29,'africa',22,'2019-11-16 13:39:42'),(30,' woman',1,'2019-11-16 13:43:57'),(31,'kisumu',3,'2019-11-16 13:56:52'),(32,'furious female business executive after ',2,'2019-11-16 14:30:31'),(33,'about us videos',2,'2019-11-16 15:03:48'),(34,'nairobi at night',7,'2019-11-16 15:04:04'),(35,'beauty',4,'2019-11-16 17:19:55'),(36,'town',2,'2019-11-16 17:20:14'),(37,'day break',2,'2019-11-16 17:20:30'),(38,'man',7,'2019-11-16 17:21:12'),(39,'doctor',7,'2019-11-16 17:21:26'),(40,'bee',2,'2019-11-16 17:21:42'),(41,'bird',2,'2019-11-16 17:22:01'),(42,'mt kenya',2,'2019-11-16 17:22:37'),(43,'mountain',4,'2019-11-16 17:22:56'),(44,'night',3,'2019-11-16 17:23:23'),(45,'tiger',2,'2019-11-16 17:24:11'),(46,'lropard',2,'2019-11-16 17:24:19'),(47,'leopard',2,'2019-11-16 17:24:27'),(48,' standing',1,'2019-11-16 17:25:09'),(49,' corporate',1,'2019-11-16 17:25:15'),(50,' tablet',1,'2019-11-17 18:57:31'),(51,' walking',1,'2019-11-17 19:29:32'),(52,'nairobi at night skyline',2,'2019-11-18 07:07:05'),(53,'elephants',2,'2019-11-18 10:15:36'),(54,'female',2,'2019-11-22 14:34:49'),(55,'african female',2,'2019-11-22 14:35:02'),(56,'walks',2,'2019-11-22 14:35:13'),(57,'drinking',2,'2019-11-22 14:36:53'),(58,'woman',2,'2019-11-22 16:10:01'),(59,' city',1,'2019-11-22 16:29:50'),(60,' business',1,'2019-11-25 06:18:36'),(61,' town',1,'2019-11-25 07:40:30'),(62,' landmark',2,'2019-11-25 07:40:48'),(63,'rwanda',1,'2019-11-25 14:17:35'),(64,'blue sky',2,'2019-11-25 14:17:48'),(65,'sura',1,'2019-11-25 14:34:52'),(66,' dusk',1,'2019-11-25 16:02:58'),(67,'blue',1,'2019-11-26 06:13:48'),(68,'hello',1,'2019-11-26 15:08:38'),(69,'nairobu',1,'2019-11-26 15:15:57'),(70,'mustang',1,'2019-11-26 17:05:01'),(71,'girl',1,'2019-11-26 17:05:22'),(72,' night',1,'2019-11-26 17:06:18'),(73,'love',1,'2019-11-26 17:08:38'),(74,'african',2,'2019-11-26 17:09:09'),(75,'sunset',1,'2019-11-26 17:09:30'),(76,'canoe',1,'2019-11-26 17:09:39'),(77,'ocean',1,'2019-11-26 17:09:44'),(78,'malysia',1,'2019-11-26 17:10:05'),(79,'rocket',1,'2019-11-27 11:27:35'),(80,'cart',1,'2019-11-27 11:27:43'),(81,'kenya',2,'2019-11-27 11:27:52'),(82,'country',2,'2019-11-27 11:28:31'),(83,' street',1,'2019-11-27 13:35:45'),(84,'hills',3,'2019-11-27 15:00:45'),(85,'hill',1,'2019-11-27 15:01:14'),(86,'serene',1,'2019-11-27 15:01:24'),(87,'aerial',1,'2019-11-28 06:41:17'),(88,'nairobi sky',2,'2019-11-28 10:39:23'),(89,' nature',1,'2019-11-28 12:04:40'),(90,'life',2,'2019-11-28 12:06:01'),(91,'city',2,'2019-11-28 12:06:52'),(92,'medical',1,'2019-11-28 13:45:21'),(93,'desert',1,'2019-11-28 14:09:21'),(94,'outdoor',2,'2019-11-28 14:12:49'),(95,'forest',1,'2019-11-28 14:13:07'),(96,'spider',2,'2019-11-28 14:13:15'),(97,'crab',1,'2019-11-28 14:13:23'),(98,'snake',1,'2019-11-28 14:13:28'),(99,'skyline',1,'2019-11-28 14:13:39'),(100,'natron',1,'2019-11-28 14:15:08'),(101,'hilton',1,'2019-11-28 14:19:37'),(102,'african young male walking',1,'2019-11-29 05:31:15'),(103,'railway',1,'2019-11-29 08:22:27'),(104,' kenyatta international conference centre',1,'2019-11-29 08:23:31'),(105,' sky',3,'2019-11-29 08:23:48'),(106,' orange',1,'2019-11-29 08:24:03'),(107,'countryside',1,'2019-11-29 09:22:35'),(108,' white',2,'2019-11-29 11:05:56'),(109,'301',1,'2019-11-29 11:25:39'),(110,'883',1,'2019-11-29 11:38:52'),(111,' daylight ',1,'2019-11-29 13:00:41'),(112,' offices',1,'2019-11-29 13:02:08'),(113,' sun',1,'2019-11-29 13:02:32'),(114,' dawn',1,'2019-11-29 13:02:46'),(115,' zebras',1,'2019-11-29 13:03:02'),(116,'656',1,'2019-11-29 14:24:01'),(117,' surprised',1,'2019-11-29 14:47:46'),(118,' businessmen',2,'2019-11-29 14:48:01'),(119,' executive',1,'2019-11-29 14:48:09'),(120,' tech',1,'2019-11-29 14:48:17'),(121,' businesswomen',1,'2019-11-29 17:10:02'),(122,'two young african',1,'2019-11-29 17:11:12'),(123,'nurse',1,'2019-11-29 17:13:59'),(124,'kibwezi',1,'2019-11-29 22:05:27'),(125,'kibwez',1,'2019-11-29 22:05:43'),(126,'andei',1,'2019-11-29 22:06:46'),(127,'and',1,'2019-11-29 22:06:56'),(128,' jacket',1,'2019-12-01 19:52:59'),(129,'sights and sounds of africa',1,'2019-12-03 04:33:16'),(130,'a couple having a conversation',1,'2019-12-03 04:33:39'),(131,'landmarks in africa',4,'2019-12-05 03:33:35'),(132,'river flowing',1,'2019-12-05 03:37:59'),(133,'water',1,'2019-12-05 03:38:15'),(134,' lake',1,'2019-12-05 03:53:47'),(135,' female',2,'2019-12-05 03:59:16'),(136,' ocean',3,'2019-12-05 04:18:06'),(137,'367',1,'2019-12-05 04:21:20'),(138,'633',4,'2019-12-05 04:21:37'),(139,'641',1,'2019-12-05 04:36:33'),(140,'547',1,'2019-12-05 04:37:56'),(141,'767',1,'2019-12-05 04:38:02'),(142,'1200',1,'2019-12-05 04:38:10'),(143,'1006',1,'2019-12-05 04:38:17'),(144,'1000',1,'2019-12-05 04:38:24'),(145,'899',1,'2019-12-05 04:38:29'),(146,'interior',3,'2019-12-07 09:00:11'),(147,' vr',1,'2019-12-07 09:50:14'),(148,'1003',4,'2019-12-07 10:59:55'),(149,'999',1,'2019-12-07 11:27:18'),(150,'998',1,'2019-12-07 11:27:36'),(151,' amazing',1,'2019-12-07 19:58:01'),(152,' blue',1,'2019-12-07 19:58:06'),(153,' construction',1,'2019-12-07 19:58:11'),(154,' county',1,'2019-12-07 19:58:16'),(155,' infrastructure',2,'2019-12-07 19:58:21'),(156,' mombasa',1,'2019-12-07 19:58:36'),(157,' railway',1,'2019-12-07 19:58:41'),(158,' sgr',1,'2019-12-07 19:58:46'),(159,' track',1,'2019-12-07 19:58:51'),(160,' travel',1,'2019-12-07 19:58:56'),(161,' africa',1,'2019-12-07 20:11:04'),(162,' china',1,'2019-12-07 20:11:09'),(163,' clouds',1,'2019-12-07 20:11:14'),(164,' destination',1,'2019-12-07 20:11:19'),(165,' discover',1,'2019-12-07 20:11:24'),(166,' outdoor',1,'2019-12-07 20:11:34'),(167,' rising',1,'2019-12-07 20:11:39'),(168,' shot',1,'2019-12-07 20:11:44'),(169,' station',1,'2019-12-07 20:11:54'),(170,' terminus',1,'2019-12-07 20:11:59'),(171,' wide',1,'2019-12-07 20:12:04'),(172,'surgeon examining patient records',3,'2019-12-08 10:05:04'),(173,' jam ',1,'2019-12-08 10:32:57'),(174,' grazing',1,'2019-12-08 10:34:06'),(175,' front',1,'2019-12-08 12:37:10'),(176,'man standing',1,'2019-12-08 14:47:23'),(177,'horn',1,'2019-12-08 17:12:04'),(178,'1005',2,'2019-12-08 18:23:24'),(179,'chat',1,'2019-12-09 11:51:13'),(180,'556',1,'2019-12-09 12:04:22'),(181,'young female exec',1,'2019-12-13 08:18:41'),(182,'email',1,'2019-12-13 09:04:32'),(183,'dusk',1,'2019-12-13 09:04:45'),(184,'model',1,'2019-12-13 09:04:57'),(185,'kenyan woman',1,'2019-12-13 09:05:03'),(186,'big bull elephant',1,'2019-12-13 10:08:29'),(187,' karen',1,'2019-12-17 15:35:19'),(188,' butterfly',1,'2019-12-17 15:35:31'),(189,'laughing out loud',1,'2019-12-17 19:43:41'),(190,'chatting',1,'2019-12-17 19:43:59'),(191,'laughing',1,'2019-12-17 19:44:20'),(192,'mature female in a conversation',1,'2019-12-20 14:00:36');
/*!40000 ALTER TABLE `search_analysis` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `settting`
--

DROP TABLE IF EXISTS `settting`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `settting` (
  `id` int NOT NULL AUTO_INCREMENT,
  `about_page_id` int DEFAULT NULL,
  `facebook_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `twitter_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `instagram_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `youtube_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `support_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `support_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `about_excerpt` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_896156367B5754C5` (`about_page_id`),
  CONSTRAINT `FK_896156367B5754C5` FOREIGN KEY (`about_page_id`) REFERENCES `page` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `settting`
--

LOCK TABLES `settting` WRITE;
/*!40000 ALTER TABLE `settting` DISABLE KEYS */;
INSERT INTO `settting` VALUES (1,1,'#','#','#','#','support@suraimages.com','+254722000000','      Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nulla illum modi deleniti sequi debitis voluptatibusNulla illum modi deleniti sequi debitis voluptatibus\n                  K');
/*!40000 ALTER TABLE `settting` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stock`
--

DROP TABLE IF EXISTS `stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock` (
  `id` int NOT NULL AUTO_INCREMENT,
  `category_id` int NOT NULL,
  `category2_id` int DEFAULT NULL,
  `contributor_id` int NOT NULL,
  `type_id` int DEFAULT NULL,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `create_at` datetime NOT NULL,
  `file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `approve_by_id` int DEFAULT NULL,
  `price` double NOT NULL,
  `people_no` int NOT NULL,
  `shoot_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_size` int DEFAULT NULL,
  `file_width` int DEFAULT NULL,
  `file_height` int DEFAULT NULL,
  `price_large` double DEFAULT NULL,
  `price_small` double DEFAULT NULL,
  `status` int NOT NULL,
  `nofity_model` tinyint(1) NOT NULL,
  `hibernate_start` datetime DEFAULT NULL,
  `hibernate_end` datetime DEFAULT NULL,
  `keywords` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `approve_at` datetime DEFAULT NULL,
  `published` tinyint(1) NOT NULL,
  `same_shoot_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `thumb_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `preview_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_exclusive` tinyint(1) NOT NULL,
  `licence_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `small_image_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `large_image_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `featured` tinyint(1) DEFAULT NULL,
  `sura_id` int NOT NULL,
  `reject_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_sub_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `orientation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `video_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hibernated` tinyint(1) DEFAULT NULL,
  `downloaded` tinyint(1) DEFAULT NULL,
  `old_id` int DEFAULT NULL,
  `file_extension` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `contributor_suspended` tinyint(1) DEFAULT NULL,
  `exclusive_licence_holder_id` int DEFAULT NULL,
  `thumb_width` int DEFAULT NULL,
  `thumb_height` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_4B36566012469DE2` (`category_id`),
  KEY `IDX_4B3656608ACF47B4` (`category2_id`),
  KEY `IDX_4B3656607A19A357` (`contributor_id`),
  KEY `IDX_4B365660C54C8C93` (`type_id`),
  KEY `IDX_4B36566055B31BE0` (`approve_by_id`),
  KEY `IDX_4B365660ABA50515` (`exclusive_licence_holder_id`),
  CONSTRAINT `FK_4B36566012469DE2` FOREIGN KEY (`category_id`) REFERENCES `stock_category` (`id`),
  CONSTRAINT `FK_4B36566055B31BE0` FOREIGN KEY (`approve_by_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_4B3656607A19A357` FOREIGN KEY (`contributor_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_4B3656608ACF47B4` FOREIGN KEY (`category2_id`) REFERENCES `stock_category` (`id`),
  CONSTRAINT `FK_4B365660ABA50515` FOREIGN KEY (`exclusive_licence_holder_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_4B365660C54C8C93` FOREIGN KEY (`type_id`) REFERENCES `stock_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=868 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock`
--

LOCK TABLES `stock` WRITE;
/*!40000 ALTER TABLE `stock` DISABLE KEYS */;
INSERT INTO `stock` VALUES (224,8,8,1345,4,'Light House Design of Mombasa Terminus Station','Africa, Kenya, Mombasa, County, Infrastructure, Building, Railway, Terminus, Station, Light, House, construction, Blue, Sky, Travel, Destination, Standard, Gauge, Railway','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05ef52cb1.jpeg',NULL,60,0,'',15,5760,3840,120,40,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Infrastructure, Building, Railway, Terminus, Station, Light, House, construction, Blue, Sky, Travel, Destination, Standard, Gauge, Railway',NULL,0,'','img_5e0e05ef52cb1.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10113,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10113,NULL,NULL,NULL,NULL,NULL),(225,8,8,1345,4,'SGR Railway Track Mombasa Terminus Station','Africa, Kenya, Mombasa, County, Railway, Track, Terminus, Station, SGR, Infrastructure, Landmark, Wide, shot, Amazing, Travel, Outdoor, Theme, Light, House, China, Blue, Sky, Standard, Gauge, Railway','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f00935c.jpeg',NULL,50,0,'',15,5760,3840,100,33,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Railway, Track, Terminus, Station, SGR, Infrastructure, Landmark, Wide, shot, Amazing, Travel, Outdoor, Theme, Light, House, China, Blue, Sky, Standard, Gauge, Railway',NULL,0,'','img_5e0e05f00935c.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10114,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10114,NULL,NULL,NULL,NULL,NULL),(226,8,9,1345,4,'SGR Mombasa Super Bridge','Africa, Kenya, Mombasa, County, SGR, Railway, Track, Stretch, Long, Infrastructure, Travel, Train, Landmark, Blue, Clouds, Super, Bridge, Standard, Gauge, Railway, Modern, Mode, Transport, Sky,','2017-05-18 15:42:11','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f0c6084.jpeg',NULL,65,0,'',15,5760,3840,130,43,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, SGR, Railway, Track, Stretch, Long, Infrastructure, Travel, Train, Landmark, Blue, Clouds, Super, Bridge, Standard, Gauge, Railway, Modern, Mode, Transport, Sky,',NULL,0,'','img_5e0e05f0c6084.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10115,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10115,NULL,NULL,NULL,NULL,NULL),(227,8,3,1345,4,'African Woman looking at the Mazeras Super Bridge','Africa, Kenya, Mombasa, County,  Mazeras, African, Woman, Female, Staring, Looking, Amazing,  Discover, New, World, Bucket, Carrying, Water, Infrastructure, Railway, Track,  Super, Bridge, Palm, Trees, Construction, Outdoor, Blue, Sky, Mode, Transport, SGR, Standard, Gauge, Railway','2017-05-18 15:57:42','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f17c045.jpeg',NULL,90,1,'',15,5760,3840,180,60,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County,  Mazeras, African, Woman, Female, Staring, Looking, Amazing,  Discover, New, World, Bucket, Carrying, Water, Infrastructure, Railway, Track,  Super, Bridge, Palm, Trees, Construction, Outdoor, Blue, Sky, Mode, Transport, SGR, Standard, Gauge, Railway',NULL,0,'','img_5e0e05f17c045.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10116,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10116,NULL,NULL,NULL,NULL,NULL),(228,8,9,1345,4,'SGR Voi Intermediate Station','Africa, Kenya, Mombasa, County, Voi, Infrastructure, Designed, Theme, V shape, Low, Angle, Stairs, Entrance, Glass, Station, Train, Travel, Railway, SGR, Standard, Gauge, Railway Clouds, Destination, Blue, Sky','2017-05-18 23:48:16','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f23ced7.jpeg',NULL,50,0,'',15,5760,3840,100,33,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Voi, Infrastructure, Designed, Theme, V shape, Low, Angle, Stairs, Entrance, Glass, Station, Train, Travel, Railway, SGR, Standard, Gauge, Railway Clouds, Destination, Blue, Sky',NULL,0,'','img_5e0e05f23ced7.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10117,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10117,NULL,NULL,NULL,NULL,NULL),(229,15,9,1345,4,'African Elephant in Tsavo East National Park Walking','Africa, Kenya, Tsavo, East, Wildlife, Elephants, Nature, Wild, Reflection, Water, Walking, Magnificent, Breath, Taking, Animals, African, Tourism, Attraction, Young, Baby, Calf, Group, Drink, Amazing, Reflection, Herd, Dam, Source, Drinking, Evening, Dusk','2017-05-19 00:09:04','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f2e98c3.jpeg',NULL,50,0,'',15,5760,3840,100,33,0,0,NULL,NULL,'Africa, Kenya, Tsavo, East, Wildlife, Elephants, Nature, Wild, Reflection, Water, Walking, Magnificent, Breath, Taking, Animals, African, Tourism, Attraction, Young, Baby, Calf, Group, Drink, Amazing, Reflection, Herd, Dam, Source, Drinking, Evening, Dusk',NULL,0,'','img_5e0e05f2e98c3.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10118,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10118,NULL,NULL,NULL,NULL,NULL),(230,15,9,1345,4,'African Elephant in Tsavo East National Park Walking','Africa, Kenya, Tsavo, East, Wildlife, Elephants, Nature, Wild, Reflection, Water, Walking, Magnificent, Breath, Taking, Animals, African, Tourism, Attraction, Young, Baby, Calf, Group, Drink, Amazing, Reflection, Herd, Dam, Source, Drinking, Evening, Dusk','2017-05-19 00:09:05','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f3a224d.jpeg',NULL,50,0,'',15,5760,3840,100,33,0,0,NULL,NULL,'Africa, Kenya, Tsavo, East, Wildlife, Elephants, Nature, Wild, Reflection, Water, Walking, Magnificent, Breath, Taking, Animals, African, Tourism, Attraction, Young, Baby, Calf, Group, Drink, Amazing, Reflection, Herd, Dam, Source, Drinking, Evening, Dusk',NULL,0,'','img_5e0e05f3a224d.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10119,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10119,NULL,NULL,NULL,NULL,NULL),(231,9,25,1345,4,'African Elephant in Tsavo East National Park Walking','Africa, Kenya, Tsavo, East, Wildlife, Elephants, Nature, Wild, Reflection, Water, Walking, Magnificent, Breath, Taking, Animals, African, Tourism, Attraction, Young, Baby, Calf, Group, Drink, Amazing, Reflection, Herd, Dam, Source, Drinking, Evening, Dusk','2017-05-19 00:09:06','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f46116f.jpeg',NULL,50,0,'',15,5760,3840,100,33,0,0,NULL,NULL,'Africa, Kenya, Tsavo, East, Wildlife, Elephants, Nature, Wild, Reflection, Water, Walking, Magnificent, Breath, Taking, Animals, African, Tourism, Attraction, Young, Baby, Calf, Group, Drink, Amazing, Reflection, Herd, Dam, Source, Drinking, Evening, Dusk',NULL,0,'','img_5e0e05f46116f.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10120,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10120,NULL,NULL,NULL,NULL,NULL),(232,3,3,1344,4,'Main walkway at Nairobi SGR Terminus','Kenya, Nairobi, SGR, Standard, Gauge, Railway, Train, New, Modern, Infrastructure, 254, Station, Terminus, Walkway,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f52d9c0.jpeg',NULL,25,0,'',15,6016,4016,50,17,0,0,NULL,NULL,'Kenya, Nairobi, SGR, Standard, Gauge, Railway, Train, New, Modern, Infrastructure, 254, Station, Terminus, Walkway,',NULL,0,'','img_5e0e05f52d9c0.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10122,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10122,NULL,NULL,NULL,NULL,NULL),(233,8,13,1344,4,'Kenyatta International Conference Centre','KICC, Nairobi, Kenya, CBD, Building, City, Night, Cityscape, Landmark, Icon, Iconic,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f5eab62.jpeg',NULL,25,0,'',15,5845,3902,50,17,0,0,NULL,NULL,'KICC, Nairobi, Kenya, CBD, Building, City, Night, Cityscape, Landmark, Icon, Iconic,',NULL,0,'','img_5e0e05f5eab62.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10123,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10123,NULL,NULL,NULL,NULL,NULL),(234,26,15,1347,4,'Two young African beautiful women catching up','African, Kenyan, Kenya, Africa, Female, Women, Ladies, Girls, Young, Edgy, Beautiful, Gorgeous, Natural, Fashion, Trendy, Swag, Laughing, Talking, Talk, Chatting, Chat, Catching, Catch, Up, Two, 2, Seat, Seated, Sitting, Ground, Grass, Lawn, Green, Head, Gear, Headscarf, Sun, Glasses, Sunny, Vegetation, Hedge, Fence','2017-06-01 14:39:37','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f6a2f06.jpeg',NULL,50,2,'',15,4928,3264,100,33,0,0,NULL,NULL,'African, Kenyan, Kenya, Africa, Female, Women, Ladies, Girls, Young, Edgy, Beautiful, Gorgeous, Natural, Fashion, Trendy, Swag, Laughing, Talking, Talk, Chatting, Chat, Catching, Catch, Up, Two, 2, Seat, Seated, Sitting, Ground, Grass, Lawn, Green, Head, Gear, Headscarf, Sun, Glasses, Sunny, Vegetation, Hedge, Fence',NULL,0,'','img_5e0e05f6a2f06.jpeg',NULL,NULL,0,'Right Managed',NULL,NULL,NULL,NULL,10125,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10125,NULL,NULL,NULL,NULL,NULL),(235,26,15,1347,4,'Two young African beautiful women having a laugh','African, Kenyan, Kenya, Africa, Female, Women, Ladies, Girls, Young, Edgy, Beautiful, Gorgeous, Natural, Fashion, Trendy, Swag, Laughing, Talking, Talk, Chatting, Chat, Catching, Catch, Up, Two, 2, Seat, Seated, Sitting, Ground, Grass, Lawn, Green, Head, Gear, Headscarf, Sun, Glasses, Sunny, Vegetation, Hedge, Fence','2017-06-01 14:39:38','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f73c830.jpeg',NULL,50,2,'',15,4928,3264,100,33,0,0,NULL,NULL,'African, Kenyan, Kenya, Africa, Female, Women, Ladies, Girls, Young, Edgy, Beautiful, Gorgeous, Natural, Fashion, Trendy, Swag, Laughing, Talking, Talk, Chatting, Chat, Catching, Catch, Up, Two, 2, Seat, Seated, Sitting, Ground, Grass, Lawn, Green, Head, Gear, Headscarf, Sun, Glasses, Sunny, Vegetation, Hedge, Fence',NULL,0,'','img_5e0e05f73c830.jpeg',NULL,NULL,0,'Right Managed',NULL,NULL,NULL,NULL,10126,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10126,NULL,NULL,NULL,NULL,NULL),(236,34,34,1344,4,'Young kenyan girl holding the flag high','Madaraka, Express, Kenyan, Kenya, Flag, Model, Black, Green, Red, Olepolos, Patriotic, Raise, Raising, Hold, Holding, High, Up, Sky, Cloudy, Freedom, Victory, Pride, Glory, Country, African, Young, Beautiful, Female, Woman, Girl, Lady, Top, Mountain, Hills, Happy, Smile','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f7be385.jpeg',NULL,100,1,'',15,6016,4016,200,67,0,0,NULL,NULL,'Madaraka, Express, Kenyan, Kenya, Flag, Model, Black, Green, Red, Olepolos, Patriotic, Raise, Raising, Hold, Holding, High, Up, Sky, Cloudy, Freedom, Victory, Pride, Glory, Country, African, Young, Beautiful, Female, Woman, Girl, Lady, Top, Mountain, Hills, Happy, Smile',NULL,0,'','img_5e0e05f7be385.jpeg',NULL,NULL,0,'Right Managed',NULL,NULL,NULL,NULL,10128,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10128,NULL,NULL,NULL,NULL,NULL),(237,19,15,1343,4,'Froghopper','Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound Eye, Simple Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Froghopper, Farm, Waithaka, Kiambu, Kenya','2017-06-11 20:16:13','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f86fd65.jpeg',NULL,100,0,'',15,6000,4000,200,67,0,0,NULL,NULL,'Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound Eye, Simple Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Froghopper, Farm, Waithaka, Kiambu, Kenya',NULL,0,'','img_5e0e05f86fd65.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10134,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10134,NULL,NULL,NULL,NULL,NULL),(238,19,15,1343,4,'Crane Fly ','Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound Eye, Simple Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilisation, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Crane, Fly, Long, Legged','2017-06-11 20:16:14','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f928b17.jpeg',NULL,100,0,'',15,6218,4145,200,67,0,0,NULL,NULL,'Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound Eye, Simple Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilisation, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Crane, Fly, Long, Legged',NULL,0,'','img_5e0e05f928b17.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10135,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10135,NULL,NULL,NULL,NULL,NULL),(239,19,15,1343,4,'Caterpillar','Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound Eye, Simple Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilisation, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Butterfly, Lepidoptera, Caterpillar, Nectar,Proboscis, Ngong, Road, Forest, Section, One, Karen, Nairobi, Kenya','2017-06-11 20:16:16','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05f9dcc24.jpeg',NULL,100,0,'',15,7360,4912,200,67,0,0,NULL,NULL,'Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound Eye, Simple Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilisation, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Butterfly, Lepidoptera, Caterpillar, Nectar,Proboscis, Ngong, Road, Forest, Section, One, Karen, Nairobi, Kenya',NULL,0,'','img_5e0e05f9dcc24.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10136,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10136,NULL,NULL,NULL,NULL,NULL),(240,19,15,1343,4,'Crab Spider','Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound, Eye, Simple, Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilisation, Sperm, Female, Male, Arachnid, 8, Legs, Eight, Legs, Predator, Prey, Carnivorous, Hunter, Venom, Danger, Fangs, Spinner, Spin, Spinneret, Spun, Web, Silk, Cephalothorax, Chelicerata, Hidden, Camouflage, Waiting, Ngong, Road, Forest, Section, One','2017-06-11 20:16:17','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05fae4a4e.jpeg',NULL,100,0,'',15,5418,3612,200,67,0,0,NULL,NULL,'Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound, Eye, Simple, Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilisation, Sperm, Female, Male, Arachnid, 8, Legs, Eight, Legs, Predator, Prey, Carnivorous, Hunter, Venom, Danger, Fangs, Spinner, Spin, Spinneret, Spun, Web, Silk, Cephalothorax, Chelicerata, Hidden, Camouflage, Waiting, Ngong, Road, Forest, Section, One',NULL,0,'','img_5e0e05fae4a4e.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10137,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10137,NULL,NULL,NULL,NULL,NULL),(241,19,15,1343,4,'Spider','Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound, Eye, Simple, Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Arachnid, 8, Legs, Eight, Legs, Predator, Prey, Carnivorous, Hunter, Venom, Danger, Fangs, Spinner, Spin, Spinneret, Spun, Web, Silk, Cephalothorax, Chelicerata, Hidden, Camouflage, Waiting, Ngong, Road, Forest, Section, One, Karen, Nairobi, Kenya','2017-06-11 20:16:18','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05fb7f43b.jpeg',NULL,100,0,'',15,7360,4912,200,67,0,0,NULL,NULL,'Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound, Eye, Simple, Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Arachnid, 8, Legs, Eight, Legs, Predator, Prey, Carnivorous, Hunter, Venom, Danger, Fangs, Spinner, Spin, Spinneret, Spun, Web, Silk, Cephalothorax, Chelicerata, Hidden, Camouflage, Waiting, Ngong, Road, Forest, Section, One, Karen, Nairobi, Kenya',NULL,0,'','img_5e0e05fb7f43b.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10138,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10138,NULL,NULL,NULL,NULL,NULL),(242,28,15,1343,4,'Forest Commodore Butterfly','Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound, Eye, Simple, Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Butterfly, Lepidoptera, Caterpillar, Nectar, Proboscis, Steve Collins, Butterfly, Farm, Karen, Nairobi, Kenya, Forest, Commodore','2017-06-11 20:16:19','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05fcdbc32.jpeg',NULL,100,0,'',15,6419,4279,200,67,0,0,NULL,NULL,'Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound, Eye, Simple, Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Butterfly, Lepidoptera, Caterpillar, Nectar, Proboscis, Steve Collins, Butterfly, Farm, Karen, Nairobi, Kenya, Forest, Commodore',NULL,0,'','img_5e0e05fcdbc32.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10139,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10139,NULL,NULL,NULL,NULL,NULL),(243,19,15,1343,4,'Forest Commodore Butterfly','Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound, Eye, Simple, Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Butterfly, Lepidoptera, Caterpillar, Nectar, Proboscis, Steve Collins, Butterfly, Farm, Karen, Nairobi, Kenya, Forest, Commodore','2017-06-11 20:16:20','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05fdb18ca.jpeg',NULL,100,0,'',15,5752,3835,200,67,0,0,NULL,NULL,'Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound, Eye, Simple, Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Butterfly, Lepidoptera, Caterpillar, Nectar, Proboscis, Steve Collins, Butterfly, Farm, Karen, Nairobi, Kenya, Forest, Commodore',NULL,0,'','img_5e0e05fdb18ca.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10140,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10140,NULL,NULL,NULL,NULL,NULL),(244,19,15,1343,4,'Regal Swallowtail Butterfly','Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound Eye, Simple Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Butterfly, Lepidoptera, Caterpillar, Nectar, Proboscis, Steve Collins, Butterfly, Farm, Karen, Nairobi, Kenya, Regal Swallowtail','2017-06-11 20:16:21','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05fe5e870.jpeg',NULL,100,0,'',15,5980,3987,200,67,0,0,NULL,NULL,'Eric Gitonga, Kenya, Nature, Macro, Arthropods, Phylum, Kingdom, Arthropoda, Animal, Animalia, Segment, Segmented, Head, Abdomen, Legs, Mouth, Eyes, Compound Eye, Simple Eye, Instar, Exuvia, Moult, Exoskeleton, Grow, Develop, Misunderstood, Egg, Fertilization, Sperm, Female, Male, Insect, Insecta, Thorax, 6, Legs, Six, Legs, Wings, Flight, Crawl, Antenna, Butterfly, Lepidoptera, Caterpillar, Nectar, Proboscis, Steve Collins, Butterfly, Farm, Karen, Nairobi, Kenya, Regal Swallowtail',NULL,0,'','img_5e0e05fe5e870.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10141,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10141,NULL,NULL,NULL,NULL,NULL),(245,18,18,1344,4,'Kenyan female fruits vendor on phone','Mama, Africa, Kenya, Nairobi, Fruit, Vendor, Bananas, Oranges, Mangoes, Small, Business, Woman, Phone, Mobile, Happy, Mother, Female, Mature, Informal, Sector, SME, Living, Income, Selling, Fresh, Arranging, Arrange, Smile, Smiling, Gadget, Texting, Calling,','2017-06-15 20:34:02','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e05ff11d45.jpeg',NULL,100,1,'',15,7972,5974,200,67,0,0,NULL,NULL,'Mama, Africa, Kenya, Nairobi, Fruit, Vendor, Bananas, Oranges, Mangoes, Small, Business, Woman, Phone, Mobile, Happy, Mother, Female, Mature, Informal, Sector, SME, Living, Income, Selling, Fresh, Arranging, Arrange, Smile, Smiling, Gadget, Texting, Calling,',NULL,0,'','img_5e0e05ff11d45.jpeg',NULL,NULL,0,'Right Managed',NULL,NULL,NULL,NULL,10142,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10142,NULL,NULL,NULL,NULL,NULL),(246,18,18,1344,4,'Kenyan female fruits vendor','Mama, Africa, Kenya, Nairobi, Fruit, Vendor, Bananas, Oranges, Mangoes, Small, Business, Woman, Phone, Mobile, Happy, Mother, Female, Mature, Informal, Sector, SME, Living, Income, Selling, Fresh, Arranging, Arrange, Smile, Smiling','2017-06-15 20:49:07','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e0600d42e6.jpeg',NULL,100,1,'',15,8492,5625,200,67,0,0,NULL,NULL,'Mama, Africa, Kenya, Nairobi, Fruit, Vendor, Bananas, Oranges, Mangoes, Small, Business, Woman, Phone, Mobile, Happy, Mother, Female, Mature, Informal, Sector, SME, Living, Income, Selling, Fresh, Arranging, Arrange, Smile, Smiling',NULL,0,'','img_5e0e0600d42e6.jpeg',NULL,NULL,0,'Right Managed',NULL,NULL,NULL,NULL,10143,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10143,NULL,NULL,NULL,NULL,NULL),(247,8,9,1345,4,'Mtito Andei Intermediate SGR Station','Africa, Kenya, Mombasa, County, Mtito, Andei, Intermediate, Station, Railway, Stairs, Infrastructure, Discover, Standard, Gauge, Train, Blue, Skies, Travel, Low, Angle, Entrance, Arrival, Departure, Landmark, Modern','2017-06-19 16:30:54','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e0602dc447.jpeg',NULL,30,0,'',15,5760,3840,60,20,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Mtito, Andei, Intermediate, Station, Railway, Stairs, Infrastructure, Discover, Standard, Gauge, Train, Blue, Skies, Travel, Low, Angle, Entrance, Arrival, Departure, Landmark, Modern',NULL,0,'','img_5e0e0602dc447.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10144,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10144,NULL,NULL,NULL,NULL,NULL),(248,8,9,1345,4,'Mtito Andei Intermediate SGR Station','Africa, Kenya, Mombasa, county, Mtito, Andei, Intermediate, station, Railway, Track, Arrival, Departure, Travel, Train, Clouds, Blue, Skies, Infrastructure, Wide, Shot, Landmark, Modern','2017-06-19 16:44:00','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e06039181a.jpeg',NULL,40,0,'',15,5760,3840,80,27,0,0,NULL,NULL,'Africa, Kenya, Mombasa, county, Mtito, Andei, Intermediate, station, Railway, Track, Arrival, Departure, Travel, Train, Clouds, Blue, Skies, Infrastructure, Wide, Shot, Landmark, Modern',NULL,0,'','img_5e0e06039181a.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10145,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10145,NULL,NULL,NULL,NULL,NULL),(249,8,5,1345,4,'Mtito Andei Intermediate SGR Station','Africa, Kenya, Mombasa, County, Mtito, Andei, Intermediate, Station, Standard, Gauge, Railway, Arrival, Departure, Travel, Train, Aerial, View, Infrastructure, Interior, Check In, Ticket, Board, Indoor, Inside, Gate, Doors, Landmark, Modern','2017-06-19 16:52:14','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e06044837d.jpeg',NULL,40,0,'',15,5760,3840,80,27,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Mtito, Andei, Intermediate, Station, Standard, Gauge, Railway, Arrival, Departure, Travel, Train, Aerial, View, Infrastructure, Interior, Check In, Ticket, Board, Indoor, Inside, Gate, Doors, Landmark, Modern',NULL,0,'','img_5e0e06044837d.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10146,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10146,NULL,NULL,NULL,NULL,NULL),(250,8,9,1345,4,'Emali Intermediate SGR Station','Africa, Kenya, Mombasa, County, Emali,  Intermediate, Station, Infrastructure, Wide, Aerial, View, Outdoor, Arrival, Departure, Standard, Gauge, Railway, Landmark, Blue, sky, Clouds, Landmark, Modern','2017-06-19 17:00:34','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e060506588.jpeg',NULL,50,0,'',15,5760,3840,100,33,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Emali,  Intermediate, Station, Infrastructure, Wide, Aerial, View, Outdoor, Arrival, Departure, Standard, Gauge, Railway, Landmark, Blue, sky, Clouds, Landmark, Modern',NULL,0,'','img_5e0e060506588.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10147,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10147,NULL,NULL,NULL,NULL,NULL),(251,8,9,1345,4,'Kibwezi SGR Station','Africa, Kenya, Kibwezi, Station, Low, Angle, Standard, Gauge, Railway, Travel, Transport, Mode, Infrastructure, Blue, Skies, Grass, Modern, Beautiful, Landmark','2017-06-19 17:15:34','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e0605b7ac9.jpeg',NULL,30,0,'',15,5760,3840,60,20,0,0,NULL,NULL,'Africa, Kenya, Kibwezi, Station, Low, Angle, Standard, Gauge, Railway, Travel, Transport, Mode, Infrastructure, Blue, Skies, Grass, Modern, Beautiful, Landmark',NULL,0,'','img_5e0e0605b7ac9.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10148,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10148,NULL,NULL,NULL,NULL,NULL),(252,13,8,1350,4,'Parked taxis','Africa, Johannesburg, Urban, Taxi, Public Transport, South Africa, Nelson, Mandela, Bridge, Toyota, Quantum, Mini-bus','2017-09-14 12:30:46','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e0606700b4.jpeg',NULL,23,0,'',15,3499,5249,45,15,0,0,NULL,NULL,'Africa, Johannesburg, Urban, Taxi, Public Transport, South Africa, Nelson, Mandela, Bridge, Toyota, Quantum, Mini-bus',NULL,0,'','img_5e0e0606700b4.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10171,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10171,NULL,NULL,NULL,NULL,NULL),(253,8,8,1345,4,'Light House Design of Mombasa Terminus Station','Africa, Kenya, Mombasa, County, Infrastructure, Building, Railway, Terminus, Station, Light, House, construction, Blue, Sky, Travel, Destination, Standard, Gauge, Railway','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e073da9013.jpeg',NULL,60,0,'',15,5760,3840,120,40,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Infrastructure, Building, Railway, Terminus, Station, Light, House, construction, Blue, Sky, Travel, Destination, Standard, Gauge, Railway',NULL,0,'','img_5e0e073da9013.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10113,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10113,NULL,NULL,NULL,NULL,NULL),(254,8,8,1345,4,'Light House Design of Mombasa Terminus Station','Africa, Kenya, Mombasa, County, Infrastructure, Building, Railway, Terminus, Station, Light, House, construction, Blue, Sky, Travel, Destination, Standard, Gauge, Railway','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e078152ddb.jpeg',NULL,60,0,'',15,5760,3840,120,40,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Infrastructure, Building, Railway, Terminus, Station, Light, House, construction, Blue, Sky, Travel, Destination, Standard, Gauge, Railway',NULL,0,'','img_5e0e078152ddb.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10113,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10113,NULL,NULL,NULL,NULL,NULL),(255,8,8,1345,4,'Light House Design of Mombasa Terminus Station','Africa, Kenya, Mombasa, County, Infrastructure, Building, Railway, Terminus, Station, Light, House, construction, Blue, Sky, Travel, Destination, Standard, Gauge, Railway','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e07a3000ff.jpeg',NULL,60,0,'',15,5760,3840,120,40,0,0,NULL,NULL,'Africa, Kenya, Mombasa, County, Infrastructure, Building, Railway, Terminus, Station, Light, House, construction, Blue, Sky, Travel, Destination, Standard, Gauge, Railway',NULL,0,'','img_5e0e07a3000ff.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10113,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10113,NULL,NULL,NULL,NULL,NULL),(256,26,8,1350,4,'African female drinking coffee as she walks','Africa, Winter, Johannesburg, Urban, coffee, Black, Street, Pedestrian, Walking, City, Woman, All-star, African, Drinking, Drink, Sipping, Sip, Beverage, Style,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/img_5e0e07c2486f5.jpeg',NULL,0,1,NULL,15,3998,2544,0,0,0,0,NULL,NULL,'Africa, Winter, Johannesburg, Urban, coffee, Black, Street, Pedestrian, Walking, City, Woman, All-star, African, Drinking, Drink, Sipping, Sip, Beverage, Style,',NULL,0,NULL,'img_5e0e07c2486f5.jpeg',NULL,NULL,0,'Royalty Free',NULL,NULL,NULL,NULL,10175,NULL,'Editorial Image','Photography','Landscape',NULL,NULL,NULL,10175,NULL,NULL,NULL,NULL,NULL),(257,26,8,1350,4,'African female drinking coffee as she walks','Africa, Winter, Johannesburg, Urban, coffee, Black, Street, Pedestrian, Walking, City, Woman, All-star, African, Drinking, Drink, Sipping, Sip, Beverage, Style,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000257-african-female-drinking-coffee-as-she-walks.jpeg',NULL,0,1,NULL,15,3998,2544,0,0,0,0,NULL,NULL,'Africa, Winter, Johannesburg, Urban, coffee, Black, Street, Pedestrian, Walking, City, Woman, All-star, African, Drinking, Drink, Sipping, Sip, Beverage, Style,',NULL,1,NULL,'img_5e0e0808b26a8.jpeg','thumb_suraimages-1000257-african-female-drinking-coffee-as-she-walks.jpeg','preview_suraimages-1000257-african-female-drinking-coffee-as-she-walks.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000257-african-female-drinking-coffee-as-she-walks.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000257-african-female-drinking-coffee-as-she-walks.jpeg',NULL,NULL,10175,NULL,'Editorial Image','Photography','Landscape',NULL,NULL,NULL,10175,'jpeg',NULL,NULL,629,400),(258,26,9,1350,4,'African women carrying their bags','Africa, Johannesburg, Urban, Autumn, Spring, Summer, Orange, Brown, Blue, Dress, Woven,  Bag, Handbag, African, Women, Friends, Fashion','2017-09-14 17:56:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000258-african-women-carrying-their-bags.jpeg',NULL,0,2,NULL,15,5375,3584,0,0,0,0,NULL,NULL,'Africa, Johannesburg, Urban, Autumn, Spring, Summer, Orange, Brown, Blue, Dress, Woven,  Bag, Handbag, African, Women, Friends, Fashion',NULL,1,NULL,'img_5e0e080ba5be7.jpeg','thumb_suraimages-1000258-african-women-carrying-their-bags.jpeg','preview_suraimages-1000258-african-women-carrying-their-bags.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000258-african-women-carrying-their-bags.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000258-african-women-carrying-their-bags.jpeg',NULL,NULL,10176,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10176,'jpeg',NULL,NULL,600,400),(259,15,15,1344,4,'Tsavo West Sunrise','Sunrise, Nature, Kenya, Tsavo, Taveta, Grass, Sun, Beautiful, Water, Sky, Serene, Splendour, Tranquility, Dawn,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000259-tsavo-west-sunrise.jpeg',NULL,25,0,'',15,6016,4016,50,17,0,0,NULL,NULL,'Sunrise, Nature, Kenya, Tsavo, Taveta, Grass, Sun, Beautiful, Water, Sky, Serene, Splendour, Tranquility, Dawn,',NULL,1,'','img_5e0e0811c0e1e.jpeg','thumb_suraimages-1000259-tsavo-west-sunrise.jpeg','preview_suraimages-1000259-tsavo-west-sunrise.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000259-tsavo-west-sunrise.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000259-tsavo-west-sunrise.jpeg',NULL,NULL,10177,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10177,'jpeg',NULL,NULL,599,400),(260,16,16,1344,4,'Tsavo West Elephants','Elephants, Tusks, Wildlife, Nature, Kenya, Tsavo, Taveta, Family, Sky, Dust, African, Elephant, Trees, Grass, Grassland, Savannah, Dry, Walking, Line, Path, Route','2017-09-14 18:28:05','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000260-tsavo-west-elephants.jpeg',NULL,50,0,'',15,5465,3892,100,33,0,0,NULL,NULL,'Elephants, Tusks, Wildlife, Nature, Kenya, Tsavo, Taveta, Family, Sky, Dust, African, Elephant, Trees, Grass, Grassland, Savannah, Dry, Walking, Line, Path, Route',NULL,1,'','img_5e0e081b6d3fc.jpeg','thumb_suraimages-1000260-tsavo-west-elephants.jpeg','preview_suraimages-1000260-tsavo-west-elephants.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000260-tsavo-west-elephants.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000260-tsavo-west-elephants.jpeg',NULL,NULL,10178,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10178,'jpeg',NULL,NULL,562,400),(261,31,8,1350,4,'Stairs','Stairs, Spiral, Staircase, Wood, Wooden, Black, White, Black and White, Rustic, Weathered, Architecture, Interiors, Spiral, Structure','2017-09-15 00:06:59','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000261-stairs.jpeg',NULL,15,0,'',15,5973,4480,30,10,0,0,NULL,NULL,'Stairs, Spiral, Staircase, Wood, Wooden, Black, White, Black and White, Rustic, Weathered, Architecture, Interiors, Spiral, Structure',NULL,1,'','img_5e0e082104ead.jpeg','thumb_suraimages-1000261-stairs.jpeg','preview_suraimages-1000261-stairs.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000261-stairs.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000261-stairs.jpeg',NULL,NULL,10179,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10179,'jpeg',NULL,NULL,533,400),(262,13,8,1350,4,'Skyscrapers in Mauritius','Africa, Mauritius, City, Urban, Architecture, Modern, Architectures, Structure, Infrastructure, Ocean, Blue, Orange, Buildings, Skyscraper, High, Rise, Building, Business, Offices, Island, Town, Capital, Commercial','2017-09-15 21:59:23','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000262-skyscrapers-in-mauritius.jpeg',NULL,25,0,'',15,4480,6272,50,17,0,0,NULL,NULL,'Africa, Mauritius, City, Urban, Architecture, Modern, Architectures, Structure, Infrastructure, Ocean, Blue, Orange, Buildings, Skyscraper, High, Rise, Building, Business, Offices, Island, Town, Capital, Commercial',NULL,1,'','img_5e0e0855cf77c.jpeg','thumb_suraimages-1000262-skyscrapers-in-mauritius.jpeg','preview_suraimages-1000262-skyscrapers-in-mauritius.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000262-skyscrapers-in-mauritius.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000262-skyscrapers-in-mauritius.jpeg',NULL,NULL,10180,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10180,'jpeg',NULL,NULL,286,400),(263,19,2,1350,4,'Dolphins','Africa, Nature, Dolphins, Sea, Ocean, Water, Coastal, Dolphin, Animals, Aquatic, Marine, Life, Tourism, Wildlife, Holiday, Vacation, Travel','2017-09-15 23:12:30','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000263-dolphins.jpeg',NULL,40,0,'',15,6720,4480,80,27,0,0,NULL,NULL,'Africa, Nature, Dolphins, Sea, Ocean, Water, Coastal, Dolphin, Animals, Aquatic, Marine, Life, Tourism, Wildlife, Holiday, Vacation, Travel',NULL,1,'','img_5e0e0873818f4.jpeg','thumb_suraimages-1000263-dolphins.jpeg','preview_suraimages-1000263-dolphins.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000263-dolphins.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000263-dolphins.jpeg',NULL,NULL,10181,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10181,'jpeg',NULL,NULL,600,400),(264,15,9,1350,4,'Water lily','Africa, Nature, Water, Lily, Flower, Lilac, Purple, Bloom, Pond, Macro, Colour, Background, Dark, Black','2017-09-15 23:37:23','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000264-water-lily.jpeg',NULL,40,0,'',15,6720,4480,80,27,0,0,NULL,NULL,'Africa, Nature, Water, Lily, Flower, Lilac, Purple, Bloom, Pond, Macro, Colour, Background, Dark, Black',NULL,1,'','img_5e0e08921d8ef.jpeg','thumb_suraimages-1000264-water-lily.jpeg','preview_suraimages-1000264-water-lily.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000264-water-lily.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000264-water-lily.jpeg',NULL,NULL,10182,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10182,'jpeg',NULL,NULL,600,400),(265,31,15,1350,4,'Binoculars','Africa, Nature, Binoculars, Lookout, Hilltop, Vision, Outlook, Gold, Hill, Clouds, Zoom, Observe, Observation, Mountain','2017-09-16 00:17:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000265-binoculars.jpeg',NULL,20,0,'',15,5760,3840,40,13,0,0,NULL,NULL,'Africa, Nature, Binoculars, Lookout, Hilltop, Vision, Outlook, Gold, Hill, Clouds, Zoom, Observe, Observation, Mountain',NULL,1,'','img_5e0e08af3e8fa.jpeg','thumb_suraimages-1000265-binoculars.jpeg','preview_suraimages-1000265-binoculars.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000265-binoculars.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000265-binoculars.jpeg','1',NULL,10183,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10183,'jpeg',NULL,NULL,600,400),(266,31,8,1350,4,'Canons facing the mountains','Nature, Canon, War, Colony, Fort, Bronze, History, Defense, Army, Historical, Artifacts, Tourism, Hill','2017-09-16 01:11:00','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000266-canons-facing-the-mountains.jpeg',NULL,20,0,'',15,5581,3722,40,13,0,0,NULL,NULL,'Nature, Canon, War, Colony, Fort, Bronze, History, Defense, Army, Historical, Artifacts, Tourism, Hill',NULL,1,'','img_5e0e08b510b91.jpeg','thumb_suraimages-1000266-canons-facing-the-mountains.jpeg','preview_suraimages-1000266-canons-facing-the-mountains.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000266-canons-facing-the-mountains.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000266-canons-facing-the-mountains.jpeg',NULL,NULL,10184,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10184,'jpeg',NULL,NULL,600,400),(267,15,9,1350,4,'Palmtree path','Africa, Tropical, Nature, Palms, Palm, Tree, Path, Garden, Botanical, Garden, Tourism, Warm, Holiday','2017-09-16 01:11:02','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000267-palmtree-path.jpeg',NULL,15,0,'',15,3584,5375,30,10,0,0,NULL,NULL,'Africa, Tropical, Nature, Palms, Palm, Tree, Path, Garden, Botanical, Garden, Tourism, Warm, Holiday',NULL,1,'','img_5e0e08bae4b29.jpeg','thumb_suraimages-1000267-palmtree-path.jpeg','preview_suraimages-1000267-palmtree-path.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000267-palmtree-path.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000267-palmtree-path.jpeg',NULL,NULL,10185,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10185,'jpeg',NULL,NULL,267,400),(268,15,15,1350,4,'Sunlight through leaves','Africa, Nature, Flowers, Purple, Sunlight, Canopy, Leaves, Garden, Shade','2017-09-16 01:11:05','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000268-sunlight-through-leaves.jpeg',NULL,15,0,'',15,5760,3840,30,10,0,0,NULL,NULL,'Africa, Nature, Flowers, Purple, Sunlight, Canopy, Leaves, Garden, Shade',NULL,1,'','img_5e0e08c0c21f6.jpeg','thumb_suraimages-1000268-sunlight-through-leaves.jpeg','preview_suraimages-1000268-sunlight-through-leaves.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000268-sunlight-through-leaves.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000268-sunlight-through-leaves.jpeg',NULL,NULL,10186,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10186,'jpeg',NULL,NULL,600,400),(269,26,9,1360,4,'Young Kenya lady taking a selfie','Female, Woman, Lady, Girl, Young, YOLO, Youthfu. lStyle, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Happy,  Excited, Delight, Excitement, Social, Selfie, Taking, Photo, Gadget, Mobile, Cell, Phone, Smartphone, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000269-young-kenya-lady-taking-a-selfie.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'Female, Woman, Lady, Girl, Young, YOLO, Youthfu. lStyle, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Happy,  Excited, Delight, Excitement, Social, Selfie, Taking, Photo, Gadget, Mobile, Cell, Phone, Smartphone, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour',NULL,1,'','img_5e0e08c74ddbd.jpeg','thumb_suraimages-1000269-young-kenya-lady-taking-a-selfie.jpeg','preview_suraimages-1000269-young-kenya-lady-taking-a-selfie.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000269-young-kenya-lady-taking-a-selfie.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000269-young-kenya-lady-taking-a-selfie.jpeg',NULL,NULL,10187,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10187,'jpeg',NULL,NULL,265,400),(270,31,18,1360,4,'A close-up of a necklace','Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Happy, Excited, Close up, Necklace, Pearls, White, Top, Lips,  Red, Colour,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000270-a-close-up-of-a-necklace.jpeg',NULL,20,0,'',15,3038,4588,40,13,0,0,NULL,NULL,'Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Happy, Excited, Close up, Necklace, Pearls, White, Top, Lips,  Red, Colour,',NULL,1,'','img_5e0e08ca5b11e.jpeg','thumb_suraimages-1000270-a-close-up-of-a-necklace.jpeg','preview_suraimages-1000270-a-close-up-of-a-necklace.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000270-a-close-up-of-a-necklace.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000270-a-close-up-of-a-necklace.jpeg',NULL,NULL,10188,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10188,'jpeg',NULL,NULL,265,400),(271,26,9,1360,4,'Young Kenya lady taking a selfie','Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Happy, Excited, Delight, Excitement, Social, Selfie, Taking, Photo, Gadget, Mobile, Cell, Phone, Smartphone, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour, Yelling','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000271-young-kenya-lady-taking-a-selfie.jpeg',NULL,60,1,'30099003',15,3151,4758,120,40,0,0,NULL,NULL,'Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Happy, Excited, Delight, Excitement, Social, Selfie, Taking, Photo, Gadget, Mobile, Cell, Phone, Smartphone, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour, Yelling',NULL,1,'30099003','img_5e0e08cd96604.jpeg','thumb_suraimages-1000271-young-kenya-lady-taking-a-selfie.jpeg','preview_suraimages-1000271-young-kenya-lady-taking-a-selfie.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000271-young-kenya-lady-taking-a-selfie.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000271-young-kenya-lady-taking-a-selfie.jpeg',NULL,NULL,10190,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10190,'jpeg',NULL,NULL,265,400),(272,26,9,1360,4,'Young Kenya lady taking a selfie','Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Smiling, Happy, Excited, Delight, Excitement, Social, Selfie, Taking, Photo, Gadget, Mobile, Cell, Phone, Smartphone, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Street, Colour,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000272-young-kenya-lady-taking-a-selfie.jpeg',NULL,60,1,'30099003',15,3151,4758,120,40,0,0,NULL,NULL,'Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Smiling, Happy, Excited, Delight, Excitement, Social, Selfie, Taking, Photo, Gadget, Mobile, Cell, Phone, Smartphone, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Street, Colour,',NULL,1,'30099003','img_5e0e08d0972b6.jpeg','thumb_suraimages-1000272-young-kenya-lady-taking-a-selfie.jpeg','preview_suraimages-1000272-young-kenya-lady-taking-a-selfie.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000272-young-kenya-lady-taking-a-selfie.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000272-young-kenya-lady-taking-a-selfie.jpeg',NULL,NULL,10191,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10191,'jpeg',NULL,NULL,265,400),(273,26,9,1360,4,'Beautiful young African girl striking a pose','Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Smiling, Happy, Excited, Delight, Excitement, Social, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour, Street, Pose, Standing, Flowers','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000273-beautiful-young-african-girl-striking-a-pose.jpeg',NULL,60,1,'',15,2972,4488,120,40,0,0,NULL,NULL,'Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Smiling, Happy, Excited, Delight, Excitement, Social, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour, Street, Pose, Standing, Flowers',NULL,1,'','img_5e0e08d39637a.jpeg','thumb_suraimages-1000273-beautiful-young-african-girl-striking-a-pose.jpeg','preview_suraimages-1000273-beautiful-young-african-girl-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000273-beautiful-young-african-girl-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000273-beautiful-young-african-girl-striking-a-pose.jpeg',NULL,NULL,10192,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10192,'jpeg',NULL,NULL,265,400),(274,26,9,1360,4,'A happy young African girl walking along the street','Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Smiling, Happy, Excited, Delight, Excitement, Social, Selfie, Taking, Walk, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour, Street, Walking, Pavement','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000274-a-happy-young-african-girl-walking-along-the-street.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Smiling, Happy, Excited, Delight, Excitement, Social, Selfie, Taking, Walk, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour, Street, Walking, Pavement',NULL,1,'','img_5e0e08d65e945.jpeg','thumb_suraimages-1000274-a-happy-young-african-girl-walking-along-the-street.jpeg','preview_suraimages-1000274-a-happy-young-african-girl-walking-along-the-street.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000274-a-happy-young-african-girl-walking-along-the-street.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000274-a-happy-young-african-girl-walking-along-the-street.jpeg','3',NULL,10193,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10193,'jpeg',NULL,NULL,265,400),(275,26,9,1360,4,'Beautiful young African girl striking a pose','Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Smiling, Happy, Excited, Delight, Excitement, Social, Selfie, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour, Street, Pavement, Flowers,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000275-beautiful-young-african-girl-striking-a-pose.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'Female, Woman, Lady, Girl, Young, YOLO, Youthful, Style, Fashion, Swag, Black, Kenyan, Kenya, African, Africa, Beauty, Beautiful, Attractive, Gorgeous, Braids, Hair, Smile, Smiling, Happy, Excited, Delight, Excitement, Social, Selfie, Urban, City, Town, Building, Fun, Technology, Bag, Carry, Carrying, Red, Colour, Street, Pavement, Flowers,',NULL,1,'','img_5e0e08d962343.jpeg','thumb_suraimages-1000275-beautiful-young-african-girl-striking-a-pose.jpeg','preview_suraimages-1000275-beautiful-young-african-girl-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000275-beautiful-young-african-girl-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000275-beautiful-young-african-girl-striking-a-pose.jpeg',NULL,NULL,10194,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10194,'jpeg',NULL,NULL,265,400),(276,26,9,1360,4,'Young African female seated on a wooden bench','Seated, Seating, Sit, Bench, Column, Green, Compound, Field, Afternoon, Day, Midday, Light, Sunny, Sun, Shade, Dress, Dressed, Smart, Shoes, Red, Clothes, Casual, Vibrant, Young, African, Kenya, Kenyan, Looking, Smiling, Happy, Beautiful, Sunglasses, Sun, Glasses, Bag, Purple, Maroon, Stunners, Shades, Swag','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000276-young-african-female-seated-on-a-wooden-bench.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'Seated, Seating, Sit, Bench, Column, Green, Compound, Field, Afternoon, Day, Midday, Light, Sunny, Sun, Shade, Dress, Dressed, Smart, Shoes, Red, Clothes, Casual, Vibrant, Young, African, Kenya, Kenyan, Looking, Smiling, Happy, Beautiful, Sunglasses, Sun, Glasses, Bag, Purple, Maroon, Stunners, Shades, Swag',NULL,1,'','img_5e0e08dcc6f55.jpeg','thumb_suraimages-1000276-young-african-female-seated-on-a-wooden-bench.jpeg','preview_suraimages-1000276-young-african-female-seated-on-a-wooden-bench.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000276-young-african-female-seated-on-a-wooden-bench.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000276-young-african-female-seated-on-a-wooden-bench.jpeg',NULL,NULL,10195,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10195,'jpeg',NULL,NULL,265,400),(277,26,9,1360,4,'Happy young African female posing for a photo','Seated, Seating, Sit, Bench, Column, Green, Compound, Field, Afternoon, Day, Midday, Light, Sunny, Sun, Shade, Dress, Dressed, Smart, Shoes, Red, Clothes, Casual, Vibrant, Young, African, Kenya, Kenyan, Looking, Smiling, Happy, Beautiful,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000277-happy-young-african-female-posing-for-a-photo.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'Seated, Seating, Sit, Bench, Column, Green, Compound, Field, Afternoon, Day, Midday, Light, Sunny, Sun, Shade, Dress, Dressed, Smart, Shoes, Red, Clothes, Casual, Vibrant, Young, African, Kenya, Kenyan, Looking, Smiling, Happy, Beautiful,',NULL,1,'','img_5e0e08dfeac69.jpeg','thumb_suraimages-1000277-happy-young-african-female-posing-for-a-photo.jpeg','preview_suraimages-1000277-happy-young-african-female-posing-for-a-photo.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000277-happy-young-african-female-posing-for-a-photo.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000277-happy-young-african-female-posing-for-a-photo.jpeg',NULL,NULL,10196,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10196,'jpeg',NULL,NULL,265,400),(278,26,9,1360,4,'Young female seated next to a wooden door','African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Kenya, Nairobi, City, Capital, County, People, Seat, Seated, Sit, Sitting, Sky, Blue, Daylight, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful, Pose, Door, Wooden, Wood,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000278-young-female-seated-next-to-a-wooden-door.jpeg',NULL,60,1,'',15,3000,4529,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Kenya, Nairobi, City, Capital, County, People, Seat, Seated, Sit, Sitting, Sky, Blue, Daylight, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful, Pose, Door, Wooden, Wood,',NULL,1,'','img_5e0e08e2f1044.jpeg','thumb_suraimages-1000278-young-female-seated-next-to-a-wooden-door.jpeg','preview_suraimages-1000278-young-female-seated-next-to-a-wooden-door.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000278-young-female-seated-next-to-a-wooden-door.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000278-young-female-seated-next-to-a-wooden-door.jpeg',NULL,NULL,10198,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10198,'jpeg',NULL,NULL,265,400),(279,26,9,1360,4,'Young female striking a pose','African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Kenya, Laugh, Laughing, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000279-young-female-striking-a-pose.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Kenya, Laugh, Laughing, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful',NULL,1,'','img_5e0e08e5e9dfa.jpeg','thumb_suraimages-1000279-young-female-striking-a-pose.jpeg','preview_suraimages-1000279-young-female-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000279-young-female-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000279-young-female-striking-a-pose.jpeg',NULL,NULL,10199,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10199,'jpeg',NULL,NULL,265,400),(280,26,9,1360,4,'Young female striking a pose','African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Kenya, Laugh, Laughing, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000280-young-female-striking-a-pose.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Kenya, Laugh, Laughing, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful',NULL,1,'','img_5e0e08e98d4b2.jpeg','thumb_suraimages-1000280-young-female-striking-a-pose.jpeg','preview_suraimages-1000280-young-female-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000280-young-female-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000280-young-female-striking-a-pose.jpeg',NULL,NULL,10200,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10200,'jpeg',NULL,NULL,265,400),(281,26,9,1360,4,'Young Kenyan female walking along Nairobi street','African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000281-young-kenyan-female-walking-along-nairobi-street.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful',NULL,1,'','img_5e0e08ed16469.jpeg','thumb_suraimages-1000281-young-kenyan-female-walking-along-nairobi-street.jpeg','preview_suraimages-1000281-young-kenyan-female-walking-along-nairobi-street.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000281-young-kenyan-female-walking-along-nairobi-street.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000281-young-kenyan-female-walking-along-nairobi-street.jpeg',NULL,NULL,10201,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10201,'jpeg',NULL,NULL,265,400),(282,26,9,1360,4,'Female posing along the street while holding red bag','African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, County, People, Sky, Blue, Daylight, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000282-female-posing-along-the-street-while-holding-red-bag.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, County, People, Sky, Blue, Daylight, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful',NULL,1,'','img_5e0e08f048aa5.jpeg','thumb_suraimages-1000282-female-posing-along-the-street-while-holding-red-bag.jpeg','preview_suraimages-1000282-female-posing-along-the-street-while-holding-red-bag.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000282-female-posing-along-the-street-while-holding-red-bag.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000282-female-posing-along-the-street-while-holding-red-bag.jpeg',NULL,NULL,10202,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10202,'jpeg',NULL,NULL,265,400),(283,26,18,1360,4,'Stylish young female','African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Kenya, Nairobi, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Walking, Walk, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000283-stylish-young-female.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Kenya, Nairobi, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Walking, Walk, Young, Youth, Youthful',NULL,1,'','img_5e0e08f3a174d.jpeg','thumb_suraimages-1000283-stylish-young-female.jpeg','preview_suraimages-1000283-stylish-young-female.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000283-stylish-young-female.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000283-stylish-young-female.jpeg','1',NULL,10203,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10203,'jpeg',NULL,NULL,265,400),(284,26,18,1360,4,'Stylish young female','African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000284-stylish-young-female.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful',NULL,1,'','img_5e0e08f73a183.jpeg','thumb_suraimages-1000284-stylish-young-female.jpeg','preview_suraimages-1000284-stylish-young-female.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000284-stylish-young-female.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000284-stylish-young-female.jpeg',NULL,NULL,10204,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10204,'jpeg',NULL,NULL,265,400),(285,26,18,1360,4,'Stylish young female','African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, FunkyYoung, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000285-stylish-young-female.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, Nairobi, County, People, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, FunkyYoung, Youth, Youthful',NULL,1,'','img_5e0e08fa88802.jpeg','thumb_suraimages-1000285-stylish-young-female.jpeg','preview_suraimages-1000285-stylish-young-female.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000285-stylish-young-female.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000285-stylish-young-female.jpeg',NULL,NULL,10205,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10205,'jpeg',NULL,NULL,265,400),(286,26,18,1360,4,'Stylish young female','African, Africa, Black, Dark, Beauty, Beautiful, BMW, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, Nairobi, County, People, Red, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000286-stylish-young-female.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, BMW, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Kenya, Nairobi, City, Capital, Nairobi, County, People, Red, Sky, Blue, Daylight, Clouds, Standing, Stand, Pose, Street, Pavement, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful',NULL,1,'','img_5e0e08fe7a5b5.jpeg','thumb_suraimages-1000286-stylish-young-female.jpeg','preview_suraimages-1000286-stylish-young-female.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000286-stylish-young-female.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000286-stylish-young-female.jpeg',NULL,NULL,10206,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10206,'jpeg',NULL,NULL,265,400),(287,26,18,1360,4,'Happy young African female','African, Africa, Black, Dark, Beauty, Beautiful, Beige, Brown, Design, Designer, Bag, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Jacket, Kenya, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trouser, Pant, Pants, Slacks, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000287-happy-young-african-female.jpeg',NULL,60,1,'',15,2952,3878,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Beige, Brown, Design, Designer, Bag, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Jacket, Kenya, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trouser, Pant, Pants, Slacks, Young, Youth, Youthful',NULL,1,'','img_5e0e090221b40.jpeg','thumb_suraimages-1000287-happy-young-african-female.jpeg','preview_suraimages-1000287-happy-young-african-female.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000287-happy-young-african-female.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000287-happy-young-african-female.jpeg',NULL,NULL,10207,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10207,'jpeg',NULL,NULL,304,400),(288,26,18,1360,4,'Young African female standing','African, Africa, Black, Dark, Beauty, Beautiful, Beige, Brown, Design, Designer, Bag, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Jacket, Kenya, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trouser, Pant, Pants, Slacks, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000288-young-african-female-standing.jpeg',NULL,60,1,'43235333',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Beige, Brown, Design, Designer, Bag, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Jacket, Kenya, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trouser, Pant, Pants, Slacks, Young, Youth, Youthful',NULL,1,'43235333','img_5e0e0904a63d0.jpeg','thumb_suraimages-1000288-young-african-female-standing.jpeg','preview_suraimages-1000288-young-african-female-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000288-young-african-female-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000288-young-african-female-standing.jpeg',NULL,NULL,10208,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10208,'jpeg',NULL,NULL,265,400),(289,26,18,1360,4,'Young African female walking along city street','African, Africa, Black, Dark, Beauty, Beautiful, Beige, Brown, Design, Designer, Bag, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Jacket, Kenya, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trouser, Pant, Pants, Slacks, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000289-young-african-female-walking-along-city-street.jpeg',NULL,60,1,'43235333',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Beige, Brown, Design, Designer, Bag, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Jacket, Kenya, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trouser, Pant, Pants, Slacks, Young, Youth, Youthful',NULL,1,'43235333','img_5e0e0907c2ba1.jpeg','thumb_suraimages-1000289-young-african-female-walking-along-city-street.jpeg','preview_suraimages-1000289-young-african-female-walking-along-city-street.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000289-young-african-female-walking-along-city-street.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000289-young-african-female-walking-along-city-street.jpeg',NULL,NULL,10209,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10209,'jpeg',NULL,NULL,265,400),(290,26,18,1360,4,'Happy young African female','African, Africa, Black, Dark, Beauty, Beautiful, Beige, Brown, Design, Designer, Bag, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Jacket, , Kenya, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trouser, Pant, Pants, Slacks, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000290-happy-young-african-female.jpeg',NULL,60,1,'43235333',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Beige, Brown, Design, Designer, Bag, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Jacket, , Kenya, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trouser, Pant, Pants, Slacks, Young, Youth, Youthful',NULL,1,'43235333','img_5e0e090a92dbb.jpeg','thumb_suraimages-1000290-happy-young-african-female.jpeg','preview_suraimages-1000290-happy-young-african-female.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000290-happy-young-african-female.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000290-happy-young-african-female.jpeg',NULL,NULL,10210,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10210,'jpeg',NULL,NULL,265,400),(291,26,18,1360,4,'Elegant blue dress','African, Africa, Black, Dark, Beauty, Beautiful, Blue, Dress, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Hub, Karen, Hub, Kenya, Mall, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful, Watch','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000291-elegant-blue-dress.jpeg',NULL,60,1,'',15,4823,7282,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Blue, Dress, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Hub, Karen, Hub, Kenya, Mall, Nairobi, County, Standing, Stand, Pose, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful, Watch',NULL,1,'','img_5e0e090d94333.jpeg','thumb_suraimages-1000291-elegant-blue-dress.jpeg','preview_suraimages-1000291-elegant-blue-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000291-elegant-blue-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000291-elegant-blue-dress.jpeg',NULL,NULL,10211,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10211,'jpeg',NULL,NULL,265,400),(292,26,18,1360,4,'Kenyan young female in a blue dress seated','African, Africa, Black, Dark, Beauty, Beautiful, Blue, Dress, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Hub, Karen, Hub, Kenya, Mall, Nairobi, County, Seat, Seated, Sit, Sitting, Shoes, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000292-kenyan-young-female-in-a-blue-dress-seated.jpeg',NULL,60,1,'',15,4134,6242,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Blue, Dress, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Hub, Karen, Hub, Kenya, Mall, Nairobi, County, Seat, Seated, Sit, Sitting, Shoes, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful',NULL,1,'','img_5e0e092f2d0c1.jpeg','thumb_suraimages-1000292-kenyan-young-female-in-a-blue-dress-seated.jpeg','preview_suraimages-1000292-kenyan-young-female-in-a-blue-dress-seated.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000292-kenyan-young-female-in-a-blue-dress-seated.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000292-kenyan-young-female-in-a-blue-dress-seated.jpeg',NULL,NULL,10212,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10212,'jpeg',NULL,NULL,265,400),(293,26,18,1360,4,'Kenyan young female in a blue dress','African, Africa, Black, DarkBeauty, BeautifulBlueDressFemale, Woman, Girl, LadyHappy, Smiling, SmileHubKaren, HubKenyaMallNairobi, CountyShoesStanding, Stand, PoseStyle, SwagTrend, Trendy, Funk, FunkyYoung, Youth, Youthful, Elegance, Elegant','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000293-kenyan-young-female-in-a-blue-dress.jpeg',NULL,60,1,'',15,3151,4758,120,40,0,0,NULL,NULL,'African, Africa, Black, DarkBeauty, BeautifulBlueDressFemale, Woman, Girl, LadyHappy, Smiling, SmileHubKaren, HubKenyaMallNairobi, CountyShoesStanding, Stand, PoseStyle, SwagTrend, Trendy, Funk, FunkyYoung, Youth, Youthful, Elegance, Elegant',NULL,1,'','img_5e0e09371fbeb.jpeg','thumb_suraimages-1000293-kenyan-young-female-in-a-blue-dress.jpeg','preview_suraimages-1000293-kenyan-young-female-in-a-blue-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000293-kenyan-young-female-in-a-blue-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000293-kenyan-young-female-in-a-blue-dress.jpeg',NULL,NULL,10213,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10213,'jpeg',NULL,NULL,265,400),(294,26,18,1360,4,'Kenyan young female in a blue dress','African, Africa, Black, DarkBeauty, Beautiful, Blue, DressFemale, Woman, Girl, Lady, Happy, Smiling, Smile, Hub, Karen, Hub, Kenya, Mall, Nairobi, County, Shoes, Standing, Stand, Pose, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful, Elegance, Elegant','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000294-kenyan-young-female-in-a-blue-dress.jpeg',NULL,60,1,'',15,4134,6242,120,40,0,0,NULL,NULL,'African, Africa, Black, DarkBeauty, Beautiful, Blue, DressFemale, Woman, Girl, Lady, Happy, Smiling, Smile, Hub, Karen, Hub, Kenya, Mall, Nairobi, County, Shoes, Standing, Stand, Pose, Style, Swag, Trend, Trendy, Funk, Funky, Young, Youth, Youthful, Elegance, Elegant',NULL,1,'','img_5e0e093a1c77d.jpeg','thumb_suraimages-1000294-kenyan-young-female-in-a-blue-dress.jpeg','preview_suraimages-1000294-kenyan-young-female-in-a-blue-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000294-kenyan-young-female-in-a-blue-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000294-kenyan-young-female-in-a-blue-dress.jpeg',NULL,NULL,10214,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10214,'jpeg',NULL,NULL,265,400),(295,26,18,1360,4,'Elegant young female in a white dress','African, Africa, Black, Dark, Beauty, Beautiful, Brown, Dress, Female, Woman, Girl, Lady, Orange, Seat, Seated, Sit, Sitting, Shoes, Style, Swag, White, Young, Youth, Youthful, Elegance, Elegant, Exquisite, Comfort, Luxury, Hotel','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000295-elegant-young-female-in-a-white-dress.jpeg',NULL,60,1,'',15,4758,3151,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Brown, Dress, Female, Woman, Girl, Lady, Orange, Seat, Seated, Sit, Sitting, Shoes, Style, Swag, White, Young, Youth, Youthful, Elegance, Elegant, Exquisite, Comfort, Luxury, Hotel',NULL,1,'','img_5e0e09428c2c5.jpeg','thumb_suraimages-1000295-elegant-young-female-in-a-white-dress.jpeg','preview_suraimages-1000295-elegant-young-female-in-a-white-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000295-elegant-young-female-in-a-white-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000295-elegant-young-female-in-a-white-dress.jpeg',NULL,NULL,10215,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10215,'jpeg',NULL,NULL,604,400),(296,26,18,1360,4,'Elegant young female in a white dress','African, Africa, Black, Dark, Beauty, Beautiful, Brown, Dress, Female, Woman, Girl, Lady, Orange, Seat, Seated, Sit, Sitting, Shoes, Style, Swag White Young, Youth, Youthful, Elegance, Elegant, Exquisite, Comfort, Luxury, Hotel','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000296-elegant-young-female-in-a-white-dress.jpeg',NULL,60,1,'',15,3150,3150,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Beauty, Beautiful, Brown, Dress, Female, Woman, Girl, Lady, Orange, Seat, Seated, Sit, Sitting, Shoes, Style, Swag White Young, Youth, Youthful, Elegance, Elegant, Exquisite, Comfort, Luxury, Hotel',NULL,1,'','img_5e0e0945c4ae4.jpeg','thumb_suraimages-1000296-elegant-young-female-in-a-white-dress.jpeg','preview_suraimages-1000296-elegant-young-female-in-a-white-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000296-elegant-young-female-in-a-white-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000296-elegant-young-female-in-a-white-dress.jpeg',NULL,NULL,10216,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10216,'jpeg',NULL,NULL,400,400),(297,26,18,1360,4,'Beautiful young female posing next to a scooter','Beauty, Beautiful, Blue, Brown, Colour, Design, Designer, Bag, Female, Woman, Girl, Lady, Green, Purple, Blue, Aqua, Turquoise, Happy, Smiling, Smile, Holding, Hold, Hub, Karen, Hub, Laugh, Laughing, Mall, Motorbike, Orange, Quick, Scooter, Skirt, Standing, Stand, Pose, Style, Swag, Young, Youth, Youthful, Elegance, Vintage, Look, Wall, Brick, Red','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000297-beautiful-young-female-posing-next-to-a-scooter.jpeg',NULL,60,1,'',15,3069,4651,120,40,0,0,NULL,NULL,'Beauty, Beautiful, Blue, Brown, Colour, Design, Designer, Bag, Female, Woman, Girl, Lady, Green, Purple, Blue, Aqua, Turquoise, Happy, Smiling, Smile, Holding, Hold, Hub, Karen, Hub, Laugh, Laughing, Mall, Motorbike, Orange, Quick, Scooter, Skirt, Standing, Stand, Pose, Style, Swag, Young, Youth, Youthful, Elegance, Vintage, Look, Wall, Brick, Red',NULL,1,'','img_5e0e09482a096.jpeg','thumb_suraimages-1000297-beautiful-young-female-posing-next-to-a-scooter.jpeg','preview_suraimages-1000297-beautiful-young-female-posing-next-to-a-scooter.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000297-beautiful-young-female-posing-next-to-a-scooter.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000297-beautiful-young-female-posing-next-to-a-scooter.jpeg',NULL,NULL,10217,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10217,'jpeg',NULL,NULL,264,400),(298,26,18,1360,4,'African girl in Ankara dress seated in a wooden bench','African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Seat, Seated, Sit, Sitting, Skirt, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000298-african-girl-in-ankara-dress-seated-in-a-wooden-bench.jpeg',NULL,60,1,'06866861',15,4016,5622,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Seat, Seated, Sit, Sitting, Skirt, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful',NULL,1,'06866861','img_5e0e094b9e3a0.jpeg','thumb_suraimages-1000298-african-girl-in-ankara-dress-seated-in-a-wooden-bench.jpeg','preview_suraimages-1000298-african-girl-in-ankara-dress-seated-in-a-wooden-bench.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000298-african-girl-in-ankara-dress-seated-in-a-wooden-bench.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000298-african-girl-in-ankara-dress-seated-in-a-wooden-bench.jpeg',NULL,NULL,10218,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10218,'jpeg',NULL,NULL,286,400),(299,26,18,1360,4,'African girl in Ankara dress','African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Skirt, Standing, Stand, Pose, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000299-african-girl-in-ankara-dress.jpeg',NULL,60,1,'06866861',15,4016,5622,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Skirt, Standing, Stand, Pose, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful',NULL,1,'06866861','img_5e0e0951b7f11.jpeg','thumb_suraimages-1000299-african-girl-in-ankara-dress.jpeg','preview_suraimages-1000299-african-girl-in-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000299-african-girl-in-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000299-african-girl-in-ankara-dress.jpeg',NULL,NULL,10219,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10219,'jpeg',NULL,NULL,286,400),(300,26,18,1360,4,'African girl in Ankara dress','African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Skirt, Standing, Stand, Pose, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000300-african-girl-in-ankara-dress.jpeg',NULL,60,1,'06866861',15,4016,5622,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Skirt, Standing, Stand, Pose, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful',NULL,1,'06866861','img_5e0e095830def.jpeg','thumb_suraimages-1000300-african-girl-in-ankara-dress.jpeg','preview_suraimages-1000300-african-girl-in-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000300-african-girl-in-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000300-african-girl-in-ankara-dress.jpeg',NULL,NULL,10220,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10220,'jpeg',NULL,NULL,286,400),(301,26,18,1360,4,'African girl in Ankara dress','African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Standing, Stand, Pose, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000301-african-girl-in-ankara-dress.jpeg',NULL,60,1,'',15,4016,6016,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Standing, Stand, Pose, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful',NULL,1,'','img_5e0e095e41615.jpeg','thumb_suraimages-1000301-african-girl-in-ankara-dress.jpeg','preview_suraimages-1000301-african-girl-in-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000301-african-girl-in-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000301-african-girl-in-ankara-dress.jpeg',NULL,NULL,10221,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10221,'jpeg',NULL,NULL,267,400),(302,26,18,1360,4,'African girl in Ankara dress','African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Holding, Hold, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Seated, Sit, Sitting, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000302-african-girl-in-ankara-dress.jpeg',NULL,60,1,'',15,4016,6016,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Holding, Hold, Kitenge, Nairobi, County, Painting, People, Plants, Red, Seat, Seated, Sit, Sitting, Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful',NULL,1,'','img_5e0e09657b28a.jpeg','thumb_suraimages-1000302-african-girl-in-ankara-dress.jpeg','preview_suraimages-1000302-african-girl-in-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000302-african-girl-in-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000302-african-girl-in-ankara-dress.jpeg',NULL,NULL,10222,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10222,'jpeg',NULL,NULL,267,400),(303,26,18,1360,4,'African girl in Ankara dress','African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Rock, People, Plants, Red, Seat, Seated, Sit, Sitting,Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000303-african-girl-in-ankara-dress.jpeg',NULL,60,1,'',15,4016,6016,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Ankara, Artifacts, Beauty, Beautiful, Blue, Sky, Clouds, Brown, Dress, Evening, Female, Woman, Girl, Lady, Flower, Garden, Vase, Pot, Glass, Green, Happy, Smiling, Smile, Kitenge, Nairobi, County, Rock, People, Plants, Red, Seat, Seated, Sit, Sitting,Stunners, Sunglasses, Style, Swag, Sundowner, Trend, Trendy, Funk, Funky, Wine, Bottle, Bottles, Wooden, Young, Youth, Youthful',NULL,1,'','img_5e0e096c34646.jpeg','thumb_suraimages-1000303-african-girl-in-ankara-dress.jpeg','preview_suraimages-1000303-african-girl-in-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000303-african-girl-in-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000303-african-girl-in-ankara-dress.jpeg',NULL,NULL,10223,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10223,'jpeg',NULL,NULL,267,400),(304,8,9,1365,4,'KICC the most iconic building in Nairobi city','Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, Nairobi, East, Africa, Hub, City, Cityscape, Kenya, Kenyatta, International, Conference, Centre, KICC, Times, Tower, Iconic, Building, Landmark, Landmarks,','2017-11-13 23:11:04','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000304-kicc-the-most-iconic-building-in-nairobi-city.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, Nairobi, East, Africa, Hub, City, Cityscape, Kenya, Kenyatta, International, Conference, Centre, KICC, Times, Tower, Iconic, Building, Landmark, Landmarks,',NULL,1,'','img_5e0e0972c7b5a.jpeg','thumb_suraimages-1000304-kicc-the-most-iconic-building-in-nairobi-city.jpeg','preview_suraimages-1000304-kicc-the-most-iconic-building-in-nairobi-city.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000304-kicc-the-most-iconic-building-in-nairobi-city.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000304-kicc-the-most-iconic-building-in-nairobi-city.jpeg',NULL,NULL,10230,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10230,'jpeg',NULL,NULL,600,400),(305,8,9,1365,4,'KICC and Times Tower building','Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, Nairobi, East, Africa, Hub, City, Cityscape, Kenya, Kenyatta, International, Conference, Centre, KICC, Times, Tower, Iconic, Building, Landmark, Landmarks,','2017-11-13 23:28:02','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000305-kicc-and-times-tower-building.jpeg',NULL,40,0,'',15,7000,3450,80,27,0,0,NULL,NULL,'Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, Nairobi, East, Africa, Hub, City, Cityscape, Kenya, Kenyatta, International, Conference, Centre, KICC, Times, Tower, Iconic, Building, Landmark, Landmarks,',NULL,1,'','img_5e0e097856f07.jpeg','thumb_suraimages-1000305-kicc-and-times-tower-building.jpeg','preview_suraimages-1000305-kicc-and-times-tower-building.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000305-kicc-and-times-tower-building.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000305-kicc-and-times-tower-building.jpeg',NULL,NULL,10231,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10231,'jpeg',NULL,NULL,812,400),(306,8,9,1365,4,'Nairobi city','Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, Nairobi, East, Africa, Hub, City, Cityscape, Kenya, Kenyatta, International, Conference, Centre, KICC, Times, Tower, Iconic, Building, Landmark, Landmarks, Dusk, Evening','2017-11-13 23:28:03','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000306-nairobi-city.jpeg',NULL,40,0,'',15,3856,6000,80,27,0,0,NULL,NULL,'Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, Nairobi, East, Africa, Hub, City, Cityscape, Kenya, Kenyatta, International, Conference, Centre, KICC, Times, Tower, Iconic, Building, Landmark, Landmarks, Dusk, Evening',NULL,1,'','img_5e0e097f66fd3.jpeg','thumb_suraimages-1000306-nairobi-city.jpeg','preview_suraimages-1000306-nairobi-city.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000306-nairobi-city.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000306-nairobi-city.jpeg',NULL,NULL,10232,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10232,'jpeg',NULL,NULL,257,400),(307,8,9,1365,4,'Ariel view of Nairobi CBD at night','Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, City, Nairobi, East, Africa Hub, Cityscape, Kenya, Evening, Dusk, Sunset, Nightfall, Sky, Life, Lights, Night, Traffic, Street, Pavement','2017-11-13 23:28:05','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000307-ariel-view-of-nairobi-cbd-at-night.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, City, Nairobi, East, Africa Hub, Cityscape, Kenya, Evening, Dusk, Sunset, Nightfall, Sky, Life, Lights, Night, Traffic, Street, Pavement',NULL,1,'','img_5e0e09848db0a.jpeg','thumb_suraimages-1000307-ariel-view-of-nairobi-cbd-at-night.jpeg','preview_suraimages-1000307-ariel-view-of-nairobi-cbd-at-night.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000307-ariel-view-of-nairobi-cbd-at-night.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000307-ariel-view-of-nairobi-cbd-at-night.jpeg',NULL,NULL,10233,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10233,'jpeg',NULL,NULL,600,400),(308,8,9,1365,4,'Nairobi streets at night','Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, City, Nairobi, East, Africa Hub, Cityscape, Kenya, Evening, Dusk, Sunset, Nightfall, Sky, Life, Lights, Night, Traffic, Street, Pavement','2017-11-13 23:28:06','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000308-nairobi-streets-at-night.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Midday, Mid-day, Capital, City, Nairobi, East, Africa Hub, Cityscape, Kenya, Evening, Dusk, Sunset, Nightfall, Sky, Life, Lights, Night, Traffic, Street, Pavement',NULL,1,'','img_5e0e098b388b3.jpeg','thumb_suraimages-1000308-nairobi-streets-at-night.jpeg','preview_suraimages-1000308-nairobi-streets-at-night.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000308-nairobi-streets-at-night.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000308-nairobi-streets-at-night.jpeg',NULL,NULL,10234,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10234,'jpeg',NULL,NULL,600,400),(309,8,9,1365,4,'Nairobi Skyline','Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure','2018-03-27 19:19:31','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000309-nairobi-skyline.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure',NULL,1,'','img_5e0e0991b5293.jpeg','thumb_suraimages-1000309-nairobi-skyline.jpeg','preview_suraimages-1000309-nairobi-skyline.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000309-nairobi-skyline.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000309-nairobi-skyline.jpeg',NULL,NULL,10235,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10235,'jpeg',NULL,NULL,600,400),(310,8,9,1365,4,'Nairobi Skyline','Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure','2017-11-14 00:04:30','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000310-nairobi-skyline.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure',NULL,1,'','img_5e0e099815003.jpeg','thumb_suraimages-1000310-nairobi-skyline.jpeg','preview_suraimages-1000310-nairobi-skyline.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000310-nairobi-skyline.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000310-nairobi-skyline.jpeg',NULL,NULL,10236,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10236,'jpeg',NULL,NULL,600,400),(311,8,9,1365,4,'Peace sign','Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure','2017-11-14 00:04:32','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000311-peace-sign.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure',NULL,1,'','img_5e0e099def2bc.jpeg','thumb_suraimages-1000311-peace-sign.jpeg','preview_suraimages-1000311-peace-sign.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000311-peace-sign.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000311-peace-sign.jpeg',NULL,NULL,10237,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10237,'jpeg',NULL,NULL,600,400),(312,8,9,1365,4,'Peace sign','Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure, Hands, Finger, Peace, Sign, Female, Lady, Hands','2017-11-14 00:04:33','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000312-peace-sign.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure, Hands, Finger, Peace, Sign, Female, Lady, Hands',NULL,1,'','img_5e0e09a37544d.jpeg','thumb_suraimages-1000312-peace-sign.jpeg','preview_suraimages-1000312-peace-sign.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000312-peace-sign.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000312-peace-sign.jpeg',NULL,NULL,10238,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10238,'jpeg',NULL,NULL,600,400),(313,8,9,1365,4,'Nairobi skyline at night','Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure','2017-11-14 00:04:34','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000313-nairobi-skyline-at-night.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure',NULL,1,'','img_5e0e09a8e0c02.jpeg','thumb_suraimages-1000313-nairobi-skyline-at-night.jpeg','preview_suraimages-1000313-nairobi-skyline-at-night.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000313-nairobi-skyline-at-night.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000313-nairobi-skyline-at-night.jpeg',NULL,NULL,10239,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10239,'jpeg',NULL,NULL,600,400),(314,8,8,1365,4,'Nairobi skyline at night','Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure','2017-11-14 00:25:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000314-nairobi-skyline-at-night.jpeg',NULL,40,0,'',15,6000,4000,80,27,0,0,NULL,NULL,'Blue , Sky , Clouds , Daylight , Sunny , Weather , Capital , City , Nairobi , East , Africa , Hub , Cityscape , Kenya , Cars , Streets , Greenery , Car, Park , Traffic , Jam , Uhuru , Park , Evening , Dusk , Sunset , Nightfall , Night , Life , Lights , Night , Horizon , Icon , Iconic , Building , Structure , Infrastructure',NULL,1,'','img_5e0e09ae3390a.jpeg','thumb_suraimages-1000314-nairobi-skyline-at-night.jpeg','preview_suraimages-1000314-nairobi-skyline-at-night.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000314-nairobi-skyline-at-night.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000314-nairobi-skyline-at-night.jpeg',NULL,NULL,10240,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10240,'jpeg',NULL,NULL,600,400),(315,8,8,1365,4,'Close-up of a building','Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Capital, City, Nairobi, East, Africa, Hub, Cityscape, Kenya, Building, Pattern, Texture, Angle, Angles','2017-11-14 00:25:47','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000315-close-up-of-a-building.jpeg',NULL,25,0,'',15,6000,4000,50,17,0,0,NULL,NULL,'Blue, Sky, Clouds, Daylight, Sunny, Weather, Mid day, Capital, City, Nairobi, East, Africa, Hub, Cityscape, Kenya, Building, Pattern, Texture, Angle, Angles',NULL,1,'','img_5e0e09b3c10c8.jpeg','thumb_suraimages-1000315-close-up-of-a-building.jpeg','preview_suraimages-1000315-close-up-of-a-building.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000315-close-up-of-a-building.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000315-close-up-of-a-building.jpeg',NULL,NULL,10241,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10241,'jpeg',NULL,NULL,600,400),(316,31,31,1365,4,'Bokeh effect in a cup','Bokeh, Effect, Lights, House, Creative, Cup, Sculpture, Carving,','2017-11-14 00:47:28','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000316-bokeh-effect-in-a-cup.jpeg',NULL,25,0,'',15,6000,4000,50,17,0,0,NULL,NULL,'Bokeh, Effect, Lights, House, Creative, Cup, Sculpture, Carving,',NULL,1,'','img_5e0e09b9bb686.jpeg','thumb_suraimages-1000316-bokeh-effect-in-a-cup.jpeg','preview_suraimages-1000316-bokeh-effect-in-a-cup.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000316-bokeh-effect-in-a-cup.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000316-bokeh-effect-in-a-cup.jpeg',NULL,NULL,10242,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10242,'jpeg',NULL,NULL,600,400),(317,31,31,1365,4,'Bokeh effect in a cup','Bokeh, Effect, Lights, House, Creative, Cup, Sculpture, Carving,','2017-11-14 00:47:29','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000317-bokeh-effect-in-a-cup.jpeg',NULL,25,0,'',15,6000,4000,50,17,0,0,NULL,NULL,'Bokeh, Effect, Lights, House, Creative, Cup, Sculpture, Carving,',NULL,1,'','img_5e0e09c07edcc.jpeg','thumb_suraimages-1000317-bokeh-effect-in-a-cup.jpeg','preview_suraimages-1000317-bokeh-effect-in-a-cup.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000317-bokeh-effect-in-a-cup.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000317-bokeh-effect-in-a-cup.jpeg',NULL,NULL,10243,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10243,'jpeg',NULL,NULL,600,400),(318,15,9,1365,4,'Sunset','Evening, Dusk, Sunset, Nightfall, Sky, Landscape, Kenya, Highland, Mountains, Hills, Vast','2017-11-14 00:47:31','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000318-sunset.jpeg',NULL,25,0,'',15,6000,4000,50,17,0,0,NULL,NULL,'Evening, Dusk, Sunset, Nightfall, Sky, Landscape, Kenya, Highland, Mountains, Hills, Vast',NULL,1,'','img_5e0e09c673e89.jpeg','thumb_suraimages-1000318-sunset.jpeg','preview_suraimages-1000318-sunset.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000318-sunset.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000318-sunset.jpeg',NULL,NULL,10244,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10244,'jpeg',NULL,NULL,600,400),(319,15,9,1354,4,'A safari ant','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Green, Aphids, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000319-a-safari-ant.jpeg',NULL,30,0,'61825684',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Green, Aphids, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking',NULL,1,'61825684','img_5e0e09cc3db62.jpeg','thumb_suraimages-1000319-a-safari-ant.jpeg','preview_suraimages-1000319-a-safari-ant.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000319-a-safari-ant.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000319-a-safari-ant.jpeg',NULL,NULL,10253,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10253,'jpeg',NULL,NULL,604,400),(320,15,9,1354,4,'A safari ant','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Green, Aphids, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000320-a-safari-ant.jpeg',NULL,30,0,'61825684',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Green, Aphids, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking',NULL,1,'61825684','img_5e0e09d19baaf.jpeg','thumb_suraimages-1000320-a-safari-ant.jpeg','preview_suraimages-1000320-a-safari-ant.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000320-a-safari-ant.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000320-a-safari-ant.jpeg',NULL,NULL,10254,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10254,'jpeg',NULL,NULL,604,400),(321,15,9,1354,4,'A safari ant walking past aphids','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Green, Aphids, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000321-a-safari-ant-walking-past-aphids.jpeg',NULL,30,0,'52558124',15,3875,3031,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Green, Aphids, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking',NULL,1,'52558124','img_5e0e09d773da5.jpeg','thumb_suraimages-1000321-a-safari-ant-walking-past-aphids.jpeg','preview_suraimages-1000321-a-safari-ant-walking-past-aphids.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000321-a-safari-ant-walking-past-aphids.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000321-a-safari-ant-walking-past-aphids.jpeg',NULL,NULL,10255,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10255,'jpeg',NULL,NULL,511,400),(322,15,9,1354,4,'A safari ant walking past aphids','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Green, Aphids, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000322-a-safari-ant-walking-past-aphids.jpeg',NULL,30,0,'52558124',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Green, Aphids, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking',NULL,1,'52558124','img_5e0e09dae3b69.jpeg','thumb_suraimages-1000322-a-safari-ant-walking-past-aphids.jpeg','preview_suraimages-1000322-a-safari-ant-walking-past-aphids.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000322-a-safari-ant-walking-past-aphids.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000322-a-safari-ant-walking-past-aphids.jpeg',NULL,NULL,10256,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10256,'jpeg',NULL,NULL,604,400),(323,15,9,1354,4,'A safari ant carrying a pupa','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Pupa, Pupae, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000323-a-safari-ant-carrying-a-pupa.jpeg',NULL,30,0,'',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Close up, Colony, Pupa, Pupae, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Together, Togetherness, Walking',NULL,1,'','img_5e0e09e10bc54.jpeg','thumb_suraimages-1000323-a-safari-ant-carrying-a-pupa.jpeg','preview_suraimages-1000323-a-safari-ant-carrying-a-pupa.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000323-a-safari-ant-carrying-a-pupa.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000323-a-safari-ant-carrying-a-pupa.jpeg',NULL,NULL,10257,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10257,'jpeg',NULL,NULL,604,400),(324,15,9,1360,4,'African girl in an ankara dress','Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Stand, Standing, Posing, Log, Wood, Dry, Leaves, Thicket, Bush, Tree, Trees','2018-01-03 11:57:48','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000324-african-girl-in-an-ankara-dress.jpeg',NULL,60,1,'25543484',15,4016,6016,120,40,0,0,NULL,NULL,'Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Stand, Standing, Posing, Log, Wood, Dry, Leaves, Thicket, Bush, Tree, Trees',NULL,1,'25543484','img_5e0e09e645aad.jpeg','thumb_suraimages-1000324-african-girl-in-an-ankara-dress.jpeg','preview_suraimages-1000324-african-girl-in-an-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000324-african-girl-in-an-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000324-african-girl-in-an-ankara-dress.jpeg',NULL,NULL,10258,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10258,'jpeg',NULL,NULL,267,400),(325,15,9,1360,4,'African girl in an ankara dress','Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Stand, Standing, Posing, Log, Wood, Dry, Leaves, Thicket, Bush, Clutch, Bag, Tree, Trees','2018-01-03 11:57:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000325-african-girl-in-an-ankara-dress.jpeg',NULL,60,1,'25543484',15,4016,6016,120,40,0,0,NULL,NULL,'Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Stand, Standing, Posing, Log, Wood, Dry, Leaves, Thicket, Bush, Clutch, Bag, Tree, Trees',NULL,1,'25543484','img_5e0e09ececfcb.jpeg','thumb_suraimages-1000325-african-girl-in-an-ankara-dress.jpeg','preview_suraimages-1000325-african-girl-in-an-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000325-african-girl-in-an-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000325-african-girl-in-an-ankara-dress.jpeg',NULL,NULL,10259,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10259,'jpeg',NULL,NULL,267,400),(326,15,9,1360,4,'African girl in an ankara dress','Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Stand, Standing, Posing, Wood, Dry, Leaves, Thicket, Bush, Tree, Trees','2018-01-03 11:57:51','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000326-african-girl-in-an-ankara-dress.jpeg',NULL,60,1,'25543484',15,4016,6016,120,40,0,0,NULL,NULL,'Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Stand, Standing, Posing, Wood, Dry, Leaves, Thicket, Bush, Tree, Trees',NULL,1,'25543484','img_5e0e09f2e476d.jpeg','thumb_suraimages-1000326-african-girl-in-an-ankara-dress.jpeg','preview_suraimages-1000326-african-girl-in-an-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000326-african-girl-in-an-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000326-african-girl-in-an-ankara-dress.jpeg',NULL,NULL,10260,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10260,'jpeg',NULL,NULL,267,400),(327,15,9,1360,4,'African girl in an ankara dress','Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Seated, Sitting, Log, Wood, Dry, Leaves, Thicket, Bush, Tree, Trees','2018-01-03 11:57:53','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000327-african-girl-in-an-ankara-dress.jpeg',NULL,60,1,'20503199',15,4016,6016,120,40,0,0,NULL,NULL,'Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Seated, Sitting, Log, Wood, Dry, Leaves, Thicket, Bush, Tree, Trees',NULL,1,'20503199','img_5e0e09f8e91f8.jpeg','thumb_suraimages-1000327-african-girl-in-an-ankara-dress.jpeg','preview_suraimages-1000327-african-girl-in-an-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000327-african-girl-in-an-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000327-african-girl-in-an-ankara-dress.jpeg',NULL,NULL,10261,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10261,'jpeg',NULL,NULL,267,400),(328,15,9,1360,4,'African girl in an ankara dress','Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Seated, Sitting, Log, Wood, Dry, Leaves, Thicket, Bush,','2018-01-03 11:57:54','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000328-african-girl-in-an-ankara-dress.jpeg',NULL,60,1,'20503199',15,4016,6016,120,40,0,0,NULL,NULL,'Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Seated, Sitting, Log, Wood, Dry, Leaves, Thicket, Bush,',NULL,1,'20503199','img_5e0e09fe75feb.jpeg','thumb_suraimages-1000328-african-girl-in-an-ankara-dress.jpeg','preview_suraimages-1000328-african-girl-in-an-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000328-african-girl-in-an-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000328-african-girl-in-an-ankara-dress.jpeg',NULL,NULL,10262,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10262,'jpeg',NULL,NULL,267,400),(329,15,9,1360,4,'African girl in an ankara dress','Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Seated, Sitting, Log, Wood, Dry, Leaves, Thicket, Bush, Tree, Trees','2018-01-03 11:57:56','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000329-african-girl-in-an-ankara-dress.jpeg',NULL,60,1,'20503199',15,4016,6016,120,40,0,0,NULL,NULL,'Aboretum, Ankara, Colour, Dress, Female, Woman, Girl, Lady, Green, Kente, Kenya, Kitenge, Nairobi, County, Red, Serene, Style, Swag, Young, Youth, Youthful, Seated, Sitting, Log, Wood, Dry, Leaves, Thicket, Bush, Tree, Trees',NULL,1,'20503199','img_5e0e0a049b524.jpeg','thumb_suraimages-1000329-african-girl-in-an-ankara-dress.jpeg','preview_suraimages-1000329-african-girl-in-an-ankara-dress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000329-african-girl-in-an-ankara-dress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000329-african-girl-in-an-ankara-dress.jpeg',NULL,NULL,10263,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10263,'jpeg',NULL,NULL,267,400),(330,15,9,1354,4,'A safari ant quenching thirst','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Water, Droplet, Thirst, Quench','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000330-a-safari-ant-quenching-thirst.jpeg',NULL,30,0,'',15,5214,2933,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Water, Droplet, Thirst, Quench',NULL,1,'','img_5e0e0a0a64b2f.jpeg','thumb_suraimages-1000330-a-safari-ant-quenching-thirst.jpeg','preview_suraimages-1000330-a-safari-ant-quenching-thirst.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000330-a-safari-ant-quenching-thirst.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000330-a-safari-ant-quenching-thirst.jpeg',NULL,NULL,10264,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10264,'jpeg',NULL,NULL,711,400),(331,15,15,1354,4,'Safari ants quenching thirst','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Water, Droplet, Thirst, Quench','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000331-safari-ants-quenching-thirst.jpeg',NULL,30,0,'28334668',15,4666,2625,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Water, Droplet, Thirst, Quench',NULL,1,'28334668','img_5e0e0a0e6ec42.jpeg','thumb_suraimages-1000331-safari-ants-quenching-thirst.jpeg','preview_suraimages-1000331-safari-ants-quenching-thirst.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000331-safari-ants-quenching-thirst.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000331-safari-ants-quenching-thirst.jpeg',NULL,NULL,10265,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10265,'jpeg',NULL,NULL,711,400),(332,15,15,1354,4,'Safari ants quenching thirst','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Water, Droplet, Thirst, Quench','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000332-safari-ants-quenching-thirst.jpeg',NULL,30,0,'28334668',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Water, Droplet, Thirst, Quench',NULL,1,'28334668','img_5e0e0a1203d6d.jpeg','thumb_suraimages-1000332-safari-ants-quenching-thirst.jpeg','preview_suraimages-1000332-safari-ants-quenching-thirst.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000332-safari-ants-quenching-thirst.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000332-safari-ants-quenching-thirst.jpeg',NULL,NULL,10266,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10266,'jpeg',NULL,NULL,604,400),(333,15,15,1354,4,'Safari ants quenching thirst','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Water, Droplet, Thirst, Quench','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000333-safari-ants-quenching-thirst.jpeg',NULL,30,0,'28334668',15,5936,3339,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Water, Droplet, Thirst, Quench',NULL,1,'28334668','img_5e0e0a17e6603.jpeg','thumb_suraimages-1000333-safari-ants-quenching-thirst.jpeg','preview_suraimages-1000333-safari-ants-quenching-thirst.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000333-safari-ants-quenching-thirst.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000333-safari-ants-quenching-thirst.jpeg',NULL,NULL,10267,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10267,'jpeg',NULL,NULL,711,400),(334,15,15,1354,4,'A safari ant carrying a pupa','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000334-a-safari-ant-carrying-a-pupa.jpeg',NULL,30,0,'94580115',15,3374,2235,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae',NULL,1,'94580115','img_5e0e0a1dbc31e.jpeg','thumb_suraimages-1000334-a-safari-ant-carrying-a-pupa.jpeg','preview_suraimages-1000334-a-safari-ant-carrying-a-pupa.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000334-a-safari-ant-carrying-a-pupa.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000334-a-safari-ant-carrying-a-pupa.jpeg',NULL,NULL,10268,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10268,'jpeg',NULL,NULL,604,400),(335,15,15,1354,4,'Safari ants carrying their pupae','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000335-safari-ants-carrying-their-pupae.jpeg',NULL,30,0,'94580115',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae',NULL,1,'94580115','img_5e0e0a20357f5.jpeg','thumb_suraimages-1000335-safari-ants-carrying-their-pupae.jpeg','preview_suraimages-1000335-safari-ants-carrying-their-pupae.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000335-safari-ants-carrying-their-pupae.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000335-safari-ants-carrying-their-pupae.jpeg',NULL,NULL,10269,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10269,'jpeg',NULL,NULL,604,400),(336,15,15,1354,4,'A safari ant carrying a pupa','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000336-a-safari-ant-carrying-a-pupa.jpeg',NULL,30,0,'94580115',15,4928,3095,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae',NULL,1,'94580115','img_5e0e0a2610305.jpeg','thumb_suraimages-1000336-a-safari-ant-carrying-a-pupa.jpeg','preview_suraimages-1000336-a-safari-ant-carrying-a-pupa.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000336-a-safari-ant-carrying-a-pupa.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000336-a-safari-ant-carrying-a-pupa.jpeg',NULL,NULL,10270,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10270,'jpeg',NULL,NULL,637,400),(337,15,15,1354,4,'A safari ant carrying a pupa','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000337-a-safari-ant-carrying-a-pupa.jpeg',NULL,30,0,'94580115',15,3876,2371,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae',NULL,1,'94580115','img_5e0e0a2c0d75e.jpeg','thumb_suraimages-1000337-a-safari-ant-carrying-a-pupa.jpeg','preview_suraimages-1000337-a-safari-ant-carrying-a-pupa.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000337-a-safari-ant-carrying-a-pupa.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000337-a-safari-ant-carrying-a-pupa.jpeg',NULL,NULL,10271,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10271,'jpeg',NULL,NULL,654,400),(338,15,15,1354,4,'Ant on top of a leaf','Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000338-ant-on-top-of-a-leaf.jpeg',NULL,30,0,'',15,4462,2882,60,20,0,0,NULL,NULL,'Abdomen, Ants, Background, Blurred, Blurry, Brown, Carrying, Close-up, Colony, Green, Head, Insects, Kenya, Macro, Migrating, Nairobi, County, Nature, Photography, Safari, Standing, Subject, Teamwork, Thorax, Walking, Legs, Pupa, Pupae',NULL,1,'','img_5e0e0a2f3ba26.jpeg','thumb_suraimages-1000338-ant-on-top-of-a-leaf.jpeg','preview_suraimages-1000338-ant-on-top-of-a-leaf.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000338-ant-on-top-of-a-leaf.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000338-ant-on-top-of-a-leaf.jpeg',NULL,NULL,10272,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10272,'jpeg',NULL,NULL,619,400),(339,15,15,1354,4,'Bee','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 15:27:25','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000339-bee.jpeg',NULL,30,0,'50036399',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'50036399','img_5e0e0a326ee02.jpeg','thumb_suraimages-1000339-bee.jpeg','preview_suraimages-1000339-bee.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000339-bee.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000339-bee.jpeg',NULL,NULL,10273,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10273,'jpeg',NULL,NULL,604,400),(340,15,15,1354,4,'Bee collecting nectar','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 15:27:25','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000340-bee-collecting-nectar.jpeg',NULL,30,0,'58115755',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'58115755','img_5e0e0a379642d.jpeg','thumb_suraimages-1000340-bee-collecting-nectar.jpeg','preview_suraimages-1000340-bee-collecting-nectar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000340-bee-collecting-nectar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000340-bee-collecting-nectar.jpeg',NULL,NULL,10274,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10274,'jpeg',NULL,NULL,604,400),(341,15,15,1354,4,'Bee collecting nectar','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 15:27:23','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000341-bee-collecting-nectar.jpeg',NULL,30,0,'58115755',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'58115755','img_5e0e0a3da287d.jpeg','thumb_suraimages-1000341-bee-collecting-nectar.jpeg','preview_suraimages-1000341-bee-collecting-nectar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000341-bee-collecting-nectar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000341-bee-collecting-nectar.jpeg',NULL,NULL,10275,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10275,'jpeg',NULL,NULL,604,400),(342,15,15,1354,4,'Bee collecting nectar','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 15:27:25','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000342-bee-collecting-nectar.jpeg',NULL,30,0,'50036399',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'50036399','img_5e0e0a43a222c.jpeg','thumb_suraimages-1000342-bee-collecting-nectar.jpeg','preview_suraimages-1000342-bee-collecting-nectar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000342-bee-collecting-nectar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000342-bee-collecting-nectar.jpeg',NULL,NULL,10276,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10276,'jpeg',NULL,NULL,604,400),(343,15,15,1354,4,'Bee collecting nectar','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 15:27:22','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000343-bee-collecting-nectar.jpeg',NULL,30,0,'50036399',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'50036399','img_5e0e0a48a7738.jpeg','thumb_suraimages-1000343-bee-collecting-nectar.jpeg','preview_suraimages-1000343-bee-collecting-nectar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000343-bee-collecting-nectar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000343-bee-collecting-nectar.jpeg',NULL,NULL,10277,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10277,'jpeg',NULL,NULL,604,400),(344,15,15,1354,4,'Bee collecting nectar','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 15:27:25','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000344-bee-collecting-nectar.jpeg',NULL,30,0,'50036399',15,4928,2818,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'50036399','img_5e0e0a4ded6e4.jpeg','thumb_suraimages-1000344-bee-collecting-nectar.jpeg','preview_suraimages-1000344-bee-collecting-nectar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000344-bee-collecting-nectar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000344-bee-collecting-nectar.jpeg',NULL,NULL,10278,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10278,'jpeg',NULL,NULL,700,400),(345,15,15,1354,4,'Honey Bee collecting nectar','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000345-honey-bee-collecting-nectar.jpeg',NULL,30,0,'',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'','img_5e0e0a5143eac.jpeg','thumb_suraimages-1000345-honey-bee-collecting-nectar.jpeg','preview_suraimages-1000345-honey-bee-collecting-nectar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000345-honey-bee-collecting-nectar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000345-honey-bee-collecting-nectar.jpeg',NULL,NULL,10279,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10279,'jpeg',NULL,NULL,604,400),(346,15,15,1354,4,'Honey Bee collecting nectar','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000346-honey-bee-collecting-nectar.jpeg',NULL,30,0,'',15,4193,2777,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'','img_5e0e0a57acf24.jpeg','thumb_suraimages-1000346-honey-bee-collecting-nectar.jpeg','preview_suraimages-1000346-honey-bee-collecting-nectar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000346-honey-bee-collecting-nectar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000346-honey-bee-collecting-nectar.jpeg',NULL,NULL,10280,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10280,'jpeg',NULL,NULL,604,400),(347,15,15,1354,4,'Honey Bee collecting nectar','Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000347-honey-bee-collecting-nectar.jpeg',NULL,30,0,'',15,4928,3264,60,20,0,0,NULL,NULL,'Abdomen, Antenna, Background, Bees, Black, Blurred, Blurry, Close-up, Collecting, Collect, Colour, Eye, Compound, Flower, Flowers, Fly, Flying, Green, Hanging, Harvest, HeadInsects , Macro, Nairobi, City, Nature, Nectar, Photography, Pollen, Grain, Subject, Thorax, Yellow',NULL,1,'','img_5e0e0a5b001c3.jpeg','thumb_suraimages-1000347-honey-bee-collecting-nectar.jpeg','preview_suraimages-1000347-honey-bee-collecting-nectar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000347-honey-bee-collecting-nectar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000347-honey-bee-collecting-nectar.jpeg',NULL,NULL,10281,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10281,'jpeg',NULL,NULL,604,400),(348,15,15,1354,4,'Black beetle resting on a yellow flower','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000348-black-beetle-resting-on-a-yellow-flower.jpeg',NULL,30,0,'',15,6112,3686,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'','img_5e0e0a6245f31.jpeg','thumb_suraimages-1000348-black-beetle-resting-on-a-yellow-flower.jpeg','preview_suraimages-1000348-black-beetle-resting-on-a-yellow-flower.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000348-black-beetle-resting-on-a-yellow-flower.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000348-black-beetle-resting-on-a-yellow-flower.jpeg',NULL,NULL,10285,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10285,'jpeg',NULL,NULL,663,400),(349,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000349-beetle.jpeg',NULL,30,0,'71492941',15,3968,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'71492941','img_5e0e0a67aef11.jpeg','thumb_suraimages-1000349-beetle.jpeg','preview_suraimages-1000349-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000349-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000349-beetle.jpeg',NULL,NULL,10286,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10286,'jpeg',NULL,NULL,486,400),(350,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000350-beetle.jpeg',NULL,30,0,'71492941',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'71492941','img_5e0e0a6a96cd5.jpeg','thumb_suraimages-1000350-beetle.jpeg','preview_suraimages-1000350-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000350-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000350-beetle.jpeg',NULL,NULL,10288,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10288,'jpeg',NULL,NULL,604,400),(351,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000351-beetle.jpeg',NULL,30,0,'71492941',15,4453,2505,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'71492941','img_5e0e0a7063a12.jpeg','thumb_suraimages-1000351-beetle.jpeg','preview_suraimages-1000351-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000351-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000351-beetle.jpeg',NULL,NULL,10290,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10290,'jpeg',NULL,NULL,711,400),(352,15,15,1354,4,'A yellow beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000352-a-yellow-beetle.jpeg',NULL,30,0,'',15,4194,2909,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'','img_5e0e0a7383b13.jpeg','thumb_suraimages-1000352-a-yellow-beetle.jpeg','preview_suraimages-1000352-a-yellow-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000352-a-yellow-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000352-a-yellow-beetle.jpeg',NULL,NULL,10291,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10291,'jpeg',NULL,NULL,577,400),(353,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000353-beetle.jpeg',NULL,30,0,'10271457',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'10271457','img_5e0e0a76f2a48.jpeg','thumb_suraimages-1000353-beetle.jpeg','preview_suraimages-1000353-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000353-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000353-beetle.jpeg',NULL,NULL,10292,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10292,'jpeg',NULL,NULL,604,400),(354,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000354-beetle.jpeg',NULL,30,0,'10271457',15,4609,3204,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'10271457','img_5e0e0a7ac735e.jpeg','thumb_suraimages-1000354-beetle.jpeg','preview_suraimages-1000354-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000354-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000354-beetle.jpeg',NULL,NULL,10293,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10293,'jpeg',NULL,NULL,575,400),(355,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000355-beetle.jpeg',NULL,30,0,'10271457',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'10271457','img_5e0e0a7fa90d3.jpeg','thumb_suraimages-1000355-beetle.jpeg','preview_suraimages-1000355-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000355-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000355-beetle.jpeg',NULL,NULL,10294,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10294,'jpeg',NULL,NULL,604,400),(356,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000356-beetle.jpeg',NULL,30,0,'10271457',15,4440,3045,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'10271457','img_5e0e0a867e807.jpeg','thumb_suraimages-1000356-beetle.jpeg','preview_suraimages-1000356-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000356-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000356-beetle.jpeg',NULL,NULL,10295,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10295,'jpeg',NULL,NULL,583,400),(357,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000357-beetle.jpeg',NULL,30,0,'03785994',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'03785994','img_5e0e0a8a3dea9.jpeg','thumb_suraimages-1000357-beetle.jpeg','preview_suraimages-1000357-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000357-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000357-beetle.jpeg',NULL,NULL,10296,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10296,'jpeg',NULL,NULL,604,400),(358,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000358-beetle.jpeg',NULL,30,0,'03785994',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'03785994','img_5e0e0a903b3e4.jpeg','thumb_suraimages-1000358-beetle.jpeg','preview_suraimages-1000358-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000358-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000358-beetle.jpeg',NULL,NULL,10297,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10297,'jpeg',NULL,NULL,604,400),(359,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000359-beetle.jpeg',NULL,30,0,'03785994',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'03785994','img_5e0e0a96154bb.jpeg','thumb_suraimages-1000359-beetle.jpeg','preview_suraimages-1000359-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000359-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000359-beetle.jpeg',NULL,NULL,10298,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10298,'jpeg',NULL,NULL,604,400),(360,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000360-beetle.jpeg',NULL,30,0,'03785994',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'03785994','img_5e0e0a9c4663e.jpeg','thumb_suraimages-1000360-beetle.jpeg','preview_suraimages-1000360-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000360-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000360-beetle.jpeg',NULL,NULL,10299,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10299,'jpeg',NULL,NULL,604,400),(361,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000361-beetle.jpeg',NULL,30,0,'03785994',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae',NULL,1,'03785994','img_5e0e0aa212410.jpeg','thumb_suraimages-1000361-beetle.jpeg','preview_suraimages-1000361-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000361-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000361-beetle.jpeg',NULL,NULL,10300,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10300,'jpeg',NULL,NULL,604,400),(362,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000362-beetle.jpeg',NULL,30,0,'',15,4374,2970,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae,',NULL,1,'','img_5e0e0aa80e67e.jpeg','thumb_suraimages-1000362-beetle.jpeg','preview_suraimages-1000362-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000362-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000362-beetle.jpeg',NULL,NULL,10301,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10301,'jpeg',NULL,NULL,589,400),(363,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000363-beetle.jpeg',NULL,30,0,'',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae,',NULL,1,'','img_5e0e0aab41aaa.jpeg','thumb_suraimages-1000363-beetle.jpeg','preview_suraimages-1000363-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000363-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000363-beetle.jpeg',NULL,NULL,10302,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10302,'jpeg',NULL,NULL,604,400),(364,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000364-beetle.jpeg',NULL,30,0,'',15,4291,2842,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae,',NULL,1,'','img_5e0e0aafa7dbc.jpeg','thumb_suraimages-1000364-beetle.jpeg','preview_suraimages-1000364-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000364-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000364-beetle.jpeg',NULL,NULL,10303,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10303,'jpeg',NULL,NULL,604,400),(365,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000365-beetle.jpeg',NULL,30,0,'',15,3543,2347,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae,',NULL,1,'','img_5e0e0ab2dcc7d.jpeg','thumb_suraimages-1000365-beetle.jpeg','preview_suraimages-1000365-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000365-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000365-beetle.jpeg',NULL,NULL,10304,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10304,'jpeg',NULL,NULL,604,400),(366,15,15,1354,4,'Two black beetles mating','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae, Mating','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000366-two-black-beetles-mating.jpeg',NULL,30,0,'',15,4849,2728,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Yellow, Antennae, Mating',NULL,1,'','img_5e0e0ab4ceab4.jpeg','thumb_suraimages-1000366-two-black-beetles-mating.jpeg','preview_suraimages-1000366-two-black-beetles-mating.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000366-two-black-beetles-mating.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000366-two-black-beetles-mating.jpeg',NULL,NULL,10305,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10305,'jpeg',NULL,NULL,711,400),(367,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Texture','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000367-beetle.jpeg',NULL,30,0,'55555274',15,4928,2772,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Texture',NULL,1,'55555274','img_5e0e0ab8aa6c7.jpeg','thumb_suraimages-1000367-beetle.jpeg','preview_suraimages-1000367-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000367-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000367-beetle.jpeg',NULL,NULL,10306,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10306,'jpeg',NULL,NULL,711,400),(368,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Texture','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000368-beetle.jpeg',NULL,30,0,'55555274',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Texture',NULL,1,'55555274','img_5e0e0abcc4506.jpeg','thumb_suraimages-1000368-beetle.jpeg','preview_suraimages-1000368-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000368-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000368-beetle.jpeg',NULL,NULL,10307,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10307,'jpeg',NULL,NULL,604,400),(369,15,15,1354,4,'Two beetles mating','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Mating','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000369-two-beetles-mating.jpeg',NULL,30,0,'14700114',15,4168,3126,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nairobi, County, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Mating',NULL,1,'14700114','img_5e0e0ac3589f2.jpeg','thumb_suraimages-1000369-two-beetles-mating.jpeg','preview_suraimages-1000369-two-beetles-mating.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000369-two-beetles-mating.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000369-two-beetles-mating.jpeg',NULL,NULL,10308,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10308,'jpeg',NULL,NULL,533,400),(370,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Texture, Back, Fluffy, Top, View','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000370-beetle.jpeg',NULL,30,0,'21979517',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Texture, Back, Fluffy, Top, View',NULL,1,'21979517','img_5e0e0ac7bee0d.jpeg','thumb_suraimages-1000370-beetle.jpeg','preview_suraimages-1000370-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000370-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000370-beetle.jpeg',NULL,NULL,10309,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10309,'jpeg',NULL,NULL,604,400),(371,15,15,1354,4,'Beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Fluffy, Side, View','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000371-beetle.jpeg',NULL,30,0,'21979517',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Fluffy, Side, View',NULL,1,'21979517','img_5e0e0acdb1a76.jpeg','thumb_suraimages-1000371-beetle.jpeg','preview_suraimages-1000371-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000371-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000371-beetle.jpeg',NULL,NULL,10310,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10310,'jpeg',NULL,NULL,604,400),(372,15,15,1354,4,'Two beetles mating','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000372-two-beetles-mating.jpeg',NULL,30,0,'14700114',15,3163,2095,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves',NULL,1,'14700114','img_5e0e0ad3c3571.jpeg','thumb_suraimages-1000372-two-beetles-mating.jpeg','preview_suraimages-1000372-two-beetles-mating.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000372-two-beetles-mating.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000372-two-beetles-mating.jpeg',NULL,NULL,10311,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10311,'jpeg',NULL,NULL,604,400),(373,15,15,1354,4,'Standing beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000373-standing-beetle.jpeg',NULL,30,0,'94411472',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown',NULL,1,'94411472','img_5e0e0ad5d70a5.jpeg','thumb_suraimages-1000373-standing-beetle.jpeg','preview_suraimages-1000373-standing-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000373-standing-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000373-standing-beetle.jpeg',NULL,NULL,10312,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10312,'jpeg',NULL,NULL,604,400),(374,15,15,1354,4,'Standing beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000374-standing-beetle.jpeg',NULL,30,0,'94411472',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown',NULL,1,'94411472','img_5e0e0ada3071c.jpeg','thumb_suraimages-1000374-standing-beetle.jpeg','preview_suraimages-1000374-standing-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000374-standing-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000374-standing-beetle.jpeg',NULL,NULL,10313,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10313,'jpeg',NULL,NULL,604,400),(375,15,15,1354,4,'Standing beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000375-standing-beetle.jpeg',NULL,30,0,'94411472',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown',NULL,1,'94411472','img_5e0e0ade2b665.jpeg','thumb_suraimages-1000375-standing-beetle.jpeg','preview_suraimages-1000375-standing-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000375-standing-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000375-standing-beetle.jpeg',NULL,NULL,10314,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10314,'jpeg',NULL,NULL,604,400),(376,15,15,1354,4,'Standing beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000376-standing-beetle.jpeg',NULL,30,0,'94411472',15,4788,2970,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown',NULL,1,'94411472','img_5e0e0ae2339d3.jpeg','thumb_suraimages-1000376-standing-beetle.jpeg','preview_suraimages-1000376-standing-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000376-standing-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000376-standing-beetle.jpeg',NULL,NULL,10315,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10315,'jpeg',NULL,NULL,645,400),(377,15,15,1354,4,'Standing beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000377-standing-beetle.jpeg',NULL,30,0,'94411472',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves, Brown',NULL,1,'94411472','img_5e0e0ae557a40.jpeg','thumb_suraimages-1000377-standing-beetle.jpeg','preview_suraimages-1000377-standing-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000377-standing-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000377-standing-beetle.jpeg',NULL,NULL,10316,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10316,'jpeg',NULL,NULL,604,400),(378,15,15,1354,4,'A yellow beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000378-a-yellow-beetle.jpeg',NULL,30,0,'',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves,',NULL,1,'','img_5e0e0ae9b9956.jpeg','thumb_suraimages-1000378-a-yellow-beetle.jpeg','preview_suraimages-1000378-a-yellow-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000378-a-yellow-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000378-a-yellow-beetle.jpeg',NULL,NULL,10317,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10317,'jpeg',NULL,NULL,604,400),(379,15,15,1354,4,'A yellow beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000379-a-yellow-beetle.jpeg',NULL,30,0,'67147173',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves,',NULL,1,'67147173','img_5e0e0aeeda7bf.jpeg','thumb_suraimages-1000379-a-yellow-beetle.jpeg','preview_suraimages-1000379-a-yellow-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000379-a-yellow-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000379-a-yellow-beetle.jpeg',NULL,NULL,10318,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10318,'jpeg',NULL,NULL,604,400),(380,15,15,1354,4,'A yellow beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000380-a-yellow-beetle.jpeg',NULL,30,0,'67147173',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves,',NULL,1,'67147173','img_5e0e0af43edd4.jpeg','thumb_suraimages-1000380-a-yellow-beetle.jpeg','preview_suraimages-1000380-a-yellow-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000380-a-yellow-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000380-a-yellow-beetle.jpeg',NULL,NULL,10319,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10319,'jpeg',NULL,NULL,604,400),(381,15,15,1354,4,'A yellow beetle','Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000381-a-yellow-beetle.jpeg',NULL,30,0,'67147173',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Beetles, Beetle, Blurred, Blurry, Close-up, Colourful, Vibrant, Hanging, Insects, Kenya, Macro, Nature, Photography, Resting, Standing, Subject, Walking, Antennae, Leaf, Leaves,',NULL,1,'67147173','img_5e0e0af9a17d0.jpeg','thumb_suraimages-1000381-a-yellow-beetle.jpeg','preview_suraimages-1000381-a-yellow-beetle.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000381-a-yellow-beetle.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000381-a-yellow-beetle.jpeg',NULL,NULL,10320,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10320,'jpeg',NULL,NULL,604,400),(382,15,15,1354,4,'A young three horned chameleon','Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa, Camouflage','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000382-a-young-three-horned-chameleon.jpeg',NULL,30,0,'',15,4630,3115,60,20,0,0,NULL,NULL,'Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa, Camouflage',NULL,1,'','img_5e0e0afebb480.jpeg','thumb_suraimages-1000382-a-young-three-horned-chameleon.jpeg','preview_suraimages-1000382-a-young-three-horned-chameleon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000382-a-young-three-horned-chameleon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000382-a-young-three-horned-chameleon.jpeg',NULL,NULL,10321,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10321,'jpeg',NULL,NULL,595,400),(383,15,15,1354,4,'Brown gecko','Background, Black, Blurred, Blurry, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, East, Africa, Gecko, Brown, Camouflage','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000383-brown-gecko.jpeg',NULL,30,0,'',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Black, Blurred, Blurry, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, East, Africa, Gecko, Brown, Camouflage',NULL,1,'','img_5e0e0b02af8a5.jpeg','thumb_suraimages-1000383-brown-gecko.jpeg','preview_suraimages-1000383-brown-gecko.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000383-brown-gecko.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000383-brown-gecko.jpeg',NULL,NULL,10322,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10322,'jpeg',NULL,NULL,604,400),(384,15,15,1354,4,'Chameleon skin texture','Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa, Camouflage','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000384-chameleon-skin-texture.jpeg',NULL,30,0,'95821571',15,4264,2843,60,20,0,0,NULL,NULL,'Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa, Camouflage',NULL,1,'95821571','img_5e0e0b0a065e4.jpeg','thumb_suraimages-1000384-chameleon-skin-texture.jpeg','preview_suraimages-1000384-chameleon-skin-texture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000384-chameleon-skin-texture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000384-chameleon-skin-texture.jpeg',NULL,NULL,10323,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10323,'jpeg',NULL,NULL,600,400),(385,15,15,1354,4,'Jackson\'s Horned Chameleon','Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa, Camouflage','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000385-jackson-s-horned-chameleon.jpeg',NULL,30,0,'95821571',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa, Camouflage',NULL,1,'95821571','img_5e0e0b0da6cef.jpeg','thumb_suraimages-1000385-jackson-s-horned-chameleon.jpeg','preview_suraimages-1000385-jackson-s-horned-chameleon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000385-jackson-s-horned-chameleon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000385-jackson-s-horned-chameleon.jpeg',NULL,NULL,10324,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10324,'jpeg',NULL,NULL,604,400),(386,15,15,1354,4,'Jackson\'s Horned Chameleon','Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa, Camouflage','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000386-jackson-s-horned-chameleon.jpeg',NULL,30,0,'95821571',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa, Camouflage',NULL,1,'95821571','img_5e0e0b136ae3e.jpeg','thumb_suraimages-1000386-jackson-s-horned-chameleon.jpeg','preview_suraimages-1000386-jackson-s-horned-chameleon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000386-jackson-s-horned-chameleon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000386-jackson-s-horned-chameleon.jpeg',NULL,NULL,10325,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10325,'jpeg',NULL,NULL,604,400),(387,15,15,1354,4,'A close-up of young chameleon claws','Baby, Background, Blurred, Blurry, Camouflage, Chameleon, Claws, Close-up, Colour, Finger, Fingers, Green, Grip, Holding, Hands, Hand, Macro, Nature, Photography, Reptile, Reptiles, Resting, Skin, Texture, Standing, Subject, Tiny, Walking','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000387-a-close-up-of-young-chameleon-claws.jpeg',NULL,30,0,'18777151',15,4928,3264,60,20,0,0,NULL,NULL,'Baby, Background, Blurred, Blurry, Camouflage, Chameleon, Claws, Close-up, Colour, Finger, Fingers, Green, Grip, Holding, Hands, Hand, Macro, Nature, Photography, Reptile, Reptiles, Resting, Skin, Texture, Standing, Subject, Tiny, Walking',NULL,1,'18777151','img_5e0e0b1968817.jpeg','thumb_suraimages-1000387-a-close-up-of-young-chameleon-claws.jpeg','preview_suraimages-1000387-a-close-up-of-young-chameleon-claws.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000387-a-close-up-of-young-chameleon-claws.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000387-a-close-up-of-young-chameleon-claws.jpeg',NULL,NULL,10326,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10326,'jpeg',NULL,NULL,604,400),(388,15,15,1354,4,'A close-up of young chameleon claws','Baby, Background, Blurred, Blurry, Camouflage, Chameleon, Claws, Close-up, Colour, Finger, Fingers, Green, Grip, Holding, Hands, Hand, Macro, Nature, Photography, Reptile, Reptiles, Resting, Skin, Texture, Standing, Subject, Tiny, Walking','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000388-a-close-up-of-young-chameleon-claws.jpeg',NULL,30,0,'18777151',15,4928,3264,60,20,0,0,NULL,NULL,'Baby, Background, Blurred, Blurry, Camouflage, Chameleon, Claws, Close-up, Colour, Finger, Fingers, Green, Grip, Holding, Hands, Hand, Macro, Nature, Photography, Reptile, Reptiles, Resting, Skin, Texture, Standing, Subject, Tiny, Walking',NULL,1,'18777151','img_5e0e0b1f170f9.jpeg','thumb_suraimages-1000388-a-close-up-of-young-chameleon-claws.jpeg','preview_suraimages-1000388-a-close-up-of-young-chameleon-claws.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000388-a-close-up-of-young-chameleon-claws.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000388-a-close-up-of-young-chameleon-claws.jpeg',NULL,NULL,10327,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10327,'jpeg',NULL,NULL,604,400),(389,15,15,1354,4,'Chameleon skin texture','Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000389-chameleon-skin-texture.jpeg',NULL,30,0,'95821571',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Round, Big, Eyes, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, Trioceros, Jacksonii, East, Africa',NULL,1,'95821571','img_5e0e0b2436e03.jpeg','thumb_suraimages-1000389-chameleon-skin-texture.jpeg','preview_suraimages-1000389-chameleon-skin-texture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000389-chameleon-skin-texture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000389-chameleon-skin-texture.jpeg',NULL,NULL,10328,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10328,'jpeg',NULL,NULL,604,400),(390,15,15,1354,4,'Jackson\'s horned chameleon','Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Resting, Round, Big, Eyes, Scales, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, East, Africa','2018-01-05 16:35:43','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000390-jackson-s-horned-chameleon.jpeg',NULL,30,0,'98821571',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Resting, Round, Big, Eyes, Scales, Skin, Texture, Standing, Subject, Three, 3, Horn, Horns, Horned, East, Africa',NULL,1,'98821571','img_5e0e0b2a5d5f0.jpeg','thumb_suraimages-1000390-jackson-s-horned-chameleon.jpeg','preview_suraimages-1000390-jackson-s-horned-chameleon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000390-jackson-s-horned-chameleon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000390-jackson-s-horned-chameleon.jpeg',NULL,NULL,10329,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10329,'jpeg',NULL,NULL,604,400),(391,15,15,1354,4,'Brown gecko','Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Resting, Standing, Subject, Walking, Gecko','2018-01-05 16:35:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000391-brown-gecko.jpeg',NULL,30,0,'53116150',15,3696,2448,60,20,0,0,NULL,NULL,'Background, Black, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Green, Looking, Macro, Nature, Photography, Reptile, Reptiles, Resting, Standing, Subject, Walking, Gecko',NULL,1,'53116150','img_5e0e0b309529d.jpeg','thumb_suraimages-1000391-brown-gecko.jpeg','preview_suraimages-1000391-brown-gecko.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000391-brown-gecko.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000391-brown-gecko.jpeg',NULL,NULL,10330,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10330,'jpeg',NULL,NULL,604,400),(392,15,15,1354,4,'A close-up of young chameleon tail','Baby, Background, Blurred, Blurry, Camouflage, Chameleon, Claws, Close-up, Colour, Finger, Fingers, Green, Grip, Holding, Hands, Hand, Macro, Nature, Photography, Reptile, Reptiles, Resting, Skin, Texture, Standing, Subject, Tiny, Walking','2018-01-05 16:35:46','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000392-a-close-up-of-young-chameleon-tail.jpeg',NULL,30,0,'18777151',15,4928,3264,60,20,0,0,NULL,NULL,'Baby, Background, Blurred, Blurry, Camouflage, Chameleon, Claws, Close-up, Colour, Finger, Fingers, Green, Grip, Holding, Hands, Hand, Macro, Nature, Photography, Reptile, Reptiles, Resting, Skin, Texture, Standing, Subject, Tiny, Walking',NULL,1,'18777151','img_5e0e0b333b8f8.jpeg','thumb_suraimages-1000392-a-close-up-of-young-chameleon-tail.jpeg','preview_suraimages-1000392-a-close-up-of-young-chameleon-tail.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000392-a-close-up-of-young-chameleon-tail.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000392-a-close-up-of-young-chameleon-tail.jpeg',NULL,NULL,10331,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10331,'jpeg',NULL,NULL,604,400),(393,15,15,1354,4,'A close-up of young chameleon claws','Baby, Background, Blurred, Blurry, Camouflage, Chameleon, Claws, Close-up, Colour, Finger, Fingers, Green, Grip, Holding, Hands, Hand, Macro, Nature, Photography, Reptile, Reptiles, Resting, Skin, Texture, Standing, Subject, Tiny, Walking','2018-01-05 16:35:47','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000393-a-close-up-of-young-chameleon-claws.jpeg',NULL,30,0,'18777151',15,4928,3264,60,20,0,0,NULL,NULL,'Baby, Background, Blurred, Blurry, Camouflage, Chameleon, Claws, Close-up, Colour, Finger, Fingers, Green, Grip, Holding, Hands, Hand, Macro, Nature, Photography, Reptile, Reptiles, Resting, Skin, Texture, Standing, Subject, Tiny, Walking',NULL,1,'18777151','img_5e0e0b3a5b910.jpeg','thumb_suraimages-1000393-a-close-up-of-young-chameleon-claws.jpeg','preview_suraimages-1000393-a-close-up-of-young-chameleon-claws.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000393-a-close-up-of-young-chameleon-claws.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000393-a-close-up-of-young-chameleon-claws.jpeg',NULL,NULL,10332,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10332,'jpeg',NULL,NULL,604,400),(394,15,15,1354,4,'A chameleon hiding','Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage, Hiding','2018-01-05 16:35:49','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000394-a-chameleon-hiding.jpeg',NULL,30,0,'55515514',15,4842,3178,60,20,0,0,NULL,NULL,'Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage, Hiding',NULL,1,'55515514','img_5e0e0b407e6e2.jpeg','thumb_suraimages-1000394-a-chameleon-hiding.jpeg','preview_suraimages-1000394-a-chameleon-hiding.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000394-a-chameleon-hiding.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000394-a-chameleon-hiding.jpeg',NULL,NULL,10333,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10333,'jpeg',NULL,NULL,609,400),(395,15,15,1354,4,'Chameleon','Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage,','2018-01-05 16:57:31','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000395-chameleon.jpeg',NULL,30,0,'55515514',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage,',NULL,1,'55515514','img_5e0e0b4a1472c.jpeg','thumb_suraimages-1000395-chameleon.jpeg','preview_suraimages-1000395-chameleon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000395-chameleon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000395-chameleon.jpeg',NULL,NULL,10334,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10334,'jpeg',NULL,NULL,604,400),(396,15,15,1354,4,'Chameleon','Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage,','2018-01-05 16:57:33','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000396-chameleon.jpeg',NULL,30,0,'55515514',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage,',NULL,1,'55515514','img_5e0e0b5147789.jpeg','thumb_suraimages-1000396-chameleon.jpeg','preview_suraimages-1000396-chameleon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000396-chameleon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000396-chameleon.jpeg',NULL,NULL,10335,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10335,'jpeg',NULL,NULL,604,400),(397,15,15,1354,4,'Chameleon','Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage, Hiding, Walking, Standing,','2018-01-05 16:57:35','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000397-chameleon.jpeg',NULL,30,0,'55515514',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage, Hiding, Walking, Standing,',NULL,1,'55515514','img_5e0e0b57d2cb3.jpeg','thumb_suraimages-1000397-chameleon.jpeg','preview_suraimages-1000397-chameleon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000397-chameleon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000397-chameleon.jpeg',NULL,NULL,10336,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10336,'jpeg',NULL,NULL,604,400),(398,15,15,1354,4,'Chameleon','Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage, Hiding, Walking, Standing,','2018-01-05 16:57:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000398-chameleon.jpeg',NULL,30,0,'55515514',15,4928,3264,60,20,0,0,NULL,NULL,'Background, Blurred, Blurry, Chameleon, Change, Changing, Close-up, Colour, Flower, Garden, Green, Looking, Macro, Photography, Reptile, Reptiles, Resting, Standing, Subject, East, Africa, Camouflage, Hiding, Walking, Standing,',NULL,1,'55515514','img_5e0e0b5dee715.jpeg','thumb_suraimages-1000398-chameleon.jpeg','preview_suraimages-1000398-chameleon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000398-chameleon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000398-chameleon.jpeg',NULL,NULL,10337,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10337,'jpeg',NULL,NULL,604,400),(399,16,16,1358,4,'A young elephant transversing the Mara National Park','Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism','2018-02-27 18:14:48','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000399-a-young-elephant-transversing-the-mara-national-park.jpeg',NULL,25,0,'40552949',15,4149,2765,50,17,0,0,NULL,NULL,'Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism',NULL,1,'40552949','img_5e0e0b64c8b13.jpeg','thumb_suraimages-1000399-a-young-elephant-transversing-the-mara-national-park.jpeg','preview_suraimages-1000399-a-young-elephant-transversing-the-mara-national-park.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000399-a-young-elephant-transversing-the-mara-national-park.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000399-a-young-elephant-transversing-the-mara-national-park.jpeg',NULL,NULL,10368,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10368,'jpeg',NULL,NULL,600,400),(400,9,16,1358,4,'A young elephant transversing the Mara National Park','Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism','2018-02-27 22:56:11','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000400-a-young-elephant-transversing-the-mara-national-park.jpeg',NULL,25,0,'40552949',15,4149,2765,50,17,0,0,NULL,NULL,'Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism',NULL,1,'40552949','img_5e0e0b67b9059.jpeg','thumb_suraimages-1000400-a-young-elephant-transversing-the-mara-national-park.jpeg','preview_suraimages-1000400-a-young-elephant-transversing-the-mara-national-park.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000400-a-young-elephant-transversing-the-mara-national-park.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000400-a-young-elephant-transversing-the-mara-national-park.jpeg',NULL,NULL,10369,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10369,'jpeg',NULL,NULL,600,400),(401,9,9,1363,4,'Watamu sunset','African, Africa, Black, Dark, Boat, Evening, Fishing, Kenya, Night, Fall, Ocean, Serene, Sun, Sunset, Dusk, Rays, Sundowner, Tranquility, WatamuCoast, Region, County,','2018-02-27 23:01:56','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000401-watamu-sunset.jpeg',NULL,25,1,'',15,5603,3805,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Boat, Evening, Fishing, Kenya, Night, Fall, Ocean, Serene, Sun, Sunset, Dusk, Rays, Sundowner, Tranquility, WatamuCoast, Region, County,',NULL,1,'','img_5e0e0b6af2645.jpeg','thumb_suraimages-1000401-watamu-sunset.jpeg','preview_suraimages-1000401-watamu-sunset.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000401-watamu-sunset.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000401-watamu-sunset.jpeg',NULL,NULL,10370,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10370,'jpeg',NULL,NULL,589,400),(402,9,9,1363,4,'Kalacha desert in Marsabit','Desert, Dust, Kalacha, Kenya, Marsabit, Sky, Blue, Daylight, Clouds, Region, Dry,','2018-02-27 23:10:54','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000402-kalacha-desert-in-marsabit.jpeg',NULL,25,0,'',15,5862,3898,50,17,0,0,NULL,NULL,'Desert, Dust, Kalacha, Kenya, Marsabit, Sky, Blue, Daylight, Clouds, Region, Dry,',NULL,1,'','img_5e0e0b7105e75.jpeg','thumb_suraimages-1000402-kalacha-desert-in-marsabit.jpeg','preview_suraimages-1000402-kalacha-desert-in-marsabit.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000402-kalacha-desert-in-marsabit.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000402-kalacha-desert-in-marsabit.jpeg',NULL,NULL,10371,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10371,'jpeg',NULL,NULL,602,400),(403,9,9,1363,4,'Mnarani Fisherman, Kilifi County, Kenya','Blue, Sky, Clouds, Boat, Dhow, Evening, Fishing, Kenya, Kilifi, Ocean, Coast, Region, County','2018-02-27 23:44:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000403-mnarani-fisherman-kilifi-county-kenya.jpeg',NULL,25,1,'',15,3422,2186,50,17,0,0,NULL,NULL,'Blue, Sky, Clouds, Boat, Dhow, Evening, Fishing, Kenya, Kilifi, Ocean, Coast, Region, County',NULL,1,'','img_5e0e0b77619e3.jpeg','thumb_suraimages-1000403-mnarani-fisherman-kilifi-county-kenya.jpeg','preview_suraimages-1000403-mnarani-fisherman-kilifi-county-kenya.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000403-mnarani-fisherman-kilifi-county-kenya.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000403-mnarani-fisherman-kilifi-county-kenya.jpeg',NULL,NULL,10372,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10372,'jpeg',NULL,NULL,626,400),(404,9,9,1363,4,'Goree Island in Senegal','Blue sky, Clouds, , Goree, Home, Houses, Island, Ocean, Outdoor, Residence, Senegal, Serene, Sky, Blue, Daylight, Clouds','2018-02-28 00:01:33','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000404-goree-island-in-senegal.jpeg',NULL,25,0,'',15,4333,2540,50,17,0,0,NULL,NULL,'Blue sky, Clouds, , Goree, Home, Houses, Island, Ocean, Outdoor, Residence, Senegal, Serene, Sky, Blue, Daylight, Clouds',NULL,1,'','img_5e0e0b7990af4.jpeg','thumb_suraimages-1000404-goree-island-in-senegal.jpeg','preview_suraimages-1000404-goree-island-in-senegal.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000404-goree-island-in-senegal.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000404-goree-island-in-senegal.jpeg',NULL,NULL,10373,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10373,'jpeg',NULL,NULL,682,400),(405,15,9,1363,4,'Flamingoes in lake Bogoria','Blue, Sky, Clouds, Bogoria, Baringo, Flamingoes, Kenya, Lake, Sky, Blue, Daylight, Clouds, Tourism, Attraction, Travel, Wildlife, Wild, Kenya,','2018-02-28 00:08:28','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000405-flamingoes-in-lake-bogoria.jpeg',NULL,25,0,'',15,4240,2705,50,17,0,0,NULL,NULL,'Blue, Sky, Clouds, Bogoria, Baringo, Flamingoes, Kenya, Lake, Sky, Blue, Daylight, Clouds, Tourism, Attraction, Travel, Wildlife, Wild, Kenya,',NULL,1,'','img_5e0e0b7cb7849.jpeg','thumb_suraimages-1000405-flamingoes-in-lake-bogoria.jpeg','preview_suraimages-1000405-flamingoes-in-lake-bogoria.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000405-flamingoes-in-lake-bogoria.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000405-flamingoes-in-lake-bogoria.jpeg',NULL,NULL,10374,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10374,'jpeg',NULL,NULL,627,400),(406,9,9,1363,4,'Turkana Homestead','Blue sky, Clouds, , Home, Homestead, Mud, Wall, Outdoor, Sky, Blue, Daylight, Clouds, Thatched, Thatch, Turkana','2018-02-28 00:08:30','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000406-turkana-homestead.jpeg',NULL,25,0,'',15,4398,2864,50,17,0,0,NULL,NULL,'Blue sky, Clouds, , Home, Homestead, Mud, Wall, Outdoor, Sky, Blue, Daylight, Clouds, Thatched, Thatch, Turkana',NULL,1,'','img_5e0e0b7ff3072.jpeg','thumb_suraimages-1000406-turkana-homestead.jpeg','preview_suraimages-1000406-turkana-homestead.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000406-turkana-homestead.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000406-turkana-homestead.jpeg',NULL,NULL,10375,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10375,'jpeg',NULL,NULL,614,400),(407,16,16,1358,4,'Cheetah stocking prey at Masai Mara National park','Mara, Maasai, National, Park, Cheetah, Walking, Browsing, Grazing, Stocking, Hunting, Hunt, Prey, Grassland, Wild, Wildlife, Kenya, Tourism','2018-03-05 22:57:54','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000407-cheetah-stocking-prey-at-masai-mara-national-park.jpeg',NULL,25,0,'',15,4149,2765,50,17,0,0,NULL,NULL,'Mara, Maasai, National, Park, Cheetah, Walking, Browsing, Grazing, Stocking, Hunting, Hunt, Prey, Grassland, Wild, Wildlife, Kenya, Tourism',NULL,1,'','img_5e0e0b837e153.jpeg','thumb_suraimages-1000407-cheetah-stocking-prey-at-masai-mara-national-park.jpeg','preview_suraimages-1000407-cheetah-stocking-prey-at-masai-mara-national-park.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000407-cheetah-stocking-prey-at-masai-mara-national-park.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000407-cheetah-stocking-prey-at-masai-mara-national-park.jpeg',NULL,NULL,10376,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10376,'jpeg',NULL,NULL,600,400),(408,16,16,1358,4,'Two ostrich walking','Mara, Maasai, National, Park, Ostrich, Walking, Away, Behind, Back, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism','2018-03-05 23:46:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000408-two-ostrich-walking.jpeg',NULL,25,0,'',15,4149,2765,50,17,0,0,NULL,NULL,'Mara, Maasai, National, Park, Ostrich, Walking, Away, Behind, Back, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism',NULL,1,'','img_5e0e0b869cbea.jpeg','thumb_suraimages-1000408-two-ostrich-walking.jpeg','preview_suraimages-1000408-two-ostrich-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000408-two-ostrich-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000408-two-ostrich-walking.jpeg',NULL,NULL,10377,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10377,'jpeg',NULL,NULL,600,400),(409,16,16,1358,4,'Big bull elephant','Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism,','2018-03-05 23:46:38','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000409-big-bull-elephant.jpeg',NULL,25,0,'59889859',15,4538,3025,50,17,0,0,NULL,NULL,'Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism,',NULL,1,'59889859','img_5e0e0b8985d8e.jpeg','thumb_suraimages-1000409-big-bull-elephant.jpeg','preview_suraimages-1000409-big-bull-elephant.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000409-big-bull-elephant.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000409-big-bull-elephant.jpeg',NULL,NULL,10378,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10378,'jpeg',NULL,NULL,600,400),(410,16,16,1358,4,'Big bull elephant','Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism,','2018-03-05 23:46:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000410-big-bull-elephant.jpeg',NULL,25,0,'59889859',15,4149,2765,50,17,0,0,NULL,NULL,'Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism,',NULL,1,'59889859','img_5e0e0b8cf2b8d.jpeg','thumb_suraimages-1000410-big-bull-elephant.jpeg','preview_suraimages-1000410-big-bull-elephant.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000410-big-bull-elephant.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000410-big-bull-elephant.jpeg',NULL,NULL,10379,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10379,'jpeg',NULL,NULL,600,400),(411,16,16,1358,4,'Big bull elephant','Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism,','2018-03-05 23:46:40','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000411-big-bull-elephant.jpeg',NULL,25,0,'59889859',15,4149,2765,50,17,0,0,NULL,NULL,'Mara, Maasai, National, Park, Elephant, Walking, Browsing, Grazing, Grassland, Wild, Wildlife, Kenya, Tourism,',NULL,1,'59889859','img_5e0e0b9007771.jpeg','thumb_suraimages-1000411-big-bull-elephant.jpeg','preview_suraimages-1000411-big-bull-elephant.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000411-big-bull-elephant.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000411-big-bull-elephant.jpeg',NULL,NULL,10380,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10380,'jpeg',NULL,NULL,600,400),(412,31,36,1361,4,'Sunrise in Nairobi','sunrise, nairobi, airport, kenya, beautiful, photography, infrastracture','2018-03-26 09:52:17','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000412-sunrise-in-nairobi.jpeg',NULL,32,0,'60622206',15,4928,3264,63,21,0,0,NULL,NULL,'sunrise, nairobi, airport, kenya, beautiful, photography, infrastracture',NULL,1,'60622206','img_5e0e0b92e4900.jpeg','thumb_suraimages-1000412-sunrise-in-nairobi.jpeg','preview_suraimages-1000412-sunrise-in-nairobi.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000412-sunrise-in-nairobi.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000412-sunrise-in-nairobi.jpeg',NULL,NULL,10384,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10384,'jpeg',NULL,NULL,604,400),(413,31,36,1361,4,'The Potter\'s Hands','pottery, african, heritage, craftmanship, clayworks, hand-made, artefacts, clay','2018-03-26 10:15:28','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000413-the-potter-s-hands.jpeg',NULL,34,1,'45885100',15,4928,3264,67,22,0,0,NULL,NULL,'pottery, african, heritage, craftmanship, clayworks, hand-made, artefacts, clay',NULL,1,'45885100','img_5e0e0b9779c85.jpeg','thumb_suraimages-1000413-the-potter-s-hands.jpeg','preview_suraimages-1000413-the-potter-s-hands.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000413-the-potter-s-hands.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000413-the-potter-s-hands.jpeg',NULL,NULL,10386,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10386,'jpeg',NULL,NULL,604,400),(414,38,38,1361,4,'The Potter\'s Hands','pottery, african, heritage, craftmanship, clayworks, hand-made, artefacts, clay','2018-03-26 10:15:29','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000414-the-potter-s-hands.jpeg',NULL,34,1,'45885100',15,4928,3264,67,22,0,0,NULL,NULL,'pottery, african, heritage, craftmanship, clayworks, hand-made, artefacts, clay',NULL,1,'45885100','img_5e0e0b9b41d21.jpeg','thumb_suraimages-1000414-the-potter-s-hands.jpeg','preview_suraimages-1000414-the-potter-s-hands.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000414-the-potter-s-hands.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000414-the-potter-s-hands.jpeg',NULL,NULL,10387,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10387,'jpeg',NULL,NULL,604,400),(415,31,36,1361,4,'Sunrise in Nairobi','sunrise, nairobi, airport, kenya, beautiful, photography, infrastracture','2018-03-26 12:20:13','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000415-sunrise-in-nairobi.jpeg',NULL,32,1,'60622206',15,4928,3264,63,21,0,0,NULL,NULL,'sunrise, nairobi, airport, kenya, beautiful, photography, infrastracture',NULL,1,'60622206','img_5e0e0b9f4128c.jpeg','thumb_suraimages-1000415-sunrise-in-nairobi.jpeg','preview_suraimages-1000415-sunrise-in-nairobi.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000415-sunrise-in-nairobi.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000415-sunrise-in-nairobi.jpeg',NULL,NULL,10391,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10391,'jpeg',NULL,NULL,604,400),(416,31,36,1361,4,'Nature Walks in Naivasha','flora and fauna, nature, bushes and trees, open field, grasslands, landscapes, scenery,','2018-03-26 12:38:02','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000416-nature-walks-in-naivasha.jpeg',NULL,30,0,'08072952',15,4928,3264,60,20,0,0,NULL,NULL,'flora and fauna, nature, bushes and trees, open field, grasslands, landscapes, scenery,',NULL,1,'08072952','img_5e0e0ba2d6fe0.jpeg','thumb_suraimages-1000416-nature-walks-in-naivasha.jpeg','preview_suraimages-1000416-nature-walks-in-naivasha.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000416-nature-walks-in-naivasha.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000416-nature-walks-in-naivasha.jpeg',NULL,NULL,10394,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10394,'jpeg',NULL,NULL,604,400),(417,31,36,1361,4,'Nature Walks in Naivasha','flora and fauna, nature, bushes and trees, open field, grasslands, landscapes, scenery,','2018-03-26 12:38:03','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000417-nature-walks-in-naivasha.jpeg',NULL,30,0,'08072952',15,4928,3264,60,20,0,0,NULL,NULL,'flora and fauna, nature, bushes and trees, open field, grasslands, landscapes, scenery,',NULL,1,'08072952','img_5e0e0ba7e7a64.jpeg','thumb_suraimages-1000417-nature-walks-in-naivasha.jpeg','preview_suraimages-1000417-nature-walks-in-naivasha.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000417-nature-walks-in-naivasha.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000417-nature-walks-in-naivasha.jpeg',NULL,NULL,10395,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10395,'jpeg',NULL,NULL,604,400),(418,31,36,1361,4,'Nature Walks in Naivasha','flora, fauna, nature, bushes, trees, open, field, grasslands, landscapes, scenery,','2018-03-26 12:38:04','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000418-nature-walks-in-naivasha.jpeg',NULL,30,0,'08072952',15,4928,3264,60,20,0,0,NULL,NULL,'flora, fauna, nature, bushes, trees, open, field, grasslands, landscapes, scenery,',NULL,1,'08072952','img_5e0e0bac4f054.jpeg','thumb_suraimages-1000418-nature-walks-in-naivasha.jpeg','preview_suraimages-1000418-nature-walks-in-naivasha.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000418-nature-walks-in-naivasha.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000418-nature-walks-in-naivasha.jpeg',NULL,NULL,10396,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10396,'jpeg',NULL,NULL,604,400),(419,25,25,1358,4,'An elephant walking with her baby in Maasai Mara National Park','Elephant, Baby, Wild, Wildlife, Grass, Bush, Thicket, Trees, Walking, Grazing, Lead, Leading, Guiding, Guide, Guidance, Lesson, Protect, Care, Protecting, Caring, Tourist, Tourism, Attraction','2018-04-14 18:17:52','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000419-an-elephant-walking-with-her-baby-in-maasai-mara-national-park.jpeg',NULL,25,0,'',15,4536,3025,50,17,0,0,NULL,NULL,'Elephant, Baby, Wild, Wildlife, Grass, Bush, Thicket, Trees, Walking, Grazing, Lead, Leading, Guiding, Guide, Guidance, Lesson, Protect, Care, Protecting, Caring, Tourist, Tourism, Attraction',NULL,1,'','img_5e0e0baf8aab9.jpeg','thumb_suraimages-1000419-an-elephant-walking-with-her-baby-in-maasai-mara-national-park.jpeg','preview_suraimages-1000419-an-elephant-walking-with-her-baby-in-maasai-mara-national-park.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000419-an-elephant-walking-with-her-baby-in-maasai-mara-national-park.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000419-an-elephant-walking-with-her-baby-in-maasai-mara-national-park.jpeg',NULL,NULL,10414,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10414,'jpeg',NULL,NULL,600,400),(420,25,16,1358,4,'A herd of Zebras grazing','Blue, Sky, Clouds, Feeding, Grassland, Grazing, Browsing, Kenya, Maasai, Mara, National, Park, Outdoor, Sky, Blue, Daylight, Clouds, Tourism, Attraction, Travel, Wildlife, Wild, Kenya, Walking, Zebra, Zebras','2018-04-14 19:11:15','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000420-a-herd-of-zebras-grazing.jpeg',NULL,25,0,'',15,4278,2852,50,17,0,0,NULL,NULL,'Blue, Sky, Clouds, Feeding, Grassland, Grazing, Browsing, Kenya, Maasai, Mara, National, Park, Outdoor, Sky, Blue, Daylight, Clouds, Tourism, Attraction, Travel, Wildlife, Wild, Kenya, Walking, Zebra, Zebras',NULL,1,'','img_5e0e0bb315f66.jpeg','thumb_suraimages-1000420-a-herd-of-zebras-grazing.jpeg','preview_suraimages-1000420-a-herd-of-zebras-grazing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000420-a-herd-of-zebras-grazing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000420-a-herd-of-zebras-grazing.jpeg',NULL,NULL,10416,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10416,'jpeg',NULL,NULL,600,400),(421,25,16,1358,4,'Giraffes walking majestically','Blue, Sky, Clouds, Giraffe, Giraffes, Wildebeest, Grazing, Grassland, Kenya, Maasai, Mara, National, Park, Outdoor, Roaming, Sky, Blue, Daylight, Clouds, Tourism, Attraction, Travel, Wildlife, Wild, Kenya, Walking','2018-04-14 19:11:16','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000421-giraffes-walking-majestically.jpeg',NULL,25,0,'',15,4149,2765,50,17,0,0,NULL,NULL,'Blue, Sky, Clouds, Giraffe, Giraffes, Wildebeest, Grazing, Grassland, Kenya, Maasai, Mara, National, Park, Outdoor, Roaming, Sky, Blue, Daylight, Clouds, Tourism, Attraction, Travel, Wildlife, Wild, Kenya, Walking',NULL,1,'','img_5e0e0bb66712a.jpeg','thumb_suraimages-1000421-giraffes-walking-majestically.jpeg','preview_suraimages-1000421-giraffes-walking-majestically.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000421-giraffes-walking-majestically.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000421-giraffes-walking-majestically.jpeg',NULL,NULL,10417,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10417,'jpeg',NULL,NULL,600,400),(422,8,8,1359,4,'Nairobi, Kenya capital city','Blue sky, clouds, daylight, sunny, weather, mid day, , Capital City, Nairobi, East, Africa Hub, Hub, City, Cityscape, Kenyatta International Conference Centre, KICC, Times, Tower,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000422-nairobi-kenya-capital-city.jpeg',NULL,1,0,'',15,6000,4000,1,0,0,0,NULL,NULL,'Blue sky, clouds, daylight, sunny, weather, mid day, , Capital City, Nairobi, East, Africa Hub, Hub, City, Cityscape, Kenyatta International Conference Centre, KICC, Times, Tower,',NULL,1,'','img_5e0e0bb975041.jpeg','thumb_suraimages-1000422-nairobi-kenya-capital-city.jpeg','preview_suraimages-1000422-nairobi-kenya-capital-city.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000422-nairobi-kenya-capital-city.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000422-nairobi-kenya-capital-city.jpeg',NULL,NULL,10419,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10419,'jpeg',NULL,NULL,600,400),(423,15,9,1358,4,'Baobab trees in Madagascar','Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs,, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree','2018-04-15 09:48:18','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000423-baobab-trees-in-madagascar.jpeg',NULL,25,0,'',15,4416,3312,50,17,0,0,NULL,NULL,'Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs,, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree',NULL,1,'','img_5e0e0bbfa0251.jpeg','thumb_suraimages-1000423-baobab-trees-in-madagascar.jpeg','preview_suraimages-1000423-baobab-trees-in-madagascar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000423-baobab-trees-in-madagascar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000423-baobab-trees-in-madagascar.jpeg',NULL,NULL,10420,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10420,'jpeg',NULL,NULL,533,400),(424,15,9,1358,4,'Avenue of the Baobabs in Madagascar','Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree','2018-04-15 09:48:19','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000424-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,25,0,'22776853',15,4416,3312,50,17,0,0,NULL,NULL,'Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree',NULL,1,'22776853','img_5e0e0bc3840d7.jpeg','thumb_suraimages-1000424-avenue-of-the-baobabs-in-madagascar.jpeg','preview_suraimages-1000424-avenue-of-the-baobabs-in-madagascar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000424-avenue-of-the-baobabs-in-madagascar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000424-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,NULL,10421,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10421,'jpeg',NULL,NULL,533,400),(425,15,9,1358,4,'Avenue of the Baobabs in Madagascar','Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree','2018-04-15 09:48:21','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000425-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,25,0,'22776853',15,4711,3533,50,17,0,0,NULL,NULL,'Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree',NULL,1,'22776853','img_5e0e0bc7664f1.jpeg','thumb_suraimages-1000425-avenue-of-the-baobabs-in-madagascar.jpeg','preview_suraimages-1000425-avenue-of-the-baobabs-in-madagascar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000425-avenue-of-the-baobabs-in-madagascar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000425-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,NULL,10422,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10422,'jpeg',NULL,NULL,533,400),(426,15,9,1358,4,'Avenue of the Baobabs in Madagascar','Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs,, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree','2018-04-15 10:02:51','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000426-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,25,0,'',15,3533,4711,50,17,0,0,NULL,NULL,'Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs,, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree',NULL,1,'','img_5e0e0bcc4fc45.jpeg','thumb_suraimages-1000426-avenue-of-the-baobabs-in-madagascar.jpeg','preview_suraimages-1000426-avenue-of-the-baobabs-in-madagascar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000426-avenue-of-the-baobabs-in-madagascar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000426-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,NULL,10423,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10423,'jpeg',NULL,NULL,300,400),(427,15,9,1358,4,'Avenue of the Baobabs in Madagascar','Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs,, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree','2018-04-15 10:02:52','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000427-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,25,0,'22776853',15,4416,3312,50,17,0,0,NULL,NULL,'Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs,, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree',NULL,1,'22776853','img_5e0e0bd10e361.jpeg','thumb_suraimages-1000427-avenue-of-the-baobabs-in-madagascar.jpeg','preview_suraimages-1000427-avenue-of-the-baobabs-in-madagascar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000427-avenue-of-the-baobabs-in-madagascar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000427-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,NULL,10424,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10424,'jpeg',NULL,NULL,533,400),(428,15,9,1358,4,'Avenue of the Baobabs in Madagascar','Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree','2018-04-15 10:02:53','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000428-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,25,0,'22776853',15,3533,4711,50,17,0,0,NULL,NULL,'Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree',NULL,1,'22776853','img_5e0e0bd4dd84b.jpeg','thumb_suraimages-1000428-avenue-of-the-baobabs-in-madagascar.jpeg','preview_suraimages-1000428-avenue-of-the-baobabs-in-madagascar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000428-avenue-of-the-baobabs-in-madagascar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000428-avenue-of-the-baobabs-in-madagascar.jpeg',NULL,NULL,10425,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10425,'jpeg',NULL,NULL,300,400),(429,15,9,1358,4,'Sunset at the Baobab trees of Madagascar','Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree','2018-04-15 10:14:29','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000429-sunset-at-the-baobab-trees-of-madagascar.jpeg',NULL,25,0,'72829593',15,4711,3533,50,17,0,0,NULL,NULL,'Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree',NULL,1,'72829593','img_5e0e0bd9cc7fd.jpeg','thumb_suraimages-1000429-sunset-at-the-baobab-trees-of-madagascar.jpeg','preview_suraimages-1000429-sunset-at-the-baobab-trees-of-madagascar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000429-sunset-at-the-baobab-trees-of-madagascar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000429-sunset-at-the-baobab-trees-of-madagascar.jpeg',NULL,NULL,10426,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10426,'jpeg',NULL,NULL,533,400),(430,15,9,1358,4,'Sunset at the Baobab trees of Madagascar','Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree','2018-04-15 10:14:30','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000430-sunset-at-the-baobab-trees-of-madagascar.jpeg',NULL,25,0,'72829593',15,4711,3533,50,17,0,0,NULL,NULL,'Baobab, Evening, Dusk, Sunset, Nightfall, Sky,, Madagascar, Madagascar, Tree of Life, Upside, Down, Bottle, Monkey, Bread, National, Menabe, Kirindy, Avenue, Baobabs, Outdoor, Road, Rough, Paved, Bumpy, Tall, Trees, Tree',NULL,1,'72829593','img_5e0e0bdfb834f.jpeg','thumb_suraimages-1000430-sunset-at-the-baobab-trees-of-madagascar.jpeg','preview_suraimages-1000430-sunset-at-the-baobab-trees-of-madagascar.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000430-sunset-at-the-baobab-trees-of-madagascar.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000430-sunset-at-the-baobab-trees-of-madagascar.jpeg',NULL,NULL,10427,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10427,'jpeg',NULL,NULL,533,400),(431,13,18,1370,4,'A happy Young African businessman','Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Looking, Look, Plain, Profession, Standing, Stand, Studio, View, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000431-a-happy-young-african-businessman.jpeg',NULL,25,1,'52114611',15,3104,5232,50,17,0,0,NULL,NULL,'Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Looking, Look, Plain, Profession, Standing, Stand, Studio, View, White, Background',NULL,1,'52114611','img_5e0e0be557495.jpeg','thumb_suraimages-1000431-a-happy-young-african-businessman.jpeg','preview_suraimages-1000431-a-happy-young-african-businessman.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000431-a-happy-young-african-businessman.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000431-a-happy-young-african-businessman.jpeg',NULL,NULL,10428,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10428,'jpeg',NULL,NULL,237,400),(432,13,18,1370,4,'Young African businessman thinking','Ahead, Away, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Looking, Look, Plain, Profession, Side, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Up, View, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000432-young-african-businessman-thinking.jpeg',NULL,25,1,'52114611',15,3065,4968,50,17,0,0,NULL,NULL,'Ahead, Away, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Looking, Look, Plain, Profession, Side, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Up, View, White, Background',NULL,1,'52114611','img_5e0e0be8f0d68.jpeg','thumb_suraimages-1000432-young-african-businessman-thinking.jpeg','preview_suraimages-1000432-young-african-businessman-thinking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000432-young-african-businessman-thinking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000432-young-african-businessman-thinking.jpeg',NULL,NULL,10429,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10429,'jpeg',NULL,NULL,247,400),(433,13,18,1370,4,'Young African businessman','African, Africa, Black, Dark, Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Looking, Look, Plain, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000433-young-african-businessman.jpeg',NULL,25,1,'52114611',15,2864,4800,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Looking, Look, Plain, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'52114611','img_5e0e0beba3501.jpeg','thumb_suraimages-1000433-young-african-businessman.jpeg','preview_suraimages-1000433-young-african-businessman.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000433-young-african-businessman.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000433-young-african-businessman.jpeg',NULL,NULL,10430,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10430,'jpeg',NULL,NULL,239,400),(434,13,18,1370,4,'Young African businessman walking','African, Africa, Black, Dark, Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Looking, Look, Plain, Profession, Side, Standing, Stand, Studio, View, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000434-young-african-businessman-walking.jpeg',NULL,25,1,'52114611',15,3136,4976,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Looking, Look, Plain, Profession, Side, Standing, Stand, Studio, View, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'52114611','img_5e0e0bee08e95.jpeg','thumb_suraimages-1000434-young-african-businessman-walking.jpeg','preview_suraimages-1000434-young-african-businessman-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000434-young-african-businessman-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000434-young-african-businessman-walking.jpeg',NULL,NULL,10431,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10431,'jpeg',NULL,NULL,252,400),(435,13,18,1370,4,'A happy young business executive standing','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jacket, Coat, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000435-a-happy-young-business-executive-standing.jpeg',NULL,25,1,'55115257',15,3520,5120,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jacket, Coat, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0bf112149.jpeg','thumb_suraimages-1000435-a-happy-young-business-executive-standing.jpeg','preview_suraimages-1000435-a-happy-young-business-executive-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000435-a-happy-young-business-executive-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000435-a-happy-young-business-executive-standing.jpeg',NULL,NULL,10432,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10432,'jpeg',NULL,NULL,275,400),(436,13,18,1370,4,'A happy young business executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jacket, Coat, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000436-a-happy-young-business-executive-walking.jpeg',NULL,25,1,'55115257',15,3504,5328,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jacket, Coat, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0bf57d361.jpeg','thumb_suraimages-1000436-a-happy-young-business-executive-walking.jpeg','preview_suraimages-1000436-a-happy-young-business-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000436-a-happy-young-business-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000436-a-happy-young-business-executive-walking.jpeg',NULL,NULL,10433,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10433,'jpeg',NULL,NULL,263,400),(437,13,18,1370,4,'A young business executive thinking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Executive, Corporate, Jacket, Coat, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, White, Background, Wondering, Wonder, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000437-a-young-business-executive-thinking.jpeg',NULL,25,1,'55115257',15,3232,5056,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Executive, Corporate, Jacket, Coat, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, White, Background, Wondering, Wonder, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0bf9c7c40.jpeg','thumb_suraimages-1000437-a-young-business-executive-thinking.jpeg','preview_suraimages-1000437-a-young-business-executive-thinking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000437-a-young-business-executive-thinking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000437-a-young-business-executive-thinking.jpeg',NULL,NULL,10434,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10434,'jpeg',NULL,NULL,256,400),(438,13,18,1370,4,'A young business executive thinking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Executive, Corporate, Front, Jacket, Coat, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Surprise, Surprised, Thinking, Thought, Thoughts, Deep, Thrilled, Thrilling, View, White, Background, Wondering, Wonder, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000438-a-young-business-executive-thinking.jpeg',NULL,25,1,'55115257',15,3399,5007,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Executive, Corporate, Front, Jacket, Coat, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Surprise, Surprised, Thinking, Thought, Thoughts, Deep, Thrilled, Thrilling, View, White, Background, Wondering, Wonder, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0bfdc1793.jpeg','thumb_suraimages-1000438-a-young-business-executive-thinking.jpeg','preview_suraimages-1000438-a-young-business-executive-thinking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000438-a-young-business-executive-thinking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000438-a-young-business-executive-thinking.jpeg',NULL,NULL,10435,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10435,'jpeg',NULL,NULL,272,400),(439,13,18,1370,4,'Business executive pointing','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Executive, Corporate, Front, Jacket, Coat, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Standing, Stand, Studio, Surprise, Surprised, Thinking, Thought, Thoughts, Deep, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000439-business-executive-pointing.jpeg',NULL,25,1,'55115257',15,3472,5040,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Executive, Corporate, Front, Jacket, Coat, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Standing, Stand, Studio, Surprise, Surprised, Thinking, Thought, Thoughts, Deep, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c0247cec.jpeg','thumb_suraimages-1000439-business-executive-pointing.jpeg','preview_suraimages-1000439-business-executive-pointing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000439-business-executive-pointing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000439-business-executive-pointing.jpeg',NULL,NULL,10436,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10436,'jpeg',NULL,NULL,276,400),(440,13,18,1370,4,'Young African business executive holding his coat','Ahead, At An Angle, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jacket, Coat, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000440-young-african-business-executive-holding-his-coat.jpeg',NULL,25,1,'55115257',15,3248,5024,50,17,0,0,NULL,NULL,'Ahead, At An Angle, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jacket, Coat, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c0675ae4.jpeg','thumb_suraimages-1000440-young-african-business-executive-holding-his-coat.jpeg','preview_suraimages-1000440-young-african-business-executive-holding-his-coat.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000440-young-african-business-executive-holding-his-coat.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000440-young-african-business-executive-holding-his-coat.jpeg',NULL,NULL,10439,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10439,'jpeg',NULL,NULL,259,400),(441,13,18,1370,4,'Young African business executive holding his coat','At An Angle, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happiness, Happy, Smiling, Smile, Jacket, Coat, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000441-young-african-business-executive-holding-his-coat.jpeg',NULL,25,1,'55115257',15,3472,5008,50,17,0,0,NULL,NULL,'At An Angle, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happiness, Happy, Smiling, Smile, Jacket, Coat, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c0b7a3f7.jpeg','thumb_suraimages-1000441-young-african-business-executive-holding-his-coat.jpeg','preview_suraimages-1000441-young-african-business-executive-holding-his-coat.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000441-young-african-business-executive-holding-his-coat.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000441-young-african-business-executive-holding-his-coat.jpeg',NULL,NULL,10440,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10440,'jpeg',NULL,NULL,277,400),(442,13,18,1370,4,'Young African business executive carrying his coat','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happiness, Happy, Smiling, Smile, Jacket, Coat, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000442-young-african-business-executive-carrying-his-coat.jpeg',NULL,25,1,'55115257',15,3216,4816,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happiness, Happy, Smiling, Smile, Jacket, Coat, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c0f69574.jpeg','thumb_suraimages-1000442-young-african-business-executive-carrying-his-coat.jpeg','preview_suraimages-1000442-young-african-business-executive-carrying-his-coat.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000442-young-african-business-executive-carrying-his-coat.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000442-young-african-business-executive-carrying-his-coat.jpeg',NULL,NULL,10441,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10441,'jpeg',NULL,NULL,267,400),(443,13,18,1370,4,'Young African businessman looking up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Curious, Executive, Corporate, Front, Jacket, Looking, Look, Man, Male, Men, Plain, Profession, Serious, Side, Standing, Stand, Studio, Thinking, Up, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000443-young-african-businessman-looking-up.jpeg',NULL,25,1,'55115257',15,3168,4736,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Curious, Executive, Corporate, Front, Jacket, Looking, Look, Man, Male, Men, Plain, Profession, Serious, Side, Standing, Stand, Studio, Thinking, Up, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c121a909.jpeg','thumb_suraimages-1000443-young-african-businessman-looking-up.jpeg','preview_suraimages-1000443-young-african-businessman-looking-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000443-young-african-businessman-looking-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000443-young-african-businessman-looking-up.jpeg',NULL,NULL,10444,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10444,'jpeg',NULL,NULL,268,400),(444,13,18,1370,4,'Young African businessman','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Curious, Executive, Corporate, Front, Jacket, Looking, Look, Man, Male, Men, Plain, Profession, Serious, Side, Standing, Stand, Studio, Thinking, Up, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000444-young-african-businessman.jpeg',NULL,25,1,'55115257',15,3216,4752,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Curious, Executive, Corporate, Front, Jacket, Looking, Look, Man, Male, Men, Plain, Profession, Serious, Side, Standing, Stand, Studio, Thinking, Up, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c14a03bd.jpeg','thumb_suraimages-1000444-young-african-businessman.jpeg','preview_suraimages-1000444-young-african-businessman.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000444-young-african-businessman.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000444-young-african-businessman.jpeg',NULL,NULL,10445,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10445,'jpeg',NULL,NULL,271,400),(445,13,18,1370,4,'Young African businessman','Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Infront, Jacket, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Plain, Profession, Standing, Stand, Stretching, Stretch, Studio, View, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000445-young-african-businessman.jpeg',NULL,25,1,'55115257',15,3600,4896,50,17,0,0,NULL,NULL,'Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Infront, Jacket, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Plain, Profession, Standing, Stand, Stretching, Stretch, Studio, View, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c1749e50.jpeg','thumb_suraimages-1000445-young-african-businessman.jpeg','preview_suraimages-1000445-young-african-businessman.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000445-young-african-businessman.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000445-young-african-businessman.jpeg',NULL,NULL,10446,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10446,'jpeg',NULL,NULL,294,400),(446,13,18,1370,4,'Young African businessman standing','Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Infront, Jacket, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000446-young-african-businessman-standing.jpeg',NULL,25,1,'55115257',15,2864,4736,50,17,0,0,NULL,NULL,'Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Infront, Jacket, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c1b0fcc9.jpeg','thumb_suraimages-1000446-young-african-businessman-standing.jpeg','preview_suraimages-1000446-young-african-businessman-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000446-young-african-businessman-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000446-young-african-businessman-standing.jpeg',NULL,NULL,10447,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10447,'jpeg',NULL,NULL,242,400),(447,13,18,1370,4,'Young African businessman pointing','Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Happy, Smiling, Smile, Infront, Jacket, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Side, Standing, Stand, Stepping, Step, Studio, View, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000447-young-african-businessman-pointing.jpeg',NULL,25,1,'55115257',15,3328,4800,50,17,0,0,NULL,NULL,'Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Happy, Smiling, Smile, Infront, Jacket, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Side, Standing, Stand, Stepping, Step, Studio, View, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c1d63dcd.jpeg','thumb_suraimages-1000447-young-african-businessman-pointing.jpeg','preview_suraimages-1000447-young-african-businessman-pointing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000447-young-african-businessman-pointing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000447-young-african-businessman-pointing.jpeg',NULL,NULL,10448,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10448,'jpeg',NULL,NULL,277,400),(448,13,18,1370,4,'Young African businessman looking away','Ahead, Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jacket, Jovial, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000448-young-african-businessman-looking-away.jpeg',NULL,25,1,'55115257',15,3104,4800,50,17,0,0,NULL,NULL,'Ahead, Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jacket, Jovial, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c2018523.jpeg','thumb_suraimages-1000448-young-african-businessman-looking-away.jpeg','preview_suraimages-1000448-young-african-businessman-looking-away.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000448-young-african-businessman-looking-away.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000448-young-african-businessman-looking-away.jpeg',NULL,NULL,10449,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10449,'jpeg',NULL,NULL,259,400),(449,13,18,1370,4,'Young African businessman standing','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jacket, Jovial, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000449-young-african-businessman-standing.jpeg',NULL,25,1,'55115257',15,3312,4800,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jacket, Jovial, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c22a7336.jpeg','thumb_suraimages-1000449-young-african-businessman-standing.jpeg','preview_suraimages-1000449-young-african-businessman-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000449-young-african-businessman-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000449-young-african-businessman-standing.jpeg',NULL,NULL,10450,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10450,'jpeg',NULL,NULL,276,400),(450,13,18,1370,4,'Young African businessman','Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confused, Executive, Corporate, Front, Infront, Jacket, Man, Male, Men, Opening, Open, Plain, Profession, Serious, Shock, Shocked, Shocking, Standing, Stand, Stretching, Stretch, Studio, Surprise, Surprised, View, White, Background, Wondering, Wonder, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000450-young-african-businessman.jpeg',NULL,25,1,'55115257',15,3552,4816,50,17,0,0,NULL,NULL,'Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confused, Executive, Corporate, Front, Infront, Jacket, Man, Male, Men, Opening, Open, Plain, Profession, Serious, Shock, Shocked, Shocking, Standing, Stand, Stretching, Stretch, Studio, Surprise, Surprised, View, White, Background, Wondering, Wonder, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c2564b09.jpeg','thumb_suraimages-1000450-young-african-businessman.jpeg','preview_suraimages-1000450-young-african-businessman.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000450-young-african-businessman.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000450-young-african-businessman.jpeg',NULL,NULL,10451,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10451,'jpeg',NULL,NULL,295,400),(451,13,18,1370,4,'Young African businessman pointing','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Dress, Executive, Corporate, Front, Infront, Jacket, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Standing, Stand, Studio, Up, View, White, Background, Wondering, Wonder, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000451-young-african-businessman-pointing.jpeg',NULL,25,1,'55115257',15,3376,4768,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Dress, Executive, Corporate, Front, Infront, Jacket, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Standing, Stand, Studio, Up, View, White, Background, Wondering, Wonder, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c2a0ab91.jpeg','thumb_suraimages-1000451-young-african-businessman-pointing.jpeg','preview_suraimages-1000451-young-african-businessman-pointing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000451-young-african-businessman-pointing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000451-young-african-businessman-pointing.jpeg',NULL,NULL,10452,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10452,'jpeg',NULL,NULL,283,400),(452,13,18,1370,4,'Young African businessman pointing','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Executive, Corporate, Front, Jacket, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Side, Standing, Stand, Studio, Up, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000452-young-african-businessman-pointing.jpeg',NULL,25,1,'55115257',15,3440,4848,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Executive, Corporate, Front, Jacket, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Side, Standing, Stand, Studio, Up, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c2e2cd25.jpeg','thumb_suraimages-1000452-young-african-businessman-pointing.jpeg','preview_suraimages-1000452-young-african-businessman-pointing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000452-young-african-businessman-pointing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000452-young-african-businessman-pointing.jpeg',NULL,NULL,10453,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10453,'jpeg',NULL,NULL,284,400),(453,13,18,1370,4,'A happy business executive','Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Celebration, Celebrating, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jacket, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Plain, Pointing, Profession, Standing, Stand, Stretching, Stretch, Studio, Surprise, Surprised, Thinking, Thought, Thoughts, Deep, Thrilled, Thrilling, View, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000453-a-happy-business-executive.jpeg',NULL,25,1,'55115257',15,3552,5024,50,17,0,0,NULL,NULL,'Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Celebration, Celebrating, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jacket, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Plain, Pointing, Profession, Standing, Stand, Stretching, Stretch, Studio, Surprise, Surprised, Thinking, Thought, Thoughts, Deep, Thrilled, Thrilling, View, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c3292033.jpeg','thumb_suraimages-1000453-a-happy-business-executive.jpeg','preview_suraimages-1000453-a-happy-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000453-a-happy-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000453-a-happy-business-executive.jpeg',NULL,NULL,10454,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10454,'jpeg',NULL,NULL,283,400),(454,13,18,1370,4,'A happy business executive','Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Celebration, Celebrating, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jacket, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Plain, Pointing, Profession, Standing, Stand, Stretching, Stretch, Studio, Thrilled, Thrilling, View, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000454-a-happy-business-executive.jpeg',NULL,25,1,'55115257',15,3684,5016,50,17,0,0,NULL,NULL,'Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Celebration, Celebrating, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jacket, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Plain, Pointing, Profession, Standing, Stand, Stretching, Stretch, Studio, Thrilled, Thrilling, View, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c36d719d.jpeg','thumb_suraimages-1000454-a-happy-business-executive.jpeg','preview_suraimages-1000454-a-happy-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000454-a-happy-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000454-a-happy-business-executive.jpeg',NULL,NULL,10455,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10455,'jpeg',NULL,NULL,294,400),(455,13,18,1370,4,'Business executive pointing to the floor','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Down, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jacket, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000455-business-executive-pointing-to-the-floor.jpeg',NULL,25,1,'55115257',15,3616,4752,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Down, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jacket, Looking, Look, Man, Male, Men, Plain, Pointing, Profession, Side, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c3b1cb45.jpeg','thumb_suraimages-1000455-business-executive-pointing-to-the-floor.jpeg','preview_suraimages-1000455-business-executive-pointing-to-the-floor.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000455-business-executive-pointing-to-the-floor.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000455-business-executive-pointing-to-the-floor.jpeg',NULL,NULL,10456,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10456,'jpeg',NULL,NULL,304,400),(456,13,18,1370,4,'Businessman in deep thoughts as he looks up','At An Angle, Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Executive, Corporate, Jacket, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Up, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000456-businessman-in-deep-thoughts-as-he-looks-up.jpeg',NULL,25,1,'55115257',15,3104,4928,50,17,0,0,NULL,NULL,'At An Angle, Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Curious, Executive, Corporate, Jacket, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Up, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c3f1ae52.jpeg','thumb_suraimages-1000456-businessman-in-deep-thoughts-as-he-looks-up.jpeg','preview_suraimages-1000456-businessman-in-deep-thoughts-as-he-looks-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000456-businessman-in-deep-thoughts-as-he-looks-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000456-businessman-in-deep-thoughts-as-he-looks-up.jpeg',NULL,NULL,10457,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10457,'jpeg',NULL,NULL,252,400),(457,13,18,1370,4,'Businessman standing facing away','Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Executive, Corporate, Jacket, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000457-businessman-standing-facing-away.jpeg',NULL,25,1,'55115257',15,3440,4784,50,17,0,0,NULL,NULL,'Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Executive, Corporate, Jacket, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c41aae14.jpeg','thumb_suraimages-1000457-businessman-standing-facing-away.jpeg','preview_suraimages-1000457-businessman-standing-facing-away.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000457-businessman-standing-facing-away.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000457-businessman-standing-facing-away.jpeg',NULL,NULL,10458,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10458,'jpeg',NULL,NULL,288,400),(458,13,18,1370,4,'A happy business executive','Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Infront, Jacket, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Plain, Profession, Standing, Stand, Stretching, Stretch, Studio, View, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000458-a-happy-business-executive.jpeg',NULL,25,1,'',15,3600,4896,50,17,0,0,NULL,NULL,'Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Front, Infront, Jacket, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Plain, Profession, Standing, Stand, Stretching, Stretch, Studio, View, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'','img_5e0e0c45f2d75.jpeg','thumb_suraimages-1000458-a-happy-business-executive.jpeg','preview_suraimages-1000458-a-happy-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000458-a-happy-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000458-a-happy-business-executive.jpeg',NULL,NULL,10459,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10459,'jpeg',NULL,NULL,294,400),(459,13,18,1370,4,'A happy business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happiness, Happy, Smiling, Smile, Jacket, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000459-a-happy-business-executive.jpeg',NULL,25,1,'55115257',15,3216,4816,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Carrying, Carry, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happiness, Happy, Smiling, Smile, Jacket, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'55115257','img_5e0e0c4a4597c.jpeg','thumb_suraimages-1000459-a-happy-business-executive.jpeg','preview_suraimages-1000459-a-happy-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000459-a-happy-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000459-a-happy-business-executive.jpeg',NULL,NULL,10460,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10460,'jpeg',NULL,NULL,267,400),(460,13,18,1370,4,'A thinking business executive','Ahead, At An Angle, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Curious, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000460-a-thinking-business-executive.jpeg',NULL,25,1,'22624251',15,3248,4848,50,17,0,0,NULL,NULL,'Ahead, At An Angle, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Curious, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, View, White, Background, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c4d0051f.jpeg','thumb_suraimages-1000460-a-thinking-business-executive.jpeg','preview_suraimages-1000460-a-thinking-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000460-a-thinking-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000460-a-thinking-business-executive.jpeg',NULL,NULL,10461,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10461,'jpeg',NULL,NULL,268,400),(461,13,18,1370,4,'A happy business executive doing a thumbs up','Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thumbs, Up, Thumb, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000461-a-happy-business-executive-doing-a-thumbs-up.jpeg',NULL,25,1,'22624251',15,3203,5210,50,17,0,0,NULL,NULL,'Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jovial, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thumbs, Up, Thumb, View, White, Background, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c4fb9aae.jpeg','thumb_suraimages-1000461-a-happy-business-executive-doing-a-thumbs-up.jpeg','preview_suraimages-1000461-a-happy-business-executive-doing-a-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000461-a-happy-business-executive-doing-a-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000461-a-happy-business-executive-doing-a-thumbs-up.jpeg',NULL,NULL,10462,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10462,'jpeg',NULL,NULL,246,400),(462,13,18,1370,4,'A worried business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Curious, Down, Executive, Corporate, Front, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Surprise, Surprised, Thinking, Thought, Thoughts, Deep, View, White, Background, Wondering, Wonder, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000462-a-worried-business-executive.jpeg',NULL,25,1,'22624251',15,3088,4688,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Curious, Down, Executive, Corporate, Front, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Surprise, Surprised, Thinking, Thought, Thoughts, Deep, View, White, Background, Wondering, Wonder, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c544c7d3.jpeg','thumb_suraimages-1000462-a-worried-business-executive.jpeg','preview_suraimages-1000462-a-worried-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000462-a-worried-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000462-a-worried-business-executive.jpeg',NULL,NULL,10463,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10463,'jpeg',NULL,NULL,263,400),(463,13,18,1370,4,'A delighted business executive ','Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jovial, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Perfect, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000463-a-delighted-business-executive.jpeg',NULL,25,1,'22624251',15,3291,4963,50,17,0,0,NULL,NULL,'Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jovial, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, Perfect, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, View, White, Background, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c56bc9c3.jpeg','thumb_suraimages-1000463-a-delighted-business-executive.jpeg','preview_suraimages-1000463-a-delighted-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000463-a-delighted-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000463-a-delighted-business-executive.jpeg',NULL,NULL,10464,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10464,'jpeg',NULL,NULL,265,400),(464,13,18,1370,4,'Business executive doing a thumbs up','Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Looking, Look, Man, Male, Men, Perfect, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Thumbs, Up, Thumb, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000464-business-executive-doing-a-thumbs-up.jpeg',NULL,25,1,'22624251',15,3200,4848,50,17,0,0,NULL,NULL,'Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Looking, Look, Man, Male, Men, Perfect, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Thumbs, Up, Thumb, View, White, Background, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c5b5febb.jpeg','thumb_suraimages-1000464-business-executive-doing-a-thumbs-up.jpeg','preview_suraimages-1000464-business-executive-doing-a-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000464-business-executive-doing-a-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000464-business-executive-doing-a-thumbs-up.jpeg',NULL,NULL,10465,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10465,'jpeg',NULL,NULL,264,400),(465,13,18,1370,4,'Business executive standing','Ahead, At An Angle, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Curious, Executive, Corporate, Forward, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000465-business-executive-standing.jpeg',NULL,25,1,'22624251',15,3280,4704,50,17,0,0,NULL,NULL,'Ahead, At An Angle, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Curious, Executive, Corporate, Forward, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c5dea334.jpeg','thumb_suraimages-1000465-business-executive-standing.jpeg','preview_suraimages-1000465-business-executive-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000465-business-executive-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000465-business-executive-standing.jpeg',NULL,NULL,10466,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10466,'jpeg',NULL,NULL,279,400),(466,13,18,1370,4,'Business executive posing','Ahead, At An Angle, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jovial, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000466-business-executive-posing.jpeg',NULL,25,1,'22624251',15,3088,4800,50,17,0,0,NULL,NULL,'Ahead, At An Angle, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jovial, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c609199a.jpeg','thumb_suraimages-1000466-business-executive-posing.jpeg','preview_suraimages-1000466-business-executive-posing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000466-business-executive-posing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000466-business-executive-posing.jpeg',NULL,NULL,10467,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10467,'jpeg',NULL,NULL,257,400),(467,13,18,1370,4,'Business executive making a run','Ahead, At An Angle, Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Celebration, Celebrating, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Running, Run, Standing, Stand, Studio, View, White, Background, Winning, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000467-business-executive-making-a-run.jpeg',NULL,25,1,'22624251',15,2912,4656,50,17,0,0,NULL,NULL,'Ahead, At An Angle, Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Celebration, Celebrating, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Infront, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Man, Male, Men, Plain, Profession, Running, Run, Standing, Stand, Studio, View, White, Background, Winning, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c631e883.jpeg','thumb_suraimages-1000467-business-executive-making-a-run.jpeg','preview_suraimages-1000467-business-executive-making-a-run.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000467-business-executive-making-a-run.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000467-business-executive-making-a-run.jpeg',NULL,NULL,10468,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10468,'jpeg',NULL,NULL,250,400),(468,13,13,1370,4,'Business executive walking away','Ahead, Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Curious, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000468-business-executive-walking-away.jpeg',NULL,25,1,NULL,15,3344,4992,50,17,0,0,NULL,NULL,'Ahead, Away, Back, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Curious, Excited, Exciting, Executive, Corporate, Feeling, Feel, Forward, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, View, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,NULL,'img_5e0e0c65f3a69.jpeg','thumb_suraimages-1000468-business-executive-walking-away.jpeg','preview_suraimages-1000468-business-executive-walking-away.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000468-business-executive-walking-away.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000468-business-executive-walking-away.jpeg',NULL,NULL,10469,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10469,'jpeg',NULL,NULL,268,400),(469,13,18,1370,4,'Business executive checking the time','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Down, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jovial, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Time, View, Watch, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000469-business-executive-checking-the-time.jpeg',NULL,25,1,'22624251',15,3632,5392,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Down, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jovial, Looking, Look, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Time, View, Watch, White, Background, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c6a5b3c9.jpeg','thumb_suraimages-1000469-business-executive-checking-the-time.jpeg','preview_suraimages-1000469-business-executive-checking-the-time.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000469-business-executive-checking-the-time.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000469-business-executive-checking-the-time.jpeg',NULL,NULL,10470,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10470,'jpeg',NULL,NULL,269,400),(470,13,18,1370,4,'Business executive putting his point across','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Explaining, Front, Infront, Man, Male, Men, Opening, Open, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000470-business-executive-putting-his-point-across.jpeg',NULL,25,1,'22624251',15,4632,3532,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Explaining, Front, Infront, Man, Male, Men, Opening, Open, Plain, Profession, Standing, Stand, Studio, View, White, Background, Young, Youth, Youthful',NULL,1,'22624251','img_5e0e0c6fda1ce.jpeg','thumb_suraimages-1000470-business-executive-putting-his-point-across.jpeg','preview_suraimages-1000470-business-executive-putting-his-point-across.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000470-business-executive-putting-his-point-across.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000470-business-executive-putting-his-point-across.jpeg',NULL,NULL,10471,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10471,'jpeg',NULL,NULL,525,400),(471,13,13,1370,4,'A jubilant business executive','Accomplished, Achieved, Achieve, Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jovial, Jubilant, Looking, Look, Man, Male, Men, Opening, Open, Plain, Profession, Standing, Stand, Studio, Surprise, Surprised, Up, View, White, Background, Winning, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000471-a-jubilant-business-executive.jpeg',NULL,25,1,NULL,15,5256,3700,50,17,0,0,NULL,NULL,'Accomplished, Achieved, Achieve, Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Jovial, Jubilant, Looking, Look, Man, Male, Men, Opening, Open, Plain, Profession, Standing, Stand, Studio, Surprise, Surprised, Up, View, White, Background, Winning, Young, Youth, Youthful',NULL,1,NULL,'img_5e0e0c73de2d5.jpeg','thumb_suraimages-1000471-a-jubilant-business-executive.jpeg','preview_suraimages-1000471-a-jubilant-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000471-a-jubilant-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000471-a-jubilant-business-executive.jpeg',NULL,NULL,10472,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10472,'jpeg',NULL,NULL,568,400),(472,13,18,1370,4,'A happy business executive','Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Curious, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Looking, Look, Man, Male, Men, Plain, Profession, Serious, Side, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Up, View, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000472-a-happy-business-executive.jpeg',NULL,25,1,'',15,3712,5568,50,17,0,0,NULL,NULL,'Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Curious, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Happy, Smiling, Smile, Looking, Look, Man, Male, Men, Plain, Profession, Serious, Side, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Up, View, White, Background, Young, Youth, Youthful',NULL,1,'','img_5e0e0c794f2d6.jpeg','thumb_suraimages-1000472-a-happy-business-executive.jpeg','preview_suraimages-1000472-a-happy-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000472-a-happy-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000472-a-happy-business-executive.jpeg',NULL,NULL,10473,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10473,'jpeg',NULL,NULL,267,400),(473,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thrilled, Thrilling, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000473-young-female-executive.jpeg',NULL,25,1,'41412770',15,3232,4912,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thrilled, Thrilling, White, Background, Young, Youth, Youthful',NULL,1,'41412770','img_5e0e0c7ef22fb.jpeg','thumb_suraimages-1000473-young-female-executive.jpeg','preview_suraimages-1000473-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000473-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000473-young-female-executive.jpeg',NULL,NULL,10474,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10474,'jpeg',NULL,NULL,263,400),(474,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thrilled, Thrilling, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000474-young-female-executive.jpeg',NULL,25,1,'41412770',15,3088,4944,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thrilled, Thrilling, White, Background, Young, Youth, Youthful',NULL,1,'41412770','img_5e0e0c833f380.jpeg','thumb_suraimages-1000474-young-female-executive.jpeg','preview_suraimages-1000474-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000474-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000474-young-female-executive.jpeg',NULL,NULL,10475,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10475,'jpeg',NULL,NULL,250,400),(475,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thrilled, Thrilling, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000475-young-female-executive.jpeg',NULL,25,1,'41412770',15,3168,4912,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thrilled, Thrilling, White, Background, Young, Youth, Youthful',NULL,1,'41412770','img_5e0e0c861dc41.jpeg','thumb_suraimages-1000475-young-female-executive.jpeg','preview_suraimages-1000475-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000475-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000475-young-female-executive.jpeg',NULL,NULL,10476,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10476,'jpeg',NULL,NULL,258,400),(476,13,18,1370,4,'Young female executive checking time','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Time, Checking','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000476-young-female-executive-checking-time.jpeg',NULL,25,1,'41412770',15,3120,4960,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Time, Checking',NULL,1,'41412770','img_5e0e0c8941035.jpeg','thumb_suraimages-1000476-young-female-executive-checking-time.jpeg','preview_suraimages-1000476-young-female-executive-checking-time.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000476-young-female-executive-checking-time.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000476-young-female-executive-checking-time.jpeg',NULL,NULL,10477,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10477,'jpeg',NULL,NULL,252,400),(477,13,18,1370,4,'Young female executive deep in thoughts','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thrilled, Thrilling, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000477-young-female-executive-deep-in-thoughts.jpeg',NULL,25,1,NULL,15,3264,4976,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thrilled, Thrilling, White, Background, Young, Youth, Youthful',NULL,1,NULL,'img_5e0e0c8c1a2ba.jpeg','thumb_suraimages-1000477-young-female-executive-deep-in-thoughts.jpeg','preview_suraimages-1000477-young-female-executive-deep-in-thoughts.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000477-young-female-executive-deep-in-thoughts.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000477-young-female-executive-deep-in-thoughts.jpeg',NULL,NULL,10478,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10478,'jpeg',NULL,NULL,262,400),(478,13,18,1370,4,'Young female executive','Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Opening, Open, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000478-young-female-executive.jpeg',NULL,25,1,'41412770',15,3072,4944,50,17,0,0,NULL,NULL,'Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Opening, Open, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'41412770','img_5e0e0c90a535b.jpeg','thumb_suraimages-1000478-young-female-executive.jpeg','preview_suraimages-1000478-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000478-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000478-young-female-executive.jpeg',NULL,NULL,10479,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10479,'jpeg',NULL,NULL,249,400),(479,13,18,1370,4,'Young female executive gives thumbs up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Happy, Smiling, Smile, Jovial, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Thumbs, Up, Thumb, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000479-young-female-executive-gives-thumbs-up.jpeg',NULL,25,1,'41412770',15,2896,4832,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Happy, Smiling, Smile, Jovial, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Thumbs, Up, Thumb, White, Background, Young, Youth, Youthful',NULL,1,'41412770','img_5e0e0c937374e.jpeg','thumb_suraimages-1000479-young-female-executive-gives-thumbs-up.jpeg','preview_suraimages-1000479-young-female-executive-gives-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000479-young-female-executive-gives-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000479-young-female-executive-gives-thumbs-up.jpeg',NULL,NULL,10480,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10480,'jpeg',NULL,NULL,240,400),(480,13,18,1370,4,'Young female executive gives a thumb up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thumbs, Up, Thumb, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000480-young-female-executive-gives-a-thumb-up.jpeg',NULL,25,1,'41412770',15,2992,4848,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thumbs, Up, Thumb, White, Background, Young, Youth, Youthful',NULL,1,'41412770','img_5e0e0c9600fde.jpeg','thumb_suraimages-1000480-young-female-executive-gives-a-thumb-up.jpeg','preview_suraimages-1000480-young-female-executive-gives-a-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000480-young-female-executive-gives-a-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000480-young-female-executive-gives-a-thumb-up.jpeg',NULL,NULL,10481,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10481,'jpeg',NULL,NULL,247,400),(481,13,18,1370,4,'Young executive female walking','Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Forward, Looking, Look, Plain, Profession, Serious, Standing, Stand, Stepping, Step, Studio, Thinking, Thought, Thoughts, Deep, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000481-young-executive-female-walking.jpeg',NULL,25,1,'41412770',15,3184,5024,50,17,0,0,NULL,NULL,'Ahead, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Forward, Looking, Look, Plain, Profession, Serious, Standing, Stand, Stepping, Step, Studio, Thinking, Thought, Thoughts, Deep, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'41412770','img_5e0e0c98c0a42.jpeg','thumb_suraimages-1000481-young-executive-female-walking.jpeg','preview_suraimages-1000481-young-executive-female-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000481-young-executive-female-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000481-young-executive-female-walking.jpeg',NULL,NULL,10482,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10482,'jpeg',NULL,NULL,254,400),(482,13,18,1370,4,'A confident female executive gives a thumb up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000482-a-confident-female-executive-gives-a-thumb-up.jpeg',NULL,25,1,'41412770',15,3440,5024,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'41412770','img_5e0e0c9b7f8f0.jpeg','thumb_suraimages-1000482-a-confident-female-executive-gives-a-thumb-up.jpeg','preview_suraimages-1000482-a-confident-female-executive-gives-a-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000482-a-confident-female-executive-gives-a-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000482-a-confident-female-executive-gives-a-thumb-up.jpeg',NULL,NULL,10483,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10483,'jpeg',NULL,NULL,274,400),(483,13,18,1370,4,'A young executive looking up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Executive, Corporate, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Up, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000483-a-young-executive-looking-up.jpeg',NULL,25,1,'19321752',15,3472,4896,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Executive, Corporate, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Up, White, Background, Young, Youth, Youthful',NULL,1,'19321752','img_5e0e0ca08b175.jpeg','thumb_suraimages-1000483-a-young-executive-looking-up.jpeg','preview_suraimages-1000483-a-young-executive-looking-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000483-a-young-executive-looking-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000483-a-young-executive-looking-up.jpeg',NULL,NULL,10484,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10484,'jpeg',NULL,NULL,284,400),(484,13,18,1370,4,'A young executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Towards, Toward, Warm, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000484-a-young-executive.jpeg',NULL,25,1,'19321752',15,2908,4884,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Towards, Toward, Warm, White, Background, Young, Youth, Youthful',NULL,1,'19321752','img_5e0e0ca5c3604.jpeg','thumb_suraimages-1000484-a-young-executive.jpeg','preview_suraimages-1000484-a-young-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000484-a-young-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000484-a-young-executive.jpeg',NULL,NULL,10485,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10485,'jpeg',NULL,NULL,238,400),(485,13,18,1370,4,'Young executive pointing','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000485-young-executive-pointing.jpeg',NULL,25,1,'19321752',15,3456,5024,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'19321752','img_5e0e0ca8acceb.jpeg','thumb_suraimages-1000485-young-executive-pointing.jpeg','preview_suraimages-1000485-young-executive-pointing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000485-young-executive-pointing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000485-young-executive-pointing.jpeg',NULL,NULL,10486,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10486,'jpeg',NULL,NULL,275,400),(486,13,18,1370,4,'Thumb up from a young female executive','Away, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Forward, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thumbs, Up, Thumb, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000486-thumb-up-from-a-young-female-executive.jpeg',NULL,25,1,'19321752',15,3360,5136,50,17,0,0,NULL,NULL,'Away, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Forward, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thumbs, Up, Thumb, White, Background, Young, Youth, Youthful',NULL,1,'19321752','img_5e0e0cad4e33e.jpeg','thumb_suraimages-1000486-thumb-up-from-a-young-female-executive.jpeg','preview_suraimages-1000486-thumb-up-from-a-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000486-thumb-up-from-a-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000486-thumb-up-from-a-young-female-executive.jpeg',NULL,NULL,10487,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10487,'jpeg',NULL,NULL,262,400),(487,13,18,1370,4,'Thumb up from a young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Thumbs, Up, Thumb, Warm, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000487-thumb-up-from-a-young-female-executive.jpeg',NULL,25,1,'19321752',15,3088,4800,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Happy, Smiling, Smile, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Thumbs, Up, Thumb, Warm, White, Background, Young, Youth, Youthful',NULL,1,'19321752','img_5e0e0cb1cc44e.jpeg','thumb_suraimages-1000487-thumb-up-from-a-young-female-executive.jpeg','preview_suraimages-1000487-thumb-up-from-a-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000487-thumb-up-from-a-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000487-thumb-up-from-a-young-female-executive.jpeg',NULL,NULL,10488,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10488,'jpeg',NULL,NULL,257,400),(488,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000488-young-female-executive.jpeg',NULL,25,1,'22842247',15,3208,4864,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'22842247','img_5e0e0cb4a7618.jpeg','thumb_suraimages-1000488-young-female-executive.jpeg','preview_suraimages-1000488-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000488-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000488-young-female-executive.jpeg',NULL,NULL,10489,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10489,'jpeg',NULL,NULL,264,400),(489,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000489-young-female-executive.jpeg',NULL,25,1,'22842247',15,2976,4912,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'22842247','img_5e0e0cb781a26.jpeg','thumb_suraimages-1000489-young-female-executive.jpeg','preview_suraimages-1000489-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000489-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000489-young-female-executive.jpeg',NULL,NULL,10490,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10490,'jpeg',NULL,NULL,242,400),(490,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000490-young-female-executive.jpeg',NULL,25,1,'22842247',15,3136,4944,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Jovial, Looking, Look, Plain, Profession, Serious, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'22842247','img_5e0e0cba49774.jpeg','thumb_suraimages-1000490-young-female-executive.jpeg','preview_suraimages-1000490-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000490-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000490-young-female-executive.jpeg',NULL,NULL,10491,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10491,'jpeg',NULL,NULL,254,400),(491,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000491-young-female-executive.jpeg',NULL,25,1,'22842247',15,3232,5040,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'22842247','img_5e0e0cbd3b645.jpeg','thumb_suraimages-1000491-young-female-executive.jpeg','preview_suraimages-1000491-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000491-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000491-young-female-executive.jpeg',NULL,NULL,10492,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10492,'jpeg',NULL,NULL,257,400),(492,13,18,1370,4,'Young female executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000492-young-female-executive-walking.jpeg',NULL,25,1,'22842247',15,2832,4896,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'22842247','img_5e0e0cc2239ae.jpeg','thumb_suraimages-1000492-young-female-executive-walking.jpeg','preview_suraimages-1000492-young-female-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000492-young-female-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000492-young-female-executive-walking.jpeg',NULL,NULL,10493,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10493,'jpeg',NULL,NULL,231,400),(493,13,18,1370,4,'Young female executive looking at her watch','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Executive, Corporate, Female, Woman, Girl, Lady, Late, Looking, Look, Plain, Profession, Standing, Stand, Stranded, Studio, Time, Watch, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000493-young-female-executive-looking-at-her-watch.jpeg',NULL,25,1,'22842247',15,3072,4928,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Executive, Corporate, Female, Woman, Girl, Lady, Late, Looking, Look, Plain, Profession, Standing, Stand, Stranded, Studio, Time, Watch, White, Background, Young, Youth, Youthful',NULL,1,'22842247','img_5e0e0cc51490a.jpeg','thumb_suraimages-1000493-young-female-executive-looking-at-her-watch.jpeg','preview_suraimages-1000493-young-female-executive-looking-at-her-watch.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000493-young-female-executive-looking-at-her-watch.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000493-young-female-executive-looking-at-her-watch.jpeg',NULL,NULL,10494,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10494,'jpeg',NULL,NULL,249,400),(494,13,18,1370,4,'Young female executive celebrating','Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Celebration, Celebrating, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Front, Laugh, Laughing, Opening, Open, Plain, Profession, Standing, Stand, Studio, Up, View, Warm, White, Background, Winning, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000494-young-female-executive-celebrating.jpeg',NULL,25,1,'22842247',15,3552,5319,50,17,0,0,NULL,NULL,'Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Celebration, Celebrating, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Front, Laugh, Laughing, Opening, Open, Plain, Profession, Standing, Stand, Studio, Up, View, Warm, White, Background, Winning, Young, Youth, Youthful',NULL,1,'22842247','img_5e0e0cc7cccfa.jpeg','thumb_suraimages-1000494-young-female-executive-celebrating.jpeg','preview_suraimages-1000494-young-female-executive-celebrating.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000494-young-female-executive-celebrating.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000494-young-female-executive-celebrating.jpeg',NULL,NULL,10495,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10495,'jpeg',NULL,NULL,267,400),(495,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Legs, Looking, Look, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000495-young-female-executive.jpeg',NULL,25,1,'22842247',15,3040,4608,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Legs, Looking, Look, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'22842247','img_5e0e0cccf377b.jpeg','thumb_suraimages-1000495-young-female-executive.jpeg','preview_suraimages-1000495-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000495-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000495-young-female-executive.jpeg',NULL,NULL,10496,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10496,'jpeg',NULL,NULL,264,400),(496,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000496-young-female-executive.jpeg',NULL,25,1,'51527125',15,3600,4976,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0ccfc0872.jpeg','thumb_suraimages-1000496-young-female-executive.jpeg','preview_suraimages-1000496-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000496-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000496-young-female-executive.jpeg',NULL,NULL,10497,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10497,'jpeg',NULL,NULL,289,400),(497,13,18,1370,4,'Young female executive looking up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Warm, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000497-young-female-executive-looking-up.jpeg',NULL,25,1,'51527125',15,3552,5344,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, Warm, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0cd4e4b9c.jpeg','thumb_suraimages-1000497-young-female-executive-looking-up.jpeg','preview_suraimages-1000497-young-female-executive-looking-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000497-young-female-executive-looking-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000497-young-female-executive-looking-up.jpeg',NULL,NULL,10498,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10498,'jpeg',NULL,NULL,266,400),(498,13,18,1370,4,'Young female executive giving a thumbs up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thumbs, Up, Thumb, Warm, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000498-young-female-executive-giving-a-thumbs-up.jpeg',NULL,25,1,'51527125',15,3520,5280,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thumbs, Up, Thumb, Warm, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0cd9bed94.jpeg','thumb_suraimages-1000498-young-female-executive-giving-a-thumbs-up.jpeg','preview_suraimages-1000498-young-female-executive-giving-a-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000498-young-female-executive-giving-a-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000498-young-female-executive-giving-a-thumbs-up.jpeg',NULL,NULL,10499,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10499,'jpeg',NULL,NULL,267,400),(499,13,18,1370,4,'Young female executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000499-young-female-executive-walking.jpeg',NULL,25,1,'51527125',15,3568,5296,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0cde7e577.jpeg','thumb_suraimages-1000499-young-female-executive-walking.jpeg','preview_suraimages-1000499-young-female-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000499-young-female-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000499-young-female-executive-walking.jpeg',NULL,NULL,10500,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10500,'jpeg',NULL,NULL,269,400),(500,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thinking, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000500-young-female-executive.jpeg',NULL,25,1,'51527125',15,3648,5408,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Looking, Look, Plain, Profession, Standing, Stand, Studio, Thinking, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0ce2ef425.jpeg','thumb_suraimages-1000500-young-female-executive.jpeg','preview_suraimages-1000500-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000500-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000500-young-female-executive.jpeg',NULL,NULL,10501,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10501,'jpeg',NULL,NULL,270,400),(501,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000501-young-female-executive.jpeg',NULL,25,1,'51527125',15,3600,5328,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0ce789245.jpeg','thumb_suraimages-1000501-young-female-executive.jpeg','preview_suraimages-1000501-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000501-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000501-young-female-executive.jpeg',NULL,NULL,10502,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10502,'jpeg',NULL,NULL,270,400),(502,13,18,1370,4,'Young female executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000502-young-female-executive-walking.jpeg',NULL,25,1,'51527125',15,3584,5320,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0cebc9f4e.jpeg','thumb_suraimages-1000502-young-female-executive-walking.jpeg','preview_suraimages-1000502-young-female-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000502-young-female-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000502-young-female-executive-walking.jpeg',NULL,NULL,10503,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10503,'jpeg',NULL,NULL,269,400),(503,13,18,1370,4,'Young female executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000503-young-female-executive-walking.jpeg',NULL,25,1,'51527125',15,3456,5248,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0cf0a98b0.jpeg','thumb_suraimages-1000503-young-female-executive-walking.jpeg','preview_suraimages-1000503-young-female-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000503-young-female-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000503-young-female-executive-walking.jpeg',NULL,NULL,10504,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10504,'jpeg',NULL,NULL,263,400),(504,13,18,1370,4,'Young female executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000504-young-female-executive-walking.jpeg',NULL,25,1,'51527125',15,3584,5310,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0cf613cfb.jpeg','thumb_suraimages-1000504-young-female-executive-walking.jpeg','preview_suraimages-1000504-young-female-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000504-young-female-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000504-young-female-executive-walking.jpeg',NULL,NULL,10505,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10505,'jpeg',NULL,NULL,270,400),(505,13,18,1370,4,'Young female executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000505-young-female-executive-walking.jpeg',NULL,25,1,'51527125',15,3568,5120,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'51527125','img_5e0e0cfb270f1.jpeg','thumb_suraimages-1000505-young-female-executive-walking.jpeg','preview_suraimages-1000505-young-female-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000505-young-female-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000505-young-female-executive-walking.jpeg',NULL,NULL,10506,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10506,'jpeg',NULL,NULL,279,400),(506,13,18,1370,4,'Young female executive walking away','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000506-young-female-executive-walking-away.jpeg',NULL,25,1,'75124272',15,3688,5352,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d010c027.jpeg','thumb_suraimages-1000506-young-female-executive-walking-away.jpeg','preview_suraimages-1000506-young-female-executive-walking-away.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000506-young-female-executive-walking-away.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000506-young-female-executive-walking-away.jpeg',NULL,NULL,10507,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10507,'jpeg',NULL,NULL,276,400),(507,13,18,1370,4,'Young female executive celebrating','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Celebration, Celebrating, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, White, Background, Winning, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000507-young-female-executive-celebrating.jpeg',NULL,25,1,'75124272',15,3723,5081,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Celebration, Celebrating, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, White, Background, Winning, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d0664275.jpeg','thumb_suraimages-1000507-young-female-executive-celebrating.jpeg','preview_suraimages-1000507-young-female-executive-celebrating.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000507-young-female-executive-celebrating.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000507-young-female-executive-celebrating.jpeg',NULL,NULL,10508,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10508,'jpeg',NULL,NULL,293,400),(508,13,18,1370,4,'Young female executive celebrating','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Celebration, Celebrating, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, White, Background, Winning, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000508-young-female-executive-celebrating.jpeg',NULL,25,1,'75124272',15,5316,3712,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Celebration, Celebrating, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Jubilant, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, White, Background, Winning, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d0b3e6c6.jpeg','thumb_suraimages-1000508-young-female-executive-celebrating.jpeg','preview_suraimages-1000508-young-female-executive-celebrating.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000508-young-female-executive-celebrating.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000508-young-female-executive-celebrating.jpeg',NULL,NULL,10509,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10509,'jpeg',NULL,NULL,573,400),(509,13,18,1370,4,'Young female executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000509-young-female-executive.jpeg',NULL,25,1,'75124272',15,3552,4896,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d0fb9ee6.jpeg','thumb_suraimages-1000509-young-female-executive.jpeg','preview_suraimages-1000509-young-female-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000509-young-female-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000509-young-female-executive.jpeg',NULL,NULL,10510,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10510,'jpeg',NULL,NULL,290,400),(510,13,18,1370,4,'ajuma@ajumalimited.com','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000510-ajumaatajumalimited-com.jpeg',NULL,25,1,'75124272',15,3520,5008,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d149a2bc.jpeg','thumb_suraimages-1000510-ajumaatajumalimited-com.jpeg','preview_suraimages-1000510-ajumaatajumalimited-com.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000510-ajumaatajumalimited-com.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000510-ajumaatajumalimited-com.jpeg',NULL,NULL,10511,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10511,'jpeg',NULL,NULL,281,400),(511,13,18,1370,4,'ajuma@ajumalimited.com','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000511-ajumaatajumalimited-com.jpeg',NULL,25,1,'75124272',15,3901,5893,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d199ff46.jpeg','thumb_suraimages-1000511-ajumaatajumalimited-com.jpeg','preview_suraimages-1000511-ajumaatajumalimited-com.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000511-ajumaatajumalimited-com.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000511-ajumaatajumalimited-com.jpeg',NULL,NULL,10512,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10512,'jpeg',NULL,NULL,265,400),(512,13,18,1370,4,'Young female executive thinking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000512-young-female-executive-thinking.jpeg',NULL,25,1,'75124272',15,3151,5175,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d2272f7d.jpeg','thumb_suraimages-1000512-young-female-executive-thinking.jpeg','preview_suraimages-1000512-young-female-executive-thinking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000512-young-female-executive-thinking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000512-young-female-executive-thinking.jpeg',NULL,NULL,10513,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10513,'jpeg',NULL,NULL,244,400),(513,13,18,1370,4,'ajuma@ajumalimited.com','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000513-ajumaatajumalimited-com.jpeg',NULL,25,1,'75124272',15,3291,5227,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d287607e.jpeg','thumb_suraimages-1000513-ajumaatajumalimited-com.jpeg','preview_suraimages-1000513-ajumaatajumalimited-com.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000513-ajumaatajumalimited-com.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000513-ajumaatajumalimited-com.jpeg',NULL,NULL,10514,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10514,'jpeg',NULL,NULL,252,400),(514,13,18,1370,4,'ajuma@ajumalimited.com','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000514-ajumaatajumalimited-com.jpeg',NULL,25,1,'75124272',15,3712,5568,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d2e05a18.jpeg','thumb_suraimages-1000514-ajumaatajumalimited-com.jpeg','preview_suraimages-1000514-ajumaatajumalimited-com.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000514-ajumaatajumalimited-com.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000514-ajumaatajumalimited-com.jpeg',NULL,NULL,10515,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10515,'jpeg',NULL,NULL,267,400),(515,13,18,1370,4,'Young female executive striking a pose','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000515-young-female-executive-striking-a-pose.jpeg',NULL,25,1,'75124272',15,3056,4592,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'75124272','img_5e0e0d348c659.jpeg','thumb_suraimages-1000515-young-female-executive-striking-a-pose.jpeg','preview_suraimages-1000515-young-female-executive-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000515-young-female-executive-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000515-young-female-executive-striking-a-pose.jpeg',NULL,NULL,10516,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10516,'jpeg',NULL,NULL,266,400),(516,13,18,1370,4,'Happy young business lady checking time','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Executive, Corporate, Female, Woman, Girl, Lady, Late, Plain, Profession, Standing, Stand, Studio, Surprise, Surprised, Thinking, Time, Watch, White, Background, Wondering, Wonder, Worried, Worry, Worrying, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000516-happy-young-business-lady-checking-time.jpeg',NULL,25,1,'27117192',15,3328,4752,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Executive, Corporate, Female, Woman, Girl, Lady, Late, Plain, Profession, Standing, Stand, Studio, Surprise, Surprised, Thinking, Time, Watch, White, Background, Wondering, Wonder, Worried, Worry, Worrying, Young, Youth, Youthful',NULL,1,'27117192','img_5e0e0d37a80dd.jpeg','thumb_suraimages-1000516-happy-young-business-lady-checking-time.jpeg','preview_suraimages-1000516-happy-young-business-lady-checking-time.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000516-happy-young-business-lady-checking-time.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000516-happy-young-business-lady-checking-time.jpeg',NULL,NULL,10517,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10517,'jpeg',NULL,NULL,280,400),(517,13,18,1370,4,'Happy young business lady checking time','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Plain, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000517-happy-young-business-lady-checking-time.jpeg',NULL,25,1,'27117192',15,3344,4768,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Jovial, Plain, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Young, Youth, Youthful',NULL,1,'27117192','img_5e0e0d3c2b876.jpeg','thumb_suraimages-1000517-happy-young-business-lady-checking-time.jpeg','preview_suraimages-1000517-happy-young-business-lady-checking-time.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000517-happy-young-business-lady-checking-time.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000517-happy-young-business-lady-checking-time.jpeg',NULL,NULL,10518,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10518,'jpeg',NULL,NULL,281,400),(518,13,18,1370,4,'An excited young business executive','Achieved, Achieve, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000518-an-excited-young-business-executive.jpeg',NULL,25,1,'27117192',15,3472,5440,50,17,0,0,NULL,NULL,'Achieved, Achieve, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Feeling, Feel, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Jovial, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'27117192','img_5e0e0d3f9b33e.jpeg','thumb_suraimages-1000518-an-excited-young-business-executive.jpeg','preview_suraimages-1000518-an-excited-young-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000518-an-excited-young-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000518-an-excited-young-business-executive.jpeg',NULL,NULL,10519,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10519,'jpeg',NULL,NULL,255,400),(519,13,18,1370,4,'Happy young business lady checking time','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000519-happy-young-business-lady-checking-time.jpeg',NULL,25,1,'27117192',15,3097,5861,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Young, Youth, Youthful',NULL,1,'27117192','img_5e0e0d44c8b98.jpeg','thumb_suraimages-1000519-happy-young-business-lady-checking-time.jpeg','preview_suraimages-1000519-happy-young-business-lady-checking-time.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000519-happy-young-business-lady-checking-time.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000519-happy-young-business-lady-checking-time.jpeg',NULL,NULL,10520,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10520,'jpeg',NULL,NULL,211,400),(520,13,18,1370,4,'Happy young business lady checking time','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Winking, Wink, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000520-happy-young-business-lady-checking-time.jpeg',NULL,25,1,'27117192',15,2912,5328,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Winking, Wink, Young, Youth, Youthful',NULL,1,'27117192','img_5e0e0d4ad764d.jpeg','thumb_suraimages-1000520-happy-young-business-lady-checking-time.jpeg','preview_suraimages-1000520-happy-young-business-lady-checking-time.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000520-happy-young-business-lady-checking-time.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000520-happy-young-business-lady-checking-time.jpeg',NULL,NULL,10521,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10521,'jpeg',NULL,NULL,219,400),(521,13,18,1370,4,'Happy young business lady checking time','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000521-happy-young-business-lady-checking-time.jpeg',NULL,25,1,'27117192',15,2720,5280,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Young, Youth, Youthful',NULL,1,'27117192','img_5e0e0d4e9e3e9.jpeg','thumb_suraimages-1000521-happy-young-business-lady-checking-time.jpeg','preview_suraimages-1000521-happy-young-business-lady-checking-time.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000521-happy-young-business-lady-checking-time.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000521-happy-young-business-lady-checking-time.jpeg',NULL,NULL,10522,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10522,'jpeg',NULL,NULL,206,400),(522,13,18,1370,4,'A confident young business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Confident, Contempt, Executive, Corporate, Female, Woman, Girl, Lady, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000522-a-confident-young-business-executive.jpeg',NULL,25,1,'18117184',15,3616,5120,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Confident, Contempt, Executive, Corporate, Female, Woman, Girl, Lady, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful',NULL,1,'18117184','img_5e0e0d525bab7.jpeg','thumb_suraimages-1000522-a-confident-young-business-executive.jpeg','preview_suraimages-1000522-a-confident-young-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000522-a-confident-young-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000522-a-confident-young-business-executive.jpeg',NULL,NULL,10525,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10525,'jpeg',NULL,NULL,283,400),(523,13,18,1370,4,'Young business executive checking time','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Executive, Corporate, Female, Woman, Girl, Lady, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000523-young-business-executive-checking-time.jpeg',NULL,25,1,'18117184',15,3600,5104,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Checking, Check, Executive, Corporate, Female, Woman, Girl, Lady, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Time, Watch, White, Background, Young, Youth, Youthful',NULL,1,'18117184','img_5e0e0d5793800.jpeg','thumb_suraimages-1000523-young-business-executive-checking-time.jpeg','preview_suraimages-1000523-young-business-executive-checking-time.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000523-young-business-executive-checking-time.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000523-young-business-executive-checking-time.jpeg',NULL,NULL,10526,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10526,'jpeg',NULL,NULL,282,400),(524,13,18,1370,4,'A confident young business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000524-a-confident-young-business-executive.jpeg',NULL,25,1,'18117184',15,3552,5120,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, White, Background, Young, Youth, Youthful',NULL,1,'18117184','img_5e0e0d5d175ac.jpeg','thumb_suraimages-1000524-a-confident-young-business-executive.jpeg','preview_suraimages-1000524-a-confident-young-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000524-a-confident-young-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000524-a-confident-young-business-executive.jpeg',NULL,NULL,10527,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10527,'jpeg',NULL,NULL,278,400),(525,13,18,1370,4,'A confident young business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000525-a-confident-young-business-executive.jpeg',NULL,25,1,'18117184',15,3568,5184,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, White, Background, Young, Youth, Youthful',NULL,1,'18117184','img_5e0e0d611d27f.jpeg','thumb_suraimages-1000525-a-confident-young-business-executive.jpeg','preview_suraimages-1000525-a-confident-young-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000525-a-confident-young-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000525-a-confident-young-business-executive.jpeg',NULL,NULL,10528,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10528,'jpeg',NULL,NULL,275,400),(526,13,18,1370,4,'A confident young business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000526-a-confident-young-business-executive.jpeg',NULL,25,1,'18117184',15,3586,5055,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'18117184','img_5e0e0d6583aaa.jpeg','thumb_suraimages-1000526-a-confident-young-business-executive.jpeg','preview_suraimages-1000526-a-confident-young-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000526-a-confident-young-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000526-a-confident-young-business-executive.jpeg',NULL,NULL,10529,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10529,'jpeg',NULL,NULL,284,400),(527,13,18,1370,4,'A young happy female business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000527-a-young-happy-female-business-executive.jpeg',NULL,25,1,'18117184',15,3600,5024,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'18117184','img_5e0e0d6a498f7.jpeg','thumb_suraimages-1000527-a-young-happy-female-business-executive.jpeg','preview_suraimages-1000527-a-young-happy-female-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000527-a-young-happy-female-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000527-a-young-happy-female-business-executive.jpeg',NULL,NULL,10530,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10530,'jpeg',NULL,NULL,287,400),(528,13,18,1370,4,'A young happy female business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000528-a-young-happy-female-business-executive.jpeg',NULL,25,1,'18117184',15,3334,4887,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'18117184','img_5e0e0d6ef0374.jpeg','thumb_suraimages-1000528-a-young-happy-female-business-executive.jpeg','preview_suraimages-1000528-a-young-happy-female-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000528-a-young-happy-female-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000528-a-young-happy-female-business-executive.jpeg',NULL,NULL,10531,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10531,'jpeg',NULL,NULL,273,400),(529,13,18,1370,4,'A young happy female business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000529-a-young-happy-female-business-executive.jpeg',NULL,25,1,'18117184',15,3584,5104,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Warm, Welcoming, Welcome, White, Background, Young, Youth, Youthful',NULL,1,'18117184','img_5e0e0d72ca310.jpeg','thumb_suraimages-1000529-a-young-happy-female-business-executive.jpeg','preview_suraimages-1000529-a-young-happy-female-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000529-a-young-happy-female-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000529-a-young-happy-female-business-executive.jpeg',NULL,NULL,10532,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10532,'jpeg',NULL,NULL,281,400),(530,15,9,1363,4,'Chalbi Desert in Marsabit County','Blue, Clouds, Chalbi, Desert, Marsabit, Sky, Blue, Daylight, Clouds, Dry, Rocky, Bare, Soil, Rocks','2018-06-08 11:08:07','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000530-chalbi-desert-in-marsabit-county.jpeg',NULL,25,0,'',15,5834,3500,50,17,0,0,NULL,NULL,'Blue, Clouds, Chalbi, Desert, Marsabit, Sky, Blue, Daylight, Clouds, Dry, Rocky, Bare, Soil, Rocks',NULL,1,'','img_5e0e0d7775e3e.jpeg','thumb_suraimages-1000530-chalbi-desert-in-marsabit-county.jpeg','preview_suraimages-1000530-chalbi-desert-in-marsabit-county.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000530-chalbi-desert-in-marsabit-county.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000530-chalbi-desert-in-marsabit-county.jpeg',NULL,NULL,10533,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10533,'jpeg',NULL,NULL,667,400),(531,13,18,1370,4,'A happy female business executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000531-a-happy-female-business-executive-walking.jpeg',NULL,25,1,'35335160',15,3552,5088,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'35335160','img_5e0e0d7db32f3.jpeg','thumb_suraimages-1000531-a-happy-female-business-executive-walking.jpeg','preview_suraimages-1000531-a-happy-female-business-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000531-a-happy-female-business-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000531-a-happy-female-business-executive-walking.jpeg',NULL,NULL,10549,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10549,'jpeg',NULL,NULL,279,400),(532,13,18,1370,4,'A young female business executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000532-a-young-female-business-executive-walking.jpeg',NULL,25,1,'35335160',15,3552,5056,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'35335160','img_5e0e0d8212ba2.jpeg','thumb_suraimages-1000532-a-young-female-business-executive-walking.jpeg','preview_suraimages-1000532-a-young-female-business-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000532-a-young-female-business-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000532-a-young-female-business-executive-walking.jpeg',NULL,NULL,10550,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10550,'jpeg',NULL,NULL,281,400),(533,13,18,1370,4,'A happy female business executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000533-a-happy-female-business-executive-walking.jpeg',NULL,25,1,'35335160',15,3584,5104,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'35335160','img_5e0e0d864aeed.jpeg','thumb_suraimages-1000533-a-happy-female-business-executive-walking.jpeg','preview_suraimages-1000533-a-happy-female-business-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000533-a-happy-female-business-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000533-a-happy-female-business-executive-walking.jpeg',NULL,NULL,10551,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10551,'jpeg',NULL,NULL,281,400),(534,13,18,1370,4,'A young female business executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000534-a-young-female-business-executive-walking.jpeg',NULL,25,1,'35335160',15,3544,5040,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'35335160','img_5e0e0d8b32899.jpeg','thumb_suraimages-1000534-a-young-female-business-executive-walking.jpeg','preview_suraimages-1000534-a-young-female-business-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000534-a-young-female-business-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000534-a-young-female-business-executive-walking.jpeg',NULL,NULL,10552,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10552,'jpeg',NULL,NULL,281,400),(535,13,18,1370,4,'A young female executive walking away','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000535-a-young-female-executive-walking-away.jpeg',NULL,25,1,'35335160',15,3712,5568,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'35335160','img_5e0e0d8fc3819.jpeg','thumb_suraimages-1000535-a-young-female-executive-walking-away.jpeg','preview_suraimages-1000535-a-young-female-executive-walking-away.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000535-a-young-female-executive-walking-away.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000535-a-young-female-executive-walking-away.jpeg',NULL,NULL,10553,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10553,'jpeg',NULL,NULL,267,400),(536,13,18,1370,4,'A young female business executive walking','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000536-a-young-female-business-executive-walking.jpeg',NULL,25,1,'35335160',15,3568,5040,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, People, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful',NULL,1,'35335160','img_5e0e0d95f3e97.jpeg','thumb_suraimages-1000536-a-young-female-business-executive-walking.jpeg','preview_suraimages-1000536-a-young-female-business-executive-walking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000536-a-young-female-business-executive-walking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000536-a-young-female-business-executive-walking.jpeg',NULL,NULL,10554,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10554,'jpeg',NULL,NULL,283,400),(537,13,18,1370,4,'Young female business executives striking a pose','Business,  Businesswoman, Businesswomen, Chatting, Chat, Colleagues, Workmate, Confident, Executive, Corporate, Explaining, Female, Woman, Girl, Lady, Friendship, Friends, Happy, Smiling, Smile, Jovial, Listening, Looking, Look, Plain, Profession, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Pose, Official','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000537-young-female-business-executives-striking-a-pose.jpeg',NULL,40,2,'53116988',15,3552,5080,80,27,0,0,NULL,NULL,'Business,  Businesswoman, Businesswomen, Chatting, Chat, Colleagues, Workmate, Confident, Executive, Corporate, Explaining, Female, Woman, Girl, Lady, Friendship, Friends, Happy, Smiling, Smile, Jovial, Listening, Looking, Look, Plain, Profession, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Pose, Official',NULL,1,'53116988','img_5e0e0d9ad1b1b.jpeg','thumb_suraimages-1000537-young-female-business-executives-striking-a-pose.jpeg','preview_suraimages-1000537-young-female-business-executives-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000537-young-female-business-executives-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000537-young-female-business-executives-striking-a-pose.jpeg',NULL,NULL,10555,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10555,'jpeg',NULL,NULL,280,400),(538,13,18,1370,4,'Young female business executives chatting','Business, Businesswoman, Businesswomen, Executive, Corporate, Explaining, Female, Woman, Girl, Lady, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Chat, Chatting, Talk, Talking, Discussing, Discussion, Official, Colleagues, Workmate, Friends, Friendship','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000538-young-female-business-executives-chatting.jpeg',NULL,40,2,'53116988',15,3696,5104,80,27,0,0,NULL,NULL,'Business, Businesswoman, Businesswomen, Executive, Corporate, Explaining, Female, Woman, Girl, Lady, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Chat, Chatting, Talk, Talking, Discussing, Discussion, Official, Colleagues, Workmate, Friends, Friendship',NULL,1,'53116988','img_5e0e0d9f95c30.jpeg','thumb_suraimages-1000538-young-female-business-executives-chatting.jpeg','preview_suraimages-1000538-young-female-business-executives-chatting.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000538-young-female-business-executives-chatting.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000538-young-female-business-executives-chatting.jpeg',NULL,NULL,10556,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10556,'jpeg',NULL,NULL,290,400),(539,13,18,1370,4,'Happy young female business executives laughing','Business, Businesswoman, Businesswomen, Chatting, Chat, Colleagues, Workmate, Confident, Excited, Exciting, Executive, Corporate, Explaining, Female, Woman, Girl, Lady, Friendship, Friends, Happiness, Happy, Smiling, Smile, Jovial, Laugh, Laughing, Listening, Looking, Look, Plain, Profession, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Official','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000539-happy-young-female-business-executives-laughing.jpeg',NULL,40,2,'53116988',15,3712,4912,80,27,0,0,NULL,NULL,'Business, Businesswoman, Businesswomen, Chatting, Chat, Colleagues, Workmate, Confident, Excited, Exciting, Executive, Corporate, Explaining, Female, Woman, Girl, Lady, Friendship, Friends, Happiness, Happy, Smiling, Smile, Jovial, Laugh, Laughing, Listening, Looking, Look, Plain, Profession, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Official',NULL,1,'53116988','img_5e0e0da4632a7.jpeg','thumb_suraimages-1000539-happy-young-female-business-executives-laughing.jpeg','preview_suraimages-1000539-happy-young-female-business-executives-laughing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000539-happy-young-female-business-executives-laughing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000539-happy-young-female-business-executives-laughing.jpeg',NULL,NULL,10557,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10557,'jpeg',NULL,NULL,302,400),(540,13,18,1370,4,'Happy young female business executives chatting','Business, Businesswoman, Businesswomen, Colleagues, Workmate, Discussing, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Friendship, Friends, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Chat, Chatting, Official','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000540-happy-young-female-business-executives-chatting.jpeg',NULL,40,2,'53116988',15,3632,5056,80,27,0,0,NULL,NULL,'Business, Businesswoman, Businesswomen, Colleagues, Workmate, Discussing, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Friendship, Friends, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Plain, Profession, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Chat, Chatting, Official',NULL,1,'53116988','img_5e0e0da9512dc.jpeg','thumb_suraimages-1000540-happy-young-female-business-executives-chatting.jpeg','preview_suraimages-1000540-happy-young-female-business-executives-chatting.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000540-happy-young-female-business-executives-chatting.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000540-happy-young-female-business-executives-chatting.jpeg',NULL,NULL,10558,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10558,'jpeg',NULL,NULL,287,400),(541,13,18,1370,4,'Young business executives striking a pose','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000541-young-business-executives-striking-a-pose.jpeg',NULL,40,2,'66564381',15,3365,4874,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence',NULL,1,'66564381','img_5e0e0dae50bb8.jpeg','thumb_suraimages-1000541-young-business-executives-striking-a-pose.jpeg','preview_suraimages-1000541-young-business-executives-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000541-young-business-executives-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000541-young-business-executives-striking-a-pose.jpeg',NULL,NULL,10559,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10559,'jpeg',NULL,NULL,276,400),(542,13,18,1370,4,'Young business executives striking a pose','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000542-young-business-executives-striking-a-pose.jpeg',NULL,40,2,'66564381',15,3218,4963,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence',NULL,1,'66564381','img_5e0e0db28319a.jpeg','thumb_suraimages-1000542-young-business-executives-striking-a-pose.jpeg','preview_suraimages-1000542-young-business-executives-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000542-young-business-executives-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000542-young-business-executives-striking-a-pose.jpeg',NULL,NULL,10560,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10560,'jpeg',NULL,NULL,259,400),(543,13,18,1370,4,'Young business executives striking a pose','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000543-young-business-executives-striking-a-pose.jpeg',NULL,40,2,'66564381',15,3101,4829,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence',NULL,1,'66564381','img_5e0e0db5a5dcf.jpeg','thumb_suraimages-1000543-young-business-executives-striking-a-pose.jpeg','preview_suraimages-1000543-young-business-executives-striking-a-pose.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000543-young-business-executives-striking-a-pose.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000543-young-business-executives-striking-a-pose.jpeg',NULL,NULL,10561,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10561,'jpeg',NULL,NULL,257,400),(544,13,18,1370,4,'Young business executives showing thumbs up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000544-young-business-executives-showing-thumbs-up.jpeg',NULL,40,2,'66564381',15,3278,4893,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence',NULL,1,'66564381','img_5e0e0db87a4c7.jpeg','thumb_suraimages-1000544-young-business-executives-showing-thumbs-up.jpeg','preview_suraimages-1000544-young-business-executives-showing-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000544-young-business-executives-showing-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000544-young-business-executives-showing-thumbs-up.jpeg',NULL,NULL,10562,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10562,'jpeg',NULL,NULL,268,400),(545,13,18,1370,4,'Young business executives pointing at the camera','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000545-young-business-executives-pointing-at-the-camera.jpeg',NULL,40,2,'66564381',15,3282,4843,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Friends, Workmate, Workmates, Confident, Confidence',NULL,1,'66564381','img_5e0e0dbcbe8f8.jpeg','thumb_suraimages-1000545-young-business-executives-pointing-at-the-camera.jpeg','preview_suraimages-1000545-young-business-executives-pointing-at-the-camera.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000545-young-business-executives-pointing-at-the-camera.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000545-young-business-executives-pointing-at-the-camera.jpeg',NULL,NULL,10563,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10563,'jpeg',NULL,NULL,271,400),(546,13,18,1370,4,'Two young business executives talking as they walk','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Confident, Isolated, Talking, Chatting, Interacting','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000546-two-young-business-executives-talking-as-they-walk.jpeg',NULL,40,2,'66564381',15,3712,5238,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Confident, Isolated, Talking, Chatting, Interacting',NULL,1,'66564381','img_5e0e0dbfac94c.jpeg','thumb_suraimages-1000546-two-young-business-executives-talking-as-they-walk.jpeg','preview_suraimages-1000546-two-young-business-executives-talking-as-they-walk.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000546-two-young-business-executives-talking-as-they-walk.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000546-two-young-business-executives-talking-as-they-walk.jpeg',NULL,NULL,10564,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10564,'jpeg',NULL,NULL,283,400),(547,13,18,1370,4,'Two young business executives talking as they walk','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Confident, Isolated, Talking, Chatting, Interacting','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000547-two-young-business-executives-talking-as-they-walk.jpeg',NULL,40,2,'66564381',15,3604,4947,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Confident, Isolated, Talking, Chatting, Interacting',NULL,1,'66564381','img_5e0e0dc471a53.jpeg','thumb_suraimages-1000547-two-young-business-executives-talking-as-they-walk.jpeg','preview_suraimages-1000547-two-young-business-executives-talking-as-they-walk.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000547-two-young-business-executives-talking-as-they-walk.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000547-two-young-business-executives-talking-as-they-walk.jpeg',NULL,NULL,10565,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10565,'jpeg',NULL,NULL,291,400),(548,13,18,1370,4,'Two young executives having a chat as they walk','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Confident, Isolated, Talking, Chatting, Interacting','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000548-two-young-executives-having-a-chat-as-they-walk.jpeg',NULL,40,2,'66564381',15,3296,4800,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Confident, Isolated, Talking, Chatting, Interacting',NULL,1,'66564381','img_5e0e0dc97865c.jpeg','thumb_suraimages-1000548-two-young-executives-having-a-chat-as-they-walk.jpeg','preview_suraimages-1000548-two-young-executives-having-a-chat-as-they-walk.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000548-two-young-executives-having-a-chat-as-they-walk.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000548-two-young-executives-having-a-chat-as-they-walk.jpeg',NULL,NULL,10566,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10566,'jpeg',NULL,NULL,275,400),(549,13,18,1370,4,'Two serious business partners posing with arms crossed','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Smiling, Smile, Happy, Jovial, Confident, Isolated,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000549-two-serious-business-partners-posing-with-arms-crossed.jpeg',NULL,40,2,'66564381',15,3648,5073,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Smiling, Smile, Happy, Jovial, Confident, Isolated,',NULL,1,'66564381','img_5e0e0dcc4e668.jpeg','thumb_suraimages-1000549-two-serious-business-partners-posing-with-arms-crossed.jpeg','preview_suraimages-1000549-two-serious-business-partners-posing-with-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000549-two-serious-business-partners-posing-with-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000549-two-serious-business-partners-posing-with-arms-crossed.jpeg',NULL,NULL,10567,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10567,'jpeg',NULL,NULL,288,400),(550,13,18,1370,4,'Two serious young business partners posing close to each other','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Smiling, Smile, Happy, Jovial, Confident, Isolated,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000550-two-serious-young-business-partners-posing-close-to-each-other.jpeg',NULL,40,2,'66564381',15,3597,4931,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Smiling, Smile, Happy, Jovial, Confident, Isolated,',NULL,1,'66564381','img_5e0e0dd19a918.jpeg','thumb_suraimages-1000550-two-serious-young-business-partners-posing-close-to-each-other.jpeg','preview_suraimages-1000550-two-serious-young-business-partners-posing-close-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000550-two-serious-young-business-partners-posing-close-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000550-two-serious-young-business-partners-posing-close-to-each-other.jpeg',NULL,NULL,10568,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10568,'jpeg',NULL,NULL,292,400),(551,13,18,1370,4,'Two young business partners posing close to each other','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Smiling, Smile, Happy, Jovial, Confident, Isolated,','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000551-two-young-business-partners-posing-close-to-each-other.jpeg',NULL,40,2,'66564381',15,3712,5568,80,27,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Walking, Walk, White, Background, Young, Youth, Youthful, Colleagues, Partners, Friends, Workmate, Workmates, Smiling, Smile, Happy, Jovial, Confident, Isolated,',NULL,1,'66564381','img_5e0e0dd709a50.jpeg','thumb_suraimages-1000551-two-young-business-partners-posing-close-to-each-other.jpeg','preview_suraimages-1000551-two-young-business-partners-posing-close-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000551-two-young-business-partners-posing-close-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000551-two-young-business-partners-posing-close-to-each-other.jpeg',NULL,NULL,10569,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10569,'jpeg',NULL,NULL,267,400),(552,13,18,1370,4,'Curious pretty young lady having the VR experience','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Touching, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated','2018-07-15 12:05:16','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000552-curious-pretty-young-lady-having-the-vr-experience.jpeg',NULL,25,1,'50614166',15,3360,5120,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Touching, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated',NULL,1,'50614166','img_5e0e0ddc9306e.jpeg','thumb_suraimages-1000552-curious-pretty-young-lady-having-the-vr-experience.jpeg','preview_suraimages-1000552-curious-pretty-young-lady-having-the-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000552-curious-pretty-young-lady-having-the-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000552-curious-pretty-young-lady-having-the-vr-experience.jpeg',NULL,NULL,10570,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10570,'jpeg',NULL,NULL,263,400),(553,13,18,1370,4,'Curious pretty young lady having the VR experience','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Touching, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated','2018-07-15 12:05:17','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000553-curious-pretty-young-lady-having-the-vr-experience.jpeg',NULL,25,1,'50614166',15,3312,5120,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Feeling, Feel, Plain, Profession, Standing, Stand, Studio, Thrilled, Thrilling, Touching, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated',NULL,1,'50614166','img_5e0e0de2b99ce.jpeg','thumb_suraimages-1000553-curious-pretty-young-lady-having-the-vr-experience.jpeg','preview_suraimages-1000553-curious-pretty-young-lady-having-the-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000553-curious-pretty-young-lady-having-the-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000553-curious-pretty-young-lady-having-the-vr-experience.jpeg',NULL,NULL,10571,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10571,'jpeg',NULL,NULL,259,400),(554,13,18,1370,4,'Excited young businesswoman with VR headset pointing in the air','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated, Thrill, Enjoy, Enjoying, Excited, Touching, Tech, Hi-Tech, Future, Futuristic','2018-07-15 12:05:18','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000554-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg',NULL,25,1,'50614166',15,3200,5120,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Happy, Smiling, Smile, Jovial, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated, Thrill, Enjoy, Enjoying, Excited, Touching, Tech, Hi-Tech, Future, Futuristic',NULL,1,'50614166','img_5e0e0de84e905.jpeg','thumb_suraimages-1000554-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg','preview_suraimages-1000554-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000554-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000554-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg',NULL,NULL,10572,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10572,'jpeg',NULL,NULL,250,400),(555,13,18,1370,4,'Excited young businesswoman with VR headset pointing in the air','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated, Thrill, Enjoy, Enjoying, Excited, Touching, Tech, Hi-Tech, Future, Futuristic','2018-07-15 12:05:19','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000555-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg',NULL,25,1,'50614166',15,3600,5120,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Looking, Look, Plain, Pointing, Profession, Standing, Stand, Studio, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated, Thrill, Enjoy, Enjoying, Excited, Touching, Tech, Hi-Tech, Future, Futuristic',NULL,1,'50614166','img_5e0e0deca4235.jpeg','thumb_suraimages-1000555-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg','preview_suraimages-1000555-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000555-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000555-excited-young-businesswoman-with-vr-headset-pointing-in-the-air.jpeg',NULL,NULL,10573,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10573,'jpeg',NULL,NULL,281,400),(556,13,18,1370,4,'Young business executive holding VR headset as she enjoys the experience','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Plain, Profession, Standing, Stand, Studio, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated, Thrill, Enjoy, Enjoying, Excited, Touching, Tech, Hi-Tech, Future, Futuristic','2018-07-15 12:05:20','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000556-young-business-executive-holding-vr-headset-as-she-enjoys-the-experience.jpeg',NULL,25,1,'50614166',15,4740,3460,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Plain, Profession, Standing, Stand, Studio, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated, Thrill, Enjoy, Enjoying, Excited, Touching, Tech, Hi-Tech, Future, Futuristic',NULL,1,'50614166','img_5e0e0df146184.jpeg','thumb_suraimages-1000556-young-business-executive-holding-vr-headset-as-she-enjoys-the-experience.jpeg','preview_suraimages-1000556-young-business-executive-holding-vr-headset-as-she-enjoys-the-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000556-young-business-executive-holding-vr-headset-as-she-enjoys-the-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000556-young-business-executive-holding-vr-headset-as-she-enjoys-the-experience.jpeg',NULL,NULL,10574,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10574,'jpeg',NULL,NULL,548,400),(557,13,18,1370,4,'Young business executive enjoying the VR experience','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Feeling, Feel, Plain, Profession, Standing, Stand, Studio, Touching, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated, Thrill, Enjoy, Enjoying, Excited, Touching, Tech, Hi-Tech, Future, Futuristic','2018-07-15 12:05:21','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000557-young-business-executive-enjoying-the-vr-experience.jpeg',NULL,25,1,'50614166',15,3712,5264,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Feeling, Feel, Plain, Profession, Standing, Stand, Studio, Touching, VR, Virtual, Reality, Headset, White, Background, Technology, Isolated, Thrill, Enjoy, Enjoying, Excited, Touching, Tech, Hi-Tech, Future, Futuristic',NULL,1,'50614166','img_5e0e0df61637e.jpeg','thumb_suraimages-1000557-young-business-executive-enjoying-the-vr-experience.jpeg','preview_suraimages-1000557-young-business-executive-enjoying-the-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000557-young-business-executive-enjoying-the-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000557-young-business-executive-enjoying-the-vr-experience.jpeg',NULL,NULL,10575,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10575,'jpeg',NULL,NULL,282,400),(558,13,18,1370,4,'Businessman giving instructions on phone','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy','2018-07-15 12:35:35','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000558-businessman-giving-instructions-on-phone.jpeg',NULL,25,1,'81464168',15,3680,5328,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy',NULL,1,'81464168','img_5e0e0dfc89a75.jpeg','thumb_suraimages-1000558-businessman-giving-instructions-on-phone.jpeg','preview_suraimages-1000558-businessman-giving-instructions-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000558-businessman-giving-instructions-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000558-businessman-giving-instructions-on-phone.jpeg',NULL,NULL,10576,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10576,'jpeg',NULL,NULL,276,400),(559,13,18,1370,4,'Businessman laughing out loud while on phone','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy','2018-07-15 12:35:36','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000559-businessman-laughing-out-loud-while-on-phone.jpeg',NULL,25,1,'81464168',15,3680,5232,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy',NULL,1,'81464168','img_5e0e0e02b57e8.jpeg','thumb_suraimages-1000559-businessman-laughing-out-loud-while-on-phone.jpeg','preview_suraimages-1000559-businessman-laughing-out-loud-while-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000559-businessman-laughing-out-loud-while-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000559-businessman-laughing-out-loud-while-on-phone.jpeg',NULL,NULL,10577,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10577,'jpeg',NULL,NULL,281,400),(560,13,18,1370,4,'Businessman laughing out loud while on phone','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy','2018-07-15 12:35:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000560-businessman-laughing-out-loud-while-on-phone.jpeg',NULL,25,1,'81464168',15,3632,5280,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy',NULL,1,'81464168','img_5e0e0e092d7cd.jpeg','thumb_suraimages-1000560-businessman-laughing-out-loud-while-on-phone.jpeg','preview_suraimages-1000560-businessman-laughing-out-loud-while-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000560-businessman-laughing-out-loud-while-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000560-businessman-laughing-out-loud-while-on-phone.jpeg',NULL,NULL,10578,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10578,'jpeg',NULL,NULL,275,400),(561,13,18,1370,4,'Excited businessman having a conversation on phone','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy','2018-07-15 12:35:38','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000561-excited-businessman-having-a-conversation-on-phone.jpeg',NULL,25,1,'81464168',15,3600,5264,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy',NULL,1,'81464168','img_5e0e0e0ec0563.jpeg','thumb_suraimages-1000561-excited-businessman-having-a-conversation-on-phone.jpeg','preview_suraimages-1000561-excited-businessman-having-a-conversation-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000561-excited-businessman-having-a-conversation-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000561-excited-businessman-having-a-conversation-on-phone.jpeg',NULL,NULL,10579,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10579,'jpeg',NULL,NULL,274,400),(562,13,18,1370,4,'Businessman laughing out loud while on phone and showing thumb up','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy','2018-07-15 12:35:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000562-businessman-laughing-out-loud-while-on-phone-and-showing-thumb-up.jpeg',NULL,25,1,'81464168',15,3712,5568,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy',NULL,1,'81464168','img_5e0e0e1464270.jpeg','thumb_suraimages-1000562-businessman-laughing-out-loud-while-on-phone-and-showing-thumb-up.jpeg','preview_suraimages-1000562-businessman-laughing-out-loud-while-on-phone-and-showing-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000562-businessman-laughing-out-loud-while-on-phone-and-showing-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000562-businessman-laughing-out-loud-while-on-phone-and-showing-thumb-up.jpeg',NULL,NULL,10580,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10580,'jpeg',NULL,NULL,267,400),(563,13,18,1370,4,'Businessman laughing out loud while on phone','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy','2018-07-15 12:35:40','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000563-businessman-laughing-out-loud-while-on-phone.jpeg',NULL,25,1,'81464168',15,3712,5152,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy',NULL,1,'81464168','img_5e0e0e1bb5ba7.jpeg','thumb_suraimages-1000563-businessman-laughing-out-loud-while-on-phone.jpeg','preview_suraimages-1000563-businessman-laughing-out-loud-while-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000563-businessman-laughing-out-loud-while-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000563-businessman-laughing-out-loud-while-on-phone.jpeg',NULL,NULL,10581,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10581,'jpeg',NULL,NULL,288,400),(564,13,18,1370,4,'Happy businessman texting from his smartphone','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy','2018-07-15 12:35:41','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000564-happy-businessman-texting-from-his-smartphone.jpeg',NULL,25,1,'81464168',15,3568,4768,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Laughing, Excited, Happy',NULL,1,'81464168','img_5e0e0e222f3af.jpeg','thumb_suraimages-1000564-happy-businessman-texting-from-his-smartphone.jpeg','preview_suraimages-1000564-happy-businessman-texting-from-his-smartphone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000564-happy-businessman-texting-from-his-smartphone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000564-happy-businessman-texting-from-his-smartphone.jpeg',NULL,NULL,10582,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10582,'jpeg',NULL,NULL,299,400),(565,13,18,1370,4,'Senior business executive reviewing his business report on a tablet','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Tablet, Tablets, White, Background, Young, Youth, Youthful','2018-07-15 12:35:42','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000565-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg',NULL,25,1,'81464168',15,3568,4944,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Tablet, Tablets, White, Background, Young, Youth, Youthful',NULL,1,'81464168','img_5e0e0e26abd20.jpeg','thumb_suraimages-1000565-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg','preview_suraimages-1000565-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000565-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000565-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg',NULL,NULL,10583,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10583,'jpeg',NULL,NULL,289,400),(566,13,18,1370,4,'Senior business executive reviewing his business report on a tablet','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Tablet, Tablets, White, Background, Young, Youth, Youthful','2018-07-15 12:35:43','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000566-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg',NULL,25,1,'81464168',15,3568,5040,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Man, Male, Men, Plain, Profession, Standing, Stand, Studio, Tablet, Tablets, White, Background, Young, Youth, Youthful',NULL,1,'81464168','img_5e0e0e2b7a52c.jpeg','thumb_suraimages-1000566-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg','preview_suraimages-1000566-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000566-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000566-senior-business-executive-reviewing-his-business-report-on-a-tablet.jpeg',NULL,NULL,10584,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10584,'jpeg',NULL,NULL,283,400),(567,13,18,1370,4,'Beautiful young business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Attractive,','2018-07-15 13:05:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000567-beautiful-young-business-executive.jpeg',NULL,25,1,'59990416',15,3712,5568,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Attractive,',NULL,1,'59990416','img_5e0e0e2ff1cd7.jpeg','thumb_suraimages-1000567-beautiful-young-business-executive.jpeg','preview_suraimages-1000567-beautiful-young-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000567-beautiful-young-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000567-beautiful-young-business-executive.jpeg',NULL,NULL,10585,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10585,'jpeg',NULL,NULL,267,400),(568,13,18,1370,4,'Beautiful young business executive with a beautiful smiling ','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Attractive,','2018-07-15 13:05:40','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000568-beautiful-young-business-executive-with-a-beautiful-smiling.jpeg',NULL,25,1,'59990416',15,3712,5568,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Plain, Profession, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Attractive,',NULL,1,'59990416','img_5e0e0e35c2a20.jpeg','thumb_suraimages-1000568-beautiful-young-business-executive-with-a-beautiful-smiling.jpeg','preview_suraimages-1000568-beautiful-young-business-executive-with-a-beautiful-smiling.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000568-beautiful-young-business-executive-with-a-beautiful-smiling.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000568-beautiful-young-business-executive-with-a-beautiful-smiling.jpeg',NULL,NULL,10586,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10586,'jpeg',NULL,NULL,267,400),(569,13,18,1370,4,'Young business executive using tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-15 13:22:44','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000569-young-business-executive-using-tablet.jpeg',NULL,25,1,'12566710',15,3632,5088,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e3ca4742.jpeg','thumb_suraimages-1000569-young-business-executive-using-tablet.jpeg','preview_suraimages-1000569-young-business-executive-using-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000569-young-business-executive-using-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000569-young-business-executive-using-tablet.jpeg',NULL,NULL,10587,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10587,'jpeg',NULL,NULL,286,400),(570,13,18,1370,4,'Young business executive using tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-15 13:22:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000570-young-business-executive-using-tablet.jpeg',NULL,25,1,'12566710',15,3558,5161,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e42f074c.jpeg','thumb_suraimages-1000570-young-business-executive-using-tablet.jpeg','preview_suraimages-1000570-young-business-executive-using-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000570-young-business-executive-using-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000570-young-business-executive-using-tablet.jpeg',NULL,NULL,10588,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10588,'jpeg',NULL,NULL,276,400),(571,13,18,1370,4,'A happy young business executive using tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-15 13:22:46','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000571-a-happy-young-business-executive-using-tablet.jpeg',NULL,25,1,'12566710',15,3448,5268,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e48155b4.jpeg','thumb_suraimages-1000571-a-happy-young-business-executive-using-tablet.jpeg','preview_suraimages-1000571-a-happy-young-business-executive-using-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000571-a-happy-young-business-executive-using-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000571-a-happy-young-business-executive-using-tablet.jpeg',NULL,NULL,10589,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10589,'jpeg',NULL,NULL,262,400),(572,13,18,1370,4,'Young business executive using tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-15 13:22:47','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000572-young-business-executive-using-tablet.jpeg',NULL,25,1,'12566710',15,3328,5200,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e4d08581.jpeg','thumb_suraimages-1000572-young-business-executive-using-tablet.jpeg','preview_suraimages-1000572-young-business-executive-using-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000572-young-business-executive-using-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000572-young-business-executive-using-tablet.jpeg',NULL,NULL,10590,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10590,'jpeg',NULL,NULL,256,400),(573,13,18,1370,4,'Young business executive using tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-15 13:22:48','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000573-young-business-executive-using-tablet.jpeg',NULL,25,1,'12566710',15,3232,5290,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e50ed0f2.jpeg','thumb_suraimages-1000573-young-business-executive-using-tablet.jpeg','preview_suraimages-1000573-young-business-executive-using-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000573-young-business-executive-using-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000573-young-business-executive-using-tablet.jpeg',NULL,NULL,10591,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10591,'jpeg',NULL,NULL,244,400),(574,13,18,1370,4,'Young business executive working from her tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-15 13:22:49','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000574-young-business-executive-working-from-her-tablet.jpeg',NULL,25,1,'12566710',15,3312,5264,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e55a35ab.jpeg','thumb_suraimages-1000574-young-business-executive-working-from-her-tablet.jpeg','preview_suraimages-1000574-young-business-executive-working-from-her-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000574-young-business-executive-working-from-her-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000574-young-business-executive-working-from-her-tablet.jpeg',NULL,NULL,10592,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10592,'jpeg',NULL,NULL,252,400),(575,13,18,1370,4,'Young business executive reading from her tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-15 13:22:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000575-young-business-executive-reading-from-her-tablet.jpeg',NULL,25,1,'12566710',15,3264,5280,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e5a59b34.jpeg','thumb_suraimages-1000575-young-business-executive-reading-from-her-tablet.jpeg','preview_suraimages-1000575-young-business-executive-reading-from-her-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000575-young-business-executive-reading-from-her-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000575-young-business-executive-reading-from-her-tablet.jpeg',NULL,NULL,10593,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10593,'jpeg',NULL,NULL,247,400),(576,13,NULL,1370,4,'Young business executive pointing at her tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000576-young-business-executive-pointing-at-her-tablet.jpeg',NULL,25,1,NULL,15,3136,5222,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,NULL,'img_5e0e0e5e99e7f.jpeg','thumb_suraimages-1000576-young-business-executive-pointing-at-her-tablet.jpeg','preview_suraimages-1000576-young-business-executive-pointing-at-her-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000576-young-business-executive-pointing-at-her-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000576-young-business-executive-pointing-at-her-tablet.jpeg',NULL,NULL,10594,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10594,'jpeg',NULL,NULL,240,400),(577,13,18,1370,4,'Young business executive using tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000577-young-business-executive-using-tablet.jpeg',NULL,25,1,'12566710',15,3712,5568,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e635cf62.jpeg','thumb_suraimages-1000577-young-business-executive-using-tablet.jpeg','preview_suraimages-1000577-young-business-executive-using-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000577-young-business-executive-using-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000577-young-business-executive-using-tablet.jpeg',NULL,NULL,10595,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10595,'jpeg',NULL,NULL,267,400),(578,13,18,1370,4,'Young business executive using tablet','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000578-young-business-executive-using-tablet.jpeg',NULL,25,1,'12566710',15,3712,5568,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e686d53b.jpeg','thumb_suraimages-1000578-young-business-executive-using-tablet.jpeg','preview_suraimages-1000578-young-business-executive-using-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000578-young-business-executive-using-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000578-young-business-executive-using-tablet.jpeg',NULL,NULL,10596,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10596,'jpeg',NULL,NULL,267,400),(579,18,13,1370,4,'Happy young female executive pointing at her tablet ','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-18 15:22:02','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000579-happy-young-female-executive-pointing-at-her-tablet.jpeg',NULL,25,0,NULL,15,3712,5568,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,NULL,'img_5e0e0e6ce7d18.jpeg','thumb_suraimages-1000579-happy-young-female-executive-pointing-at-her-tablet.jpeg','preview_suraimages-1000579-happy-young-female-executive-pointing-at-her-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000579-happy-young-female-executive-pointing-at-her-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000579-happy-young-female-executive-pointing-at-her-tablet.jpeg',NULL,NULL,10597,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10597,'jpeg',NULL,NULL,267,400),(580,13,18,1370,4,'Happy young female executive pointing at her tablet ','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000580-happy-young-female-executive-pointing-at-her-tablet.jpeg',NULL,25,1,'12566710',15,3712,5568,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e725c3be.jpeg','thumb_suraimages-1000580-happy-young-female-executive-pointing-at-her-tablet.jpeg','preview_suraimages-1000580-happy-young-female-executive-pointing-at-her-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000580-happy-young-female-executive-pointing-at-her-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000580-happy-young-female-executive-pointing-at-her-tablet.jpeg',NULL,NULL,10598,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10598,'jpeg',NULL,NULL,267,400),(581,13,18,1370,4,'Excited young female executive pointing at her tablet ','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000581-excited-young-female-executive-pointing-at-her-tablet.jpeg',NULL,25,1,'12566710',15,3536,5200,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e778df3d.jpeg','thumb_suraimages-1000581-excited-young-female-executive-pointing-at-her-tablet.jpeg','preview_suraimages-1000581-excited-young-female-executive-pointing-at-her-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000581-excited-young-female-executive-pointing-at-her-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000581-excited-young-female-executive-pointing-at-her-tablet.jpeg',NULL,NULL,10599,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10599,'jpeg',NULL,NULL,272,400),(582,13,18,1370,4,'Excited young female executive pointing at her tablet ','Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000582-excited-young-female-executive-pointing-at-her-tablet.jpeg',NULL,25,1,'12566710',15,3952,5136,50,17,0,0,NULL,NULL,'Browsing, Browse, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Studying, Study, Surfing, Surf, Tablet, Tablets, White, Background, Young, Youth, Youthful, Working, Technology, Gadget, Tech',NULL,1,'12566710','img_5e0e0e7be40e7.jpeg','thumb_suraimages-1000582-excited-young-female-executive-pointing-at-her-tablet.jpeg','preview_suraimages-1000582-excited-young-female-executive-pointing-at-her-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000582-excited-young-female-executive-pointing-at-her-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000582-excited-young-female-executive-pointing-at-her-tablet.jpeg',NULL,NULL,10600,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10600,'jpeg',NULL,NULL,308,400),(583,13,18,1370,4,'Female business executive chatting from her phone','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Holding, Hold, Jovial, Looking, Look, Plain, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000583-female-business-executive-chatting-from-her-phone.jpeg',NULL,25,1,'31160511',15,3600,5104,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happiness, Happy, Smiling, Smile, Holding, Hold, Jovial, Looking, Look, Plain, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0e80e506b.jpeg','thumb_suraimages-1000583-female-business-executive-chatting-from-her-phone.jpeg','preview_suraimages-1000583-female-business-executive-chatting-from-her-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000583-female-business-executive-chatting-from-her-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000583-female-business-executive-chatting-from-her-phone.jpeg',NULL,NULL,10604,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10604,'jpeg',NULL,NULL,282,400),(584,13,18,1370,4,'Surprised female business executive after reading text from her phone','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Confused, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Surprise, Surprised, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000584-surprised-female-business-executive-after-reading-text-from-her-phone.jpeg',NULL,25,1,'31160511',15,3700,5220,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Confused, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Surprise, Surprised, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0e860a6a3.jpeg','thumb_suraimages-1000584-surprised-female-business-executive-after-reading-text-from-her-phone.jpeg','preview_suraimages-1000584-surprised-female-business-executive-after-reading-text-from-her-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000584-surprised-female-business-executive-after-reading-text-from-her-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000584-surprised-female-business-executive-after-reading-text-from-her-phone.jpeg',NULL,NULL,10605,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10605,'jpeg',NULL,NULL,284,400),(585,13,18,1370,4,'Furious female business executive after reading text from her phone','Angry, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Shock, Shocked, Shocking, Smartphone, Standing, Stand, Studio, Surprise, Surprised, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000585-furious-female-business-executive-after-reading-text-from-her-phone.jpeg',NULL,25,1,'31160511',15,3568,5232,50,17,0,0,NULL,NULL,'Angry, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Shock, Shocked, Shocking, Smartphone, Standing, Stand, Studio, Surprise, Surprised, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0e8b34626.jpeg','thumb_suraimages-1000585-furious-female-business-executive-after-reading-text-from-her-phone.jpeg','preview_suraimages-1000585-furious-female-business-executive-after-reading-text-from-her-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000585-furious-female-business-executive-after-reading-text-from-her-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000585-furious-female-business-executive-after-reading-text-from-her-phone.jpeg',NULL,NULL,10606,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10606,'jpeg',NULL,NULL,273,400),(586,13,18,1370,4,'Shocked female business executive after reading text from her phone','Angry, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Shock, Shocked, Shocking, Smartphone, Standing, Stand, Studio, Surprise, Surprised, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000586-shocked-female-business-executive-after-reading-text-from-her-phone.jpeg',NULL,25,1,'31160511',15,3600,5200,50,17,0,0,NULL,NULL,'Angry, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Shock, Shocked, Shocking, Smartphone, Standing, Stand, Studio, Surprise, Surprised, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0e8fafacf.jpeg','thumb_suraimages-1000586-shocked-female-business-executive-after-reading-text-from-her-phone.jpeg','preview_suraimages-1000586-shocked-female-business-executive-after-reading-text-from-her-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000586-shocked-female-business-executive-after-reading-text-from-her-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000586-shocked-female-business-executive-after-reading-text-from-her-phone.jpeg',NULL,NULL,10607,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10607,'jpeg',NULL,NULL,277,400),(587,13,18,1370,4,'Young female executive showing stuff from her phone','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000587-young-female-executive-showing-stuff-from-her-phone.jpeg',NULL,25,1,'31160511',15,3584,5168,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0e9419188.jpeg','thumb_suraimages-1000587-young-female-executive-showing-stuff-from-her-phone.jpeg','preview_suraimages-1000587-young-female-executive-showing-stuff-from-her-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000587-young-female-executive-showing-stuff-from-her-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000587-young-female-executive-showing-stuff-from-her-phone.jpeg',NULL,NULL,10608,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10608,'jpeg',NULL,NULL,277,400),(588,13,18,1370,4,'Young female executive showing stuff from her phone','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000588-young-female-executive-showing-stuff-from-her-phone.jpeg',NULL,25,1,'31160511',15,3584,5176,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0e991f004.jpeg','thumb_suraimages-1000588-young-female-executive-showing-stuff-from-her-phone.jpeg','preview_suraimages-1000588-young-female-executive-showing-stuff-from-her-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000588-young-female-executive-showing-stuff-from-her-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000588-young-female-executive-showing-stuff-from-her-phone.jpeg',NULL,NULL,10609,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10609,'jpeg',NULL,NULL,277,400),(589,13,18,1370,4,'Female executive pointing at her phone while smiling','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000589-female-executive-pointing-at-her-phone-while-smiling.jpeg',NULL,25,1,'31160511',15,3568,5280,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0e9e1058b.jpeg','thumb_suraimages-1000589-female-executive-pointing-at-her-phone-while-smiling.jpeg','preview_suraimages-1000589-female-executive-pointing-at-her-phone-while-smiling.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000589-female-executive-pointing-at-her-phone-while-smiling.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000589-female-executive-pointing-at-her-phone-while-smiling.jpeg',NULL,NULL,10610,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10610,'jpeg',NULL,NULL,270,400),(590,13,18,1370,4,'Young female executive talking on phone','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000590-young-female-executive-talking-on-phone.jpeg',NULL,25,1,'31160511',15,3552,5216,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0ea2095bc.jpeg','thumb_suraimages-1000590-young-female-executive-talking-on-phone.jpeg','preview_suraimages-1000590-young-female-executive-talking-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000590-young-female-executive-talking-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000590-young-female-executive-talking-on-phone.jpeg',NULL,NULL,10611,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10611,'jpeg',NULL,NULL,272,400),(591,13,18,1370,4,'Young female executive talking on phone','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000591-young-female-executive-talking-on-phone.jpeg',NULL,25,1,'31160511',15,3504,5128,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Talking, Talk, Walking, Walk, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0ea6c11fa.jpeg','thumb_suraimages-1000591-young-female-executive-talking-on-phone.jpeg','preview_suraimages-1000591-young-female-executive-talking-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000591-young-female-executive-talking-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000591-young-female-executive-talking-on-phone.jpeg',NULL,NULL,10612,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10612,'jpeg',NULL,NULL,273,400),(592,13,18,1370,4,'Beautiful young female executive smiling as she chat on phone','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Mobile, Phone, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000592-beautiful-young-female-executive-smiling-as-she-chat-on-phone.jpeg',NULL,25,1,'31160511',15,3712,5248,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Chatting, Chat, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Holding, Hold, Looking, Look, Mobile, Phone, Plain, Pointing, Profession, Smartphone, Standing, Stand, Studio, Texting, Text, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,'31160511','img_5e0e0eabf1206.jpeg','thumb_suraimages-1000592-beautiful-young-female-executive-smiling-as-she-chat-on-phone.jpeg','preview_suraimages-1000592-beautiful-young-female-executive-smiling-as-she-chat-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000592-beautiful-young-female-executive-smiling-as-she-chat-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000592-beautiful-young-female-executive-smiling-as-she-chat-on-phone.jpeg',NULL,NULL,10613,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10613,'jpeg',NULL,NULL,283,400),(593,13,18,1370,4,'Female executive pointing at her phone while smiling','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000593-female-executive-pointing-at-her-phone-while-smiling.jpeg',NULL,25,1,NULL,15,3968,5160,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Female, Woman, Girl, Lady, Mobile, Phone, Plain, Profession, Smartphone, Standing, Stand, Studio, White, Background, Young, Youth, Youthful, Gadget, Tech, Savvy',NULL,1,NULL,'img_5e0e0eb13c3fe.jpeg','thumb_suraimages-1000593-female-executive-pointing-at-her-phone-while-smiling.jpeg','preview_suraimages-1000593-female-executive-pointing-at-her-phone-while-smiling.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000593-female-executive-pointing-at-her-phone-while-smiling.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000593-female-executive-pointing-at-her-phone-while-smiling.jpeg',NULL,NULL,10614,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10614,'jpeg',NULL,NULL,308,400),(594,13,18,1370,4,'Happy young business partners standing with arms crossed','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Colleagues, Workmate, Executive, Corporate, Female, Woman, Girl, Lady, Holding, Hold, Man, Male, Men, People, Plain, Profession, Standing, Stand, Studio, Tablet, Tablets, White, Background, Young, Youth, Youthful','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000594-happy-young-business-partners-standing-with-arms-crossed.jpeg',NULL,60,3,'',15,3991,3024,120,40,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Colleagues, Workmate, Executive, Corporate, Female, Woman, Girl, Lady, Holding, Hold, Man, Male, Men, People, Plain, Profession, Standing, Stand, Studio, Tablet, Tablets, White, Background, Young, Youth, Youthful',NULL,1,'','img_5e0e0eb6607c0.jpeg','thumb_suraimages-1000594-happy-young-business-partners-standing-with-arms-crossed.jpeg','preview_suraimages-1000594-happy-young-business-partners-standing-with-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000594-happy-young-business-partners-standing-with-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000594-happy-young-business-partners-standing-with-arms-crossed.jpeg',NULL,NULL,10615,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10615,'jpeg',NULL,NULL,528,400),(595,13,18,1370,4,'Young female executive simulating touch using VR experience','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Holding, Hold, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, White, Background, Wondering, Wonder, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000595-young-female-executive-simulating-touch-using-vr-experience.jpeg',NULL,25,1,'',15,3616,5008,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Holding, Hold, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, White, Background, Wondering, Wonder, Gadget, Tech, Savvy',NULL,1,'','img_5e0e0eb894068.jpeg','thumb_suraimages-1000595-young-female-executive-simulating-touch-using-vr-experience.jpeg','preview_suraimages-1000595-young-female-executive-simulating-touch-using-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000595-young-female-executive-simulating-touch-using-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000595-young-female-executive-simulating-touch-using-vr-experience.jpeg',NULL,NULL,10616,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10616,'jpeg',NULL,NULL,289,400),(596,13,18,1370,4,'Young female executive enjoying VR experience','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Holding, Hold, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, White, Background, Wondering, Wonder, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000596-young-female-executive-enjoying-vr-experience.jpeg',NULL,25,1,'03563110',15,3648,5008,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Holding, Hold, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, White, Background, Wondering, Wonder, Gadget, Tech, Savvy',NULL,1,'03563110','img_5e0e0ebd3c028.jpeg','thumb_suraimages-1000596-young-female-executive-enjoying-vr-experience.jpeg','preview_suraimages-1000596-young-female-executive-enjoying-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000596-young-female-executive-enjoying-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000596-young-female-executive-enjoying-vr-experience.jpeg',NULL,NULL,10617,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10617,'jpeg',NULL,NULL,291,400),(597,13,18,1370,4,'Young female executive enjoying VR experience','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Holding, Hold, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, White, Background, Wondering, Wonder, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000597-young-female-executive-enjoying-vr-experience.jpeg',NULL,25,1,'03563110',15,3748,5477,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Holding, Hold, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, White, Background, Wondering, Wonder, Gadget, Tech, Savvy',NULL,1,'03563110','img_5e0e0ec1540ff.jpeg','thumb_suraimages-1000597-young-female-executive-enjoying-vr-experience.jpeg','preview_suraimages-1000597-young-female-executive-enjoying-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000597-young-female-executive-enjoying-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000597-young-female-executive-enjoying-vr-experience.jpeg',NULL,NULL,10618,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10618,'jpeg',NULL,NULL,274,400),(598,13,18,1370,4,'Young female executive enjoying VR experience','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, White, Background, Wondering, Wonder, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000598-young-female-executive-enjoying-vr-experience.jpeg',NULL,25,1,'03563110',15,3600,5232,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, White, Background, Wondering, Wonder, Gadget, Tech, Savvy',NULL,1,'03563110','img_5e0e0ec821bd0.jpeg','thumb_suraimages-1000598-young-female-executive-enjoying-vr-experience.jpeg','preview_suraimages-1000598-young-female-executive-enjoying-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000598-young-female-executive-enjoying-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000598-young-female-executive-enjoying-vr-experience.jpeg',NULL,NULL,10619,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10619,'jpeg',NULL,NULL,275,400),(599,13,18,1370,4,'Young female executive exploring another world using VR headset','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Stepping, Step, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, Walking, Walk, White, Background, Wondering, Wonder, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000599-young-female-executive-exploring-another-world-using-vr-headset.jpeg',NULL,25,1,'03563110',15,3616,5132,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Stepping, Step, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, Walking, Walk, White, Background, Wondering, Wonder, Gadget, Tech, Savvy',NULL,1,'03563110','img_5e0e0eccdf46b.jpeg','thumb_suraimages-1000599-young-female-executive-exploring-another-world-using-vr-headset.jpeg','preview_suraimages-1000599-young-female-executive-exploring-another-world-using-vr-headset.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000599-young-female-executive-exploring-another-world-using-vr-headset.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000599-young-female-executive-exploring-another-world-using-vr-headset.jpeg',NULL,NULL,10620,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10620,'jpeg',NULL,NULL,282,400),(600,13,18,1370,4,'Young female executive exploring another world using VR headset','African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Stepping, Step, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, Walking, Walk, White, Background, Wondering, Wonder, Gadget, Tech, Savvy','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000600-young-female-executive-exploring-another-world-using-vr-headset.jpeg',NULL,25,1,'03563110',15,3552,5122,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Excited, Exciting, Executive, Corporate, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Looking, Look, Man, Male, Men, Plain, Reaching, Out, Standing, Stand, Stepping, Step, Studio, Surprise, Surprised, VR, Virtual, Reality, Headset, Walking, Walk, White, Background, Wondering, Wonder, Gadget, Tech, Savvy',NULL,1,'03563110','img_5e0e0ed1adc57.jpeg','thumb_suraimages-1000600-young-female-executive-exploring-another-world-using-vr-headset.jpeg','preview_suraimages-1000600-young-female-executive-exploring-another-world-using-vr-headset.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000600-young-female-executive-exploring-another-world-using-vr-headset.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000600-young-female-executive-exploring-another-world-using-vr-headset.jpeg',NULL,NULL,10621,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10621,'jpeg',NULL,NULL,277,400),(601,18,18,1370,4,'Young male engineer reading the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Studying, Study, Thinking, Thought, Thoughts, Deep, White, Background, Construction','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000601-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,25,1,'79757799',15,3616,5184,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Studying, Study, Thinking, Thought, Thoughts, Deep, White, Background, Construction',NULL,1,'79757799','img_5e0e0ed6a5f31.jpeg','thumb_suraimages-1000601-young-male-engineer-reading-the-building-blueprint.jpeg','preview_suraimages-1000601-young-male-engineer-reading-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000601-young-male-engineer-reading-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000601-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,NULL,10622,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10622,'jpeg',NULL,NULL,279,400),(602,18,18,1370,4,'Young male engineer surveying the building under construction','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, White, Background, Construction','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000602-young-male-engineer-surveying-the-building-under-construction.jpeg',NULL,25,1,'79757799',15,3600,5184,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Thinking, Thought, Thoughts, Deep, White, Background, Construction',NULL,1,'79757799','img_5e0e0edac585d.jpeg','thumb_suraimages-1000602-young-male-engineer-surveying-the-building-under-construction.jpeg','preview_suraimages-1000602-young-male-engineer-surveying-the-building-under-construction.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000602-young-male-engineer-surveying-the-building-under-construction.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000602-young-male-engineer-surveying-the-building-under-construction.jpeg',NULL,NULL,10623,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10623,'jpeg',NULL,NULL,278,400),(603,18,18,1370,4,'Young male engineer reading the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Studying, Study, White, Background, Construction','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000603-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,25,1,'',15,3584,5200,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Studying, Study, White, Background, Construction',NULL,1,'','img_5e0e0edee5533.jpeg','thumb_suraimages-1000603-young-male-engineer-reading-the-building-blueprint.jpeg','preview_suraimages-1000603-young-male-engineer-reading-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000603-young-male-engineer-reading-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000603-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,NULL,10624,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10624,'jpeg',NULL,NULL,276,400),(604,18,18,1370,4,'Young male engineer reading the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Laugh, Laughing, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Studio, Studying, Study, White, Background, Construction','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000604-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,25,1,'79757799',15,3584,5120,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Laugh, Laughing, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Studio, Studying, Study, White, Background, Construction',NULL,1,'79757799','img_5e0e0ee422b77.jpeg','thumb_suraimages-1000604-young-male-engineer-reading-the-building-blueprint.jpeg','preview_suraimages-1000604-young-male-engineer-reading-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000604-young-male-engineer-reading-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000604-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,NULL,10625,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10625,'jpeg',NULL,NULL,280,400),(605,18,18,1370,4,'Young male engineer reading the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, White, Background, Construction','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000605-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,25,1,'79757799',15,3616,5200,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, White, Background, Construction',NULL,1,'79757799','img_5e0e0ee8e2921.jpeg','thumb_suraimages-1000605-young-male-engineer-reading-the-building-blueprint.jpeg','preview_suraimages-1000605-young-male-engineer-reading-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000605-young-male-engineer-reading-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000605-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,NULL,10626,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10626,'jpeg',NULL,NULL,278,400),(606,18,18,1370,4,'Young male engineer surveying the building under construction','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, White, Background, Construction','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000606-young-male-engineer-surveying-the-building-under-construction.jpeg',NULL,25,1,'79757799',15,3488,5088,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, White, Background, Construction',NULL,1,'79757799','img_5e0e0eed6f3b8.jpeg','thumb_suraimages-1000606-young-male-engineer-surveying-the-building-under-construction.jpeg','preview_suraimages-1000606-young-male-engineer-surveying-the-building-under-construction.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000606-young-male-engineer-surveying-the-building-under-construction.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000606-young-male-engineer-surveying-the-building-under-construction.jpeg',NULL,NULL,10627,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10627,'jpeg',NULL,NULL,274,400),(607,18,18,1370,4,'Young male engineer reading the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Surveying, Survey, Thinking, Thought, Thoughts, Deep, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000607-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,25,1,'36553565',15,3520,5056,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Surveying, Survey, Thinking, Thought, Thoughts, Deep, White, Background',NULL,1,'36553565','img_5e0e0ef1c9475.jpeg','thumb_suraimages-1000607-young-male-engineer-reading-the-building-blueprint.jpeg','preview_suraimages-1000607-young-male-engineer-reading-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000607-young-male-engineer-reading-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000607-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,NULL,10628,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10628,'jpeg',NULL,NULL,278,400),(608,18,18,1370,4,'Young male engineer reading the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Surveying, Survey, Thinking, Thought, Thoughts, Deep, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000608-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,25,1,'36553565',15,3504,5072,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Surveying, Survey, Thinking, Thought, Thoughts, Deep, White, Background',NULL,1,'36553565','img_5e0e0ef6b200e.jpeg','thumb_suraimages-1000608-young-male-engineer-reading-the-building-blueprint.jpeg','preview_suraimages-1000608-young-male-engineer-reading-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000608-young-male-engineer-reading-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000608-young-male-engineer-reading-the-building-blueprint.jpeg',NULL,NULL,10629,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10629,'jpeg',NULL,NULL,276,400),(609,18,18,1370,4,'Young male engineer thinking','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Surveying, Survey, Thinking, Thought, Thoughts, Deep, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000609-young-male-engineer-thinking.jpeg',NULL,25,1,'36553565',15,3472,5072,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Surveying, Survey, Thinking, Thought, Thoughts, Deep, White, Background',NULL,1,'36553565','img_5e0e0efbbe2ec.jpeg','thumb_suraimages-1000609-young-male-engineer-thinking.jpeg','preview_suraimages-1000609-young-male-engineer-thinking.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000609-young-male-engineer-thinking.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000609-young-male-engineer-thinking.jpeg',NULL,NULL,10630,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10630,'jpeg',NULL,NULL,274,400),(610,18,18,1370,4,'Young male engineer thinking as he inspect the construction in progress','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Surveying, Survey, Thinking, Thought, Thoughts, Deep, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000610-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',NULL,25,1,'36553565',15,3568,5008,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Surveying, Survey, Thinking, Thought, Thoughts, Deep, White, Background',NULL,1,'36553565','img_5e0e0f0055b3e.jpeg','thumb_suraimages-1000610-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg','preview_suraimages-1000610-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000610-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000610-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',NULL,NULL,10631,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10631,'jpeg',NULL,NULL,285,400),(611,18,18,1370,4,'Young male engineer thinking as he inspect the construction in progress','Accomplished, Achieved, Achieve, African, Africa, Black, Dark, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Walking, Walk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000611-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',NULL,25,1,'36553565',15,3248,5072,50,17,0,0,NULL,NULL,'Accomplished, Achieved, Achieve, African, Africa, Black, Dark, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Walking, Walk, White, Background',NULL,1,'36553565','img_5e0e0f04e73c7.jpeg','thumb_suraimages-1000611-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg','preview_suraimages-1000611-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000611-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000611-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',NULL,NULL,10632,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10632,'jpeg',NULL,NULL,256,400),(612,18,18,1370,4,'Young male engineer thinking as he inspect the construction in progress','Accomplished, Achieved, Achieve, African, Africa, Black, Dark, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Walking, Walk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000612-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',NULL,25,1,'36553565',15,3408,5344,50,17,0,0,NULL,NULL,'Accomplished, Achieved, Achieve, African, Africa, Black, Dark, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Serious, Standing, Stand, Studio, Walking, Walk, White, Background',NULL,1,'36553565','img_5e0e0f08975dd.jpeg','thumb_suraimages-1000612-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg','preview_suraimages-1000612-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000612-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000612-young-male-engineer-thinking-as-he-inspect-the-construction-in-progress.jpeg',NULL,NULL,10633,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10633,'jpeg',NULL,NULL,255,400),(613,18,18,1370,4,'Young male engineer on one knee inspecting a building as he reads from the blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000613-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',NULL,25,1,'36553565',15,5086,3433,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background',NULL,1,'36553565','img_5e0e0f0cddc68.jpeg','thumb_suraimages-1000613-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg','preview_suraimages-1000613-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000613-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000613-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',NULL,NULL,10634,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10634,'jpeg',NULL,NULL,593,400),(614,18,18,1370,4,'Young male engineer on one knee inspecting a building as he reads from the blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000614-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',NULL,25,1,'36553565',15,4536,3148,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background',NULL,1,'36553565','img_5e0e0f11516a4.jpeg','thumb_suraimages-1000614-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg','preview_suraimages-1000614-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000614-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000614-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',NULL,NULL,10635,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10635,'jpeg',NULL,NULL,576,400),(615,18,18,1370,4,'Young male engineer on one knee inspecting a building as he reads from the blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000615-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',NULL,25,1,'36553565',15,4644,3448,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background',NULL,1,'36553565','img_5e0e0f13ab3af.jpeg','thumb_suraimages-1000615-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg','preview_suraimages-1000615-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000615-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000615-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',NULL,NULL,10636,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10636,'jpeg',NULL,NULL,539,400),(616,18,18,1370,4,'Young male engineer on one knee inspecting a building as he reads from the blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000616-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',NULL,25,1,'36553565',15,4740,3196,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background',NULL,1,'36553565','img_5e0e0f1775733.jpeg','thumb_suraimages-1000616-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg','preview_suraimages-1000616-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000616-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000616-young-male-engineer-on-one-knee-inspecting-a-building-as-he-reads-from-the-blueprint.jpeg',NULL,NULL,10637,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10637,'jpeg',NULL,NULL,593,400),(617,18,18,1370,4,'Two young male engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000617-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'15246903',15,4980,3328,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background',NULL,1,'15246903','img_5e0e0f19f4004.jpeg','thumb_suraimages-1000617-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000617-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000617-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000617-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10638,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10638,'jpeg',NULL,NULL,599,400),(618,18,18,1370,4,'Two young male engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Measuring, Measure, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, Tape, Measure, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000618-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'15246903',15,5076,3316,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Helmet, Helmets, Holding, Hold, Kneeling, Looking, Look, Man, Male, Men, Measuring, Measure, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, Tape, Measure, White, Background',NULL,1,'15246903','img_5e0e0f1d83bb7.jpeg','thumb_suraimages-1000618-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000618-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000618-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000618-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10639,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10639,'jpeg',NULL,NULL,612,400),(619,18,18,1370,4,'Two happy young male engineers shaking hands as the inspecting a building','Accomplished, African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Confident, Engineer, Engineers, Handshake, Hand, Shaking, Helmet, Helmets, Holding, Hold, Kneeling, Laugh, Laughing, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000619-two-happy-young-male-engineers-shaking-hands-as-the-inspecting-a-building.jpeg',NULL,40,2,'15246903',15,5088,3628,80,27,0,0,NULL,NULL,'Accomplished, African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Confident, Engineer, Engineers, Handshake, Hand, Shaking, Helmet, Helmets, Holding, Hold, Kneeling, Laugh, Laughing, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Studio, Studying, Study, Talking, Talk, White, Background',NULL,1,'15246903','img_5e0e0f217ef14.jpeg','thumb_suraimages-1000619-two-happy-young-male-engineers-shaking-hands-as-the-inspecting-a-building.jpeg','preview_suraimages-1000619-two-happy-young-male-engineers-shaking-hands-as-the-inspecting-a-building.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000619-two-happy-young-male-engineers-shaking-hands-as-the-inspecting-a-building.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000619-two-happy-young-male-engineers-shaking-hands-as-the-inspecting-a-building.jpeg',NULL,NULL,10640,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10640,'jpeg',NULL,NULL,561,400),(620,18,18,1370,4,'Two young male engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Studio, Surveying, Survey, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000620-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'15246903',15,3584,5152,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Studio, Surveying, Survey, White, Background',NULL,1,'15246903','img_5e0e0f25b8ab1.jpeg','thumb_suraimages-1000620-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000620-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000620-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000620-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10641,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10641,'jpeg',NULL,NULL,278,400),(621,18,18,1370,4,'Two young male engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Explaining, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Pointing, Profession, Reflector, Jacket, Speaking, Speak, Standing, Stand, Studio, Surveying, Survey, Talking, Talk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000621-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'15246903',15,3664,4976,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Explaining, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Pointing, Profession, Reflector, Jacket, Speaking, Speak, Standing, Stand, Studio, Surveying, Survey, Talking, Talk, White, Background',NULL,1,'15246903','img_5e0e0f2a2a78f.jpeg','thumb_suraimages-1000621-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000621-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000621-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000621-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10642,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10642,'jpeg',NULL,NULL,295,400),(622,18,18,1370,4,'Two young male engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Explaining, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Pointing, Profession, Reflector, Jacket, Speaking, Speak, Standing, Stand, Studio, Surveying, Survey, Talking, Talk, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000622-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'15246903',15,3552,4896,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Explaining, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Pointing, Profession, Reflector, Jacket, Speaking, Speak, Standing, Stand, Studio, Surveying, Survey, Talking, Talk, White, Background',NULL,1,'15246903','img_5e0e0f2edf610.jpeg','thumb_suraimages-1000622-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000622-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000622-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000622-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10643,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10643,'jpeg',NULL,NULL,290,400),(623,18,18,1370,4,'Two young male engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Studio, Surveying, Survey, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000623-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'15246903',15,3508,5040,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Studio, Surveying, Survey, White, Background',NULL,1,'15246903','img_5e0e0f32edf7d.jpeg','thumb_suraimages-1000623-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000623-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000623-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000623-two-young-male-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10644,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10644,'jpeg',NULL,NULL,278,400),(624,18,18,1370,4,'Two happy young engineers shaking hands after a hard day work','Accomplished, African, Africa, Black, Dark, Blueprint, Building, Plan, Confident, Engineer, Engineers, Handshake, Hand, Shaking, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Jovial, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, Warm, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000624-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',NULL,40,2,'15246903',15,5172,3724,80,27,0,0,NULL,NULL,'Accomplished, African, Africa, Black, Dark, Blueprint, Building, Plan, Confident, Engineer, Engineers, Handshake, Hand, Shaking, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Jovial, Laugh, Laughing, Looking, Look, Made it, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, Warm, White, Background',NULL,1,'15246903','img_5e0e0f374a53d.jpeg','thumb_suraimages-1000624-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg','preview_suraimages-1000624-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000624-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000624-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',NULL,NULL,10645,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10645,'jpeg',NULL,NULL,556,400),(625,18,18,1370,4,'Two young male engineers striking a pose holding building blueprint','Achieved, Achieve, African, Africa, Black, Dark, Blueprint, Building, Plan, Confident, Engineer, Engineers, Happiness, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Laugh, Laughing, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000625-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg',NULL,40,2,'15246903',15,3712,5568,80,27,0,0,NULL,NULL,'Achieved, Achieve, African, Africa, Black, Dark, Blueprint, Building, Plan, Confident, Engineer, Engineers, Happiness, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Laugh, Laughing, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, White, Background',NULL,1,'15246903','img_5e0e0f3b835cf.jpeg','thumb_suraimages-1000625-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg','preview_suraimages-1000625-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000625-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000625-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg',NULL,NULL,10646,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10646,'jpeg',NULL,NULL,267,400),(626,18,18,1370,4,'Two young male engineers striking a pose holding building blueprint','Achieved, Achieve, African, Africa, Black, Dark, Blueprint, Building, Plan, Confident, Engineer, Engineers, Happiness, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Laugh, Laughing, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, Thumbs, Up, Thumb, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000626-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg',NULL,40,2,'15246903',15,3680,5184,80,27,0,0,NULL,NULL,'Achieved, Achieve, African, Africa, Black, Dark, Blueprint, Building, Plan, Confident, Engineer, Engineers, Happiness, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Laugh, Laughing, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, Thumbs, Up, Thumb, White, Background',NULL,1,'15246903','img_5e0e0f401abd3.jpeg','thumb_suraimages-1000626-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg','preview_suraimages-1000626-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000626-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000626-two-young-male-engineers-striking-a-pose-holding-building-blueprint.jpeg',NULL,NULL,10647,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10647,'jpeg',NULL,NULL,284,400),(627,18,18,1370,4,'A happy young engineer looking at the camera','African, Africa, Black, Dark, Blueprint, Building, Plan, Confident, Engineer, Engineers, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Laugh, Laughing, Looking, Look, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, Warm, White, Background','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000627-a-happy-young-engineer-looking-at-the-camera.jpeg',NULL,25,1,'',15,2960,4736,50,17,0,0,NULL,NULL,'African, Africa, Black, Dark, Blueprint, Building, Plan, Confident, Engineer, Engineers, Female, Woman, Girl, Lady, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Laugh, Laughing, Looking, Look, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Studio, Warm, White, Background',NULL,1,'','img_5e0e0f4447382.jpeg','thumb_suraimages-1000627-a-happy-young-engineer-looking-at-the-camera.jpeg','preview_suraimages-1000627-a-happy-young-engineer-looking-at-the-camera.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000627-a-happy-young-engineer-looking-at-the-camera.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000627-a-happy-young-engineer-looking-at-the-camera.jpeg',NULL,NULL,10648,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10648,'jpeg',NULL,NULL,250,400),(628,18,18,1370,4,'Two young engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Front, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Surveying, Survey, Tape, Measure, Up, View, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000628-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'95444131',15,3120,4752,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Front, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Surveying, Survey, Tape, Measure, Up, View, White, Background, Working',NULL,1,'95444131','img_5e0e0f46bc8ad.jpeg','thumb_suraimages-1000628-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000628-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000628-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000628-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10649,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10649,'jpeg',NULL,NULL,263,400),(629,18,18,1370,4,'Two young engineers looking at the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Front, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Surveying, Survey, Up, View, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000629-two-young-engineers-looking-at-the-building-blueprint.jpeg',NULL,40,2,'95444131',15,3200,4704,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Front, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Surveying, Survey, Up, View, White, Background, Working',NULL,1,'95444131','img_5e0e0f496bf5a.jpeg','thumb_suraimages-1000629-two-young-engineers-looking-at-the-building-blueprint.jpeg','preview_suraimages-1000629-two-young-engineers-looking-at-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000629-two-young-engineers-looking-at-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000629-two-young-engineers-looking-at-the-building-blueprint.jpeg',NULL,NULL,10650,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10650,'jpeg',NULL,NULL,272,400),(630,18,18,1370,4,'Two young engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Front, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Surveying, Survey, Up, View, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000630-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'95444131',15,3611,4953,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Front, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Surveying, Survey, Up, View, White, Background, Working',NULL,1,'95444131','img_5e0e0f4c29d4c.jpeg','thumb_suraimages-1000630-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000630-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000630-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000630-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10651,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10651,'jpeg',NULL,NULL,292,400),(631,18,18,1370,4,'Two happy young engineers shaking hands after a hard day work','African, Africa, Black, Dark, Blueprint, Building, Plan, Engineer, Engineers, Excited, Exciting, Feeling, Feel, Female, Woman, Girl, Lady, Handshake, Hand, Shaking, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Infront, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Side, Standing, Stand, Pose, Studio, View, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000631-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',NULL,40,2,'95444131',15,3492,4777,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Blueprint, Building, Plan, Engineer, Engineers, Excited, Exciting, Feeling, Feel, Female, Woman, Girl, Lady, Handshake, Hand, Shaking, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Infront, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Side, Standing, Stand, Pose, Studio, View, White, Background, Working',NULL,1,'95444131','img_5e0e0f509e726.jpeg','thumb_suraimages-1000631-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg','preview_suraimages-1000631-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000631-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000631-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',NULL,NULL,10652,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10652,'jpeg',NULL,NULL,292,400),(632,18,18,1370,4,'Two happy young engineers shaking hands after a hard day work','African, Africa, Black, Dark, Blueprint, Building, Plan, Engineer, Engineers, Excited, Exciting, Feeling, Feel, Female, Woman, Girl, Lady, Handshake, Hand, Shaking, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Infront, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Side, Standing, Stand, Standing, Stand, Pose, Studio, View, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000632-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',NULL,40,2,'95444131',15,3392,4642,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Blueprint, Building, Plan, Engineer, Engineers, Excited, Exciting, Feeling, Feel, Female, Woman, Girl, Lady, Handshake, Hand, Shaking, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Infront, Looking, Look, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Side, Standing, Stand, Standing, Stand, Pose, Studio, View, White, Background, Working',NULL,1,'95444131','img_5e0e0f54c76e4.jpeg','thumb_suraimages-1000632-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg','preview_suraimages-1000632-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000632-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000632-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',NULL,NULL,10653,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10653,'jpeg',NULL,NULL,292,400),(633,18,18,1370,4,'Two young engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Away, Back, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Up, View, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000633-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'95444131',15,3436,4877,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Away, Back, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Up, View, White, Background, Working',NULL,1,'95444131','img_5e0e0f5785bd2.jpeg','thumb_suraimages-1000633-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000633-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000633-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000633-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10654,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10654,'jpeg',NULL,NULL,282,400),(634,18,18,1370,4,'Two young engineers inspecting a building as they hold the building blueprint','African, Africa, Black, Dark, Assessing, Assess, Away, Back, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Up, View, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000634-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,40,2,'95444131',15,3339,5028,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, Assessing, Assess, Away, Back, Blueprint, Building, Plan, Engineer, Engineers, Female, Woman, Girl, Lady, Helmet, Helmets, Holding, Hold, Looking, Look, Man, Male, Men, Monitoring, Monitor, People, Plain, Pointing, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, Up, View, White, Background, Working',NULL,1,'95444131','img_5e0e0f5b8dc87.jpeg','thumb_suraimages-1000634-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','preview_suraimages-1000634-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000634-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000634-two-young-engineers-inspecting-a-building-as-they-hold-the-building-blueprint.jpeg',NULL,NULL,10655,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10655,'jpeg',NULL,NULL,266,400),(635,18,NULL,1370,4,'Two happy young engineers shaking hands after a hard day work','African, Africa, Black, Dark, At An Angle, Blueprint, Building, Plan, Engineer, Engineers, Front, Handshake, Hand, Shaking, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, View, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000635-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',NULL,40,2,'95444131',15,3022,4813,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, At An Angle, Blueprint, Building, Plan, Engineer, Engineers, Front, Handshake, Hand, Shaking, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, View, White, Background, Working',NULL,1,'95444131','img_5e0e0f5f9e860.jpeg','thumb_suraimages-1000635-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg','preview_suraimages-1000635-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000635-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000635-two-happy-young-engineers-shaking-hands-after-a-hard-day-work.jpeg',NULL,NULL,10656,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10656,'jpeg',NULL,NULL,251,400),(636,18,18,1370,4,'Two happy young engineers posing and looking at the camera','African, Africa, Black, Dark, At An Angle, Blueprint, Building, Plan, Engineer, Engineers, Front, Happiness, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, View, Warm, White, Background, Working','2018-07-18 14:49:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000636-two-happy-young-engineers-posing-and-looking-at-the-camera.jpeg',NULL,40,2,'95444131',15,3230,4835,80,27,0,0,NULL,NULL,'African, Africa, Black, Dark, At An Angle, Blueprint, Building, Plan, Engineer, Engineers, Front, Happiness, Happy, Smiling, Smile, Helmet, Helmets, Holding, Hold, Man, Male, Men, People, Plain, Profession, Reflector, Jacket, Standing, Stand, Pose, Studio, View, Warm, White, Background, Working',NULL,1,'95444131','img_5e0e0f623c48e.jpeg','thumb_suraimages-1000636-two-happy-young-engineers-posing-and-looking-at-the-camera.jpeg','preview_suraimages-1000636-two-happy-young-engineers-posing-and-looking-at-the-camera.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000636-two-happy-young-engineers-posing-and-looking-at-the-camera.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000636-two-happy-young-engineers-posing-and-looking-at-the-camera.jpeg',NULL,NULL,10657,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10657,'jpeg',NULL,NULL,267,400),(637,13,18,1370,4,'Confident male business executive showing a thumb up as he holds his jacket with the other hand','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background','2018-08-24 09:22:58','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000637-confident-male-business-executive-showing-a-thumb-up-as-he-holds-his-jacket-with-the-other-hand.jpeg',NULL,25,1,'33327128',15,4065,5736,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background',NULL,1,'33327128','img_5e0e0f651318b.jpeg','thumb_suraimages-1000637-confident-male-business-executive-showing-a-thumb-up-as-he-holds-his-jacket-with-the-other-hand.jpeg','preview_suraimages-1000637-confident-male-business-executive-showing-a-thumb-up-as-he-holds-his-jacket-with-the-other-hand.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000637-confident-male-business-executive-showing-a-thumb-up-as-he-holds-his-jacket-with-the-other-hand.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000637-confident-male-business-executive-showing-a-thumb-up-as-he-holds-his-jacket-with-the-other-hand.jpeg',NULL,NULL,10664,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10664,'jpeg',NULL,NULL,283,400),(638,13,18,1370,4,'Confident male business executive holding his hands together','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Executive, Corporate, Front, Happy, Smiling, Smile, Made it, Man, Male, Men, People, Plain, Studio, View, Warm, Wear, Wearing, White, Background, Young, Youth, Youthful, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background','2018-08-25 21:28:06','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000638-confident-male-business-executive-holding-his-hands-together.jpeg',NULL,25,1,'33327128',15,3534,4898,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Contempt, Executive, Corporate, Front, Happy, Smiling, Smile, Made it, Man, Male, Men, People, Plain, Studio, View, Warm, Wear, Wearing, White, Background, Young, Youth, Youthful, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background',NULL,1,'33327128','img_5e0e0f6c36a14.jpeg','thumb_suraimages-1000638-confident-male-business-executive-holding-his-hands-together.jpeg','preview_suraimages-1000638-confident-male-business-executive-holding-his-hands-together.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000638-confident-male-business-executive-holding-his-hands-together.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000638-confident-male-business-executive-holding-his-hands-together.jpeg',NULL,NULL,10665,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10665,'jpeg',NULL,NULL,289,400),(639,13,18,1370,4,'Confident male business executive holding his chin as he looks at the camera','Arms, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Crossing, Cross, Crossed, Dark, Executive, Corporate, Front, Full, Body, Size, Made it, Man, Male, Men, Official, Plain, Serious, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background','2018-08-25 21:28:07','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000639-confident-male-business-executive-holding-his-chin-as-he-looks-at-the-camera.jpeg',NULL,25,1,'33327128',15,3648,5472,50,17,0,0,NULL,NULL,'Arms, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Crossing, Cross, Crossed, Dark, Executive, Corporate, Front, Full, Body, Size, Made it, Man, Male, Men, Official, Plain, Serious, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background',NULL,1,'33327128','img_5e0e0f709aee2.jpeg','thumb_suraimages-1000639-confident-male-business-executive-holding-his-chin-as-he-looks-at-the-camera.jpeg','preview_suraimages-1000639-confident-male-business-executive-holding-his-chin-as-he-looks-at-the-camera.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000639-confident-male-business-executive-holding-his-chin-as-he-looks-at-the-camera.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000639-confident-male-business-executive-holding-his-chin-as-he-looks-at-the-camera.jpeg',NULL,NULL,10666,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10666,'jpeg',NULL,NULL,267,400),(640,13,18,1370,4,'Clueless male business executive shrugging off with arms stretched out','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Front, Made it, View, Wear, Wearing, Not, Sure, Gesture, Expression, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful,','2018-08-25 21:28:09','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000640-clueless-male-business-executive-shrugging-off-with-arms-stretched-out.jpeg',NULL,25,1,'33327128',15,3401,4808,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Front, Made it, View, Wear, Wearing, Not, Sure, Gesture, Expression, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful,',NULL,1,'33327128','img_5e0e0f753e874.jpeg','thumb_suraimages-1000640-clueless-male-business-executive-shrugging-off-with-arms-stretched-out.jpeg','preview_suraimages-1000640-clueless-male-business-executive-shrugging-off-with-arms-stretched-out.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000640-clueless-male-business-executive-shrugging-off-with-arms-stretched-out.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000640-clueless-male-business-executive-shrugging-off-with-arms-stretched-out.jpeg',NULL,NULL,10667,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10667,'jpeg',NULL,NULL,283,400),(641,13,18,1370,4,'A happy male business executive','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background','2018-08-25 21:28:09','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000641-a-happy-male-business-executive.jpeg',NULL,25,1,'33327128',15,2862,4582,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background',NULL,1,'33327128','img_5e0e0f790925e.jpeg','thumb_suraimages-1000641-a-happy-male-business-executive.jpeg','preview_suraimages-1000641-a-happy-male-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000641-a-happy-male-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000641-a-happy-male-business-executive.jpeg',NULL,NULL,10668,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10668,'jpeg',NULL,NULL,250,400),(642,13,18,1370,4,'A happy male business executive','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful','2018-08-30 18:48:18','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000642-a-happy-male-business-executive.jpeg',NULL,25,1,NULL,15,3648,5140,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,NULL,'img_5e0e0f7b5bca3.jpeg','thumb_suraimages-1000642-a-happy-male-business-executive.jpeg','preview_suraimages-1000642-a-happy-male-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000642-a-happy-male-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000642-a-happy-male-business-executive.jpeg',NULL,NULL,10669,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10669,'jpeg',NULL,NULL,284,400),(643,13,18,1370,4,'A happy male business executive','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful','2018-08-30 18:48:19','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000643-a-happy-male-business-executive.jpeg',NULL,25,1,'33327128',15,3648,5130,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'33327128','img_5e0e0f7fb7892.jpeg','thumb_suraimages-1000643-a-happy-male-business-executive.jpeg','preview_suraimages-1000643-a-happy-male-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000643-a-happy-male-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000643-a-happy-male-business-executive.jpeg',NULL,NULL,10670,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10670,'jpeg',NULL,NULL,284,400),(644,13,18,1370,4,'A happy male business executive giving thumbs up','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Thumbs, Up, Happy, Smiling, Work,','2018-08-30 18:48:20','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000644-a-happy-male-business-executive-giving-thumbs-up.jpeg',NULL,25,1,'33327128',15,3648,5472,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Thumbs, Up, Happy, Smiling, Work,',NULL,1,'33327128','img_5e0e0f841e01e.jpeg','thumb_suraimages-1000644-a-happy-male-business-executive-giving-thumbs-up.jpeg','preview_suraimages-1000644-a-happy-male-business-executive-giving-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000644-a-happy-male-business-executive-giving-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000644-a-happy-male-business-executive-giving-thumbs-up.jpeg',NULL,NULL,10671,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10671,'jpeg',NULL,NULL,267,400),(645,13,18,1370,4,'A confident business executive looking away as he smiles','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Sure, Work, Worker, Professional,','2018-08-30 19:20:57','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000645-a-confident-business-executive-looking-away-as-he-smiles.jpeg',NULL,25,1,'72476027',15,3648,5044,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Sure, Work, Worker, Professional,',NULL,1,'72476027','img_5e0e0f88a9047.jpeg','thumb_suraimages-1000645-a-confident-business-executive-looking-away-as-he-smiles.jpeg','preview_suraimages-1000645-a-confident-business-executive-looking-away-as-he-smiles.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000645-a-confident-business-executive-looking-away-as-he-smiles.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000645-a-confident-business-executive-looking-away-as-he-smiles.jpeg',NULL,NULL,10672,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10672,'jpeg',NULL,NULL,289,400),(646,13,18,1370,4,'A male business executive looking at the camera in disbelief','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Sure, Work, Worker, Professional,','2018-08-30 19:20:57','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000646-a-male-business-executive-looking-at-the-camera-in-disbelief.jpeg',NULL,25,1,'72476027',15,3648,5472,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Sure, Work, Worker, Professional,',NULL,1,'72476027','img_5e0e0f8d3b2b5.jpeg','thumb_suraimages-1000646-a-male-business-executive-looking-at-the-camera-in-disbelief.jpeg','preview_suraimages-1000646-a-male-business-executive-looking-at-the-camera-in-disbelief.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000646-a-male-business-executive-looking-at-the-camera-in-disbelief.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000646-a-male-business-executive-looking-at-the-camera-in-disbelief.jpeg',NULL,NULL,10673,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10673,'jpeg',NULL,NULL,267,400),(647,13,18,1370,4,'A male business executive wondering what to do','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Wondering, Not, Sure, Work, Worker, Professional,','2018-08-30 19:20:58','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000647-a-male-business-executive-wondering-what-to-do.jpeg',NULL,25,1,'72476027',15,3648,5472,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Wondering, Not, Sure, Work, Worker, Professional,',NULL,1,'72476027','img_5e0e0f9189777.jpeg','thumb_suraimages-1000647-a-male-business-executive-wondering-what-to-do.jpeg','preview_suraimages-1000647-a-male-business-executive-wondering-what-to-do.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000647-a-male-business-executive-wondering-what-to-do.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000647-a-male-business-executive-wondering-what-to-do.jpeg',NULL,NULL,10674,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10674,'jpeg',NULL,NULL,267,400),(648,13,18,1370,4,'A happy male business executive isolated in white pointing away ','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful','2018-08-31 22:27:53','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000648-a-happy-male-business-executive-isolated-in-white-pointing-away.jpeg',NULL,25,1,'72476027',15,3628,5191,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0f95e3660.jpeg','thumb_suraimages-1000648-a-happy-male-business-executive-isolated-in-white-pointing-away.jpeg','preview_suraimages-1000648-a-happy-male-business-executive-isolated-in-white-pointing-away.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000648-a-happy-male-business-executive-isolated-in-white-pointing-away.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000648-a-happy-male-business-executive-isolated-in-white-pointing-away.jpeg',NULL,NULL,10675,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10675,'jpeg',NULL,NULL,280,400),(649,13,18,1370,4,'A happy male business executive tightening his tie','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Smiling, Tie, Smart, Dressed, Dressing, Suit,','2018-08-31 22:27:54','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000649-a-happy-male-business-executive-tightening-his-tie.jpeg',NULL,25,1,'72476027',15,3648,5472,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Smiling, Tie, Smart, Dressed, Dressing, Suit,',NULL,1,'72476027','img_5e0e0f9a0f9fd.jpeg','thumb_suraimages-1000649-a-happy-male-business-executive-tightening-his-tie.jpeg','preview_suraimages-1000649-a-happy-male-business-executive-tightening-his-tie.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000649-a-happy-male-business-executive-tightening-his-tie.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000649-a-happy-male-business-executive-tightening-his-tie.jpeg',NULL,NULL,10676,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10676,'jpeg',NULL,NULL,267,400),(650,13,18,1370,4,'A happy male business executive buttoning his jacket','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Smiling, Tie, Smart, Dressed, Dressing, Suit,','2018-08-31 22:27:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000650-a-happy-male-business-executive-buttoning-his-jacket.jpeg',NULL,25,1,'72476027',15,3648,5196,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Smiling, Tie, Smart, Dressed, Dressing, Suit,',NULL,1,'72476027','img_5e0e0f9e5e385.jpeg','thumb_suraimages-1000650-a-happy-male-business-executive-buttoning-his-jacket.jpeg','preview_suraimages-1000650-a-happy-male-business-executive-buttoning-his-jacket.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000650-a-happy-male-business-executive-buttoning-his-jacket.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000650-a-happy-male-business-executive-buttoning-his-jacket.jpeg',NULL,NULL,10677,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10677,'jpeg',NULL,NULL,281,400),(651,13,18,1370,4,'Young male business executive showing a thumb up','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Thumb, Up, Happy, Smile, Smiling, Isolated,','2018-09-02 13:32:10','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000651-young-male-business-executive-showing-a-thumb-up.jpeg',NULL,25,1,'72476027',15,3648,5177,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Thumb, Up, Happy, Smile, Smiling, Isolated,',NULL,1,'72476027','img_5e0e0fa2d13e4.jpeg','thumb_suraimages-1000651-young-male-business-executive-showing-a-thumb-up.jpeg','preview_suraimages-1000651-young-male-business-executive-showing-a-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000651-young-male-business-executive-showing-a-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000651-young-male-business-executive-showing-a-thumb-up.jpeg',NULL,NULL,10678,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10678,'jpeg',NULL,NULL,282,400),(652,13,18,1370,4,'Business executive in blue suit doing a listening gesture','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Listening, Ear, Attentive, Isolated,','2018-09-02 13:32:12','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000652-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',NULL,25,1,'72476027',15,3648,5204,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Listening, Ear, Attentive, Isolated,',NULL,1,'72476027','img_5e0e0fa7cf829.jpeg','thumb_suraimages-1000652-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg','preview_suraimages-1000652-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000652-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000652-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',NULL,NULL,10679,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10679,'jpeg',NULL,NULL,280,400),(653,13,13,1370,4,'A happy business man with his hands in the pocket','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Blue, Standing','2018-09-04 19:19:05','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000653-a-happy-business-man-with-his-hands-in-the-pocket.jpeg',NULL,25,1,'72476027',15,3648,5088,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful, Blue, Standing',NULL,1,'72476027','img_5e0e0fad12abb.jpeg','thumb_suraimages-1000653-a-happy-business-man-with-his-hands-in-the-pocket.jpeg','preview_suraimages-1000653-a-happy-business-man-with-his-hands-in-the-pocket.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000653-a-happy-business-man-with-his-hands-in-the-pocket.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000653-a-happy-business-man-with-his-hands-in-the-pocket.jpeg',NULL,NULL,10680,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10680,'jpeg',NULL,NULL,287,400),(654,13,18,1370,4,'Business executive in blue suit doing a listening gesture','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-08 10:32:47','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000654-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',NULL,25,1,'72476027',15,3648,5087,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fb0e9728.jpeg','thumb_suraimages-1000654-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg','preview_suraimages-1000654-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000654-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000654-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',NULL,NULL,10681,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10681,'jpeg',NULL,NULL,287,400),(655,13,18,1370,4,'Business executive in blue suit doing a listening gesture','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-08 10:32:48','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000655-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',NULL,25,1,'72476027',15,3648,5120,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fb54c299.jpeg','thumb_suraimages-1000655-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg','preview_suraimages-1000655-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000655-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000655-business-executive-in-blue-suit-doing-a-listening-gesture.jpeg',NULL,NULL,10682,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10682,'jpeg',NULL,NULL,285,400),(656,13,18,1370,4,'Young male business executive showing a thumb up','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-08 10:32:49','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000656-young-male-business-executive-showing-a-thumb-up.jpeg',NULL,25,1,'72476027',15,3648,5090,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fb97f8bc.jpeg','thumb_suraimages-1000656-young-male-business-executive-showing-a-thumb-up.jpeg','preview_suraimages-1000656-young-male-business-executive-showing-a-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000656-young-male-business-executive-showing-a-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000656-young-male-business-executive-showing-a-thumb-up.jpeg',NULL,NULL,10683,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10683,'jpeg',NULL,NULL,287,400),(657,13,18,1370,4,'Confident businessman with arms crossed','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-08 10:32:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000657-confident-businessman-with-arms-crossed.jpeg',NULL,25,1,'72476027',15,3648,5188,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fbdd1d61.jpeg','thumb_suraimages-1000657-confident-businessman-with-arms-crossed.jpeg','preview_suraimages-1000657-confident-businessman-with-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000657-confident-businessman-with-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000657-confident-businessman-with-arms-crossed.jpeg',NULL,NULL,10684,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10684,'jpeg',NULL,NULL,281,400),(658,13,18,1370,4,'Confident businessman with arms crossed','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-08 10:32:51','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000658-confident-businessman-with-arms-crossed.jpeg',NULL,25,1,'72476027',15,3648,5092,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Made it, Man, Male, Men, Official, People, Plain, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fc23514f.jpeg','thumb_suraimages-1000658-confident-businessman-with-arms-crossed.jpeg','preview_suraimages-1000658-confident-businessman-with-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000658-confident-businessman-with-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000658-confident-businessman-with-arms-crossed.jpeg',NULL,NULL,10685,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10685,'jpeg',NULL,NULL,287,400),(659,13,18,1370,4,'Confident business woman standing isolated on white background','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Man, Male, Men, People, Plain, Studio, White, Background, Young, Youth, Youthful','2018-09-08 10:32:52','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000659-confident-business-woman-standing-isolated-on-white-background.jpeg',NULL,25,1,'12419322',15,2949,4836,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Man, Male, Men, People, Plain, Studio, White, Background, Young, Youth, Youthful',NULL,1,'12419322','img_5e0e0fc6687d4.jpeg','thumb_suraimages-1000659-confident-business-woman-standing-isolated-on-white-background.jpeg','preview_suraimages-1000659-confident-business-woman-standing-isolated-on-white-background.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000659-confident-business-woman-standing-isolated-on-white-background.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000659-confident-business-woman-standing-isolated-on-white-background.jpeg',NULL,NULL,10686,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10686,'jpeg',NULL,NULL,244,400),(660,13,18,1370,4,'Confident business woman standing isolated on white background','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Man, Male, Men, People, Plain, Studio, White, Background, Young, Youth, Youthful','2018-09-08 10:32:53','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000660-confident-business-woman-standing-isolated-on-white-background.jpeg',NULL,25,1,'12419322',15,2654,4609,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Man, Male, Men, People, Plain, Studio, White, Background, Young, Youth, Youthful',NULL,1,'12419322','img_5e0e0fc968ea1.jpeg','thumb_suraimages-1000660-confident-business-woman-standing-isolated-on-white-background.jpeg','preview_suraimages-1000660-confident-business-woman-standing-isolated-on-white-background.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000660-confident-business-woman-standing-isolated-on-white-background.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000660-confident-business-woman-standing-isolated-on-white-background.jpeg',NULL,NULL,10687,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10687,'jpeg',NULL,NULL,230,400),(661,13,18,1370,4,'Confident business woman standing isolated on white background','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Man, Male, Men, People, Plain, Studio, White, Background, Young, Youth, Youthful','2018-09-08 10:32:54','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000661-confident-business-woman-standing-isolated-on-white-background.jpeg',NULL,25,1,'12419322',15,2962,4748,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Man, Male, Men, People, Plain, Studio, White, Background, Young, Youth, Youthful',NULL,1,'12419322','img_5e0e0fcc057a6.jpeg','thumb_suraimages-1000661-confident-business-woman-standing-isolated-on-white-background.jpeg','preview_suraimages-1000661-confident-business-woman-standing-isolated-on-white-background.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000661-confident-business-woman-standing-isolated-on-white-background.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000661-confident-business-woman-standing-isolated-on-white-background.jpeg',NULL,NULL,10688,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10688,'jpeg',NULL,NULL,250,400),(662,13,18,1370,4,'Business executive standing on isolated white background','Accomplished, Achieved, Achieve, Arms, At An Angle, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Dark, Executive, Corporate, Front, Full, Body, Size, Hands, Hand, Made it, Man, Male, Men, Official, People, Plain, Pocket, Pocketing, Serious, Shot, Standing, Stand, Pose, Studio, Suit, Thinking, Thought, Thoughts, Deep, View, Wear, Wearing, White, Background, Wondering, Wonder, Young, Youth, Youthful','2018-09-14 08:02:05','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000662-business-executive-standing-on-isolated-white-background.jpeg',NULL,25,1,'72476027',15,3316,4961,50,17,0,0,NULL,NULL,'Accomplished, Achieved, Achieve, Arms, At An Angle, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Dark, Executive, Corporate, Front, Full, Body, Size, Hands, Hand, Made it, Man, Male, Men, Official, People, Plain, Pocket, Pocketing, Serious, Shot, Standing, Stand, Pose, Studio, Suit, Thinking, Thought, Thoughts, Deep, View, Wear, Wearing, White, Background, Wondering, Wonder, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fceea1aa.jpeg','thumb_suraimages-1000662-business-executive-standing-on-isolated-white-background.jpeg','preview_suraimages-1000662-business-executive-standing-on-isolated-white-background.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000662-business-executive-standing-on-isolated-white-background.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000662-business-executive-standing-on-isolated-white-background.jpeg',NULL,NULL,10689,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10689,'jpeg',NULL,NULL,267,400),(663,13,18,1370,4,'A confident young business executive','Accomplished, Achieved, Achieve, Arms, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Colour, Confident, Dark, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Full, Body, Size, Hands, Hand, Happy, Smiling, Smile, Holding, Hold, Made it, Man, Male, Men, Official, People, Plain, Pocket, Pocketing, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background, Young, Youth, Youthful','2018-09-14 16:44:21','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000663-a-confident-young-business-executive.jpeg',NULL,25,1,'72476027',15,3150,4823,50,17,0,0,NULL,NULL,'Accomplished, Achieved, Achieve, Arms, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Colour, Confident, Dark, Excited, Exciting, Executive, Corporate, Feeling, Feel, Front, Full, Body, Size, Hands, Hand, Happy, Smiling, Smile, Holding, Hold, Made it, Man, Male, Men, Official, People, Plain, Pocket, Pocketing, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fd25483b.jpeg','thumb_suraimages-1000663-a-confident-young-business-executive.jpeg','preview_suraimages-1000663-a-confident-young-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000663-a-confident-young-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000663-a-confident-young-business-executive.jpeg',NULL,NULL,10690,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10690,'jpeg',NULL,NULL,261,400),(664,13,18,1370,4,'A confident young business executive','Accomplished, Achieved, Achieve, Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Crossing, Cross, Crossed, Executive, Corporate, Full, Body, Size, Hands, Hand, Holding, Hold, Looking, Look, Made it, Man, Male, Men, Official, People, Plain, Serious, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background, Young, Youth, Youthful','2018-09-14 16:44:22','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000664-a-confident-young-business-executive.jpeg',NULL,25,1,'72476027',15,3295,4760,50,17,0,0,NULL,NULL,'Accomplished, Achieved, Achieve, Arms, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Crossing, Cross, Crossed, Executive, Corporate, Full, Body, Size, Hands, Hand, Holding, Hold, Looking, Look, Made it, Man, Male, Men, Official, People, Plain, Serious, Shot, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fd4aa8d3.jpeg','thumb_suraimages-1000664-a-confident-young-business-executive.jpeg','preview_suraimages-1000664-a-confident-young-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000664-a-confident-young-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000664-a-confident-young-business-executive.jpeg',NULL,NULL,10691,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10691,'jpeg',NULL,NULL,277,400),(665,13,18,1370,4,'A happy business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Made it, Official, Plain, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background','2018-09-14 16:44:23','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000665-a-happy-business-executive.jpeg',NULL,25,1,'72476027',15,3501,4878,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Made it, Official, Plain, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background',NULL,1,'72476027','img_5e0e0fd729e13.jpeg','thumb_suraimages-1000665-a-happy-business-executive.jpeg','preview_suraimages-1000665-a-happy-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000665-a-happy-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000665-a-happy-business-executive.jpeg',NULL,NULL,10692,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10692,'jpeg',NULL,NULL,287,400),(666,13,18,1370,4,'Confident business executive','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Front, Made it, Official, Plain, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background','2018-09-14 16:44:23','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000666-confident-business-executive.jpeg',NULL,25,1,'72476027',15,3444,4765,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Front, Made it, Official, Plain, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background',NULL,1,'72476027','img_5e0e0fdad8c07.jpeg','thumb_suraimages-1000666-confident-business-executive.jpeg','preview_suraimages-1000666-confident-business-executive.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000666-confident-business-executive.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000666-confident-business-executive.jpeg',NULL,NULL,10693,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10693,'jpeg',NULL,NULL,289,400),(667,13,18,1370,4,'Business executive giving a thumb up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Front, Made it, Official, Plain, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background','2018-09-14 16:44:24','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000667-business-executive-giving-a-thumb-up.jpeg',NULL,25,1,'72476027',15,3336,4684,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Executive, Corporate, Front, Made it, Official, Plain, Standing, Stand, Pose, Studio, Suit, View, Wear, Wearing, White, Background',NULL,1,'72476027','img_5e0e0fde4dc2c.jpeg','thumb_suraimages-1000667-business-executive-giving-a-thumb-up.jpeg','preview_suraimages-1000667-business-executive-giving-a-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000667-business-executive-giving-a-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000667-business-executive-giving-a-thumb-up.jpeg',NULL,NULL,10694,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10694,'jpeg',NULL,NULL,285,400),(668,13,18,1370,4,'Business executive not sure what to do','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Front, Made it, View, Wear, Wearing, Arms, Stretched, Out, Gesture, Ignore, Unsure,','2018-09-14 16:44:25','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000668-business-executive-not-sure-what-to-do.jpeg',NULL,25,1,'72476027',15,3401,4808,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Front, Made it, View, Wear, Wearing, Arms, Stretched, Out, Gesture, Ignore, Unsure,',NULL,1,'72476027','img_5e0e0fe0c01d9.jpeg','thumb_suraimages-1000668-business-executive-not-sure-what-to-do.jpeg','preview_suraimages-1000668-business-executive-not-sure-what-to-do.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000668-business-executive-not-sure-what-to-do.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000668-business-executive-not-sure-what-to-do.jpeg',NULL,NULL,10695,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10695,'jpeg',NULL,NULL,283,400),(669,13,18,1370,4,'Business executive standing in isolated white background with crossed arms','Business, Businessman, Businessmen, Executive, Corporate, Front, Made it, View, Wear, Wearing, Crossed, Arms, Hands, Smiling, Pose, Suit, Blue, Holding, Hold, Legs, Looking, Look, Made it, Man, Male, Men, People, Pocket, Pocketing, Studio, View, Wear, Wearing, White, Background, Young, Youth, Youthful','2018-09-14 16:44:26','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000669-business-executive-standing-in-isolated-white-background-with-crossed-arms.jpeg',NULL,25,1,'72476027',15,3603,4797,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Executive, Corporate, Front, Made it, View, Wear, Wearing, Crossed, Arms, Hands, Smiling, Pose, Suit, Blue, Holding, Hold, Legs, Looking, Look, Made it, Man, Male, Men, People, Pocket, Pocketing, Studio, View, Wear, Wearing, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fe45f399.jpeg','thumb_suraimages-1000669-business-executive-standing-in-isolated-white-background-with-crossed-arms.jpeg','preview_suraimages-1000669-business-executive-standing-in-isolated-white-background-with-crossed-arms.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000669-business-executive-standing-in-isolated-white-background-with-crossed-arms.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000669-business-executive-standing-in-isolated-white-background-with-crossed-arms.jpeg',NULL,NULL,10696,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10696,'jpeg',NULL,NULL,300,400),(670,13,18,1370,4,'Business executive standing in isolated white background with crossed legs','Arms, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Crossing, Cross, Crossed, Dark, Excited, Exciting, Executive, Corporate, Front, Hands, Hand, Happy, Smiling, Smile, Holding, Hold, Legs, Looking, Look, Made it, Man, Male, Men, People, Pocket, Pocketing, Studio, View, Wear, Wearing, White, Background, Young, Youth, Youthful','2018-09-14 16:44:27','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000670-business-executive-standing-in-isolated-white-background-with-crossed-legs.jpeg',NULL,25,1,'72476027',15,3644,4898,50,17,0,0,NULL,NULL,'Arms, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Crossing, Cross, Crossed, Dark, Excited, Exciting, Executive, Corporate, Front, Hands, Hand, Happy, Smiling, Smile, Holding, Hold, Legs, Looking, Look, Made it, Man, Male, Men, People, Pocket, Pocketing, Studio, View, Wear, Wearing, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0fe81bb13.jpeg','thumb_suraimages-1000670-business-executive-standing-in-isolated-white-background-with-crossed-legs.jpeg','preview_suraimages-1000670-business-executive-standing-in-isolated-white-background-with-crossed-legs.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000670-business-executive-standing-in-isolated-white-background-with-crossed-legs.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000670-business-executive-standing-in-isolated-white-background-with-crossed-legs.jpeg',NULL,NULL,10697,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10697,'jpeg',NULL,NULL,298,400),(671,13,18,1370,4,'Business executive giving thumbs up','Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Front, Full, Body, Size, Made it, Shot, Studio, View, Wear, Wearing, White, Background','2018-09-14 16:44:28','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000671-business-executive-giving-thumbs-up.jpeg',NULL,25,1,'72476027',15,3607,4983,50,17,0,0,NULL,NULL,'Business, Businessman, Businessmen, Businesswoman, Businesswomen, Executive, Corporate, Front, Full, Body, Size, Made it, Shot, Studio, View, Wear, Wearing, White, Background',NULL,1,'72476027','img_5e0e0febdc08f.jpeg','thumb_suraimages-1000671-business-executive-giving-thumbs-up.jpeg','preview_suraimages-1000671-business-executive-giving-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000671-business-executive-giving-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000671-business-executive-giving-thumbs-up.jpeg',NULL,NULL,10698,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10698,'jpeg',NULL,NULL,290,400),(672,13,18,1370,4,'Business man hanging his coat on the shoulder after a hard day work','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful','2018-09-14 16:44:28','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000672-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg',NULL,25,1,'72476027',15,3539,5424,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0ff026d52.jpeg','thumb_suraimages-1000672-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg','preview_suraimages-1000672-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000672-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000672-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg',NULL,NULL,10699,NULL,'Creative Image','Select Image Subtype','Portrait',NULL,NULL,NULL,10699,'jpeg',NULL,NULL,261,400),(673,13,18,1370,4,'Young business executive standing on isolated white background','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful','2018-09-26 19:52:57','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000673-young-business-executive-standing-on-isolated-white-background.jpeg',NULL,25,1,'72476027',15,3093,4626,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0ff50d079.jpeg','thumb_suraimages-1000673-young-business-executive-standing-on-isolated-white-background.jpeg','preview_suraimages-1000673-young-business-executive-standing-on-isolated-white-background.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000673-young-business-executive-standing-on-isolated-white-background.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000673-young-business-executive-standing-on-isolated-white-background.jpeg',NULL,NULL,10701,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10701,'jpeg',NULL,NULL,267,400),(674,13,18,1370,4,'Young business executive laughing out loud','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful','2018-09-26 19:52:58','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000674-young-business-executive-laughing-out-loud.jpeg',NULL,25,1,'72476027',15,3280,4659,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e0ff72b87a.jpeg','thumb_suraimages-1000674-young-business-executive-laughing-out-loud.jpeg','preview_suraimages-1000674-young-business-executive-laughing-out-loud.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000674-young-business-executive-laughing-out-loud.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000674-young-business-executive-laughing-out-loud.jpeg',NULL,NULL,10702,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10702,'jpeg',NULL,NULL,282,400),(675,13,18,1370,4,'Business executive getting something from his pocket','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Pocket, Side, Standing','2018-09-27 20:08:31','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000675-business-executive-getting-something-from-his-pocket.jpeg',NULL,25,1,'72476027',15,3489,4811,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Pocket, Side, Standing',NULL,1,'72476027','img_5e0e0ff970ca7.jpeg','thumb_suraimages-1000675-business-executive-getting-something-from-his-pocket.jpeg','preview_suraimages-1000675-business-executive-getting-something-from-his-pocket.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000675-business-executive-getting-something-from-his-pocket.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000675-business-executive-getting-something-from-his-pocket.jpeg',NULL,NULL,10703,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10703,'jpeg',NULL,NULL,290,400),(676,13,18,1370,4,'Business man carrying his coat on his shoulder as he smiles at the camera','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Standing','2018-09-27 20:08:32','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000676-business-man-carrying-his-coat-on-his-shoulder-as-he-smiles-at-the-camera.jpeg',NULL,25,1,'72476027',15,3520,4928,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Standing',NULL,1,'72476027','img_5e0e0ffce477b.jpeg','thumb_suraimages-1000676-business-man-carrying-his-coat-on-his-shoulder-as-he-smiles-at-the-camera.jpeg','preview_suraimages-1000676-business-man-carrying-his-coat-on-his-shoulder-as-he-smiles-at-the-camera.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000676-business-man-carrying-his-coat-on-his-shoulder-as-he-smiles-at-the-camera.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000676-business-man-carrying-his-coat-on-his-shoulder-as-he-smiles-at-the-camera.jpeg',NULL,NULL,10704,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10704,'jpeg',NULL,NULL,286,400),(677,13,18,1370,4,'Business man hanging his coat on the shoulder after a hard day work','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Standing','2018-09-27 20:08:33','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000677-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg',NULL,25,1,'72476027',15,3536,4816,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Standing',NULL,1,'72476027','img_5e0e1000e5a47.jpeg','thumb_suraimages-1000677-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg','preview_suraimages-1000677-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000677-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000677-business-man-hanging-his-coat-on-the-shoulder-after-a-hard-day-work.jpeg',NULL,NULL,10705,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10705,'jpeg',NULL,NULL,294,400),(678,13,18,1370,4,'A young business executive giving thumb up while smiling','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Standing','2018-09-27 20:08:34','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000678-a-young-business-executive-giving-thumb-up-while-smiling.jpeg',NULL,25,1,'72476027',15,4065,5736,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Standing',NULL,1,'72476027','img_5e0e1004d354c.jpeg','thumb_suraimages-1000678-a-young-business-executive-giving-thumb-up-while-smiling.jpeg','preview_suraimages-1000678-a-young-business-executive-giving-thumb-up-while-smiling.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000678-a-young-business-executive-giving-thumb-up-while-smiling.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000678-a-young-business-executive-giving-thumb-up-while-smiling.jpeg',NULL,NULL,10706,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10706,'jpeg',NULL,NULL,283,400),(679,13,18,1370,4,'Businessman in deep thoughts as he looks up','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Looking, Standing, Away, Up','2018-09-27 20:08:35','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000679-businessman-in-deep-thoughts-as-he-looks-up.jpeg',NULL,25,1,'72476027',15,3169,4793,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Looking, Standing, Away, Up',NULL,1,'72476027','img_5e0e100ccd4bc.jpeg','thumb_suraimages-1000679-businessman-in-deep-thoughts-as-he-looks-up.jpeg','preview_suraimages-1000679-businessman-in-deep-thoughts-as-he-looks-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000679-businessman-in-deep-thoughts-as-he-looks-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000679-businessman-in-deep-thoughts-as-he-looks-up.jpeg',NULL,NULL,10707,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10707,'jpeg',NULL,NULL,264,400),(680,13,18,1370,4,'Businessman in deep thoughts as he looks down','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Looking, Standing, Away,','2018-09-27 20:08:36','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000680-businessman-in-deep-thoughts-as-he-looks-down.jpeg',NULL,25,1,'72476027',15,2903,4683,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Wear, Wearing, White, Background, Young, Youth, Youthful, Looking, Standing, Away,',NULL,1,'72476027','img_5e0e100f3c836.jpeg','thumb_suraimages-1000680-businessman-in-deep-thoughts-as-he-looks-down.jpeg','preview_suraimages-1000680-businessman-in-deep-thoughts-as-he-looks-down.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000680-businessman-in-deep-thoughts-as-he-looks-down.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000680-businessman-in-deep-thoughts-as-he-looks-down.jpeg',NULL,NULL,10708,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10708,'jpeg',NULL,NULL,248,400),(681,13,18,1370,4,'Business executive pointing down while standing','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,','2018-09-27 20:08:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000681-business-executive-pointing-down-while-standing.jpeg',NULL,25,1,'72476027',15,3168,4864,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,',NULL,1,'72476027','img_5e0e101158964.jpeg','thumb_suraimages-1000681-business-executive-pointing-down-while-standing.jpeg','preview_suraimages-1000681-business-executive-pointing-down-while-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000681-business-executive-pointing-down-while-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000681-business-executive-pointing-down-while-standing.jpeg',NULL,NULL,10709,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10709,'jpeg',NULL,NULL,261,400),(682,13,18,1370,4,'Business executive pointing up while standing','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,','2018-09-27 20:08:38','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000682-business-executive-pointing-up-while-standing.jpeg',NULL,25,1,'72476027',15,2717,4776,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,',NULL,1,'72476027','img_5e0e10139ab89.jpeg','thumb_suraimages-1000682-business-executive-pointing-up-while-standing.jpeg','preview_suraimages-1000682-business-executive-pointing-up-while-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000682-business-executive-pointing-up-while-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000682-business-executive-pointing-up-while-standing.jpeg',NULL,NULL,10710,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10710,'jpeg',NULL,NULL,228,400),(683,13,18,1370,4,'Businessman in deep thoughts as he looks up','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,','2018-09-27 20:08:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000683-businessman-in-deep-thoughts-as-he-looks-up.jpeg',NULL,25,1,'72476027',15,3136,4848,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,',NULL,1,'72476027','img_5e0e1015a7b91.jpeg','thumb_suraimages-1000683-businessman-in-deep-thoughts-as-he-looks-up.jpeg','preview_suraimages-1000683-businessman-in-deep-thoughts-as-he-looks-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000683-businessman-in-deep-thoughts-as-he-looks-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000683-businessman-in-deep-thoughts-as-he-looks-up.jpeg',NULL,NULL,10711,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10711,'jpeg',NULL,NULL,259,400),(684,13,18,1370,4,'Business executive giving thumb up while standing','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,','2018-09-27 20:08:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000684-business-executive-giving-thumb-up-while-standing.jpeg',NULL,25,1,'72476027',15,3032,4607,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,',NULL,1,'72476027','img_5e0e1017e7ee5.jpeg','thumb_suraimages-1000684-business-executive-giving-thumb-up-while-standing.jpeg','preview_suraimages-1000684-business-executive-giving-thumb-up-while-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000684-business-executive-giving-thumb-up-while-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000684-business-executive-giving-thumb-up-while-standing.jpeg',NULL,NULL,10712,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10712,'jpeg',NULL,NULL,263,400),(685,13,18,1370,4,'Young business executive looking into white isolated background','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,','2018-09-27 20:08:40','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000685-young-business-executive-looking-into-white-isolated-background.jpeg',NULL,25,1,'72476027',15,3248,4960,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful, Looking, Standing, Away,',NULL,1,'72476027','img_5e0e101a184a0.jpeg','thumb_suraimages-1000685-young-business-executive-looking-into-white-isolated-background.jpeg','preview_suraimages-1000685-young-business-executive-looking-into-white-isolated-background.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000685-young-business-executive-looking-into-white-isolated-background.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000685-young-business-executive-looking-into-white-isolated-background.jpeg',NULL,NULL,10713,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10713,'jpeg',NULL,NULL,262,400),(686,13,18,1370,4,'Business executive man showcasing something','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-30 11:13:20','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000686-business-executive-man-showcasing-something.jpeg',NULL,25,1,'72476027',15,3152,5024,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e101d86bfd.jpeg','thumb_suraimages-1000686-business-executive-man-showcasing-something.jpeg','preview_suraimages-1000686-business-executive-man-showcasing-something.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000686-business-executive-man-showcasing-something.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000686-business-executive-man-showcasing-something.jpeg',NULL,NULL,10714,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10714,'jpeg',NULL,NULL,251,400),(687,13,18,1370,4,'Business executive man standing on white background looking away','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-30 11:13:21','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000687-business-executive-man-standing-on-white-background-looking-away.jpeg',NULL,25,1,'72476027',15,3264,4928,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e101fd4118.jpeg','thumb_suraimages-1000687-business-executive-man-standing-on-white-background-looking-away.jpeg','preview_suraimages-1000687-business-executive-man-standing-on-white-background-looking-away.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000687-business-executive-man-standing-on-white-background-looking-away.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000687-business-executive-man-standing-on-white-background-looking-away.jpeg',NULL,NULL,10715,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10715,'jpeg',NULL,NULL,265,400),(688,13,18,1370,4,'Business executive man standing on white background pointing away','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-30 11:13:22','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000688-business-executive-man-standing-on-white-background-pointing-away.jpeg',NULL,25,1,'72476027',15,3232,5008,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e102311e6d.jpeg','thumb_suraimages-1000688-business-executive-man-standing-on-white-background-pointing-away.jpeg','preview_suraimages-1000688-business-executive-man-standing-on-white-background-pointing-away.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000688-business-executive-man-standing-on-white-background-pointing-away.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000688-business-executive-man-standing-on-white-background-pointing-away.jpeg',NULL,NULL,10716,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10716,'jpeg',NULL,NULL,258,400),(689,13,18,1370,4,'Business executive man standing on white background looking away with arms crossed','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful','2018-09-30 11:13:23','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000689-business-executive-man-standing-on-white-background-looking-away-with-arms-crossed.jpeg',NULL,25,1,'72476027',15,3536,4976,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'72476027','img_5e0e1026a296a.jpeg','thumb_suraimages-1000689-business-executive-man-standing-on-white-background-looking-away-with-arms-crossed.jpeg','preview_suraimages-1000689-business-executive-man-standing-on-white-background-looking-away-with-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000689-business-executive-man-standing-on-white-background-looking-away-with-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000689-business-executive-man-standing-on-white-background-looking-away-with-arms-crossed.jpeg',NULL,NULL,10717,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10717,'jpeg',NULL,NULL,284,400),(690,13,18,1370,4,'Business executive lady standing on isolated white background','Blue, Business, Businesswoman, Businesswomen, Dark, Executive, Corporate, People, Plain, Studio, White, Background, Young, Youth, Youthful, Isolated, Female, Lady, Official, Side, Full, Body, Size, Thinking, Standing, Looking, Serious, Forward, Arms, Crossed,','2018-09-30 11:13:24','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000690-business-executive-lady-standing-on-isolated-white-background.jpeg',NULL,25,1,'12419322',15,3414,5025,50,17,0,0,NULL,NULL,'Blue, Business, Businesswoman, Businesswomen, Dark, Executive, Corporate, People, Plain, Studio, White, Background, Young, Youth, Youthful, Isolated, Female, Lady, Official, Side, Full, Body, Size, Thinking, Standing, Looking, Serious, Forward, Arms, Crossed,',NULL,1,'12419322','img_5e0e102adccba.jpeg','thumb_suraimages-1000690-business-executive-lady-standing-on-isolated-white-background.jpeg','preview_suraimages-1000690-business-executive-lady-standing-on-isolated-white-background.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000690-business-executive-lady-standing-on-isolated-white-background.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000690-business-executive-lady-standing-on-isolated-white-background.jpeg',NULL,NULL,10718,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10718,'jpeg',NULL,NULL,272,400),(691,46,NULL,1370,4,'A happy doctor with his arms crossed','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Confident, Excited, Exciting, Happy, Smiling, Smile, Arms','2018-09-30 12:41:16','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000691-a-happy-doctor-with-his-arms-crossed.jpeg',NULL,25,1,'63322650',15,3261,5133,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Confident, Excited, Exciting, Happy, Smiling, Smile, Arms',NULL,1,'63322650','img_5e0e102eeeb20.jpeg','thumb_suraimages-1000691-a-happy-doctor-with-his-arms-crossed.jpeg','preview_suraimages-1000691-a-happy-doctor-with-his-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000691-a-happy-doctor-with-his-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000691-a-happy-doctor-with-his-arms-crossed.jpeg',NULL,NULL,10719,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10719,'jpeg',NULL,NULL,254,400),(692,46,NULL,1370,4,'A happy doctor with his arms crossed','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Confident, Excited, Exciting, Happy, Smiling, Smile, Jovial, Looking, Look, Arms','2018-09-30 12:41:17','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000692-a-happy-doctor-with-his-arms-crossed.jpeg',NULL,25,1,'63322650',15,3647,5273,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Confident, Excited, Exciting, Happy, Smiling, Smile, Jovial, Looking, Look, Arms',NULL,1,'63322650','img_5e0e1032a83e4.jpeg','thumb_suraimages-1000692-a-happy-doctor-with-his-arms-crossed.jpeg','preview_suraimages-1000692-a-happy-doctor-with-his-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000692-a-happy-doctor-with-his-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000692-a-happy-doctor-with-his-arms-crossed.jpeg',NULL,NULL,10720,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10720,'jpeg',NULL,NULL,277,400),(693,46,NULL,1370,4,'A happy doctor with his arms crossed','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front','2018-09-30 12:41:18','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000693-a-happy-doctor-with-his-arms-crossed.jpeg',NULL,25,1,'63322650',15,3312,5126,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front',NULL,1,'63322650','img_5e0e1036e8cb3.jpeg','thumb_suraimages-1000693-a-happy-doctor-with-his-arms-crossed.jpeg','preview_suraimages-1000693-a-happy-doctor-with-his-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000693-a-happy-doctor-with-his-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000693-a-happy-doctor-with-his-arms-crossed.jpeg',NULL,NULL,10721,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10721,'jpeg',NULL,NULL,258,400),(694,46,NULL,1370,4,'A happy doctor pointing at the camera','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Pointing, Confident, Excited, Exciting, Happy, Smiling, Smile, Jovial, Looking, Look, Warm, Standing, Stand, Pose, Front, Full, Body, Size, Shot','2018-09-30 12:41:19','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000694-a-happy-doctor-pointing-at-the-camera.jpeg',NULL,25,1,'63322650',15,3565,5196,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Pointing, Confident, Excited, Exciting, Happy, Smiling, Smile, Jovial, Looking, Look, Warm, Standing, Stand, Pose, Front, Full, Body, Size, Shot',NULL,1,'63322650','img_5e0e103b18530.jpeg','thumb_suraimages-1000694-a-happy-doctor-pointing-at-the-camera.jpeg','preview_suraimages-1000694-a-happy-doctor-pointing-at-the-camera.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000694-a-happy-doctor-pointing-at-the-camera.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000694-a-happy-doctor-pointing-at-the-camera.jpeg',NULL,NULL,10722,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10722,'jpeg',NULL,NULL,274,400),(695,46,NULL,1370,4,'A happy doctor giving a thumbs up','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Thumbs, Up, Thumb, Warm, Welcoming, Welcome, Looking, Look, Happy, Smiling, Smile, Happiness, Excited, Exciting, Feeling, Feel, Confident, Full, Body, Size, Shot, Front','2018-09-30 12:41:20','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000695-a-happy-doctor-giving-a-thumbs-up.jpeg',NULL,25,1,'63322650',15,3647,5164,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Thumbs, Up, Thumb, Warm, Welcoming, Welcome, Looking, Look, Happy, Smiling, Smile, Happiness, Excited, Exciting, Feeling, Feel, Confident, Full, Body, Size, Shot, Front',NULL,1,'63322650','img_5e0e103fc3929.jpeg','thumb_suraimages-1000695-a-happy-doctor-giving-a-thumbs-up.jpeg','preview_suraimages-1000695-a-happy-doctor-giving-a-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000695-a-happy-doctor-giving-a-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000695-a-happy-doctor-giving-a-thumbs-up.jpeg',NULL,NULL,10723,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10723,'jpeg',NULL,NULL,282,400),(696,46,NULL,1370,4,'A happy doctor pointing at the camera','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Pointing, Standing, Stand, Pose','2018-09-30 12:41:21','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000696-a-happy-doctor-pointing-at-the-camera.jpeg',NULL,25,1,'63322650',15,3312,5018,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Pointing, Standing, Stand, Pose',NULL,1,'63322650','img_5e0e1043e097b.jpeg','thumb_suraimages-1000696-a-happy-doctor-pointing-at-the-camera.jpeg','preview_suraimages-1000696-a-happy-doctor-pointing-at-the-camera.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000696-a-happy-doctor-pointing-at-the-camera.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000696-a-happy-doctor-pointing-at-the-camera.jpeg',NULL,NULL,10724,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10724,'jpeg',NULL,NULL,264,400),(697,46,NULL,1370,4,'A happy doctor with his arms crossed','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Confident, Excited, Exciting, Laugh, Laughing, Looking, Look, Warm, Arms','2018-09-30 12:41:22','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000697-a-happy-doctor-with-his-arms-crossed.jpeg',NULL,25,1,'63322650',15,3544,5225,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Confident, Excited, Exciting, Laugh, Laughing, Looking, Look, Warm, Arms',NULL,1,'63322650','img_5e0e1047b7f2e.jpeg','thumb_suraimages-1000697-a-happy-doctor-with-his-arms-crossed.jpeg','preview_suraimages-1000697-a-happy-doctor-with-his-arms-crossed.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000697-a-happy-doctor-with-his-arms-crossed.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000697-a-happy-doctor-with-his-arms-crossed.jpeg',NULL,NULL,10725,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10725,'jpeg',NULL,NULL,271,400),(698,46,NULL,1370,4,'A happy doctor doing a welcoming gesture','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Jovial, Jubilant, Looking, Look, Happy, Smiling, Smile, Happiness, Excited, Exciting, Welcoming, Welcome, Warm, Standing, Stand, Pose, Arms, Stretching, Stretch','2018-09-30 12:41:23','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000698-a-happy-doctor-doing-a-welcoming-gesture.jpeg',NULL,25,1,'63322650',15,3512,4943,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Jovial, Jubilant, Looking, Look, Happy, Smiling, Smile, Happiness, Excited, Exciting, Welcoming, Welcome, Warm, Standing, Stand, Pose, Arms, Stretching, Stretch',NULL,1,'63322650','img_5e0e104c16020.jpeg','thumb_suraimages-1000698-a-happy-doctor-doing-a-welcoming-gesture.jpeg','preview_suraimages-1000698-a-happy-doctor-doing-a-welcoming-gesture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000698-a-happy-doctor-doing-a-welcoming-gesture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000698-a-happy-doctor-doing-a-welcoming-gesture.jpeg',NULL,NULL,10726,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10726,'jpeg',NULL,NULL,284,400),(699,46,NULL,1370,4,'A happy doctor raising his arms','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Stretching, Stretch, Excited, Exciting, Welcoming, Welcome, Looking, Look, Happy, Smiling, Smile, Jovial, Jubilant','2018-09-30 12:41:24','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000699-a-happy-doctor-raising-his-arms.jpeg',NULL,25,1,'63322650',15,3441,5123,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Full, Body, Size, Shot, Front, Stretching, Stretch, Excited, Exciting, Welcoming, Welcome, Looking, Look, Happy, Smiling, Smile, Jovial, Jubilant',NULL,1,'63322650','img_5e0e105064021.jpeg','thumb_suraimages-1000699-a-happy-doctor-raising-his-arms.jpeg','preview_suraimages-1000699-a-happy-doctor-raising-his-arms.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000699-a-happy-doctor-raising-his-arms.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000699-a-happy-doctor-raising-his-arms.jpeg',NULL,NULL,10727,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10727,'jpeg',NULL,NULL,269,400),(700,46,NULL,1370,4,'Doctor in a white lab coat standing','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Front, Looking, Look, Curious, Arms, Pocketing, Pocket, Half, Medium, Body, Size','2018-09-30 12:41:25','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000700-doctor-in-a-white-lab-coat-standing.jpeg',NULL,25,1,'63322650',15,3509,5373,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Front, Looking, Look, Curious, Arms, Pocketing, Pocket, Half, Medium, Body, Size',NULL,1,'63322650','img_5e0e105505458.jpeg','thumb_suraimages-1000700-doctor-in-a-white-lab-coat-standing.jpeg','preview_suraimages-1000700-doctor-in-a-white-lab-coat-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000700-doctor-in-a-white-lab-coat-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000700-doctor-in-a-white-lab-coat-standing.jpeg',NULL,NULL,10728,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10728,'jpeg',NULL,NULL,261,400),(701,46,NULL,1370,4,'Doctor looking at his watch','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Front, Looking, Look, Curious, Watch, Time, Checking, Check, Thinking, Half, Medium, Body, Size','2018-09-30 13:42:26','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000701-doctor-looking-at-his-watch.jpeg',NULL,25,1,'63322650',15,3607,4827,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, White, Lab, Coat, People, Isolated, Front, Looking, Look, Curious, Watch, Time, Checking, Check, Thinking, Half, Medium, Body, Size',NULL,1,'63322650','img_5e0e10591be99.jpeg','thumb_suraimages-1000701-doctor-looking-at-his-watch.jpeg','preview_suraimages-1000701-doctor-looking-at-his-watch.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000701-doctor-looking-at-his-watch.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000701-doctor-looking-at-his-watch.jpeg',NULL,NULL,10729,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10729,'jpeg',NULL,NULL,299,400),(702,46,NULL,1370,4,'Doctor taking notes','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Folder, Folders, File, Files, Pen, Pens, Paper, Taking, Take, Writing, Assessing, Assess, Analysing, Examining','2018-09-30 13:42:27','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000702-doctor-taking-notes.jpeg',NULL,25,1,'63322650',15,3437,5169,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Folder, Folders, File, Files, Pen, Pens, Paper, Taking, Take, Writing, Assessing, Assess, Analysing, Examining',NULL,1,'63322650','img_5e0e105d26040.jpeg','thumb_suraimages-1000702-doctor-taking-notes.jpeg','preview_suraimages-1000702-doctor-taking-notes.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000702-doctor-taking-notes.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000702-doctor-taking-notes.jpeg',NULL,NULL,10730,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10730,'jpeg',NULL,NULL,266,400),(703,46,NULL,1370,4,'Doctor perusing patient\'s file records','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Folder, Folders, File, Files, Pen, Pens, Paper, Taking, Take, Writing, Assessing, Assess, Analysing, Examining','2018-09-30 13:42:28','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000703-doctor-perusing-patient-s-file-records.jpeg',NULL,25,1,'63322650',15,3505,5047,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Folder, Folders, File, Files, Pen, Pens, Paper, Taking, Take, Writing, Assessing, Assess, Analysing, Examining',NULL,1,'63322650','img_5e0e106187ffe.jpeg','thumb_suraimages-1000703-doctor-perusing-patient-s-file-records.jpeg','preview_suraimages-1000703-doctor-perusing-patient-s-file-records.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000703-doctor-perusing-patient-s-file-records.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000703-doctor-perusing-patient-s-file-records.jpeg',NULL,NULL,10731,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10731,'jpeg',NULL,NULL,278,400),(704,46,NULL,1370,4,'Doctor holding a patient\'s file','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Folder, Folders, File, Files, Pen, Pens, Paper, Taking, Take, Writing, Assessing, Assess, Analysing, Examining','2018-09-30 13:42:29','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000704-doctor-holding-a-patient-s-file.jpeg',NULL,25,1,'63322650',15,3303,5151,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Folder, Folders, File, Files, Pen, Pens, Paper, Taking, Take, Writing, Assessing, Assess, Analysing, Examining',NULL,1,'63322650','img_5e0e106629c32.jpeg','thumb_suraimages-1000704-doctor-holding-a-patient-s-file.jpeg','preview_suraimages-1000704-doctor-holding-a-patient-s-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000704-doctor-holding-a-patient-s-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000704-doctor-holding-a-patient-s-file.jpeg',NULL,NULL,10732,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10732,'jpeg',NULL,NULL,256,400),(705,46,NULL,1370,4,'Doctor holding a patient\'s file','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Folder, Folders, File, Files, Pen, Pens, Paper, Taking, Take, Writing, Assessing, Assess, Analysing, Examining','2018-09-30 13:42:30','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000705-doctor-holding-a-patient-s-file.jpeg',NULL,25,1,'63322650',15,3451,5270,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Folder, Folders, File, Files, Pen, Pens, Paper, Taking, Take, Writing, Assessing, Assess, Analysing, Examining',NULL,1,'63322650','img_5e0e106a5f755.jpeg','thumb_suraimages-1000705-doctor-holding-a-patient-s-file.jpeg','preview_suraimages-1000705-doctor-holding-a-patient-s-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000705-doctor-holding-a-patient-s-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000705-doctor-holding-a-patient-s-file.jpeg',NULL,NULL,10733,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10733,'jpeg',NULL,NULL,262,400),(706,46,NULL,1370,4,'Doctor in deep thoughts','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, File, Files, Folder, Folders, Holding, Hold, Curious, Feeling, Feel, Looking, Look, Serious, Thinking, Thought, Thoughts, Deep, Wondering, Wonder, Worried, Worry, Worrying','2018-09-30 13:42:31','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000706-doctor-in-deep-thoughts.jpeg',NULL,25,1,'63322650',15,3530,5165,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, File, Files, Folder, Folders, Holding, Hold, Curious, Feeling, Feel, Looking, Look, Serious, Thinking, Thought, Thoughts, Deep, Wondering, Wonder, Worried, Worry, Worrying',NULL,1,'63322650','img_5e0e106ff09bf.jpeg','thumb_suraimages-1000706-doctor-in-deep-thoughts.jpeg','preview_suraimages-1000706-doctor-in-deep-thoughts.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000706-doctor-in-deep-thoughts.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000706-doctor-in-deep-thoughts.jpeg',NULL,NULL,10734,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10734,'jpeg',NULL,NULL,273,400),(707,46,NULL,1370,4,'Doctor on phone with his patient as he looks at a file he\'s holding','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Mobile, Phone, Smartphone, Listening, Analysing, Talking, Talk, Texting, Text, Standing, Stand, Pose, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Discussing, Taking, Take, File, Files, Folder, Folders, Holding, Hold, Checking, Check, Carrying, Carry','2018-09-30 13:42:32','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000707-doctor-on-phone-with-his-patient-as-he-looks-at-a-file-he-s-holding.jpeg',NULL,25,1,'63322650',15,3504,5214,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Mobile, Phone, Smartphone, Listening, Analysing, Talking, Talk, Texting, Text, Standing, Stand, Pose, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Discussing, Taking, Take, File, Files, Folder, Folders, Holding, Hold, Checking, Check, Carrying, Carry',NULL,1,'63322650','img_5e0e107502041.jpeg','thumb_suraimages-1000707-doctor-on-phone-with-his-patient-as-he-looks-at-a-file-he-s-holding.jpeg','preview_suraimages-1000707-doctor-on-phone-with-his-patient-as-he-looks-at-a-file-he-s-holding.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000707-doctor-on-phone-with-his-patient-as-he-looks-at-a-file-he-s-holding.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000707-doctor-on-phone-with-his-patient-as-he-looks-at-a-file-he-s-holding.jpeg',NULL,NULL,10735,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10735,'jpeg',NULL,NULL,269,400),(708,46,NULL,1370,4,'Doctor texting on his smartphone','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Mobile, Phone, Smartphone, Listening, Analysing, Talking, Talk, Texting, Text, Standing, Stand, Pose, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Discussing, Taking, Take, File, Files, Folder, Folders, Holding, Hold, Checking, Check, Carrying, Carry','2018-09-30 13:42:33','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000708-doctor-texting-on-his-smartphone.jpeg',NULL,25,1,'63322650',15,3359,5241,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Mobile, Phone, Smartphone, Listening, Analysing, Talking, Talk, Texting, Text, Standing, Stand, Pose, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Discussing, Taking, Take, File, Files, Folder, Folders, Holding, Hold, Checking, Check, Carrying, Carry',NULL,1,'63322650','img_5e0e10796b8b4.jpeg','thumb_suraimages-1000708-doctor-texting-on-his-smartphone.jpeg','preview_suraimages-1000708-doctor-texting-on-his-smartphone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000708-doctor-texting-on-his-smartphone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000708-doctor-texting-on-his-smartphone.jpeg',NULL,NULL,10736,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10736,'jpeg',NULL,NULL,256,400),(709,46,NULL,1370,4,'Doctor on phone with his patient','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Mobile, Phone, Smartphone, Listening, Analysing, Talking, Talk, Texting, Text, Standing, Stand, Pose, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Discussing, Taking, Take, File, Files, Folder, Folders, Holding, Hold, Checking, Check, Carrying, Carry','2018-09-30 13:42:34','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000709-doctor-on-phone-with-his-patient.jpeg',NULL,25,1,'63322650',15,3568,5240,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Mobile, Phone, Smartphone, Listening, Analysing, Talking, Talk, Texting, Text, Standing, Stand, Pose, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Discussing, Taking, Take, File, Files, Folder, Folders, Holding, Hold, Checking, Check, Carrying, Carry',NULL,1,'63322650','img_5e0e107db7097.jpeg','thumb_suraimages-1000709-doctor-on-phone-with-his-patient.jpeg','preview_suraimages-1000709-doctor-on-phone-with-his-patient.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000709-doctor-on-phone-with-his-patient.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000709-doctor-on-phone-with-his-patient.jpeg',NULL,NULL,10737,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10737,'jpeg',NULL,NULL,272,400),(710,46,NULL,1370,4,'Doctor taking a picture of a file he\'s holding','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Mobile, Phone, Smartphone, Listening, Analysing, Talking, Talk, Texting, Text, Standing, Stand, Pose, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Discussing, Taking, Take, File, Files, Folder, Folders, Holding, Hold, Checking, Check, Carrying, Carry','2018-09-30 13:42:35','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000710-doctor-taking-a-picture-of-a-file-he-s-holding.jpeg',NULL,25,1,'63322650',15,3258,5195,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Full, Body, Size, Front, Side, Mobile, Phone, Smartphone, Listening, Analysing, Talking, Talk, Texting, Text, Standing, Stand, Pose, Happy, Smiling, Smile, Laugh, Laughing, Looking, Look, Discussing, Taking, Take, File, Files, Folder, Folders, Holding, Hold, Checking, Check, Carrying, Carry',NULL,1,'63322650','img_5e0e108218b98.jpeg','thumb_suraimages-1000710-doctor-taking-a-picture-of-a-file-he-s-holding.jpeg','preview_suraimages-1000710-doctor-taking-a-picture-of-a-file-he-s-holding.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000710-doctor-taking-a-picture-of-a-file-he-s-holding.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000710-doctor-taking-a-picture-of-a-file-he-s-holding.jpeg',NULL,NULL,10738,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10738,'jpeg',NULL,NULL,251,400),(711,46,NULL,1370,4,'Doctor looking at an x-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Checking, Check','2018-09-30 14:37:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000711-doctor-looking-at-an-x-ray.jpeg',NULL,25,1,'63322650',15,3147,5089,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Checking, Check',NULL,1,'63322650','img_5e0e1085c91f9.jpeg','thumb_suraimages-1000711-doctor-looking-at-an-x-ray.jpeg','preview_suraimages-1000711-doctor-looking-at-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000711-doctor-looking-at-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000711-doctor-looking-at-an-x-ray.jpeg',NULL,NULL,10739,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10739,'jpeg',NULL,NULL,247,400),(712,46,NULL,1370,4,'Doctor holding x-ray up in the air','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Checking, Check','2018-09-30 14:37:51','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000712-doctor-holding-x-ray-up-in-the-air.jpeg',NULL,25,1,'63322650',15,3712,5568,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Checking, Check',NULL,1,'63322650','img_5e0e10898b531.jpeg','thumb_suraimages-1000712-doctor-holding-x-ray-up-in-the-air.jpeg','preview_suraimages-1000712-doctor-holding-x-ray-up-in-the-air.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000712-doctor-holding-x-ray-up-in-the-air.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000712-doctor-holding-x-ray-up-in-the-air.jpeg',NULL,NULL,10740,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10740,'jpeg',NULL,NULL,267,400),(713,46,NULL,1370,4,'Doctor Doctor looking at an x-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Checking, Check','2018-09-30 14:37:52','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000713-doctor-doctor-looking-at-an-x-ray.jpeg',NULL,25,1,'63322650',15,3569,5392,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Looking, Look, Standing, Stand, Pose, Checking, Check',NULL,1,'63322650','img_5e0e108e90746.jpeg','thumb_suraimages-1000713-doctor-doctor-looking-at-an-x-ray.jpeg','preview_suraimages-1000713-doctor-doctor-looking-at-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000713-doctor-doctor-looking-at-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000713-doctor-doctor-looking-at-an-x-ray.jpeg',NULL,NULL,10741,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10741,'jpeg',NULL,NULL,265,400),(714,46,NULL,1370,4,'Doctor talking on phone as he looks at an x-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Half, Medium, Body, Size, Standing, Stand, Pose, Checking, Check, Assessing, Assess, Studying, Study, Taking, Take, Mobile, Phone, Smartphone','2018-09-30 14:37:53','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000714-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg',NULL,25,1,'63322650',15,3540,5095,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Half, Medium, Body, Size, Standing, Stand, Pose, Checking, Check, Assessing, Assess, Studying, Study, Taking, Take, Mobile, Phone, Smartphone',NULL,1,'63322650','img_5e0e1093171f4.jpeg','thumb_suraimages-1000714-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg','preview_suraimages-1000714-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000714-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000714-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg',NULL,NULL,10742,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10742,'jpeg',NULL,NULL,278,400),(715,46,NULL,1370,4,'Doctor holding x-ray up in the air with both hands','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Half, Medium, Body, Size, Standing, Stand, Pose, Checking, Check, Assessing, Assess, Studying, Study, Taking, Take, Mobile, Phone, Smartphone','2018-09-30 14:37:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000715-doctor-holding-x-ray-up-in-the-air-with-both-hands.jpeg',NULL,25,1,'63322650',15,3712,5568,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Full, Body, Size, Front, Side, Half, Medium, Body, Size, Standing, Stand, Pose, Checking, Check, Assessing, Assess, Studying, Study, Taking, Take, Mobile, Phone, Smartphone',NULL,1,'63322650','img_5e0e1097862ae.jpeg','thumb_suraimages-1000715-doctor-holding-x-ray-up-in-the-air-with-both-hands.jpeg','preview_suraimages-1000715-doctor-holding-x-ray-up-in-the-air-with-both-hands.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000715-doctor-holding-x-ray-up-in-the-air-with-both-hands.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000715-doctor-holding-x-ray-up-in-the-air-with-both-hands.jpeg',NULL,NULL,10743,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10743,'jpeg',NULL,NULL,267,400),(716,46,NULL,1370,4,'Doctor looking at an x-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Front, Side, Half, Medium, Body, Size, Standing, Stand, Pose, Checking, Check, Assessing, Assess, Studying, Study, Taking, Take, Mobile, Phone, Smartphone','2018-09-30 14:37:56','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000716-doctor-looking-at-an-x-ray.jpeg',NULL,25,1,'63322650',15,3712,5568,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Front, Side, Half, Medium, Body, Size, Standing, Stand, Pose, Checking, Check, Assessing, Assess, Studying, Study, Taking, Take, Mobile, Phone, Smartphone',NULL,1,'63322650','img_5e0e109c8065f.jpeg','thumb_suraimages-1000716-doctor-looking-at-an-x-ray.jpeg','preview_suraimages-1000716-doctor-looking-at-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000716-doctor-looking-at-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000716-doctor-looking-at-an-x-ray.jpeg',NULL,NULL,10744,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10744,'jpeg',NULL,NULL,267,400),(717,46,NULL,1370,4,'Doctor examining the x-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Front, Side, Half, Medium, Body, Size, Standing, Stand, Pose, Checking, Check, Assessing, Assess, Studying, Study, Taking, Take, Mobile, Phone, Smartphone','2018-09-30 14:37:57','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000717-doctor-examining-the-x-ray.jpeg',NULL,25,1,'63322650',15,3712,5568,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, X-ray, Analysing, Examining, Talking, Talk, Working, Front, Side, Half, Medium, Body, Size, Standing, Stand, Pose, Checking, Check, Assessing, Assess, Studying, Study, Taking, Take, Mobile, Phone, Smartphone',NULL,1,'63322650','img_5e0e10a157ae8.jpeg','thumb_suraimages-1000717-doctor-examining-the-x-ray.jpeg','preview_suraimages-1000717-doctor-examining-the-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000717-doctor-examining-the-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000717-doctor-examining-the-x-ray.jpeg',NULL,NULL,10745,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10745,'jpeg',NULL,NULL,267,400),(718,46,NULL,1370,4,'Doctor taking a picture of an x-ray he\'s holding','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working','2018-09-30 14:37:58','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000718-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg',NULL,25,1,'63322650',15,3712,5568,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working',NULL,1,'63322650','img_5e0e10a6383da.jpeg','thumb_suraimages-1000718-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg','preview_suraimages-1000718-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000718-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000718-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg',NULL,NULL,10746,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10746,'jpeg',NULL,NULL,267,400),(719,46,NULL,1370,4,'Doctor talking on phone as he looks at an x-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working','2018-09-30 14:37:59','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000719-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg',NULL,25,1,'63322650',15,3712,5568,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working',NULL,1,'63322650','img_5e0e10aab7725.jpeg','thumb_suraimages-1000719-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg','preview_suraimages-1000719-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000719-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000719-doctor-talking-on-phone-as-he-looks-at-an-x-ray.jpeg',NULL,NULL,10747,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10747,'jpeg',NULL,NULL,267,400),(720,46,NULL,1370,4,'Doctor taking a picture of an x-ray he\'s holding','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working','2018-09-30 14:38:00','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000720-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg',NULL,25,1,'63322650',15,3712,4790,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working',NULL,1,'63322650','img_5e0e10aebb888.jpeg','thumb_suraimages-1000720-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg','preview_suraimages-1000720-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000720-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000720-doctor-taking-a-picture-of-an-x-ray-he-s-holding.jpeg',NULL,NULL,10748,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10748,'jpeg',NULL,NULL,310,400),(721,13,18,1370,4,'Male doctor on phone while holding an X-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working','2018-10-07 11:58:13','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000721-male-doctor-on-phone-while-holding-an-x-ray.jpeg',NULL,25,1,'63322650',15,3712,4802,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working',NULL,1,'63322650','img_5e0e10b2f1513.jpeg','thumb_suraimages-1000721-male-doctor-on-phone-while-holding-an-x-ray.jpeg','preview_suraimages-1000721-male-doctor-on-phone-while-holding-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000721-male-doctor-on-phone-while-holding-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000721-male-doctor-on-phone-while-holding-an-x-ray.jpeg',NULL,NULL,10753,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10753,'jpeg',NULL,NULL,309,400),(722,13,18,1370,4,'Male doctor snapping a photo of an X-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working','2018-10-07 11:58:14','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000722-male-doctor-snapping-a-photo-of-an-x-ray.jpeg',NULL,25,1,'63322650',15,3712,4799,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working',NULL,1,'63322650','img_5e0e10b74d369.jpeg','thumb_suraimages-1000722-male-doctor-snapping-a-photo-of-an-x-ray.jpeg','preview_suraimages-1000722-male-doctor-snapping-a-photo-of-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000722-male-doctor-snapping-a-photo-of-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000722-male-doctor-snapping-a-photo-of-an-x-ray.jpeg',NULL,NULL,10754,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10754,'jpeg',NULL,NULL,309,400),(723,13,18,1370,4,'A happy male doctor on phone while holding an X-ray','Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working','2018-10-07 11:58:15','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000723-a-happy-male-doctor-on-phone-while-holding-an-x-ray.jpeg',NULL,25,1,'63322650',15,3712,4789,50,17,0,0,NULL,NULL,'Surgeon, Doctor, Doctors, Nurse, Nurses, Studio, Plain, White, Background, Man, Male, Men, Stethoscope, Lab, Coat, White, People, Isolated, Smartphone, Mobile, Phone, Taking, Take, X-ray, Shot, Half, Medium, Body, Size, Checking, Check, Studying, Study, Talking, Talk, Examining, Analysing, Looking, Look, Happy, Smiling, Smile, Front, Side, Standing, Stand, Pose, Assessing, Assess, Working',NULL,1,'63322650','img_5e0e10bbbdaa7.jpeg','thumb_suraimages-1000723-a-happy-male-doctor-on-phone-while-holding-an-x-ray.jpeg','preview_suraimages-1000723-a-happy-male-doctor-on-phone-while-holding-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000723-a-happy-male-doctor-on-phone-while-holding-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000723-a-happy-male-doctor-on-phone-while-holding-an-x-ray.jpeg',NULL,NULL,10755,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10755,'jpeg',NULL,NULL,310,400),(724,13,18,1370,4,'A happy female doctor','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Full, Body, Size, File, Files, Folder, Folders, Pen, Pens, Happy, Smiling, Smile, Jovial, Excited, Exciting, Confident, Looking, Look, Holding, Hold, Standing, Stand, Pose, Isolated','2018-10-07 11:58:16','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000724-a-happy-female-doctor.jpeg',NULL,25,1,'50811197',15,3428,5158,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Full, Body, Size, File, Files, Folder, Folders, Pen, Pens, Happy, Smiling, Smile, Jovial, Excited, Exciting, Confident, Looking, Look, Holding, Hold, Standing, Stand, Pose, Isolated',NULL,1,'50811197','img_5e0e10c055053.jpeg','thumb_suraimages-1000724-a-happy-female-doctor.jpeg','preview_suraimages-1000724-a-happy-female-doctor.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000724-a-happy-female-doctor.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000724-a-happy-female-doctor.jpeg',NULL,NULL,10756,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10756,'jpeg',NULL,NULL,266,400),(725,13,18,1370,4,'A happy female doctor','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Full, Body, Size, File, Files, Folder, Folders, Pen, Pens, Happy, Smiling, Smile, Jovial, Excited, Exciting, Confident, Looking, Look, Holding, Hold, Standing, Stand, Pose, Isolated','2018-10-07 11:58:17','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000725-a-happy-female-doctor.jpeg',NULL,25,1,'50811197',15,3469,5321,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Full, Body, Size, File, Files, Folder, Folders, Pen, Pens, Happy, Smiling, Smile, Jovial, Excited, Exciting, Confident, Looking, Look, Holding, Hold, Standing, Stand, Pose, Isolated',NULL,1,'50811197','img_5e0e10c53cc14.jpeg','thumb_suraimages-1000725-a-happy-female-doctor.jpeg','preview_suraimages-1000725-a-happy-female-doctor.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000725-a-happy-female-doctor.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000725-a-happy-female-doctor.jpeg',NULL,NULL,10757,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10757,'jpeg',NULL,NULL,261,400),(726,13,18,1370,4,'A happy female doctor','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Full, Body, Size, File, Files, Folder, Folders, Pen, Pens, Happy, Smiling, Smile, Jovial, Excited, Exciting, Confident, Looking, Look, Holding, Hold, Standing, Stand, Pose, Isolated','2018-10-07 11:58:18','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000726-a-happy-female-doctor.jpeg',NULL,25,1,'50811197',15,3498,5301,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Full, Body, Size, File, Files, Folder, Folders, Pen, Pens, Happy, Smiling, Smile, Jovial, Excited, Exciting, Confident, Looking, Look, Holding, Hold, Standing, Stand, Pose, Isolated',NULL,1,'50811197','img_5e0e10ca15df2.jpeg','thumb_suraimages-1000726-a-happy-female-doctor.jpeg','preview_suraimages-1000726-a-happy-female-doctor.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000726-a-happy-female-doctor.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000726-a-happy-female-doctor.jpeg',NULL,NULL,10758,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10758,'jpeg',NULL,NULL,264,400),(727,13,18,1370,4,'Female doctor on phone as she examines a patient X-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Full, Body, Size, File, Files, Folder, Folders, Pen, Pens, Happy, Smiling, Smile, Jovial, Excited, Exciting, Looking, Look, Holding, Hold, Standing, Stand, Pose, Half, Medium, Body, Size, X-ray, Mobile, Phone, Smartphone, Analysing, Assessing, Assess, Examining, Taking, Take, Talking, Talk, Isolated','2018-10-07 11:58:19','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000727-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg',NULL,25,1,'50811197',15,3304,5049,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Full, Body, Size, File, Files, Folder, Folders, Pen, Pens, Happy, Smiling, Smile, Jovial, Excited, Exciting, Looking, Look, Holding, Hold, Standing, Stand, Pose, Half, Medium, Body, Size, X-ray, Mobile, Phone, Smartphone, Analysing, Assessing, Assess, Examining, Taking, Take, Talking, Talk, Isolated',NULL,1,'50811197','img_5e0e10ce371dc.jpeg','thumb_suraimages-1000727-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg','preview_suraimages-1000727-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000727-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000727-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg',NULL,NULL,10759,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10759,'jpeg',NULL,NULL,262,400),(728,13,18,1370,4,'Female doctor on phone as she examines a patient X-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Half, Medium, Body, Size, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Jovial, X-ray, Mobile, Phone, Smartphone, Analysing, Assessing, Assess, Examining, Holding, Hold, Taking, Take, Talking, Talk, Isolated','2018-10-07 11:58:20','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000728-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg',NULL,25,1,'50811197',15,3712,5568,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Half, Medium, Body, Size, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Jovial, X-ray, Mobile, Phone, Smartphone, Analysing, Assessing, Assess, Examining, Holding, Hold, Taking, Take, Talking, Talk, Isolated',NULL,1,'50811197','img_5e0e10d22c026.jpeg','thumb_suraimages-1000728-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg','preview_suraimages-1000728-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000728-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000728-female-doctor-on-phone-as-she-examines-a-patient-x-ray.jpeg',NULL,NULL,10760,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10760,'jpeg',NULL,NULL,267,400),(729,13,18,1370,4,'A female doctor taking a photo of an X-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Half, Medium, Body, Size, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Jovial, X-ray, Mobile, Phone, Smartphone, Analysing, Assessing, Assess, Examining, Holding, Hold, Taking, Take, Talking, Talk, Isolated','2018-10-07 11:58:21','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000729-a-female-doctor-taking-a-photo-of-an-x-ray.jpeg',NULL,25,1,'50811197',15,3712,5568,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, White, People, Front, Half, Medium, Body, Size, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Jovial, X-ray, Mobile, Phone, Smartphone, Analysing, Assessing, Assess, Examining, Holding, Hold, Taking, Take, Talking, Talk, Isolated',NULL,1,'50811197','img_5e0e10d6916f0.jpeg','thumb_suraimages-1000729-a-female-doctor-taking-a-photo-of-an-x-ray.jpeg','preview_suraimages-1000729-a-female-doctor-taking-a-photo-of-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000729-a-female-doctor-taking-a-photo-of-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000729-a-female-doctor-taking-a-photo-of-an-x-ray.jpeg',NULL,NULL,10761,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10761,'jpeg',NULL,NULL,267,400),(730,13,18,1370,4,'Female doctor standing next to male surgeon','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Full, Body, Size, Shot, Excited, Exciting, Happy, Smiling, Smile, Jovial, Standing, Stand, Pose, Looking, Look, Arms, Confident, Colleagues, Workmate, Isolated','2018-10-07 11:58:22','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000730-female-doctor-standing-next-to-male-surgeon.jpeg',NULL,40,2,'96173660',15,3345,5321,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Full, Body, Size, Shot, Excited, Exciting, Happy, Smiling, Smile, Jovial, Standing, Stand, Pose, Looking, Look, Arms, Confident, Colleagues, Workmate, Isolated',NULL,1,'96173660','img_5e0e10db4f71b.jpeg','thumb_suraimages-1000730-female-doctor-standing-next-to-male-surgeon.jpeg','preview_suraimages-1000730-female-doctor-standing-next-to-male-surgeon.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000730-female-doctor-standing-next-to-male-surgeon.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000730-female-doctor-standing-next-to-male-surgeon.jpeg',NULL,NULL,10762,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10762,'jpeg',NULL,NULL,251,400),(731,46,18,1370,4,'A female doctor and a male surgeon standing next to each other','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Full, Body, Size, Shot, Excited, Exciting, Happy, Smiling, Smile, Jovial, Standing, Stand, Pose, Looking, Look, Arms, Confident, Colleagues, Workmate, Isolated','2018-10-07 12:29:27','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000731-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,40,2,'96173660',15,3339,5395,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Full, Body, Size, Shot, Excited, Exciting, Happy, Smiling, Smile, Jovial, Standing, Stand, Pose, Looking, Look, Arms, Confident, Colleagues, Workmate, Isolated',NULL,1,'96173660','img_5e0e10e05ec1f.jpeg','thumb_suraimages-1000731-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','preview_suraimages-1000731-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000731-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000731-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,NULL,10763,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10763,'jpeg',NULL,NULL,248,400),(732,46,18,1370,4,'A female doctor and a male surgeon standing next to each other','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Full, Body, Size, Shot, Excited, Exciting, Happy, Smiling, Smile, Jovial, Standing, Stand, Pose, Looking, Look, Arms, Confident, Colleagues, Workmate, Isolated','2018-10-07 12:29:28','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000732-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,40,2,'96173660',15,3712,5568,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Full, Body, Size, Shot, Excited, Exciting, Happy, Smiling, Smile, Jovial, Standing, Stand, Pose, Looking, Look, Arms, Confident, Colleagues, Workmate, Isolated',NULL,1,'96173660','img_5e0e10e518d5a.jpeg','thumb_suraimages-1000732-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','preview_suraimages-1000732-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000732-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000732-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,NULL,10764,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10764,'jpeg',NULL,NULL,267,400),(733,46,18,1370,4,'A female doctor and a male surgeon standing next to each other','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Full, Body, Size, Shot, Excited, Exciting, Happy, Smiling, Smile, Jovial, Standing, Stand, Pose, Looking, Look, Arms, Confident, Colleagues, Workmate, Isolated','2018-10-07 12:29:30','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000733-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,40,2,'96173660',15,3712,5568,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Full, Body, Size, Shot, Excited, Exciting, Happy, Smiling, Smile, Jovial, Standing, Stand, Pose, Looking, Look, Arms, Confident, Colleagues, Workmate, Isolated',NULL,1,'96173660','img_5e0e10ea833e5.jpeg','thumb_suraimages-1000733-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','preview_suraimages-1000733-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000733-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000733-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,NULL,10765,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10765,'jpeg',NULL,NULL,267,400),(734,46,18,1370,4,'A female doctor and a male surgeon standing next to each other','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Shot, Half, Medium, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Confident, Isolated','2018-10-07 12:29:31','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000734-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,40,2,'96173660',15,3712,5568,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Shot, Half, Medium, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Confident, Isolated',NULL,1,'96173660','img_5e0e10ef355e1.jpeg','thumb_suraimages-1000734-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','preview_suraimages-1000734-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000734-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000734-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,NULL,10766,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10766,'jpeg',NULL,NULL,267,400),(735,46,18,1370,4,'A female doctor and a male surgeon standing next to each other','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Shot, Half, Medium, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Confident, Isolated','2018-10-07 12:29:32','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000735-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,40,2,'96173660',15,3712,5568,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Shot, Half, Medium, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Confident, Isolated',NULL,1,'96173660','img_5e0e10f3d0217.jpeg','thumb_suraimages-1000735-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','preview_suraimages-1000735-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000735-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000735-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,NULL,10767,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10767,'jpeg',NULL,NULL,267,400),(736,46,18,1370,4,'A female doctor and a male surgeon standing next to each other','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Shot, Half, Medium, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Confident, Isolated','2018-10-07 12:29:33','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000736-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,40,2,'96173660',15,3712,5568,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, Plain, White, Background, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Man, Male, Men, Beauty, Beautiful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Lab, Coat, Front, Shot, Half, Medium, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Confident, Isolated',NULL,1,'96173660','img_5e0e10f887bec.jpeg','thumb_suraimages-1000736-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','preview_suraimages-1000736-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000736-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000736-a-female-doctor-and-a-male-surgeon-standing-next-to-each-other.jpeg',NULL,NULL,10768,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10768,'jpeg',NULL,NULL,267,400),(737,46,18,1370,4,'Young surgeon standing','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Shot, Full, Body, Size, Half, Medium, Body, Size, Standing, Stand, Pose, Confident, Happy, Smiling, Smile, Looking, Look, Isolated','2018-10-07 12:29:34','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000737-young-surgeon-standing.jpeg',NULL,25,1,'70354878',15,3650,5216,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Shot, Full, Body, Size, Half, Medium, Body, Size, Standing, Stand, Pose, Confident, Happy, Smiling, Smile, Looking, Look, Isolated',NULL,1,'70354878','img_5e0e10fd7cf4a.jpeg','thumb_suraimages-1000737-young-surgeon-standing.jpeg','preview_suraimages-1000737-young-surgeon-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000737-young-surgeon-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000737-young-surgeon-standing.jpeg',NULL,NULL,10769,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10769,'jpeg',NULL,NULL,280,400),(738,46,18,1370,4,'Young surgeon standing','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Shot, Full, Body, Size, Half, Medium, Body, Size, Standing, Stand, Pose, Confident, Happy, Smiling, Smile, Looking, Look, Isolated','2018-10-07 12:29:36','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000738-young-surgeon-standing.jpeg',NULL,25,1,'70354878',15,3468,5247,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Shot, Full, Body, Size, Half, Medium, Body, Size, Standing, Stand, Pose, Confident, Happy, Smiling, Smile, Looking, Look, Isolated',NULL,1,'70354878','img_5e0e1102129db.jpeg','thumb_suraimages-1000738-young-surgeon-standing.jpeg','preview_suraimages-1000738-young-surgeon-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000738-young-surgeon-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000738-young-surgeon-standing.jpeg',NULL,NULL,10770,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10770,'jpeg',NULL,NULL,264,400),(739,46,18,1370,4,'Young surgeon wearing a face mask','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Shot, Full, Body, Size, Half, Medium, Body, Size, Standing, Stand, Pose, Confident, Happy, Smiling, Smile, Looking, Look, Mask, Isolated','2018-10-07 12:29:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000739-young-surgeon-wearing-a-face-mask.jpeg',NULL,25,1,'70354878',15,3335,5179,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Shot, Full, Body, Size, Half, Medium, Body, Size, Standing, Stand, Pose, Confident, Happy, Smiling, Smile, Looking, Look, Mask, Isolated',NULL,1,'70354878','img_5e0e11071f5c5.jpeg','thumb_suraimages-1000739-young-surgeon-wearing-a-face-mask.jpeg','preview_suraimages-1000739-young-surgeon-wearing-a-face-mask.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000739-young-surgeon-wearing-a-face-mask.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000739-young-surgeon-wearing-a-face-mask.jpeg',NULL,NULL,10771,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10771,'jpeg',NULL,NULL,258,400),(740,46,18,1370,4,'Surgeon examining an X-ray ready for operation','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Analysing, Assessing, Assess, Examining, Studying, Study, Working, Looking, Look, Thinking, Standing, Stand, Pose, X-ray, Mask, Isolated','2018-10-07 12:29:38','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000740-surgeon-examining-an-x-ray-ready-for-operation.jpeg',NULL,25,1,'70354878',15,3427,5225,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Analysing, Assessing, Assess, Examining, Studying, Study, Working, Looking, Look, Thinking, Standing, Stand, Pose, X-ray, Mask, Isolated',NULL,1,'70354878','img_5e0e110bc11d0.jpeg','thumb_suraimages-1000740-surgeon-examining-an-x-ray-ready-for-operation.jpeg','preview_suraimages-1000740-surgeon-examining-an-x-ray-ready-for-operation.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000740-surgeon-examining-an-x-ray-ready-for-operation.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000740-surgeon-examining-an-x-ray-ready-for-operation.jpeg',NULL,NULL,10772,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10772,'jpeg',NULL,NULL,262,400),(741,46,18,1370,4,'Male surgeon giving thumb up after looking at an X-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Standing, Stand, Pose, Looking, Look, Thumbs, Up, Thumb, Perfect, Mask, X-ray, Isolated, Face, Mask, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Working,','2018-10-07 13:24:06','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000741-male-surgeon-giving-thumb-up-after-looking-at-an-x-ray.jpeg',NULL,25,1,'70354878',15,3195,5142,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Standing, Stand, Pose, Looking, Look, Thumbs, Up, Thumb, Perfect, Mask, X-ray, Isolated, Face, Mask, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Working,',NULL,1,'70354878','img_5e0e111019468.jpeg','thumb_suraimages-1000741-male-surgeon-giving-thumb-up-after-looking-at-an-x-ray.jpeg','preview_suraimages-1000741-male-surgeon-giving-thumb-up-after-looking-at-an-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000741-male-surgeon-giving-thumb-up-after-looking-at-an-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000741-male-surgeon-giving-thumb-up-after-looking-at-an-x-ray.jpeg',NULL,NULL,10773,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10773,'jpeg',NULL,NULL,249,400),(742,46,18,1370,4,'Male surgeon looking at a patient X-ray ready for theatre','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Standing, Stand, Pose, Looking, Look, Thumbs, Up, Thumb, Perfect, Mask, X-ray, Isolated, Face, Mask,  Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Working,','2018-10-07 13:24:08','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000742-male-surgeon-looking-at-a-patient-x-ray-ready-for-theatre.jpeg',NULL,25,1,'70354878',15,3433,5028,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Man, Male, Men, Turquoise, Blue, Scrubs, Scrub, Front, Standing, Stand, Pose, Looking, Look, Thumbs, Up, Thumb, Perfect, Mask, X-ray, Isolated, Face, Mask,  Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Working,',NULL,1,'70354878','img_5e0e1113c213a.jpeg','thumb_suraimages-1000742-male-surgeon-looking-at-a-patient-x-ray-ready-for-theatre.jpeg','preview_suraimages-1000742-male-surgeon-looking-at-a-patient-x-ray-ready-for-theatre.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000742-male-surgeon-looking-at-a-patient-x-ray-ready-for-theatre.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000742-male-surgeon-looking-at-a-patient-x-ray-ready-for-theatre.jpeg',NULL,NULL,10774,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10774,'jpeg',NULL,NULL,273,400),(743,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-07 13:24:09','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000743-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,25,2,'81888148',15,3502,5298,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e11182670f.jpeg','thumb_suraimages-1000743-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000743-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000743-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000743-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10775,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10775,'jpeg',NULL,NULL,264,400),(744,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-07 13:24:10','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000744-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,25,2,'81888148',15,3712,5536,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e111cbe970.jpeg','thumb_suraimages-1000744-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000744-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000744-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000744-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10776,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10776,'jpeg',NULL,NULL,268,400),(745,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-07 13:24:11','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000745-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,25,2,'81888148',15,3459,5446,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e1121b5146.jpeg','thumb_suraimages-1000745-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000745-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000745-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000745-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10777,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10777,'jpeg',NULL,NULL,254,400),(746,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-07 13:24:12','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000746-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,25,2,'81888148',15,3455,5326,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e11267f04d.jpeg','thumb_suraimages-1000746-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000746-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000746-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000746-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10778,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10778,'jpeg',NULL,NULL,259,400),(747,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-07 13:24:13','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000747-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,25,2,'81888148',15,3518,5395,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e112b9d2d3.jpeg','thumb_suraimages-1000747-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000747-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000747-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000747-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10779,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10779,'jpeg',NULL,NULL,261,400),(748,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-07 13:24:14','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000748-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,25,2,'81888148',15,3483,5443,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e11306fa89.jpeg','thumb_suraimages-1000748-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000748-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000748-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000748-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10780,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10780,'jpeg',NULL,NULL,256,400),(749,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-07 13:24:15','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000749-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,25,2,'81888148',15,3296,5429,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e1134da1ea.jpeg','thumb_suraimages-1000749-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000749-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000749-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000749-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10781,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10781,'jpeg',NULL,NULL,243,400),(750,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-07 13:24:16','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000750-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,25,2,'81888148',15,3542,5423,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e113a3e1fe.jpeg','thumb_suraimages-1000750-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000750-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000750-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000750-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10782,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10782,'jpeg',NULL,NULL,261,400),(751,46,18,1370,4,'Male surgeon and female nurse giving thumbs up','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:23','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000751-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg',NULL,40,2,'81888148',15,3464,5452,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e113f64c10.jpeg','thumb_suraimages-1000751-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg','preview_suraimages-1000751-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000751-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000751-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg',NULL,NULL,10788,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10788,'jpeg',NULL,NULL,254,400),(752,46,18,1370,4,'Male surgeon and female nurse giving a welcome gesture','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:24','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000752-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',NULL,40,2,'81888148',15,3621,5045,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e1144e2e34.jpeg','thumb_suraimages-1000752-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg','preview_suraimages-1000752-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000752-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000752-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',NULL,NULL,10789,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10789,'jpeg',NULL,NULL,287,400),(753,46,18,1370,4,'Male surgeon and female nurse giving a welcome gesture','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:25','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000753-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',NULL,40,2,'81888148',15,3507,5018,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e114a260d8.jpeg','thumb_suraimages-1000753-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg','preview_suraimages-1000753-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000753-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000753-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',NULL,NULL,10790,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10790,'jpeg',NULL,NULL,280,400),(754,46,18,1370,4,'Male surgeon and female nurse giving a welcome gesture','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:26','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000754-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',NULL,40,2,'81888148',15,3614,5121,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e114ecb180.jpeg','thumb_suraimages-1000754-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg','preview_suraimages-1000754-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000754-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000754-male-surgeon-and-female-nurse-giving-a-welcome-gesture.jpeg',NULL,NULL,10791,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10791,'jpeg',NULL,NULL,282,400),(755,46,18,1370,4,'Male surgeon and female nurse going through a patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:27','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000755-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,40,2,'81888148',15,3421,5123,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e1153eb929.jpeg','thumb_suraimages-1000755-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','preview_suraimages-1000755-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000755-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000755-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,NULL,10792,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10792,'jpeg',NULL,NULL,267,400),(756,46,18,1370,4,'Male surgeon and female nurse going through a patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:28','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000756-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,40,2,'81888148',15,2877,5377,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e115886c8d.jpeg','thumb_suraimages-1000756-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','preview_suraimages-1000756-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000756-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000756-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,NULL,10793,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10793,'jpeg',NULL,NULL,214,400),(757,46,18,1370,4,'Male surgeon and female nurse going through a patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:29','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000757-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,40,2,'81888148',15,2971,5094,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e115b50c23.jpeg','thumb_suraimages-1000757-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','preview_suraimages-1000757-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000757-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000757-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,NULL,10794,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10794,'jpeg',NULL,NULL,233,400),(758,46,18,1370,4,'Male surgeon and female nurse going through a patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:30','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000758-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,40,2,'81888148',15,2855,5288,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e115e12be9.jpeg','thumb_suraimages-1000758-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','preview_suraimages-1000758-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000758-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000758-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,NULL,10795,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10795,'jpeg',NULL,NULL,216,400),(759,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated','2018-10-13 09:48:31','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000759-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,40,2,'81888148',15,3243,5041,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, Isolated',NULL,1,'81888148','img_5e0e1160c572c.jpeg','thumb_suraimages-1000759-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000759-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000759-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000759-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10796,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10796,'jpeg',NULL,NULL,257,400),(760,46,18,1370,4,'Male surgeon and female nurse going through a patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, X-ray, Assessing, Assess, Analysing, Examining, Holding, Hold, Isolated','2018-10-13 09:48:32','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000760-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,40,2,'81888148',15,3342,5177,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, X-ray, Assessing, Assess, Analysing, Examining, Holding, Hold, Isolated',NULL,1,'81888148','img_5e0e1164b0fbf.jpeg','thumb_suraimages-1000760-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','preview_suraimages-1000760-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000760-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000760-male-surgeon-and-female-nurse-going-through-a-patient-file.jpeg',NULL,NULL,10797,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10797,'jpeg',NULL,NULL,258,400),(761,46,18,1370,4,'Male surgeon and female nurse accessing patient x-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, X-ray, Assessing, Assess, Analysing, Examining, Holding, Hold, Isolated','2018-10-13 10:26:42','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000761-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',NULL,40,2,'81888148',15,3537,5107,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, X-ray, Assessing, Assess, Analysing, Examining, Holding, Hold, Isolated',NULL,1,'81888148','img_5e0e1168ca127.jpeg','thumb_suraimages-1000761-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg','preview_suraimages-1000761-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000761-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000761-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',NULL,NULL,10798,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10798,'jpeg',NULL,NULL,277,400),(762,46,18,1370,4,'Male surgeon and female nurse accessing patient x-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, X-ray, Assessing, Assess, Analysing, Examining, Holding, Hold, Isolated','2018-10-13 10:26:43','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000762-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',NULL,40,2,'81888148',15,3292,5161,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Mask, Front, Shot, Full, Body, Size, Arms, Standing, Stand, Pose, Excited, Exciting, Happy, Smiling, Smile, Welcoming, Welcome, Looking, Look, Working, Discussing, Talking, Talk, X-ray, Assessing, Assess, Analysing, Examining, Holding, Hold, Isolated',NULL,1,'81888148','img_5e0e116dbdec7.jpeg','thumb_suraimages-1000762-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg','preview_suraimages-1000762-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000762-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000762-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',NULL,NULL,10799,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10799,'jpeg',NULL,NULL,255,400),(763,46,18,1370,4,'Female nurse using stethoscope to jokingly listen to male surgeon heart rate','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, Examining, X-ray, Assessing, Assess, Isolated','2018-10-13 10:26:44','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000763-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg',NULL,40,2,'81888148',15,3712,5247,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, Examining, X-ray, Assessing, Assess, Isolated',NULL,1,'81888148','img_5e0e117204374.jpeg','thumb_suraimages-1000763-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg','preview_suraimages-1000763-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000763-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000763-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg',NULL,NULL,10800,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10800,'jpeg',NULL,NULL,283,400),(764,46,18,1370,4,'Female nurse using stethoscope to jokingly listen to male surgeon heart rate','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, Examining, X-ray, Assessing, Assess, Isolated','2018-10-13 10:26:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000764-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg',NULL,40,2,'81888148',15,3583,5342,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, Examining, X-ray, Assessing, Assess, Isolated',NULL,1,'81888148','img_5e0e1176c30a8.jpeg','thumb_suraimages-1000764-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg','preview_suraimages-1000764-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000764-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000764-female-nurse-using-stethoscope-to-jokingly-listen-to-male-surgeon-heart-rate.jpeg',NULL,NULL,10801,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10801,'jpeg',NULL,NULL,268,400),(765,46,18,1370,4,'Male surgeon and female nurse accessing patient x-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, Analysing, Examining, Studying, Study, X-ray, Explaining, Discussing, Assessing, Assess, Isolated','2018-10-13 10:26:46','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000765-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',NULL,40,2,'81888148',15,3603,4792,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, Analysing, Examining, Studying, Study, X-ray, Explaining, Discussing, Assessing, Assess, Isolated',NULL,1,'81888148','img_5e0e117ac5cb6.jpeg','thumb_suraimages-1000765-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg','preview_suraimages-1000765-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000765-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000765-male-surgeon-and-female-nurse-accessing-patient-x-ray.jpeg',NULL,NULL,10802,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10802,'jpeg',NULL,NULL,301,400),(766,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Isolated','2018-10-13 10:26:47','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000766-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,40,2,'81888148',15,3577,4789,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Isolated',NULL,1,'81888148','img_5e0e117f673ba.jpeg','thumb_suraimages-1000766-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000766-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000766-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000766-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10803,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10803,'jpeg',NULL,NULL,299,400),(767,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Isolated','2018-10-13 10:26:48','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000767-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,40,2,'81888148',15,3581,4824,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Isolated',NULL,1,'81888148','img_5e0e11839f33b.jpeg','thumb_suraimages-1000767-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000767-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000767-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000767-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10804,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10804,'jpeg',NULL,NULL,297,400),(768,46,18,1370,4,'Male surgeon and female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Isolated','2018-10-13 10:26:49','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000768-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,40,2,'81888148',15,3592,4803,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Isolated',NULL,1,'81888148','img_5e0e1187c2b8c.jpeg','thumb_suraimages-1000768-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000768-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000768-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000768-male-surgeon-and-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10805,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10805,'jpeg',NULL,NULL,299,400),(769,46,18,1370,4,'Male surgeon and female nurse giving thumb up','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Thumbs, Up, Thumb, Isolated','2018-10-13 10:26:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000769-male-surgeon-and-female-nurse-giving-thumb-up.jpeg',NULL,40,2,'81888148',15,3446,4786,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Thumbs, Up, Thumb, Isolated',NULL,1,'81888148','img_5e0e118c108f3.jpeg','thumb_suraimages-1000769-male-surgeon-and-female-nurse-giving-thumb-up.jpeg','preview_suraimages-1000769-male-surgeon-and-female-nurse-giving-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000769-male-surgeon-and-female-nurse-giving-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000769-male-surgeon-and-female-nurse-giving-thumb-up.jpeg',NULL,NULL,10806,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10806,'jpeg',NULL,NULL,288,400),(770,46,18,1370,4,'Male surgeon and female nurse giving thumbs up','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Isolated','2018-10-13 10:26:51','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000770-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg',NULL,40,2,'81888148',15,3423,4789,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, People, Female, Woman, Girl, Lady, Man, Male, Men, Young, Youth, Youthful, Stethoscope, White, Turquoise, Blue, Scrubs, Scrub, Front, Curious, Excited, Exciting, Feeling, Feel, Looking, Look, Laugh, Laughing, Arms, Standing, Stand, Pose, Holding, Hold, File, Files, Folder, Folders, Isolated',NULL,1,'81888148','img_5e0e118fc9bf8.jpeg','thumb_suraimages-1000770-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg','preview_suraimages-1000770-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000770-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000770-male-surgeon-and-female-nurse-giving-thumbs-up.jpeg',NULL,NULL,10807,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10807,'jpeg',NULL,NULL,286,400),(771,46,18,1370,4,'A female nurse holding a patient file','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 10:51:12','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000771-a-female-nurse-holding-a-patient-file.jpeg',NULL,25,1,'11467756',15,3117,5088,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e1193872e6.jpeg','thumb_suraimages-1000771-a-female-nurse-holding-a-patient-file.jpeg','preview_suraimages-1000771-a-female-nurse-holding-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000771-a-female-nurse-holding-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000771-a-female-nurse-holding-a-patient-file.jpeg',NULL,NULL,10808,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10808,'jpeg',NULL,NULL,245,400),(772,46,18,1370,4,'A female nurse perusing patient records','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 10:51:13','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000772-a-female-nurse-perusing-patient-records.jpeg',NULL,25,1,'11467756',15,3040,5083,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e11963d03a.jpeg','thumb_suraimages-1000772-a-female-nurse-perusing-patient-records.jpeg','preview_suraimages-1000772-a-female-nurse-perusing-patient-records.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000772-a-female-nurse-perusing-patient-records.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000772-a-female-nurse-perusing-patient-records.jpeg',NULL,NULL,10809,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10809,'jpeg',NULL,NULL,239,400),(773,46,18,1370,4,'A female nurse perusing patient records','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 10:51:13','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000773-a-female-nurse-perusing-patient-records.jpeg',NULL,25,1,'11467756',15,3076,5028,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e1198ed358.jpeg','thumb_suraimages-1000773-a-female-nurse-perusing-patient-records.jpeg','preview_suraimages-1000773-a-female-nurse-perusing-patient-records.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000773-a-female-nurse-perusing-patient-records.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000773-a-female-nurse-perusing-patient-records.jpeg',NULL,NULL,10810,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10810,'jpeg',NULL,NULL,245,400),(774,46,18,1370,4,'A female nurse holding a patient file','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Holding, Hold, Isolated','2018-10-13 10:51:14','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000774-a-female-nurse-holding-a-patient-file.jpeg',NULL,25,1,'11467756',15,3712,5568,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e119b94c2e.jpeg','thumb_suraimages-1000774-a-female-nurse-holding-a-patient-file.jpeg','preview_suraimages-1000774-a-female-nurse-holding-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000774-a-female-nurse-holding-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000774-a-female-nurse-holding-a-patient-file.jpeg',NULL,NULL,10811,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10811,'jpeg',NULL,NULL,267,400),(775,46,18,1370,4,'A female nurse holding a patient file','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Holding, Hold, Isolated','2018-10-13 10:51:15','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000775-a-female-nurse-holding-a-patient-file.jpeg',NULL,25,1,'11467756',15,3405,5146,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e11a011cce.jpeg','thumb_suraimages-1000775-a-female-nurse-holding-a-patient-file.jpeg','preview_suraimages-1000775-a-female-nurse-holding-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000775-a-female-nurse-holding-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000775-a-female-nurse-holding-a-patient-file.jpeg',NULL,NULL,10812,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10812,'jpeg',NULL,NULL,265,400),(776,46,18,1370,4,'A female nurse holding a patient file','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Holding, Hold, Isolated','2018-10-13 10:51:16','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000776-a-female-nurse-holding-a-patient-file.jpeg',NULL,25,1,'11467756',15,3428,5224,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e11a46fa26.jpeg','thumb_suraimages-1000776-a-female-nurse-holding-a-patient-file.jpeg','preview_suraimages-1000776-a-female-nurse-holding-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000776-a-female-nurse-holding-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000776-a-female-nurse-holding-a-patient-file.jpeg',NULL,NULL,10813,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10813,'jpeg',NULL,NULL,262,400),(777,46,18,1370,4,'A female nurse holding a patient file while talking on phone','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 10:51:17','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000777-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',NULL,25,1,'11467756',15,3563,5414,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e11a8cd31b.jpeg','thumb_suraimages-1000777-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg','preview_suraimages-1000777-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000777-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000777-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',NULL,NULL,10814,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10814,'jpeg',NULL,NULL,263,400),(778,46,18,1370,4,'A female nurse holding a patient file while talking on phone','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 10:51:18','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000778-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',NULL,25,1,'11467756',15,3712,5291,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e11ad668e4.jpeg','thumb_suraimages-1000778-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg','preview_suraimages-1000778-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000778-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000778-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',NULL,NULL,10815,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10815,'jpeg',NULL,NULL,281,400),(779,46,18,1370,4,'A female nurse holding a patient file while talking on phone','Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 10:51:19','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000779-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',NULL,25,1,'11467756',15,3498,5263,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Shot, Half, Medium, Body, Size, Full, Body, Size, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'11467756','img_5e0e11b1e26e3.jpeg','thumb_suraimages-1000779-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg','preview_suraimages-1000779-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000779-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000779-a-female-nurse-holding-a-patient-file-while-talking-on-phone.jpeg',NULL,NULL,10816,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10816,'jpeg',NULL,NULL,266,400),(780,46,NULL,1370,4,'A female muslim nurse holding a patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 10:51:20','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000780-a-female-muslim-nurse-holding-a-patient-file.jpeg',NULL,25,1,NULL,15,3074,4860,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,NULL,'img_5e0e11b6e6321.jpeg','thumb_suraimages-1000780-a-female-muslim-nurse-holding-a-patient-file.jpeg','preview_suraimages-1000780-a-female-muslim-nurse-holding-a-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000780-a-female-muslim-nurse-holding-a-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000780-a-female-muslim-nurse-holding-a-patient-file.jpeg',NULL,NULL,10817,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10817,'jpeg',NULL,NULL,253,400),(781,46,18,1370,4,'A female nurse going through patient record','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000781-a-female-nurse-going-through-patient-record.jpeg',NULL,25,1,'41993353',15,3010,4876,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11b991d6c.jpeg','thumb_suraimages-1000781-a-female-nurse-going-through-patient-record.jpeg','preview_suraimages-1000781-a-female-nurse-going-through-patient-record.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000781-a-female-nurse-going-through-patient-record.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000781-a-female-nurse-going-through-patient-record.jpeg',NULL,NULL,10818,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10818,'jpeg',NULL,NULL,247,400),(782,46,18,1370,4,'A female nurse standing as she holds patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000782-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,25,1,'41993353',15,3043,4773,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11bc1a784.jpeg','thumb_suraimages-1000782-a-female-nurse-standing-as-she-holds-patient-file.jpeg','preview_suraimages-1000782-a-female-nurse-standing-as-she-holds-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000782-a-female-nurse-standing-as-she-holds-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000782-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,NULL,10819,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10819,'jpeg',NULL,NULL,255,400),(783,46,18,1370,4,'A female nurse standing as she holds patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000783-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,25,1,'41993353',15,3069,4916,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11be8e343.jpeg','thumb_suraimages-1000783-a-female-nurse-standing-as-she-holds-patient-file.jpeg','preview_suraimages-1000783-a-female-nurse-standing-as-she-holds-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000783-a-female-nurse-standing-as-she-holds-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000783-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,NULL,10820,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10820,'jpeg',NULL,NULL,250,400),(784,46,18,1370,4,'A female nurse giving a thumb up','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000784-a-female-nurse-giving-a-thumb-up.jpeg',NULL,25,1,'41993353',15,2951,4785,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11c131ead.jpeg','thumb_suraimages-1000784-a-female-nurse-giving-a-thumb-up.jpeg','preview_suraimages-1000784-a-female-nurse-giving-a-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000784-a-female-nurse-giving-a-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000784-a-female-nurse-giving-a-thumb-up.jpeg',NULL,NULL,10821,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10821,'jpeg',NULL,NULL,247,400),(785,46,18,1370,4,'A female nurse standing as she holds patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:40','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000785-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,25,1,'41993353',15,3274,4930,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11c3a1b23.jpeg','thumb_suraimages-1000785-a-female-nurse-standing-as-she-holds-patient-file.jpeg','preview_suraimages-1000785-a-female-nurse-standing-as-she-holds-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000785-a-female-nurse-standing-as-she-holds-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000785-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,NULL,10822,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10822,'jpeg',NULL,NULL,266,400),(786,46,18,1370,4,'A female nurse standing as she holds patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:41','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000786-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,25,1,'41993353',15,3206,4896,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11c799a48.jpeg','thumb_suraimages-1000786-a-female-nurse-standing-as-she-holds-patient-file.jpeg','preview_suraimages-1000786-a-female-nurse-standing-as-she-holds-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000786-a-female-nurse-standing-as-she-holds-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000786-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,NULL,10823,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10823,'jpeg',NULL,NULL,262,400),(787,46,18,1370,4,'A female nurse standing as she holds patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:42','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000787-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,25,1,'41993353',15,3027,4714,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11ca46b9e.jpeg','thumb_suraimages-1000787-a-female-nurse-standing-as-she-holds-patient-file.jpeg','preview_suraimages-1000787-a-female-nurse-standing-as-she-holds-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000787-a-female-nurse-standing-as-she-holds-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000787-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,NULL,10824,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10824,'jpeg',NULL,NULL,257,400),(788,46,18,1370,4,'A female nurse standing as she holds patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:43','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000788-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,25,1,'41993353',15,3136,4907,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11ccb5ffc.jpeg','thumb_suraimages-1000788-a-female-nurse-standing-as-she-holds-patient-file.jpeg','preview_suraimages-1000788-a-female-nurse-standing-as-she-holds-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000788-a-female-nurse-standing-as-she-holds-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000788-a-female-nurse-standing-as-she-holds-patient-file.jpeg',NULL,NULL,10825,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10825,'jpeg',NULL,NULL,256,400),(789,46,18,1370,4,'A female nurse doing a welcome gesture while holding patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:44','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000789-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg',NULL,25,1,'41993353',15,2952,4854,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11cf67b55.jpeg','thumb_suraimages-1000789-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg','preview_suraimages-1000789-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000789-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000789-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg',NULL,NULL,10826,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10826,'jpeg',NULL,NULL,243,400),(790,46,18,1370,4,'A female nurse doing a welcome gesture while holding patient file','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:12:44','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000790-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg',NULL,25,1,'41993353',15,3358,5025,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11d1d404c.jpeg','thumb_suraimages-1000790-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg','preview_suraimages-1000790-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000790-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000790-a-female-nurse-doing-a-welcome-gesture-while-holding-patient-file.jpeg',NULL,NULL,10827,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10827,'jpeg',NULL,NULL,267,400),(791,46,18,1370,4,'Female nurse standing on isolated white background','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:38:36','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000791-female-nurse-standing-on-isolated-white-background.jpeg',NULL,25,1,'41993353',15,3385,5158,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11d610371.jpeg','thumb_suraimages-1000791-female-nurse-standing-on-isolated-white-background.jpeg','preview_suraimages-1000791-female-nurse-standing-on-isolated-white-background.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000791-female-nurse-standing-on-isolated-white-background.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000791-female-nurse-standing-on-isolated-white-background.jpeg',NULL,NULL,10828,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10828,'jpeg',NULL,NULL,263,400),(792,46,18,1370,4,'A female nurse going through patient records','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:38:38','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000792-a-female-nurse-going-through-patient-records.jpeg',NULL,25,1,'41993353',15,3266,5076,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11daa83b5.jpeg','thumb_suraimages-1000792-a-female-nurse-going-through-patient-records.jpeg','preview_suraimages-1000792-a-female-nurse-going-through-patient-records.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000792-a-female-nurse-going-through-patient-records.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000792-a-female-nurse-going-through-patient-records.jpeg',NULL,NULL,10829,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10829,'jpeg',NULL,NULL,257,400),(793,46,18,1370,4,'A female nurse going through patient records','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated','2018-10-13 11:38:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000793-a-female-nurse-going-through-patient-records.jpeg',NULL,25,1,'41993353',15,3413,5092,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Standing, Stand, Pose, Front, Looking, Look, Happy, Smiling, Smile, Excited, Exciting, File, Files, Folder, Folders, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11deb07b1.jpeg','thumb_suraimages-1000793-a-female-nurse-going-through-patient-records.jpeg','preview_suraimages-1000793-a-female-nurse-going-through-patient-records.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000793-a-female-nurse-going-through-patient-records.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000793-a-female-nurse-going-through-patient-records.jpeg',NULL,NULL,10830,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10830,'jpeg',NULL,NULL,268,400),(794,46,18,1370,4,'A female nurse talking on phone','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 11:38:40','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000794-a-female-nurse-talking-on-phone.jpeg',NULL,25,1,'41993353',15,3445,5285,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11e2f04ed.jpeg','thumb_suraimages-1000794-a-female-nurse-talking-on-phone.jpeg','preview_suraimages-1000794-a-female-nurse-talking-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000794-a-female-nurse-talking-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000794-a-female-nurse-talking-on-phone.jpeg',NULL,NULL,10831,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10831,'jpeg',NULL,NULL,261,400),(795,46,18,1370,4,'A female nurse talking on phone','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 11:38:41','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000795-a-female-nurse-talking-on-phone.jpeg',NULL,25,1,'41993353',15,3435,5232,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11e79758e.jpeg','thumb_suraimages-1000795-a-female-nurse-talking-on-phone.jpeg','preview_suraimages-1000795-a-female-nurse-talking-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000795-a-female-nurse-talking-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000795-a-female-nurse-talking-on-phone.jpeg',NULL,NULL,10832,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10832,'jpeg',NULL,NULL,263,400),(796,46,18,1370,4,'A female nurse talking on phone','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 11:38:42','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000796-a-female-nurse-talking-on-phone.jpeg',NULL,25,1,'41993353',15,3403,4905,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11ebc7981.jpeg','thumb_suraimages-1000796-a-female-nurse-talking-on-phone.jpeg','preview_suraimages-1000796-a-female-nurse-talking-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000796-a-female-nurse-talking-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000796-a-female-nurse-talking-on-phone.jpeg',NULL,NULL,10833,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10833,'jpeg',NULL,NULL,278,400),(797,46,18,1370,4,'A female nurse chatting on phone','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 11:38:43','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000797-a-female-nurse-chatting-on-phone.jpeg',NULL,25,1,'41993353',15,3540,5469,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11ef5ff4b.jpeg','thumb_suraimages-1000797-a-female-nurse-chatting-on-phone.jpeg','preview_suraimages-1000797-a-female-nurse-chatting-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000797-a-female-nurse-chatting-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000797-a-female-nurse-chatting-on-phone.jpeg',NULL,NULL,10834,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10834,'jpeg',NULL,NULL,259,400),(798,46,18,1370,4,'A female nurse chatting on phone','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 11:38:44','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000798-a-female-nurse-chatting-on-phone.jpeg',NULL,25,1,'41993353',15,3568,5568,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11f44f4cc.jpeg','thumb_suraimages-1000798-a-female-nurse-chatting-on-phone.jpeg','preview_suraimages-1000798-a-female-nurse-chatting-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000798-a-female-nurse-chatting-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000798-a-female-nurse-chatting-on-phone.jpeg',NULL,NULL,10835,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10835,'jpeg',NULL,NULL,256,400),(799,46,18,1370,4,'A female nurse chatting on phone','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 11:38:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000799-a-female-nurse-chatting-on-phone.jpeg',NULL,25,1,'41993353',15,3480,5568,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11f8d10a1.jpeg','thumb_suraimages-1000799-a-female-nurse-chatting-on-phone.jpeg','preview_suraimages-1000799-a-female-nurse-chatting-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000799-a-female-nurse-chatting-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000799-a-female-nurse-chatting-on-phone.jpeg',NULL,NULL,10836,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10836,'jpeg',NULL,NULL,250,400),(800,46,18,1370,4,'A female nurse chatting on phone','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 11:38:46','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000800-a-female-nurse-chatting-on-phone.jpeg',NULL,25,1,'41993353',15,3596,5434,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e11fdba0bc.jpeg','thumb_suraimages-1000800-a-female-nurse-chatting-on-phone.jpeg','preview_suraimages-1000800-a-female-nurse-chatting-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000800-a-female-nurse-chatting-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000800-a-female-nurse-chatting-on-phone.jpeg',NULL,NULL,10837,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10837,'jpeg',NULL,NULL,265,400),(801,46,18,1370,4,'A female nurse chatting on phone','Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated','2018-10-13 11:38:47','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000801-a-female-nurse-chatting-on-phone.jpeg',NULL,25,1,'41993353',15,3522,5414,50,17,0,0,NULL,NULL,'Muslim, Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, Plain, White, Background, Shot, Half, Medium, Body, Size, Full, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, White, Scrubs, Scrub, Front, Standing, Stand, Pose, Happy, Smiling, Smile, Excited, Exciting, Looking, Look, File, Files, Folder, Folders, Mobile, Phone, Smartphone, Talking, Talk, Texting, Text, Holding, Hold, Isolated',NULL,1,'41993353','img_5e0e1202b73d3.jpeg','thumb_suraimages-1000801-a-female-nurse-chatting-on-phone.jpeg','preview_suraimages-1000801-a-female-nurse-chatting-on-phone.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000801-a-female-nurse-chatting-on-phone.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000801-a-female-nurse-chatting-on-phone.jpeg',NULL,NULL,10838,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10838,'jpeg',NULL,NULL,260,400),(802,46,18,1370,4,'A female doctor and a female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated','2018-10-13 11:56:49','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000802-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',NULL,40,2,'75169356',15,3091,5025,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated',NULL,1,'75169356','img_5e0e120747d4a.jpeg','thumb_suraimages-1000802-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000802-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000802-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000802-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10839,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10839,'jpeg',NULL,NULL,246,400),(803,46,18,1370,4,'A female doctor and a female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated','2018-10-13 11:56:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000803-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',NULL,40,2,'75169356',15,3348,5103,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated',NULL,1,'75169356','img_5e0e120a330db.jpeg','thumb_suraimages-1000803-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000803-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000803-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000803-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10840,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10840,'jpeg',NULL,NULL,262,400),(804,46,18,1370,4,'A female doctor and a female nurse going through a file','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated','2018-10-13 11:56:51','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000804-a-female-doctor-and-a-female-nurse-going-through-a-file.jpeg',NULL,40,2,'75169356',15,3224,5125,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated',NULL,1,'75169356','img_5e0e120eaea83.jpeg','thumb_suraimages-1000804-a-female-doctor-and-a-female-nurse-going-through-a-file.jpeg','preview_suraimages-1000804-a-female-doctor-and-a-female-nurse-going-through-a-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000804-a-female-doctor-and-a-female-nurse-going-through-a-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000804-a-female-doctor-and-a-female-nurse-going-through-a-file.jpeg',NULL,NULL,10841,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10841,'jpeg',NULL,NULL,252,400),(805,46,18,1370,4,'A female doctor and a female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated','2018-10-13 11:56:52','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000805-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',NULL,40,2,'75169356',15,3363,5052,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated',NULL,1,'75169356','img_5e0e12129ad65.jpeg','thumb_suraimages-1000805-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000805-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000805-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000805-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10842,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10842,'jpeg',NULL,NULL,266,400),(806,46,18,1370,4,'A female doctor and a female nurse standing next to each other','Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated','2018-10-13 11:56:53','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000806-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',NULL,40,2,'75169356',15,3317,5119,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Colleagues, Workmate, Studio, Plain, White, Background, Shot, Full, Body, Size, Half, Medium, Body, Size, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Stethoscope, Lab, Coat, Scrubs, Scrub, White, Front, File, Files, Folder, Folders, Happy, Smiling, Smile, Looking, Look, Holding, Hold, Working, Discussing, Checking, Check, Isolated',NULL,1,'75169356','img_5e0e121660209.jpeg','thumb_suraimages-1000806-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg','preview_suraimages-1000806-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000806-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000806-a-female-doctor-and-a-female-nurse-standing-next-to-each-other.jpeg',NULL,NULL,10843,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10843,'jpeg',NULL,NULL,259,400),(807,46,18,1370,4,'Male doctor going through patients records on a tablet while standing','Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:31:32','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000807-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',NULL,25,1,'92851334',15,3233,4857,50,17,0,0,NULL,NULL,'Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,'92851334','img_5e0e121a3e292.jpeg','thumb_suraimages-1000807-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg','preview_suraimages-1000807-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000807-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000807-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',NULL,NULL,10844,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10844,'jpeg',NULL,NULL,266,400),(808,46,NULL,1370,4,'Male doctor going through patients records on a tablet while standing','Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:37:58','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000808-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',NULL,25,1,NULL,15,2835,4497,50,17,0,0,NULL,NULL,'Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,NULL,'img_5e0e121ce3e4d.jpeg','thumb_suraimages-1000808-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg','preview_suraimages-1000808-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000808-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000808-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',NULL,NULL,10845,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10845,'jpeg',NULL,NULL,252,400),(809,46,18,1370,4,'Male doctor going through patients records on a tablet while standing','Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:37:59','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000809-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',NULL,25,1,'92851334',15,3148,4817,50,17,0,0,NULL,NULL,'Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,'92851334','img_5e0e121f309c6.jpeg','thumb_suraimages-1000809-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg','preview_suraimages-1000809-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000809-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000809-male-doctor-going-through-patients-records-on-a-tablet-while-standing.jpeg',NULL,NULL,10846,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10846,'jpeg',NULL,NULL,261,400),(810,46,18,1370,4,'Male doctor standing on isolated white background while holding a tablet','Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:38:00','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000810-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,25,1,'92851334',15,2937,4562,50,17,0,0,NULL,NULL,'Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,'92851334','img_5e0e1221d0364.jpeg','thumb_suraimages-1000810-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','preview_suraimages-1000810-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000810-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000810-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,NULL,10847,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10847,'jpeg',NULL,NULL,258,400),(811,46,18,1370,4,'Male doctor standing on isolated white background while holding a tablet','Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:38:00','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000811-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,25,1,'92851334',15,2974,4561,50,17,0,0,NULL,NULL,'Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,'92851334','img_5e0e122434b0f.jpeg','thumb_suraimages-1000811-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','preview_suraimages-1000811-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000811-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000811-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,NULL,10848,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10848,'jpeg',NULL,NULL,261,400),(812,46,18,1370,4,'Male doctor standing on isolated white background while holding a tablet','Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:38:01','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000812-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,25,1,'92851334',15,2936,4647,50,17,0,0,NULL,NULL,'Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,'92851334','img_5e0e12269db68.jpeg','thumb_suraimages-1000812-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','preview_suraimages-1000812-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000812-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000812-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,NULL,10849,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10849,'jpeg',NULL,NULL,253,400),(813,46,18,1370,4,'A happy male doctor standing on isolated white background while holding a tablet','Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:38:02','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000813-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,25,1,'92851334',15,3290,4671,50,17,0,0,NULL,NULL,'Doctor, Doctors, Surgeon, Nurse, Nurses, Studio, Plain, White, Background, Full, Body, Size, Shot, Man, Male, Men, Stethoscope, Tablet, Tablets, Lab, Coat, Young, Youth, Youthful, People, Front, Isolated, Half, Medium, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,'92851334','img_5e0e12290bdd5.jpeg','thumb_suraimages-1000813-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','preview_suraimages-1000813-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000813-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000813-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,NULL,10850,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10850,'jpeg',NULL,NULL,282,400),(814,46,18,1370,4,'A happy male doctor standing on isolated white background while holding a tablet','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Full, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:38:03','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000814-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,25,1,'92851334',15,3508,5012,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Full, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,'92851334','img_5e0e122bacb56.jpeg','thumb_suraimages-1000814-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','preview_suraimages-1000814-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000814-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000814-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,NULL,10851,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10851,'jpeg',NULL,NULL,280,400),(815,46,18,1370,4,'A happy male doctor standing on isolated white background while holding a tablet','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Full, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse','2018-10-13 12:38:04','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000815-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,25,1,'92851334',15,3548,4935,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Full, Body, Size, Standing, Stand, Pose, Happy, Smiling, Smile, Looking, Look, Confident, Holding, Hold, Browsing, Browse',NULL,1,'92851334','img_5e0e122fe6139.jpeg','thumb_suraimages-1000815-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','preview_suraimages-1000815-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000815-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000815-a-happy-male-doctor-standing-on-isolated-white-background-while-holding-a-tablet.jpeg',NULL,NULL,10852,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10852,'jpeg',NULL,NULL,288,400),(816,46,18,1370,4,'Male doctor going through patients records on a tablet','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Standing, Stand, Pose, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Studying, Study, Browsing, Browse','2018-10-13 12:38:04','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000816-male-doctor-going-through-patients-records-on-a-tablet.jpeg',NULL,25,1,'92851334',15,3583,5136,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Standing, Stand, Pose, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Studying, Study, Browsing, Browse',NULL,1,'92851334','img_5e0e12341cb4e.jpeg','thumb_suraimages-1000816-male-doctor-going-through-patients-records-on-a-tablet.jpeg','preview_suraimages-1000816-male-doctor-going-through-patients-records-on-a-tablet.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000816-male-doctor-going-through-patients-records-on-a-tablet.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000816-male-doctor-going-through-patients-records-on-a-tablet.jpeg',NULL,NULL,10853,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10853,'jpeg',NULL,NULL,279,400),(817,46,18,1370,4,'A male doctor using his stethoscope','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Standing, Stand, Pose, Examining, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Thumbs, Up, Thumb','2018-10-13 13:01:43','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000817-a-male-doctor-using-his-stethoscope.jpeg',NULL,25,1,'92851334',15,3412,4917,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Standing, Stand, Pose, Examining, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Thumbs, Up, Thumb',NULL,1,'92851334','img_5e0e1239421ac.jpeg','thumb_suraimages-1000817-a-male-doctor-using-his-stethoscope.jpeg','preview_suraimages-1000817-a-male-doctor-using-his-stethoscope.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000817-a-male-doctor-using-his-stethoscope.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000817-a-male-doctor-using-his-stethoscope.jpeg',NULL,NULL,10854,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10854,'jpeg',NULL,NULL,278,400),(818,46,18,1370,4,'A male doctor smiling while using his stethoscope','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Standing, Stand, Pose, Examining, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Thumbs, Up, Thumb','2018-10-13 13:01:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000818-a-male-doctor-smiling-while-using-his-stethoscope.jpeg',NULL,25,1,'92851334',15,3648,4980,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Standing, Stand, Pose, Examining, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Thumbs, Up, Thumb',NULL,1,'92851334','img_5e0e123d4f204.jpeg','thumb_suraimages-1000818-a-male-doctor-smiling-while-using-his-stethoscope.jpeg','preview_suraimages-1000818-a-male-doctor-smiling-while-using-his-stethoscope.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000818-a-male-doctor-smiling-while-using-his-stethoscope.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000818-a-male-doctor-smiling-while-using-his-stethoscope.jpeg',NULL,NULL,10855,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10855,'jpeg',NULL,NULL,293,400),(819,46,18,1370,4,'A male doctor giving a thumb up','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Standing, Stand, Pose, Examining, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Thumbs, Up, Thumb','2018-10-13 13:01:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000819-a-male-doctor-giving-a-thumb-up.jpeg',NULL,25,1,'92851334',15,3598,4842,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, People, Front, Isolated, Plain, Standing, Stand, Pose, Examining, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Thumbs, Up, Thumb',NULL,1,'92851334','img_5e0e12421792c.jpeg','thumb_suraimages-1000819-a-male-doctor-giving-a-thumb-up.jpeg','preview_suraimages-1000819-a-male-doctor-giving-a-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000819-a-male-doctor-giving-a-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000819-a-male-doctor-giving-a-thumb-up.jpeg',NULL,NULL,10856,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10856,'jpeg',NULL,NULL,297,400),(820,46,18,1370,4,'A male doctor assuring his heart rate is in check by giving thumb up','Nurse, Nurses, Doctor, Doctors, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, Front, Isolated, Plain, Standing, Stand, Pose, Examining, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Thumbs, Up, Thumb, human','2018-10-13 13:01:46','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000820-a-male-doctor-assuring-his-heart-rate-is-in-check-by-giving-thumb-up.jpeg',NULL,25,1,'92851334',15,3446,4754,50,17,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Surgeon, Studio, White, Background, Half, Medium, Body, Size, Shot, Young, Youth, Youthful, Man, Male, Men, Stethoscope, Lab, Coat, Tablet, Tablets, Front, Isolated, Plain, Standing, Stand, Pose, Examining, Holding, Hold, Excited, Exciting, Happy, Smiling, Smile, Thumbs, Up, Thumb, human',NULL,1,'92851334','img_5e0e1245dfb82.jpeg','thumb_suraimages-1000820-a-male-doctor-assuring-his-heart-rate-is-in-check-by-giving-thumb-up.jpeg','preview_suraimages-1000820-a-male-doctor-assuring-his-heart-rate-is-in-check-by-giving-thumb-up.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000820-a-male-doctor-assuring-his-heart-rate-is-in-check-by-giving-thumb-up.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000820-a-male-doctor-assuring-his-heart-rate-is-in-check-by-giving-thumb-up.jpeg',NULL,NULL,10857,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10857,'jpeg',NULL,NULL,290,400),(821,46,18,1370,4,'A happy male doctor laughing out loud','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Shot, Full, Body, Size, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Isolated, Plain, People, Standing, Stand, Pose, Laugh, Laughing','2018-10-13 13:01:47','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000821-a-happy-male-doctor-laughing-out-loud.jpeg',NULL,25,1,'92851334',15,3287,4533,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Shot, Full, Body, Size, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Isolated, Plain, People, Standing, Stand, Pose, Laugh, Laughing',NULL,1,'92851334','img_5e0e124a22b75.jpeg','thumb_suraimages-1000821-a-happy-male-doctor-laughing-out-loud.jpeg','preview_suraimages-1000821-a-happy-male-doctor-laughing-out-loud.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000821-a-happy-male-doctor-laughing-out-loud.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000821-a-happy-male-doctor-laughing-out-loud.jpeg',NULL,NULL,10858,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10858,'jpeg',NULL,NULL,290,400),(822,46,18,1370,4,'Male doctor looking behind to see what following him','Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Shot, Full, Body, Size, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Isolated, Plain, People, Standing, Stand, Pose, Looking, Look, Tablet, Tablets, Holding, Hold, Walking, Walk, Running, Run','2018-10-13 13:01:48','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000822-male-doctor-looking-behind-to-see-what-following-him.jpeg',NULL,25,1,'92851334',15,3457,4891,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Studio, White, Background, Shot, Full, Body, Size, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Isolated, Plain, People, Standing, Stand, Pose, Looking, Look, Tablet, Tablets, Holding, Hold, Walking, Walk, Running, Run',NULL,1,'92851334','img_5e0e124cb5837.jpeg','thumb_suraimages-1000822-male-doctor-looking-behind-to-see-what-following-him.jpeg','preview_suraimages-1000822-male-doctor-looking-behind-to-see-what-following-him.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000822-male-doctor-looking-behind-to-see-what-following-him.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000822-male-doctor-looking-behind-to-see-what-following-him.jpeg',NULL,NULL,10859,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10859,'jpeg',NULL,NULL,283,400),(823,46,18,1370,4,'Male doctor enjoying VR experience','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, People, Lab, Coat, Stethoscope, Shot, Full, Body, Size, Front, Isolated, Plain, Standing, Stand, Pose, VR, Virtual, Reality, Headset, Viewing, View, Watching, Watch','2018-10-13 13:01:49','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000823-male-doctor-enjoying-vr-experience.jpeg',NULL,25,1,'34253014',15,3170,4812,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, People, Lab, Coat, Stethoscope, Shot, Full, Body, Size, Front, Isolated, Plain, Standing, Stand, Pose, VR, Virtual, Reality, Headset, Viewing, View, Watching, Watch',NULL,1,'34253014','img_5e0e1250e300b.jpeg','thumb_suraimages-1000823-male-doctor-enjoying-vr-experience.jpeg','preview_suraimages-1000823-male-doctor-enjoying-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000823-male-doctor-enjoying-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000823-male-doctor-enjoying-vr-experience.jpeg',NULL,NULL,10860,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10860,'jpeg',NULL,NULL,264,400),(824,46,18,1370,4,'Male doctor enjoying VR experience','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, People, Lab, Coat, Stethoscope, Shot, Half, Medium, Body, Size, VR, Virtual, Reality, Headset, Front, Isolated, Plain, Standing, Stand, Pose, Viewing, View, Watching, Watch','2018-10-13 13:01:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000824-male-doctor-enjoying-vr-experience.jpeg',NULL,25,1,'34253014',15,3528,4987,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, People, Lab, Coat, Stethoscope, Shot, Half, Medium, Body, Size, VR, Virtual, Reality, Headset, Front, Isolated, Plain, Standing, Stand, Pose, Viewing, View, Watching, Watch',NULL,1,'34253014','img_5e0e12539bc50.jpeg','thumb_suraimages-1000824-male-doctor-enjoying-vr-experience.jpeg','preview_suraimages-1000824-male-doctor-enjoying-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000824-male-doctor-enjoying-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000824-male-doctor-enjoying-vr-experience.jpeg',NULL,NULL,10861,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10861,'jpeg',NULL,NULL,283,400),(825,46,18,1370,4,'Male doctor enjoying VR experience','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, People, Lab, Coat, Stethoscope, Shot, Half, Medium, Body, Size, VR, Virtual, Reality, Headset, Front, Isolated, Plain, Standing, Stand, Pose, Viewing, View, Watching, Watch','2018-10-13 13:01:51','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000825-male-doctor-enjoying-vr-experience.jpeg',NULL,25,1,'34253014',15,3298,4866,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, People, Lab, Coat, Stethoscope, Shot, Half, Medium, Body, Size, VR, Virtual, Reality, Headset, Front, Isolated, Plain, Standing, Stand, Pose, Viewing, View, Watching, Watch',NULL,1,'34253014','img_5e0e1257bb235.jpeg','thumb_suraimages-1000825-male-doctor-enjoying-vr-experience.jpeg','preview_suraimages-1000825-male-doctor-enjoying-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000825-male-doctor-enjoying-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000825-male-doctor-enjoying-vr-experience.jpeg',NULL,NULL,10862,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10862,'jpeg',NULL,NULL,271,400),(826,46,18,1370,4,'Male doctor enjoying VR experience','Doctor, Doctors, Nurse, Nurses, Surgeon, Shot, Close-up, Half, Medium, Body, Size, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Front, Isolated, Plain, People, Standing, Stand, Pose, VR, Virtual, Reality, Headset, Viewing, View, Watching, Watch','2018-10-13 13:01:52','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000826-male-doctor-enjoying-vr-experience.jpeg',NULL,25,1,'34253014',15,4927,3421,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Shot, Close-up, Half, Medium, Body, Size, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Front, Isolated, Plain, People, Standing, Stand, Pose, VR, Virtual, Reality, Headset, Viewing, View, Watching, Watch',NULL,1,'34253014','img_5e0e125bebb9f.jpeg','thumb_suraimages-1000826-male-doctor-enjoying-vr-experience.jpeg','preview_suraimages-1000826-male-doctor-enjoying-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000826-male-doctor-enjoying-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000826-male-doctor-enjoying-vr-experience.jpeg',NULL,NULL,10863,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10863,'jpeg',NULL,NULL,576,400),(827,46,18,1370,4,'A male doctor enjoying VR experience','Doctor, Doctors, Nurse, Nurses, Surgeon, Shot, Close-up, Half, Medium, Body, Size, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Front, Isolated, Plain, People, Standing, Stand, Pose, VR, Virtual, Reality, Headset, Viewing, View, Watching, Watch','2018-10-14 08:39:55','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000827-a-male-doctor-enjoying-vr-experience.jpeg',NULL,25,1,'34253014',15,4898,3318,50,17,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Shot, Close-up, Half, Medium, Body, Size, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Front, Isolated, Plain, People, Standing, Stand, Pose, VR, Virtual, Reality, Headset, Viewing, View, Watching, Watch',NULL,1,'34253014','img_5e0e125fe2640.jpeg','thumb_suraimages-1000827-a-male-doctor-enjoying-vr-experience.jpeg','preview_suraimages-1000827-a-male-doctor-enjoying-vr-experience.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000827-a-male-doctor-enjoying-vr-experience.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000827-a-male-doctor-enjoying-vr-experience.jpeg',NULL,NULL,10864,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10864,'jpeg',NULL,NULL,590,400),(828,46,18,1370,4,'Male doctor standing on isolated white background while holding patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, White, Background, Studio, People, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Isolated, Plain, Standing, Stand, Pose, Holding, Hold, Examining, Studying, Study, Looking, Look, File, Files','2018-10-14 08:39:56','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000828-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',NULL,25,1,'92851334',15,3407,4786,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, White, Background, Studio, People, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Isolated, Plain, Standing, Stand, Pose, Holding, Hold, Examining, Studying, Study, Looking, Look, File, Files',NULL,1,'92851334','img_5e0e1263bd44c.jpeg','thumb_suraimages-1000828-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg','preview_suraimages-1000828-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000828-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000828-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',NULL,NULL,10865,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10865,'jpeg',NULL,NULL,285,400),(829,46,18,1370,4,'Male doctor standing on isolated white background while holding patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, White, Background, Studio, People, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Plain, Isolated, Standing, Stand, Pose, Holding, Hold, Examining, Studying, Study, Looking, Look, File, Files','2018-10-14 08:39:56','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000829-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',NULL,25,1,'92851334',15,2927,4657,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, White, Background, Studio, People, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Plain, Isolated, Standing, Stand, Pose, Holding, Hold, Examining, Studying, Study, Looking, Look, File, Files',NULL,1,'92851334','img_5e0e1267b28c3.jpeg','thumb_suraimages-1000829-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg','preview_suraimages-1000829-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000829-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000829-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',NULL,NULL,10866,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10866,'jpeg',NULL,NULL,251,400),(830,46,18,1370,4,'Male doctor standing on isolated white background while holding patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, White, Background, Studio, People, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Plain, Isolated, Standing, Stand, Pose, Holding, Hold, Examining, Studying, Study, Looking, Look, File, Files, Thinking, Wondering, Wonder, Worried, Worry, Worrying','2018-10-14 08:39:57','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000830-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',NULL,25,1,'92851334',15,3584,4731,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, White, Background, Studio, People, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Plain, Isolated, Standing, Stand, Pose, Holding, Hold, Examining, Studying, Study, Looking, Look, File, Files, Thinking, Wondering, Wonder, Worried, Worry, Worrying',NULL,1,'92851334','img_5e0e126a1603c.jpeg','thumb_suraimages-1000830-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg','preview_suraimages-1000830-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000830-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000830-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',NULL,NULL,10867,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10867,'jpeg',NULL,NULL,303,400),(831,46,18,1370,4,'Male doctor standing on isolated white background while holding patient file','Surgeon, Nurse, Nurses, Doctor, Doctors, White, Background, Studio, People, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Plain, Isolated, Standing, Stand, Pose, Holding, Hold, Examining, Studying, Study, Looking, Look, File, Files','2018-10-14 08:39:58','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000831-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',NULL,25,1,'92851334',15,3080,4702,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, White, Background, Studio, People, Young, Youth, Youthful, Lab, Coat, Man, Male, Men, Stethoscope, Front, Plain, Isolated, Standing, Stand, Pose, Holding, Hold, Examining, Studying, Study, Looking, Look, File, Files',NULL,1,'92851334','img_5e0e126dd874d.jpeg','thumb_suraimages-1000831-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg','preview_suraimages-1000831-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000831-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000831-male-doctor-standing-on-isolated-white-background-while-holding-patient-file.jpeg',NULL,NULL,10868,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10868,'jpeg',NULL,NULL,262,400),(832,46,18,1370,4,'Male doctor standing on isolated white background while examining x-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Front, Plain, Isolated, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study','2018-10-14 08:39:59','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000832-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',NULL,25,1,'92851334',15,3045,4628,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Front, Plain, Isolated, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study',NULL,1,'92851334','img_5e0e12705fc8a.jpeg','thumb_suraimages-1000832-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg','preview_suraimages-1000832-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000832-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000832-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',NULL,NULL,10869,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10869,'jpeg',NULL,NULL,263,400),(833,46,18,1370,4,'Male doctor standing on isolated white background while examining x-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Front, Plain, Isolated, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study','2018-10-14 08:39:59','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000833-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',NULL,25,1,'92851334',15,3243,4723,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Front, Plain, Isolated, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study',NULL,1,'92851334','img_5e0e1272d45cf.jpeg','thumb_suraimages-1000833-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg','preview_suraimages-1000833-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000833-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000833-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',NULL,NULL,10870,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10870,'jpeg',NULL,NULL,275,400),(834,46,18,1370,4,'A shocked doctor after seeing the results on the x-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Plain, Isolated, Front, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study','2018-10-14 08:40:00','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000834-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg',NULL,25,1,'92851334',15,3365,4624,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Plain, Isolated, Front, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study',NULL,1,'92851334','img_5e0e127572c65.jpeg','thumb_suraimages-1000834-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg','preview_suraimages-1000834-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000834-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000834-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg',NULL,NULL,10871,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10871,'jpeg',NULL,NULL,291,400),(835,46,18,1370,4,'A shocked doctor after seeing the results on the x-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Plain, Isolated, Front, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study','2018-10-14 08:40:01','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000835-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg',NULL,25,1,'92851334',15,3648,5472,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Plain, Isolated, Front, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study',NULL,1,'92851334','img_5e0e1278260cd.jpeg','thumb_suraimages-1000835-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg','preview_suraimages-1000835-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000835-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000835-a-shocked-doctor-after-seeing-the-results-on-the-x-ray.jpeg',NULL,NULL,10872,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10872,'jpeg',NULL,NULL,267,400),(836,46,18,1370,4,'Male doctor standing on isolated white background while examining x-ray','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Plain, Isolated, Front, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study','2018-10-14 08:40:02','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000836-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',NULL,25,1,'92851334',15,3648,5472,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Young, Youth, Youthful, Man, Male, Men, Lab, Coat, Stethoscope, Plain, Isolated, Front, People, Standing, Stand, Pose, Looking, Look, Thinking, Wondering, Wonder, X-ray, Holding, Hold, Examining, Studying, Study',NULL,1,'92851334','img_5e0e127c9a039.jpeg','thumb_suraimages-1000836-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg','preview_suraimages-1000836-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000836-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000836-male-doctor-standing-on-isolated-white-background-while-examining-x-ray.jpeg',NULL,NULL,10873,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10873,'jpeg',NULL,NULL,267,400),(837,13,18,1370,4,'Testing Title','Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful','2018-10-17 19:06:58','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000837-testing-title.jpeg',NULL,25,1,'81464168',15,3536,4976,50,17,0,0,NULL,NULL,'Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Dark, Executive, Corporate, Full, Body, Size, Made it, Man, Male, Men, Official, People, Plain, Shot, Studio, Suit, White, Background, Young, Youth, Youthful',NULL,1,'81464168','img_5e0e12810feec.jpeg','thumb_suraimages-1000837-testing-title.jpeg','preview_suraimages-1000837-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000837-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000837-testing-title.jpeg',NULL,NULL,10886,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10886,'jpeg',NULL,NULL,284,400),(838,13,18,1370,4,'Testing Title','Accomplished, Achieved, Achieve, Arms, At An Angle, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Dark, Executive, Corporate, Front, Full, Body, Size, Hands, Hand, Made it, Man, Male, Men, Official, People, Plain, Pocket, Pocketing, Serious, Shot, Standing, Stand, Pose, Studio, Suit, Thinking, Thought, Thoughts, Deep, View, Wear, Wearing, White, Background, Wondering, Wonder, Young, Youth, Youthful','2018-10-17 19:21:57','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000838-testing-title.jpeg',NULL,25,1,'81464168',15,3316,4961,50,17,0,0,NULL,NULL,'Accomplished, Achieved, Achieve, Arms, At An Angle, Blue, Business, Businessman, Businessmen, Businesswoman, Businesswomen, Confident, Dark, Executive, Corporate, Front, Full, Body, Size, Hands, Hand, Made it, Man, Male, Men, Official, People, Plain, Pocket, Pocketing, Serious, Shot, Standing, Stand, Pose, Studio, Suit, Thinking, Thought, Thoughts, Deep, View, Wear, Wearing, White, Background, Wondering, Wonder, Young, Youth, Youthful',NULL,1,'81464168','img_5e0e1284bf599.jpeg','thumb_suraimages-1000838-testing-title.jpeg','preview_suraimages-1000838-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000838-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000838-testing-title.jpeg',NULL,NULL,10887,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10887,'jpeg',NULL,NULL,267,400),(839,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:40','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000839-testing-title.jpeg',NULL,25,1,'71311451',15,3385,4635,50,17,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e12888621e.jpeg','thumb_suraimages-1000839-testing-title.jpeg','preview_suraimages-1000839-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000839-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000839-testing-title.jpeg',NULL,NULL,10888,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10888,'jpeg',NULL,NULL,292,400),(840,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:41','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000840-testing-title.jpeg',NULL,25,1,'71311451',15,3307,4884,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e128b2b4b3.jpeg','thumb_suraimages-1000840-testing-title.jpeg','preview_suraimages-1000840-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000840-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000840-testing-title.jpeg',NULL,NULL,10889,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10889,'jpeg',NULL,NULL,271,400),(841,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:43','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000841-testing-title.jpeg',NULL,25,1,'71311451',15,3407,4779,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e128eb511b.jpeg','thumb_suraimages-1000841-testing-title.jpeg','preview_suraimages-1000841-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000841-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000841-testing-title.jpeg',NULL,NULL,10890,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10890,'jpeg',NULL,NULL,285,400),(842,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:43','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000842-testing-title.jpeg',NULL,25,1,'71311451',15,3030,4728,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e1292b8e50.jpeg','thumb_suraimages-1000842-testing-title.jpeg','preview_suraimages-1000842-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000842-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000842-testing-title.jpeg',NULL,NULL,10891,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10891,'jpeg',NULL,NULL,256,400),(843,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Beauty, Beautiful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:44','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000843-testing-title.jpeg',NULL,25,1,'71311451',15,3259,4736,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, People, Young, Youth, Youthful, Female, Woman, Girl, Lady, Beauty, Beautiful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e129532867.jpeg','thumb_suraimages-1000843-testing-title.jpeg','preview_suraimages-1000843-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000843-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000843-testing-title.jpeg',NULL,NULL,10892,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10892,'jpeg',NULL,NULL,275,400),(844,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:45','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000844-testing-title.jpeg',NULL,25,1,'71311451',15,4520,3135,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e1297c9956.jpeg','thumb_suraimages-1000844-testing-title.jpeg','preview_suraimages-1000844-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000844-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000844-testing-title.jpeg',NULL,NULL,10893,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10893,'jpeg',NULL,NULL,577,400),(845,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:46','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000845-testing-title.jpeg',NULL,25,1,'71311451',15,4518,3183,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e129a38364.jpeg','thumb_suraimages-1000845-testing-title.jpeg','preview_suraimages-1000845-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000845-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000845-testing-title.jpeg',NULL,NULL,10894,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10894,'jpeg',NULL,NULL,568,400),(846,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:47','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000846-testing-title.jpeg',NULL,25,1,'71311451',15,3648,4960,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e129c9f5eb.jpeg','thumb_suraimages-1000846-testing-title.jpeg','preview_suraimages-1000846-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000846-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000846-testing-title.jpeg',NULL,NULL,10895,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10895,'jpeg',NULL,NULL,294,400),(847,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:48','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000847-testing-title.jpeg',NULL,25,1,'71311451',15,3574,4738,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e12a1000dd.jpeg','thumb_suraimages-1000847-testing-title.jpeg','preview_suraimages-1000847-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000847-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000847-testing-title.jpeg',NULL,NULL,10896,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10896,'jpeg',NULL,NULL,302,400),(848,46,18,1370,4,'Testing Title','Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files','2018-10-21 06:56:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000848-testing-title.jpeg',NULL,25,1,'71311451',15,2767,4672,50,17,0,0,NULL,NULL,'Nurse, Nurses, Surgeon, Doctor, Doctors, Studio, White, Background, Plain, Female, Woman, Girl, Lady, Beauty, Beautiful, People, Young, Youth, Youthful, Lab, Coat, Stethoscope, Isolated, Front, Standing, Stand, Pose, Holding, Hold, Full, Body, Size, Half, Medium, Body, Size, Shot, File, Files',NULL,1,'71311451','img_5e0e12a461997.jpeg','thumb_suraimages-1000848-testing-title.jpeg','preview_suraimages-1000848-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000848-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000848-testing-title.jpeg',NULL,NULL,10897,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10897,'jpeg',NULL,NULL,237,400),(849,46,18,1370,4,'Testing Title','Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility','2018-10-21 06:56:50','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000849-testing-title.jpeg',NULL,40,2,'59004050',15,3192,4736,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility',NULL,1,'59004050','img_5e0e12a6a95fe.jpeg','thumb_suraimages-1000849-testing-title.jpeg','preview_suraimages-1000849-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000849-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000849-testing-title.jpeg',NULL,NULL,10898,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10898,'jpeg',NULL,NULL,270,400),(850,46,18,1370,4,'Testing Title','Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility','2018-10-21 06:56:51','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000850-testing-title.jpeg',NULL,40,2,'59004050',15,3472,5032,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility',NULL,1,'59004050','img_5e0e12a94e39d.jpeg','thumb_suraimages-1000850-testing-title.jpeg','preview_suraimages-1000850-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000850-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000850-testing-title.jpeg',NULL,NULL,10899,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10899,'jpeg',NULL,NULL,276,400),(851,46,18,1370,4,'Testing Title','Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility','2018-10-21 06:56:53','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000851-testing-title.jpeg',NULL,40,2,'59004050',15,4784,3282,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility',NULL,1,'59004050','img_5e0e12ad81179.jpeg','thumb_suraimages-1000851-testing-title.jpeg','preview_suraimages-1000851-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000851-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000851-testing-title.jpeg',NULL,NULL,10900,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10900,'jpeg',NULL,NULL,583,400),(852,46,18,1370,4,'Testing Title','Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility','2018-10-21 07:34:32','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000852-testing-title.jpeg',NULL,40,2,'59004050',15,5042,3405,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility',NULL,1,'59004050','img_5e0e12b032d02.jpeg','thumb_suraimages-1000852-testing-title.jpeg','preview_suraimages-1000852-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000852-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000852-testing-title.jpeg',NULL,NULL,10901,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10901,'jpeg',NULL,NULL,592,400),(853,46,18,1370,4,'Testing Title','Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility','2018-10-21 07:34:33','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000853-testing-title.jpeg',NULL,40,2,'59004050',15,4843,3453,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility',NULL,1,'59004050','img_5e0e12b45618e.jpeg','thumb_suraimages-1000853-testing-title.jpeg','preview_suraimages-1000853-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000853-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000853-testing-title.jpeg',NULL,NULL,10902,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10902,'jpeg',NULL,NULL,561,400),(854,46,18,1370,4,'Testing Title','Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility','2018-10-21 07:34:35','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000854-testing-title.jpeg',NULL,40,2,'59004050',15,3213,3612,80,27,0,0,NULL,NULL,'Doctor, Doctors, Nurse, Nurses, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility',NULL,1,'59004050','img_5e0e12b836414.jpeg','thumb_suraimages-1000854-testing-title.jpeg','preview_suraimages-1000854-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000854-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000854-testing-title.jpeg',NULL,NULL,10903,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10903,'jpeg',NULL,NULL,356,400),(855,46,18,1370,4,'Testing Title','Nurse, Nurses, Doctor, Doctors, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility','2018-10-21 07:34:36','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000855-testing-title.jpeg',NULL,40,2,'59004050',15,5057,3389,80,27,0,0,NULL,NULL,'Nurse, Nurses, Doctor, Doctors, Surgeon, Hospital, White, Background, Plain, Studio, Young, Youth, Youthful, Beauty, Beautiful, Female, Woman, Girl, Lady, Man, Male, Men, Lab, Coat, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Colleagues, Workmate, Full, Body, Size, Half, Medium, Body, Size, Shot, Mobility',NULL,1,'59004050','img_5e0e12ba541be.jpeg','thumb_suraimages-1000855-testing-title.jpeg','preview_suraimages-1000855-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000855-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000855-testing-title.jpeg',NULL,NULL,10904,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10904,'jpeg',NULL,NULL,597,400),(856,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look','2018-10-21 07:34:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000856-testing-title.jpeg',NULL,40,2,'45525442',15,3204,4744,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look',NULL,1,'45525442','img_5e0e12be9d299.jpeg','thumb_suraimages-1000856-testing-title.jpeg','preview_suraimages-1000856-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000856-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000856-testing-title.jpeg',NULL,NULL,10905,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10905,'jpeg',NULL,NULL,270,400),(857,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look','2018-10-21 07:34:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000857-testing-title.jpeg',NULL,40,2,'45525442',15,3456,4675,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look',NULL,1,'45525442','img_5e0e12c158dfe.jpeg','thumb_suraimages-1000857-testing-title.jpeg','preview_suraimages-1000857-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000857-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000857-testing-title.jpeg',NULL,NULL,10906,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10906,'jpeg',NULL,NULL,296,400),(858,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look','2018-10-21 07:34:38','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000858-testing-title.jpeg',NULL,40,2,'45525442',15,3263,4798,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look',NULL,1,'45525442','img_5e0e12c5429bd.jpeg','thumb_suraimages-1000858-testing-title.jpeg','preview_suraimages-1000858-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000858-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000858-testing-title.jpeg',NULL,NULL,10907,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10907,'jpeg',NULL,NULL,272,400),(859,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Pointing','2018-10-21 07:34:39','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000859-testing-title.jpeg',NULL,40,2,'45525442',15,4414,2914,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Pointing',NULL,1,'45525442','img_5e0e12c8190f7.jpeg','thumb_suraimages-1000859-testing-title.jpeg','preview_suraimages-1000859-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000859-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000859-testing-title.jpeg',NULL,NULL,10908,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10908,'jpeg',NULL,NULL,606,400),(860,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Pointing','2018-10-21 07:34:40','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000860-testing-title.jpeg',NULL,40,2,'45525442',15,5282,3488,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, Pointing',NULL,1,'45525442','img_5e0e12ca66ad3.jpeg','thumb_suraimages-1000860-testing-title.jpeg','preview_suraimages-1000860-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000860-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000860-testing-title.jpeg',NULL,NULL,10909,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10909,'jpeg',NULL,NULL,606,400),(861,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray','2018-10-21 07:34:41','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000861-testing-title.jpeg',NULL,40,2,'45525442',15,3079,4803,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray',NULL,1,'45525442','img_5e0e12ceeef5b.jpeg','thumb_suraimages-1000861-testing-title.jpeg','preview_suraimages-1000861-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000861-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000861-testing-title.jpeg',NULL,NULL,10910,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10910,'jpeg',NULL,NULL,256,400),(862,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Pointing','2018-10-21 07:58:18','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000862-testing-title.jpeg',NULL,40,2,'45525442',15,4910,3182,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Pointing',NULL,1,'45525442','img_5e0e12d19fc46.jpeg','thumb_suraimages-1000862-testing-title.jpeg','preview_suraimages-1000862-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000862-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000862-testing-title.jpeg',NULL,NULL,10911,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10911,'jpeg',NULL,NULL,617,400),(863,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Pointing','2018-10-21 07:58:19','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000863-testing-title.jpeg',NULL,40,2,'45525442',15,5121,3342,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Pointing',NULL,1,'45525442','img_5e0e12d46e8fd.jpeg','thumb_suraimages-1000863-testing-title.jpeg','preview_suraimages-1000863-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000863-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000863-testing-title.jpeg',NULL,NULL,10912,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10912,'jpeg',NULL,NULL,613,400),(864,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look','2018-10-21 07:58:20','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000864-testing-title.jpeg',NULL,40,2,'85904580',15,3105,4889,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, Isolated, Front, People, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look',NULL,1,'85904580','img_5e0e12d88dcee.jpeg','thumb_suraimages-1000864-testing-title.jpeg','preview_suraimages-1000864-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000864-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000864-testing-title.jpeg',NULL,NULL,10913,NULL,'Creative Image','Photography','Portrait',NULL,NULL,NULL,10913,'jpeg',NULL,NULL,254,400),(865,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, People, Front, Isolated, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Pointing','2018-10-21 07:58:21','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000865-testing-title.jpeg',NULL,40,2,'85904580',15,4992,3436,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, People, Front, Isolated, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Pointing',NULL,1,'85904580','img_5e0e12db87746.jpeg','thumb_suraimages-1000865-testing-title.jpeg','preview_suraimages-1000865-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000865-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000865-testing-title.jpeg',NULL,NULL,10914,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10914,'jpeg',NULL,NULL,581,400),(866,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, People, Front, Isolated, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Discussing, Holding, Hold, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Celebration, Celebrating, Bingo, Achieved, Achieve','2018-10-21 07:58:22','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000866-testing-title.jpeg',NULL,40,2,'85904580',15,4963,3302,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, People, Front, Isolated, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Discussing, Holding, Hold, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Celebration, Celebrating, Bingo, Achieved, Achieve',NULL,1,'85904580','img_5e0e12df4eeff.jpeg','thumb_suraimages-1000866-testing-title.jpeg','preview_suraimages-1000866-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000866-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000866-testing-title.jpeg',NULL,NULL,10915,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10915,'jpeg',NULL,NULL,601,400),(867,46,18,1370,4,'Testing Title','Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, People, Front, Isolated, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Pointing,','2018-10-28 05:32:37','/var/www/html/da/2019/sura/public/uploads/stock/suraimages-1000867-testing-title.jpeg',NULL,40,2,'85904580',15,4875,3125,80,27,0,0,NULL,NULL,'Surgeon, Nurse, Nurses, Doctor, Doctors, Hospital, Studio, White, Background, Plain, Young, Youth, Youthful, Lab, Coat, Scrubs, Scrub, Man, Male, Men, Female, Woman, Girl, Lady, Stethoscope, People, Front, Isolated, Standing, Stand, Pose, Shot, Full, Body, Size, Partners, Colleagues, Workmate, Holding, Hold, Discussing, Explaining, Examining, Analysing, Talking, Talk, Chatting, Chat, Excited, Exciting, Happy, Smiling, Smile, Looking, Look, X-ray, Pointing,',NULL,1,'85904580','img_5e0e12e39dd6a.jpeg','thumb_suraimages-1000867-testing-title.jpeg','preview_suraimages-1000867-testing-title.jpeg',0,'Royalty Free','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000867-testing-title.jpeg','/var/www/html/da/2019/sura/public/uploads/stock/lg_suraimages-1000867-testing-title.jpeg',NULL,NULL,10916,NULL,'Creative Image','Photography','Landscape',NULL,NULL,NULL,10916,'jpeg',NULL,NULL,624,400);
/*!40000 ALTER TABLE `stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stock_category`
--

DROP TABLE IF EXISTS `stock_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_category` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `featured_stock_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_498A4D835019D2D` (`featured_stock_id`),
  CONSTRAINT `FK_498A4D835019D2D` FOREIGN KEY (`featured_stock_id`) REFERENCES `stock` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_category`
--

LOCK TABLES `stock_category` WRITE;
/*!40000 ALTER TABLE `stock_category` DISABLE KEYS */;
INSERT INTO `stock_category` VALUES (1,'Sports','Sports',NULL),(2,'Holiday','Holiday',NULL),(3,'Infrastructure','Infrastructure',NULL),(5,'Interior','Interior',NULL),(8,'Buildings/Landmarks','Buildings/Landmarks',NULL),(9,'Outdoor','Outdoor',NULL),(13,'Business','Business',NULL),(15,'Nature','Nature',NULL),(16,'Wildlife','Wildlife',NULL),(18,'People','People',NULL),(19,'Animals/Livestock','Animals/Livestock',NULL),(24,'Industrial','Industrial',NULL),(25,'Tourism/Hospitality','Tourism/Hospitality',NULL),(26,'Beauty/Fashion','Beauty/Fashion',NULL),(28,'Agriculture/Farming','Agriculture/Farming',867),(30,'Food/Beverages','Food/Beverages',NULL),(31,'Abstract','Abstract',NULL),(32,'Vintage','Vintage',NULL),(34,'Signs/Symbols','Signs/Symbols',NULL),(35,'ICT/Technology','ICT/Technology',NULL),(36,'Arts/Entertainment','Arts/Entertainment',NULL),(37,'Education','Education',NULL),(38,'Select Categories','Select Categories',NULL),(46,'Medical/Healthcare','Medical/Healthcare',NULL),(48,'Beverage/Drink','Beverage/Drink',NULL),(49,'','',NULL);
/*!40000 ALTER TABLE `stock_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stock_exclusive_pricing`
--

DROP TABLE IF EXISTS `stock_exclusive_pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_exclusive_pricing` (
  `id` int NOT NULL AUTO_INCREMENT,
  `photo_one_month` double NOT NULL,
  `photo_three_month` double NOT NULL,
  `photo_six_months` double NOT NULL,
  `photo_one_year` double NOT NULL,
  `photo_two_years` double DEFAULT NULL,
  `stock_type_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_A1DF047FDCEA9C30` (`stock_type_id`),
  CONSTRAINT `FK_A1DF047FDCEA9C30` FOREIGN KEY (`stock_type_id`) REFERENCES `stock_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_exclusive_pricing`
--

LOCK TABLES `stock_exclusive_pricing` WRITE;
/*!40000 ALTER TABLE `stock_exclusive_pricing` DISABLE KEYS */;
INSERT INTO `stock_exclusive_pricing` VALUES (1,150,300,400,500,1245,5),(2,100,200,300,400,500,4);
/*!40000 ALTER TABLE `stock_exclusive_pricing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stock_model`
--

DROP TABLE IF EXISTS `stock_model`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_model` (
  `id` int NOT NULL AUTO_INCREMENT,
  `stock_id` int NOT NULL,
  `model_id` int NOT NULL,
  `model_release_id` int NOT NULL,
  `create_by_id` int NOT NULL,
  `create_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_4B856E28DCD6110` (`stock_id`),
  KEY `IDX_4B856E287975B7E7` (`model_id`),
  KEY `IDX_4B856E28D81579EA` (`model_release_id`),
  KEY `IDX_4B856E289E085865` (`create_by_id`),
  CONSTRAINT `FK_4B856E287975B7E7` FOREIGN KEY (`model_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_4B856E289E085865` FOREIGN KEY (`create_by_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_4B856E28D81579EA` FOREIGN KEY (`model_release_id`) REFERENCES `release_form` (`id`),
  CONSTRAINT `FK_4B856E28DCD6110` FOREIGN KEY (`stock_id`) REFERENCES `stock` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_model`
--

LOCK TABLES `stock_model` WRITE;
/*!40000 ALTER TABLE `stock_model` DISABLE KEYS */;
/*!40000 ALTER TABLE `stock_model` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stock_recent_views`
--

DROP TABLE IF EXISTS `stock_recent_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_recent_views` (
  `id` int NOT NULL AUTO_INCREMENT,
  `stock_id` int DEFAULT NULL,
  `user_id` int DEFAULT NULL,
  `viewed_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_682435FCDCD6110` (`stock_id`),
  KEY `IDX_682435FCA76ED395` (`user_id`),
  CONSTRAINT `FK_682435FCA76ED395` FOREIGN KEY (`user_id`) REFERENCES `fos_user` (`id`),
  CONSTRAINT `FK_682435FCDCD6110` FOREIGN KEY (`stock_id`) REFERENCES `stock` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_recent_views`
--

LOCK TABLES `stock_recent_views` WRITE;
/*!40000 ALTER TABLE `stock_recent_views` DISABLE KEYS */;
INSERT INTO `stock_recent_views` VALUES (6,283,NULL,'2020-01-03 14:25:46'),(7,274,NULL,'2020-01-03 14:26:44'),(8,265,NULL,'2020-01-03 14:27:57');
/*!40000 ALTER TABLE `stock_recent_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stock_release`
--

DROP TABLE IF EXISTS `stock_release`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_release` (
  `id` int NOT NULL AUTO_INCREMENT,
  `the_release_id` int NOT NULL,
  `the_stock_id` int NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_87E113BE7F9F645B` (`the_release_id`),
  KEY `IDX_87E113BE4444F473` (`the_stock_id`),
  CONSTRAINT `FK_87E113BE4444F473` FOREIGN KEY (`the_stock_id`) REFERENCES `stock` (`id`),
  CONSTRAINT `FK_87E113BE7F9F645B` FOREIGN KEY (`the_release_id`) REFERENCES `release_form` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_release`
--

LOCK TABLES `stock_release` WRITE;
/*!40000 ALTER TABLE `stock_release` DISABLE KEYS */;
/*!40000 ALTER TABLE `stock_release` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stock_type`
--

DROP TABLE IF EXISTS `stock_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_type`
--

LOCK TABLES `stock_type` WRITE;
/*!40000 ALTER TABLE `stock_type` DISABLE KEYS */;
INSERT INTO `stock_type` VALUES (4,'photo','Photo'),(5,'video','Video');
/*!40000 ALTER TABLE `stock_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stocks_cats`
--

DROP TABLE IF EXISTS `stocks_cats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stocks_cats` (
  `id` int NOT NULL AUTO_INCREMENT,
  `stock_id` int DEFAULT NULL,
  `category_stock_cat_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_72C61335DCD6110` (`stock_id`),
  KEY `IDX_72C61335F65C5847` (`category_stock_cat_id`),
  CONSTRAINT `FK_72C61335DCD6110` FOREIGN KEY (`stock_id`) REFERENCES `stock` (`id`),
  CONSTRAINT `FK_72C61335F65C5847` FOREIGN KEY (`category_stock_cat_id`) REFERENCES `stock_category` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stocks_cats`
--

LOCK TABLES `stocks_cats` WRITE;
/*!40000 ALTER TABLE `stocks_cats` DISABLE KEYS */;
/*!40000 ALTER TABLE `stocks_cats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `welcome_languages`
--

DROP TABLE IF EXISTS `welcome_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `welcome_languages` (
  `id` int NOT NULL AUTO_INCREMENT,
  `language` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `welcome` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `welcome_languages`
--

LOCK TABLES `welcome_languages` WRITE;
/*!40000 ALTER TABLE `welcome_languages` DISABLE KEYS */;
INSERT INTO `welcome_languages` VALUES (1,'Swahili','Karibu'),(2,'Xhosa','Wamkelekile'),(3,'Afrikaans','Welkom'),(4,'Yoruba','Kaabo'),(5,'Zulu','Ukwamukela'),(6,'Igbo','Nnabata'),(7,'Shona','Mauya'),(8,'Malagasy','Tonga Soa'),(9,'Hausa','Maraba'),(10,'Somali','Soo dhowow'),(11,'Luo','Machiegni');
/*!40000 ALTER TABLE `welcome_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'sura'
--
/*!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 2020-01-24 10:44:53

Youez - 2016 - github.com/yon3zu
LinuXploit