1
0
Files
www.erictaylor.me/content/files/old/gvp/grandview.sql

907 lines
1.2 MiB
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- MySQL dump 10.9
--
-- Host: localhost Database: eric_grandview
-- ------------------------------------------------------
-- Server version 4.1.22-standard
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!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 */;
--
-- Table structure for table `wp_cart_contents`
--
DROP TABLE IF EXISTS `wp_cart_contents`;
CREATE TABLE `wp_cart_contents` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`prodid` bigint(20) unsigned NOT NULL default '0',
`purchaseid` bigint(20) unsigned NOT NULL default '0',
`price` varchar(128) NOT NULL default '',
`pnp` varchar(128) NOT NULL default '',
`gst` varchar(128) NOT NULL default '',
`quantity` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_cart_contents`
--
LOCK TABLES `wp_cart_contents` WRITE;
/*!40000 ALTER TABLE `wp_cart_contents` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_cart_contents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_cart_item_variations`
--
DROP TABLE IF EXISTS `wp_cart_item_variations`;
CREATE TABLE `wp_cart_item_variations` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`cart_id` bigint(20) unsigned NOT NULL default '0',
`variation_id` bigint(20) unsigned NOT NULL default '0',
`venue_id` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_cart_item_variations`
--
LOCK TABLES `wp_cart_item_variations` WRITE;
/*!40000 ALTER TABLE `wp_cart_item_variations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_cart_item_variations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_collect_data_forms`
--
DROP TABLE IF EXISTS `wp_collect_data_forms`;
CREATE TABLE `wp_collect_data_forms` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`name` varchar(255) NOT NULL default '',
`type` varchar(64) NOT NULL default '',
`mandatory` char(1) NOT NULL default '',
`display_log` char(1) NOT NULL default '0',
`default` varchar(128) NOT NULL default '',
`active` char(1) NOT NULL default '1',
`order` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `order` (`order`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_collect_data_forms`
--
LOCK TABLES `wp_collect_data_forms` WRITE;
/*!40000 ALTER TABLE `wp_collect_data_forms` DISABLE KEYS */;
INSERT INTO `wp_collect_data_forms` VALUES (1,'First Name','text','1','1','','1',1),(2,'Last Name','text','1','1','','1',2),(3,'Email','email','1','1','','1',3),(4,'Address 1','text','1','0','','1',4),(5,'Address 2','text','0','0','','1',5),(6,'City','text','1','0','','1',6),(7,'Country','country','1','0','','1',7),(8,'Phone','text','1','0','','1',8);
/*!40000 ALTER TABLE `wp_collect_data_forms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL auto_increment,
`comment_post_ID` int(11) NOT NULL default '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL default '',
`comment_author_url` varchar(200) NOT NULL default '',
`comment_author_IP` varchar(100) NOT NULL default '',
`comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL default '0',
`comment_approved` enum('0','1','spam') NOT NULL default '1',
`comment_agent` varchar(255) NOT NULL default '',
`comment_type` varchar(20) NOT NULL default '',
`comment_parent` bigint(20) NOT NULL default '0',
`user_id` bigint(20) NOT NULL default '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_approved` (`comment_approved`),
KEY `comment_post_ID` (`comment_post_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (12,48,'Eric Taylor','eric@eden.org','http://','130.13.174.168','2008-04-07 11:11:50','2008-04-07 18:11:50','I took this photo with my old Canon AE 1 film camera with a high speed black and white film to give it that grainy and grungy look.',0,'1','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_2; en-us) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13','',0,2),(25,48,'Andrea','youhaveit@myemail.com','','207.154.85.2','2008-04-11 14:55:45','2008-04-11 21:55:45','Hey Eric,\r\nGreat shot. Thanks for the tips. A-',0,'1','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_currency_list`
--
DROP TABLE IF EXISTS `wp_currency_list`;
CREATE TABLE `wp_currency_list` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`country` varchar(255) NOT NULL default '',
`isocode` char(2) default NULL,
`currency` varchar(255) NOT NULL default '',
`symbol` varchar(10) NOT NULL default '',
`symbol_html` varchar(10) NOT NULL default '',
`code` char(3) NOT NULL default '',
`has_regions` char(1) NOT NULL default '0',
`tax` varchar(8) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=243 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_currency_list`
--
LOCK TABLES `wp_currency_list` WRITE;
/*!40000 ALTER TABLE `wp_currency_list` DISABLE KEYS */;
INSERT INTO `wp_currency_list` VALUES (1,'Mauritania','MR','Mauritanian Ouguiya','','','MRO','0','0'),(2,'Martinique (French)','MQ','Euro','€','€','EUR','0','0'),(3,'Malta','MT','Maltese Lira','','','MTL','0','0'),(4,'Marshall Islands','MH','US Dollar','$','$','USD','0','0'),(5,'Mali','ML','CFA Franc BCEAO','','','XOF','0','0'),(6,'Maldives','MV','Maldive Rufiyaa','','','MVR','0','0'),(7,'Malaysia','MY','Malaysian Ringgit','','','MYR','0','0'),(8,'Malawi','MW','Malawi Kwacha','','','MWK','0','0'),(9,'Madagascar','MG','Malagasy Franc','','','MGF','0','0'),(10,'Macau','MO','Macau Pataca','','','MOP','0','0'),(11,'Macedonia','MK','Denar','','','MKD','0','0'),(12,'Luxembourg','LU','Euro','€','€','EUR','0','0'),(13,'Lithuania','LT','Lithuanian Litas','','','LTL','0','0'),(14,'Liechtenstein','LI','Swiss Franc','','','CHF','0','0'),(15,'Libya','LY','Libyan Dinar','','','LYD','0','0'),(16,'Liberia','LR','Liberian Dollar','$','$','LRD','0','0'),(17,'Lesotho','LS','Lesotho Loti','','','LSL','0','0'),(18,'Lebanon','LB','Lebanese Pound','','','LBP','0','0'),(19,'Latvia','LV','Latvian Lats','','','LVL','0','0'),(20,'Laos','LA','Lao Kip','','','LAK','0','0'),(21,'Kyrgyzstan','KG','Som','','','KGS','0','0'),(22,'Kuwait','KW','Kuwaiti Dinar','','','KWD','0','0'),(23,'Korea, South','KR','Korean Won','','','KRW','0','0'),(24,'Korea, North','KP','North Korean Won','','','KPW','0','0'),(25,'Kiribati','KI','Australian Dollar','$','$','AUD','0','0'),(26,'Kenya','KE','Kenyan Shilling','','','KES','0','0'),(27,'Kazakhstan','KZ','Kazakhstan Tenge','','','KZT','0','0'),(28,'Jordan','JO','Jordanian Dinar','','','JOD','0','0'),(29,'Jersey','JE','Pound Sterling','£','£','GBP','0','0'),(30,'Japan','JP','Japanese Yen','¥','¥','JPY','0','0'),(31,'Jamaica','JM','Jamaican Dollar','$','$','JMD','0','0'),(32,'Ivory Coast','CI','CFA Franc BCEAO','','','XOF','0','0'),(33,'Italy','IT','Euro','€','€','EUR','0','0'),(34,'Isle of Man','IM','Pound Sterling','£','£','GBP','0','0'),(35,'Israel','IL','Israeli New Shekel','','','ILS','0','0'),(36,'Ireland','IE','Euro','€','€','EUR','0','0'),(37,'Iraq','IQ','Iraqi Dinar','','','IQD','0','0'),(38,'Indonesia','ID','Indonesian Rupiah','','','IDR','0','0'),(39,'Iran','IR','Iranian Rial','','','IRR','0','0'),(40,'India','IN','Indian Rupee','','','INR','0','0'),(41,'Iceland','IS','Iceland Krona','','','ISK','0','0'),(42,'Hungary','HU','Hungarian Forint','','','HUF','0','0'),(43,'Hong Kong','HK','Hong Kong Dollar','$','$','HKD','0','0'),(44,'Honduras','HN','Honduran Lempira','','','HNL','0','0'),(45,'Heard Island and McDonald Islands','HM','Australian Dollar','$','$','AUD','0','0'),(46,'Haiti','HT','Haitian Gourde','','','HTG','0','0'),(47,'Guyana','GY','Guyana Dollar','$','$','GYD','0','0'),(48,'Guinea Bissau','GW','Guinea-Bissau Peso','','','GWP','0','0'),(49,'Guinea','GN','Guinea Franc','','','GNF','0','0'),(50,'Guernsey','GF','Pound Sterling','£','£','GBP','0','0'),(51,'Guatemala','GT','Guatemalan Quetzal','','','QTQ','0','0'),(52,'Guam (USA)','GU','US Dollar','$','$','USD','0','0'),(53,'Grenada','GD','East Carribean Dollar','$','$','XCD','0','0'),(54,'Guadeloupe (French)','GP','Euro','€','€','EUR','0','0'),(55,'Greenland','GL','Danish Krone','','','DKK','0','0'),(56,'Greece','GR','Euro','€','€','EUR','0','19'),(57,'Gibraltar','GI','Gibraltar Pound','','','GIP','0','0'),(58,'Ghana','GH','Ghanaian Cedi','','','GHC','0','0'),(59,'Germany','DE','Euro','€','€','EUR','0','0'),(60,'Georgia','GE','Georgian Lari','','','GEL','0','0'),(61,'Gambia','GM','Gambian Dalasi','','','GMD','0','0'),(62,'Gabon','GA','CFA Franc BEAC','','','XAF','0','0'),(63,'French Southern Territories','TF','Euro','€','€','EUR','0','0'),(64,'France','FR','Euro','€','€','EUR','0','0'),(65,'Finland','FI','Euro','€','€','EUR','0','0'),(66,'Fiji','FJ','Fiji Dollar','$','$','FJD','0','0'),(67,'Faroe Islands','FO','Danish Krone','','','DKK','0','0'),(68,'Falkland Islands','FK','Falkland Islands Pound','','','FKP','0','0'),(69,'Ethiopia','ET','Ethiopian Birr','','','ETB','0','0'),(70,'Estonia','EE','Estonian Kroon','','','EEK','0','0'),(71,'Eritrea','ER','Eritrean Nakfa','','','ERN','0','0'),(72,'Equatorial Guinea','GQ','CFA Franc BEAC','','','XAF','0','0'),(73,'El Salvador','SV','El Salvador Colon','','','SVC','0','0'),(74,'Egypt','EG','Egyptian Pound','','','EGP','0','0'),(75,'Ecuador','EC','Ecuador Sucre','','','ECS','0','0'),(76,'East Timor','TP','Timor Escudo','','','TPE','0','0'),(77,'Dominican Republic','DO','Dominican Peso','','','DOP','0','0'),(78,'Dominica','DM','East Caribbean Dollar','$','$','XCD','0','0'),(79,'Djibouti','DJ','Djibouti Franc','','','DJF','0','0'),(80,'Denmark','DK','Danish Krone','','','DKK','0','0'),(81,'Democratic Republic of Congo','CD','Francs','','','CDF','0','0'),(82,'Czech Rep.','CZ','Czech Koruna','','','CZK','0','0'),(83,'Cyprus','CY','Cyprus Pound','','','CYP','0','0'),(84,'Cuba','CU','Cuban Peso','','','CUP','0','0'),(85,'Croatia','HR','Croatian Kuna','','','HRK','0','0'),(86,'Costa Rica','CR','Costa Rican Colon','','','CRC','0','0'),(87,'Cook Islands','CK','New Zealand Dollar','$','$','NZD','0','0'),(88,'Congo','CG','CFA Franc BEAC','','','XAF','0','0'),(89,'Comoros','KM','Comoros Franc','','','KMF','0','0'),(90,'Colombia','CO','Colombian Peso','','','COP','0','0'),(91,'Cocos (Keeling) Islands','CC','Australian Dollar','$','$','AUD','0','0'),(92,'Christmas Island','CX','Australian Dollar','$','$','AUD','0','0'),(93,'Chile','CL','Chilean Peso','','','CLP','0','0'),(94,'China','CN','Yuan Renminbi','','','CNY','0','0'),(95,'Chad','TD','CFA Franc BEAC','','','XAF','0','0'),(96,'Central African Republic','CF','CFA Franc BEAC','','','XAF','0','0'),(97,'Cayman Islands','KY','Cayman Islands Dollar','$','$','KYD','0','0'),(98,'Cape Verde','CV','Cape Verde Escudo','','','CVE','0','0'),(99,'Cameroon','CM','CFA Franc BEAC','','','XAF','0','0'),(100,'Canada','CA','Canadian Dollar','$','$','CAD','1',''),(101,'Cambodia','KH','Kampuchean Riel','','','KHR','0','0'),(102,'Burundi','BI','Burundi Franc','','','BIF','0','0'),(103,'Burkina Faso','BF','CFA Franc BCEAO','','','XOF','0','0'),(104,'Bulgaria','BG','Bulgarian Lev','','','BGL','0','0'),(105,'Brunei Darussalam','BN','Brunei Dollar','$','$','BND','0','0'),(106,'British Indian Ocean Territory','IO','US Dollar','$','$','USD','0','0'),(107,'Brazil','BR','Brazilian Real','','','BRL','0','0'),(108,'Bouvet Island','BV','Norwegian Krone','','','NOK','0','0'),(109,'Botswana','BW','Botswana Pula','','','BWP','0','0'),(110,'Bosnia-Herzegovina','BA','Marka','','','BAM','0','0'),(111,'Bolivia','BO','Boliviano','','','BOB','0','0'),(112,'Bhutan','BT','Bhutan Ngultrum','','','BTN','0','0'),(113,'Bermuda','BM','Bermudian Dollar','$','$','BMD','0','0'),(114,'Benin','BJ','CFA Franc BCEAO','','','XOF','0','0'),(115,'Belize','BZ','Belize Dollar','$','$','BZD','0','0'),(116,'Belgium','BE','Euro','€','€','EUR','0','0'),(117,'Belarus','BY','Belarussian Ruble','','','BYB','0','0'),(118,'Barbados','BB','Barbados Dollar','$','$','BBD','0','0'),(119,'Bangladesh','BD','Bangladeshi Taka','','','BDT','0','0'),(120,'Bahrain','BH','Bahraini Dinar','','','BHD','0','0'),(121,'Bahamas','BS','Bahamian Dollar','$','$','BSD','0','0'),(122,'Azerbaijan','AZ','Azerbaijanian Manat','','','AZM','0','0'),(123,'Austria','AT','Euro','€','€','EUR','0','0'),(124,'Aruba','AW','Aruban Guilder','','','AWG','0','0'),(125,'Armenia','AM','Armenian Dram','','','AMD','0','0'),(126,'Argentina','AR','Argentine Peso','','','ARS','0','0'),(127,'Antigua and Barbuda','AG','East Caribbean Dollar','$','$','XCD','0','0'),(128,'Antarctica','AQ','Dollar','$','$','ATA','0','0'),(129,'Anguilla','AI','East Caribbean Dollar','$','$','XCD','0','0'),(130,'Angola','AO','Angolan New Kwanza','','','AON','0','0'),(131,'Andorra','AD','Euro','€','€','EUR','0','0'),(132,'American Samoa','AS','US Dollar','$','$','USD','0','0'),(133,'Algeria','DZ','Algerian Dinar','','','DZD','0','0'),(134,'Albania','AL','Albanian Lek','','','ALL','0','0'),(135,'Afghanistan','AF','Afghanistan Afghani','','','AFA','0','0'),(136,'USA','US','US Dollar','$','$','USD','1',''),(137,'Australia','AU','Australian Dollar','$','$','AUD','0','0'),(138,'Great Britain','GB','Pound Sterling','£','£','GBP','0','0'),(139,'Mauritius','MU','Mauritius Rupee','','','MUR','0','0'),(140,'Mayotte','YT','Euro','€','€','EUR','0','0'),(141,'Mexico','MX','Mexican Nuevo Peso','','','MXN','0','0'),(142,'Micronesia','FM','US Dollar','$','$','USD','0','0'),(143,'Moldova','MD','Moldovan Leu','','','MDL','0','0'),(144,'Monaco','MC','Euro','€','€','EUR','0','0'),(145,'Mongolia','MN','Mongolian Tugrik','','','MNT','0','0'),(146,'Montserrat','MS','East Caribbean Dollar','$','$','XCD','0','0'),(147,'Morocco','MA','Moroccan Dirham','','','MAD','0','0'),(148,'Mozambique','MZ','Mozambique Metical','','','MZM','0','0'),(149,'Myanmar','MM','Myanmar Kyat','','','MMK','0','0'),(150,'Namibia','NA','Namibian Dollar','$','$','NAD','0','0'),(151,'Nauru','NR','Australian Dollar','$','$','AUD','0','0'),(152,'Nepal','NP','Nepalese Rupee','','','NPR','0','0'),(153,'Netherlands','NL','Euro','€','€','EUR','0','0'),(154,'Netherlands Antilles','AN','Netherlands Antillean Guilder','','','ANG','0','0'),(155,'New Caledonia (French)','NC','CFP Franc','','','XPF','0','0'),(156,'New Zealand','NZ','New Zealand Dollar','$','$','NZD','0','12.5'),(157,'Nicaragua','NI','Nicaraguan Cordoba Oro','','','NIC','0','0'),(158,'Niger','NE','CFA Franc BCEAO','','','XOF','0','0'),(159,'Nigeria','NG','Nigerian Naira','','','NGN','0','0'),(160,'Niue','NU','New Zealand Dollar','$','$','NZD','0','0'),(161,'Norfolk Island','NF','Australian Dollar','$','$','AUD','0','0'),(162,'Northern Mariana Islands','MP','US Dollar','$','$','USD','0','0'),(163,'Norway','NO','Norwegian Krone','','','NOK','0','0'),(164,'Oman','OM','Omani Rial','','','OMR','0','0'),(165,'Pakistan','PK','Pakistan Rupee','','','PKR','0','0'),(166,'Palau','PW','US Dollar','$','$','USD','0','0'),(167,'Panama','PA','Panamanian Balboa','','','PAB','0','0'),(168,'Papua New Guinea','PG','Papua New Guinea Kina','','','PGK','0','0'),(169,'Paraguay','PY','Paraguay Guarani','','','PYG','0','0'),(170,'Peru','PE','Peruvian Nuevo Sol','','','PEN','0','0'),(171,'Philippines','PH','Philippine Peso','','','PHP','0','0'),(172,'Pitcairn Island','PN','New Zealand Dollar','$','$','NZD','0','0'),(173,'Poland','PL','Polish Zloty','','','PLZ','0','0'),(174,'Polynesia (French)','PF','CFP Franc','','','XPF','0','0'),(175,'Portugal','PT','Euro','€','€','EUR','0','0'),(176,'Puerto Rico','PR','US Dollar','$','$','USD','0','0'),(177,'Qatar','QA','Qatari Rial','','','QAR','0','0'),(178,'Reunion (French)','RE','Euro','€','€','EUR','0','0'),(179,'Romania','RO','Romanian Leu','','','ROL','0','0'),(180,'Russia','RU','Russian Ruble','','','RUR','0','0'),(181,'Rwanda','RW','Rwanda Franc','','','RWF','0','0'),(182,'Saint Helena','SH','St. Helena Pound','','','SHP','0','0'),(183,'Saint Kitts & Nevis Anguilla','KN','East Caribbean Dollar','$','$','XCD','0','0'),(184,'Saint Lucia','LC','East Caribbean Dollar','$','$','XCD','0','0'),(185,'Saint Pierre and Miquelon','PM','Euro','€','€','EUR','0','0'),(186,'Saint Vincent & Grenadines','VC','East Caribbean Dollar','$','$','XCD','0','0'),(187,'Samoa','WS','Samoan Tala','','','WST','0','0'),(188,'San Marino','SM','Italian Lira','','','ITL','0','0'),(189,'Sao Tome and Principe','ST','Dobra','','','STD','0','0'),(190,'Saudi Arabia','SA','Saudi Riyal','','','SAR','0','0'),(191,'Senegal','SN','CFA Franc BCEAO','','','XOF','0','0'),(192,'Seychelles','SC','Seychelles Rupee','','','SCR','0','0'),(193,'Sierra Leone','SL','Sierra Leone Leone','','','SLL','0','0'),(194,'Singapore','SG','Singapore Dollar','$','$','SGD','0','0'),(195,'Slovakia','SK','Slovak Koruna','','','SKK','0','0'),(196,'Slovenia','SI','Slovenian Tolar','','','SIT','0','0'),(197,'Solomon Islands','SB','Solomon Islands Dollar','$','$','SBD','0','0'),(198,'Somalia','SO','Somali Shilling','','','SOD','0','0'),(199,'South Africa','ZA','South African Rand','','','ZAR','0','0'),(200,'South Georgia & South Sandwich Islands','GS','Pound Sterling','£','£','GBP','0','0'),(201,'Spain','ES','Euro','€','€','EUR','0','0'),(202,'Sri Lanka','LK','Sri Lanka Rupee','','','LKR','0','0'),(203,'Sudan','SD','Sudanese Dinar','','','SDD','0','0'),(204,'Suriname','SR','Surinam Guilder','','','SRG','0','0'),(205,'Svalbard and Jan Mayen Islands','SJ','Norwegian Krone','','','NOK','0','0'),(206,'Swaziland','SZ','Swaziland Lilangeni','','','SZL','0','0'),(207,'Sweden','SE','Swedish Krona','','','SEK','0','0'),(208,'Switzerland','CH','Swiss Franc','','','CHF','0','0'),(209,'Syria','SY','Syrian Pound','','','SYP','0','0'),(210,'Taiwan','TW','Taiwan Dollar','$','$','TWD','0','0'),(211,'Tajikistan','TJ','Tajik Ruble','','','TJR','0','0'),(212,'Tanzania','TZ','Tanzanian Shilling','','','TZS','0','0'),(213,'Thailand','TH','Thai Baht','','','THB','0','0'),(214,'Togo','TG','CFA Franc BCEAO','','','XOF','0','0'),(215,'Tokelau','TK','New Zealand Dollar','$','$','NZD','0','0'),(216,'Tonga','TO','Tongan Pa\'anga','','','TOP','0','0'),(217,'Trinidad and Tobago','TT','Trinidad and Tobago Dollar','$','$','TTD','0','0'),(218,'Tunisia','TN','Tunisian Dollar','$','$','TND','0','0'),(219,'Turkey','TR','Turkish Lira','','','TRL','0','0'),(220,'Turkmenistan','TM','Manat','','','TMM','0','0'),(221,'Turks and Caicos Islands','TC','US Dollar','$','$','USD','0','0'),(222,'Tuvalu','TV','Australian Dollar','$','$','AUD','0','0'),(223,'U.K.','UK','Pound Sterling','£','£','GBP','0','17.5'),(224,'Uganda','UG','Uganda Shilling','','','UGS','0','0'),(225,'Ukraine','UA','Ukraine Hryvnia','','','UAG','0','0'),(226,'United Arab Emirates','AE','Arab Emirates Dirham','','','AED','0','0'),(227,'Uruguay','UY','Uruguayan Peso','','','UYP','0','0'),(228,'USA Minor Outlying Islands','UM','US Dollar','$','$','USD','0','0'),(229,'Uzbekistan','UZ','Uzbekistan Sum','','','UZS','0','0'),(230,'Vanuatu','VU','Vanuatu Vatu','','','VUV','0','0'),(231,'Vatican','VA','Euro','€','€','EUR','0','0'),(232,'Venezuela','VE','Venezuelan Bolivar','','','VUB','0','0'),(233,'Vietnam','VN','Vietnamese Dong','','','VND','0','0'),(234,'Virgin Islands (British)','VG','US Dollar','$','$','USD','0','0'),(235,'Virgin Islands (USA)','VI','US Dollar','$','$','USD','0','0'),(236,'Wallis and Futuna Islands','WF','CFP Franc','','','XPF','0','0'),(237,'Western Sahara','EH','Moroccan Dirham','','','MAD','0','0'),(238,'Yemen','YE','Yemeni Rial','','','YER','0','0'),(239,'Yugoslavia','YU','Yugoslav New Dinar','','','YUN','0','0'),(240,'Zambia','ZM','Zambian Kwacha','','','ZMK','0','0'),(241,'Zimbabwe','ZW','Zimbabwe Dollar','$','$','ZWD','0','0'),(242,'Deutschland','DE','Euro','€','€','EUR','0','0');
/*!40000 ALTER TABLE `wp_currency_list` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_download_status`
--
DROP TABLE IF EXISTS `wp_download_status`;
CREATE TABLE `wp_download_status` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`fileid` bigint(20) unsigned NOT NULL default '0',
`purchid` bigint(20) unsigned NOT NULL default '0',
`downloads` int(11) NOT NULL default '0',
`active` char(1) NOT NULL default '0',
`datetime` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_download_status`
--
LOCK TABLES `wp_download_status` WRITE;
/*!40000 ALTER TABLE `wp_download_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_download_status` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_item_category_associations`
--
DROP TABLE IF EXISTS `wp_item_category_associations`;
CREATE TABLE `wp_item_category_associations` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`product_id` bigint(20) unsigned NOT NULL default '0',
`category_id` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `product_id` (`product_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_item_category_associations`
--
LOCK TABLES `wp_item_category_associations` WRITE;
/*!40000 ALTER TABLE `wp_item_category_associations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_item_category_associations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE `wp_links` (
`link_id` bigint(20) NOT NULL auto_increment,
`link_url` varchar(255) NOT NULL default '',
`link_name` varchar(255) NOT NULL default '',
`link_image` varchar(255) NOT NULL default '',
`link_target` varchar(25) NOT NULL default '',
`link_category` bigint(20) NOT NULL default '0',
`link_description` varchar(255) NOT NULL default '',
`link_visible` enum('Y','N') NOT NULL default 'Y',
`link_owner` int(11) NOT NULL default '1',
`link_rating` int(11) NOT NULL default '0',
`link_updated` datetime NOT NULL default '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL default '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL default '',
PRIMARY KEY (`link_id`),
KEY `link_category` (`link_category`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
INSERT INTO `wp_links` VALUES (1,'http://codex.wordpress.org/','Documentation','','',0,'','Y',1,0,'0000-00-00 00:00:00','','',''),(2,'http://wordpress.org/development/','Development Blog','','',0,'','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/development/feed/'),(3,'http://wordpress.org/extend/ideas/','Suggest Ideas','','',0,'','Y',1,0,'0000-00-00 00:00:00','','',''),(4,'http://wordpress.org/support/','Support Forum','','',0,'','Y',1,0,'0000-00-00 00:00:00','','',''),(5,'http://wordpress.org/extend/plugins/','Plugins','','',0,'','Y',1,0,'0000-00-00 00:00:00','','',''),(6,'http://wordpress.org/extend/themes/','Themes','','',0,'','Y',1,0,'0000-00-00 00:00:00','','',''),(7,'http://planet.wordpress.org/','WordPress Planet','','',0,'','Y',1,0,'0000-00-00 00:00:00','','','');
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE `wp_options` (
`option_id` bigint(20) NOT NULL auto_increment,
`blog_id` int(11) NOT NULL default '0',
`option_name` varchar(64) NOT NULL default '',
`option_value` longtext NOT NULL,
`autoload` enum('yes','no') NOT NULL default 'yes',
PRIMARY KEY (`option_id`,`blog_id`,`option_name`),
KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=332 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,0,'siteurl','http://grandviewphotographyaz.com','yes'),(2,0,'blogname','Grand View Photography','yes'),(3,0,'blogdescription','Just another WordPress weblog','yes'),(4,0,'users_can_register','','yes'),(5,0,'admin_email','eric@eden.org','yes'),(6,0,'start_of_week','1','yes'),(7,0,'use_balanceTags','','yes'),(8,0,'use_smilies','1','yes'),(9,0,'require_name_email','1','yes'),(10,0,'comments_notify','1','yes'),(11,0,'posts_per_rss','10','yes'),(12,0,'rss_excerpt_length','50','yes'),(13,0,'rss_use_excerpt','0','yes'),(14,0,'mailserver_url','mail.example.com','yes'),(15,0,'mailserver_login','login@example.com','yes'),(16,0,'mailserver_pass','password','yes'),(17,0,'mailserver_port','110','yes'),(18,0,'default_category','1','yes'),(19,0,'default_comment_status','open','yes'),(20,0,'default_ping_status','open','yes'),(21,0,'default_pingback_flag','1','yes'),(22,0,'default_post_edit_rows','10','yes'),(23,0,'posts_per_page','7','yes'),(24,0,'what_to_show','posts','yes'),(25,0,'date_format','F j, Y','yes'),(26,0,'time_format','g:i a','yes'),(27,0,'links_updated_date_format','F j, Y g:i a','yes'),(28,0,'links_recently_updated_prepend','<em>','yes'),(29,0,'links_recently_updated_append','</em>','yes'),(30,0,'links_recently_updated_time','120','yes'),(31,0,'comment_moderation','0','yes'),(32,0,'moderation_notify','1','yes'),(33,0,'permalink_structure','/%category%/%year%/%postname%','yes'),(34,0,'gzipcompression','','yes'),(35,0,'hack_file','0','yes'),(36,0,'blog_charset','UTF-8','yes'),(37,0,'moderation_keys','','no'),(38,0,'active_plugins','a:11:{i:0;s:19:\"akismet/akismet.php\";i:1;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:31:\"page-links-to/page-links-to.php\";i:4;s:21:\"pagemash/pagemash.php\";i:5;s:27:\"picturegrid/picturegrid.php\";i:6;s:36:\"random-image-widget/random_image.php\";i:7;s:9:\"stats.php\";i:8;s:33:\"twitter-widget/twitter-widget.php\";i:9;s:30:\"wp-shortstat2/wp-shortstat.php\";i:10;s:35:\"wp-simpleviewer/wp-simpleviewer.php\";}','yes'),(39,0,'home','http://grandviewphotographyaz.com','yes'),(40,0,'category_base','','yes'),(41,0,'ping_sites','http://rpc.pingomatic.com/\r\nhttp://rpc.technorati.com/rpc/ping','yes'),(42,0,'advanced_edit','0','yes'),(43,0,'comment_max_links','2','yes'),(44,0,'gmt_offset','-7','yes'),(45,0,'default_email_category','1','yes'),(46,0,'recently_edited','a:5:{i:0;s:36:\"wp-content/plugins/lightbox-auto.php\";i:2;s:50:\"wp-content/themes/monochrome_gallery/functions.php\";i:3;s:45:\"wp-content/themes/monochrome_gallery/page.php\";i:4;s:49:\"wp-content/themes/monochrome_gallery/widepage.php\";i:5;s:46:\"wp-content/themes/monochrome_gallery/style.css\";}','no'),(47,0,'use_linksupdate','0','yes'),(48,0,'template','monochrome_gallery','yes'),(49,0,'stylesheet','monochrome_gallery','yes'),(50,0,'comment_whitelist','1','yes'),(52,0,'blacklist_keys','','no'),(53,0,'comment_registration','','yes'),(54,0,'rss_language','en','yes'),(55,0,'html_type','text/html','yes'),(56,0,'use_trackback','0','yes'),(57,0,'default_role','subscriber','yes'),(58,0,'db_version','6124','yes'),(59,0,'uploads_use_yearmonth_folders','1','yes'),(60,0,'upload_path','wp-content/uploads','yes'),(61,0,'secret','24872d86c20ba6f0823510c053541a32','yes'),(62,0,'blog_public','1','yes'),(63,0,'default_link_category','2','yes'),(64,0,'show_on_front','posts','yes'),(65,0,'tag_base','','yes'),(66,0,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:48:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(68,0,'widget_categories','a:2:{s:6:\"number\";i:1;i:1;a:4:{s:5:\"count\";b:0;s:12:\"hierarchical\";b:0;s:8:\"dropdown\";b:0;s:5:\"title\";s:0:\"\";}}','yes'),(69,0,'update_core','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1208292040;s:15:\"version_checked\";s:5:\"2.3.3\";s:8:\"response\";s:7:\"upgrade\";s:3:\"url\";s:30:\"http://wordpress.org/download/\";}','yes'),(70,0,'sidebars_widgets','a:5:{s:9:\"sidebar-1\";a:2:{i:0;s:6:\"text-2\";i:1;s:11:\"picturegrid\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-1\";}s:9:\"sidebar-3\";a:1:{i:0;s:12:\"categories-1\";}s:9:\"sidebar-4\";a:1:{i:0;s:7:\"twitter\";}s:13:\"array_version\";i:3;}','yes'),(120,0,'cron','a:2:{i:1208440823;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"52fd8eef6b8474b68b15fae2788cf765\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;s:2:\"63\";}}}}s:7:\"version\";i:2;}','yes'),(72,0,'rss_58381a0ac189fbb34d758d8ea965d06a','O:9:\"magpierss\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:0:{}s:7:\"channel\";a:4:{s:5:\"title\";s:46:\"Google Blog Search: link:http://grandviewphotographyaz.com/\";s:4:\"link\";s:105:\"http://blogsearch.google.com/blogsearch?hl=en&scoring=d&ie=ISO-8859-1&num=10&q=link:http://grandviewphotographyaz.com/\";s:11:\"description\";s:81:\"Your search - <b>link:http://grandviewphotographyaz.com/</b> - did not match any documents. \";s:7:\"tagline\";s:81:\"Your search - <b>link:http://grandviewphotographyaz.com/</b> - did not match any documents. \";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}','no'),(73,0,'rss_58381a0ac189fbb34d758d8ea965d06a_ts','1208301889','no'),(74,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4','O:9:\"magpierss\":19:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:10:{i:0;a:12:{s:5:\"title\";s:13:\"WordPress 2.5\";s:4:\"link\";s:62:\"http://wordpress.org/development/2008/03/wordpress-25-brecker/\";s:8:\"comments\";s:71:\"http://wordpress.org/development/2008/03/wordpress-25-brecker/#comments\";s:7:\"pubdate\";s:31:\"Sat, 29 Mar 2008 16:49:45 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=228\";s:11:\"description\";s:391:\"WordPress 2.5, the culmination of six months of work by the WordPress community, people just like you. The improvements in 2.5 are numerous, and almost entirely a result of your feedback: multi-file uploading, one-click plugin upgrades, built-in galleries, customizable dashboard, salted passwords and cookie encryption, media library, a WYSIWYG that doesn&#8217;t mess with your code, [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:15112:\"<p>WordPress 2.5, the culmination of six months of work by the WordPress community, people just like you. The improvements in 2.5 are numerous, and almost entirely a result of your feedback: multi-file uploading, one-click plugin upgrades, built-in galleries, customizable dashboard, salted passwords and cookie encryption, media library, a WYSIWYG that doesn&#8217;t mess with your code, concurrent post editing protection, full-screen writing, and search that covers posts <em>and</em> pages.</p>\n<p>For a short overview of the features with screenshots, it&#8217;d be best to <a href=\"http://wordpress.org/development/2008/03/25-sneak-peek/\">visit our sneak peek announcement for RC1</a>. Or check out <a href=\"http://wordpress.org/development/2008/03/wordpress-25-rc2/\">a 4-minute screencast of the new interface in action</a>. If you just want to jump straight to the good stuff <a href=\"http://wordpress.org/download/\">here&#8217;s where you can find 2.5 upgrade and download information</a>.</p>\n<p>If you want to see everything I would grab a cup of coffee or a mojito, because this post is epic.</p>\n<h3>User Features</h3>\n<p><strong>Cleaner, faster, less cluttered dashboard</strong> &#8212; we&#8217;ve worked hard to take your feedback about what&#8217;s most important in the dashboard and organize things to allow you to focus on what&#8217;s important &#8212; your blog &#8212; and get out of your way. In collaboration with <a href=\"http://happycog.com/\">Happy Cog</a> and the community we&#8217;ve taken the first major step forward in the WordPress interface since version 1.5.</p>\n<p><strong>Dashboard Widgets</strong> &#8212; the dashboard home page is now a series of widgets, including ones to show you fun stats about your posting, latest comments, people linking to you, new and popular plugins, and of course WordPress news. You can customize any of the dashboard widgets to show, for example, news from your local paper instead of WP news. Plugins can also hook in, for example the <a href=\"http://wordpress.org/extend/plugins/stats/\">WordPress.com stats widget</a> adds a handy double-wide stats box.</p>\n<p><img src=\"http://s.wordpress.org/screenshots/2.5/stats-widget.png\" alt=\"\" width=\"690\" /></p>\n<p><strong>Multi-file upload with progress bar</strong> &#8212; before when you would upload a large file you&#8217;d wait forever, never knowing how far along it was. And uploading more than one photo was an exercise in patience, as you could only do one at a time. Now you can select a whole of folder images or music or videos at once and it&#8217;ll show you the progress of each upload.</p>\n<p><strong>Bonus: EXIF extraction</strong> &#8212; if you upload JPEG files with EXIF metadata like camera make and model, aperture, shutter speed, ISO, et al. WordPress will extract all the data into custom fields you can use in your template. If you use the EXIF title fields or similar those will be put into their equivalent fields in WP. Most modern digital cameras generate EXIF data.</p>\n<p><strong>Search posts and pages</strong> &#8212; search used to cover just posts, now it includes pages too, a great boon for those using WordPress as a CMS. New themes can style or sort pages differently in results.</p>\n<p><strong>Tag management</strong> &#8212; you can now add, rename, delete, and do whatever else you like to tags from inside WordPress, no plugins needed.</p>\n<p><strong>Password strength meter</strong> &#8212; when you change your password on your profile it&#8217;ll tell you how strong your password is to help you pick a good one.</p>\n<p><strong>Concurrent editing protection</strong> &#8212; for those of you on multi-author blogs, have you ever opened a post while someone was already editing it, and your auto-saves kept overwriting each other, irrecoverably losing hours of work? I bet that added a few words to your vocabulary. Now if you open a post that someone else is editing, WordPress magically locks it and prevents you from saving until the other person is done. You&#8217;ll see a message like below.</p>\n<p><img src=\"http://s.wordpress.org/screenshots/2.5/write-currently-editing.png\" alt=\"\" /></p>\n<p><strong>Few-click plugin upgrades</strong> &#8212; if the plugins you use are part of the plugin directory since 2.3 we&#8217;ve told you when they have an update available. Now we take that to the next logical step &#8212; downloading and installing the upgrade for you. This is dependent a little bit on your host setup, and it may ask you for your FTP password much like OS X or Windows will ask you for a password, but it works well on majority of hosts we were able to test, your mileage may very, plugins in mirror may be larger than they appear.</p>\n<p><strong>Friendlier visual post editor</strong> &#8212; I&#8217;m not sure how to articulate this improvement except to say &#8220;it doesn&#8217;t mess with your code anymore.&#8221; We&#8217;re now using version 3.0 of TinyMCE, which means better compatibility with Safari, and we&#8217;ve paid particular attention this release to its integration and interaction with complex HTML. It also now has a &#8220;no-distractions&#8221; mode which is like Writeroom for your browser.</p>\n<p><strong>Built-in galleries</strong> &#8212; when you take advantage of multi-file upload to upload a bunch of photos, we have a new shortcode that lets you to easily embed galleries by just putting [ gallery] (without the space) in your post. It&#8217;ll display all your thumbnails and captions and each will link each to a page where people can comment on the individual photos. I&#8217;ve been using this feature on my blog and have already uploaded over <a href=\"http://ma.tt/category/gallery/\">1,200 pictures into 23 galleries</a>. The shortcode has some hidden options too, <a href=\"http://codex.wordpress.org/Using_the_gallery_shortcode\">check out this documentation</a>.</p>\n<h3>Developer Features</h3>\n<p>Now for the geeky stuff. While we&#8217;re excited about the above features, each one represents a new opportunity or API for other developers to take to another level. (The best of which we&#8217;ll someday integrate back into WP.)</p>\n<p><strong>Salted passwords</strong> &#8212; we now use the <a href=\"http://www.openwall.com/phpass/\">phpass</a> library to stretch and salt all passwords stored in the database, which makes brute-forcing them impractical. If you use something like <a href=\"http://modauthmysql.sourceforge.net/\">mod_auth_mysql</a> we&#8217;ve <a href=\"http://wordpress.org/extend/plugins/md5-password-hashes/\">created a plugin that will allow you to use legacy MD5 hashing</a>. (The hashing is completely pluggable.) Users will automatically switch to the more secure passwords next time they log in.</p>\n<p><strong>Secure cookies</strong> &#8212; cookies are now encrypted based on the protocol described <a href=\"http://www.cse.msu.edu/~alexliu/publications/Cookie/cookie.pdf\">in this PDF paper</a>. which is something like <code>user name|expiration time|HMAC( user name|expiration time, k)</code> where <code>k = HMAC(user name|expiration time, sk)</code> and where <code>sk</code> is a secret key, which you can define in your config.</p>\n<p><strong>Easy taxonomy and URL creation</strong> &#8212; probably best illustrated with an example: I can call <code>register_taxonomy()</code> with <a href=\"http://trac.wordpress.org/attachment/ticket/6357/taxes.php\">a few arguments</a> to register a &#8220;people&#8221; taxonomy and whenever I edit an image I&#8217;ll see a UI like tags has for identifying the people in a photo, and these will be URL addressable with <code>/person/firstname-lastname/</code>. All with a single function call.</p>\n<p><strong>Inline documentation</strong> &#8212; the vast majority of the new code going into WordPress include inline documentation that explains the functions and documents their arguments.</p>\n<p><strong>Database optimization</strong> &#8212; we haven&#8217;t changed the table layout in this release, which is one of the reasons so many plugins work fine with 2.5. We have added a few new indicies and made a few default fields more flexible based on some bottlenecks we found on WordPress.com, which now hosts 2.7 million WordPress blogs. It should be invisible to the application, just a bit faster on the database side.</p>\n<p><strong>$wpdb->prepare()</strong> &#8212; now almost all of the SQL in WordPress is prepared first, and the same functions are available to your plugins. This should prevent elementary SQL escaping issues.</p>\n<p><strong>Media buttons</strong> &#8212; the add media buttons above the post are both expandable, so you could have an &#8220;Add Google Map&#8221; button if you like, They can be overridden, so if you think you can do the video or audio tab better than we have you can replace the default.</p>\n<p><strong>Shortcode API</strong> &#8212; the new gallery functionality is powered by the new shortcode API. Shortcodes are little bracket-delineated strings that can be magically expanded at runtime to something more interesting. They give users a short, easy to type and copy/paste string they can move around their post without worrying about messing up complex HTML or embed codes. <a href=\"http://codex.wordpress.org/Shortcode_API\">The Shortcode API is fully documented</a>.</p>\n<p>Now you see why 2.5 took a little extra time. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> </p>\n<h3>Upgrade Notes</h3>\n<p>2.5 does include security fixes so it is recommended for all users, the 2.3 branch will no longer be updated. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">The upgrade instructions for this version are pretty much the same as any other version</a>. The most important thing to check is your plugins, so if for example everything works except the new uploader, a legacy plugin might be causing a javascript error on the page and breaking it. If something goes wrong, the safest thing to do is turn your plugins off (we have a button to do them all at once, now) and turn them back on one-by-one, testing the problem along the way. This has solved almost everybody&#8217;s problems in testing, and it also lets you know which plugin author to show some love to so they&#8217;ll update their plugin, and which plugin authors already have so you can shower them with praises on your blog.</p>\n<p>One brief note about some of the new upload and plugin upgrade features, there are some edge-case hosting platforms, like versions of Lighttpd before 1.5 or over-agressive mod_security rules, which can break. If something isn&#8217;t working like it was looked in the screenshot, ask your host if there&#8217;s something on the server side which may be interfering. Hosts, feel free to join and post to <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">our wp-testers mailing list</a> if you have an environment that requires some extra code to work around. We&#8217;d be happy to include it in the next update.</p>\n<p><em>Quick tip:</em> in 2.5 you click the name of things to edit them, like your username to edit your profile or the title of a post to edit it.</p>\n<h3>The Community is Growing</h3>\n<p>More than growing, it&#8217;s on fire. We always talk about things like downloads, and the 2.3 branch has already had <strong>1.92 million downloads</strong> as I write this post, but this time we have some far more interesting information I&#8217;d like to share.</p>\n<p>There were over 1,200 commits to our repository since 2.3.0 and <strong>over 90 people were credited</strong> in them. This means in our core code, not plugins, there were at least 90 individual folks that contributed something high-quality enough that it made the cut to be part of the download you guys get today. I had no idea this group of people was so large.</p>\n<p>Outside of the <a href=\"http://wordpress.org/about/\">core commit team</a>, there was particular help from these people, in rough order of number of credits and tickets: <a href=\"http://blogwaffe.com/\">mdawaffe (Michael Adams)</a>, <a href=\"http://www.laptoptips.ca/\">azaozz (Andrew Ozz)</a>, <a href=\"http://nb.niichavo.org/\">nbachiyski (Nikolay Bachiyski)</a>, <a href=\"http://skeltoac.com/\">andy (Andy Skelton)</a>, <a href=\"http://iammattthomas.com/\">iammattthomas (Matt Thomas)</a>, <a href=\"http://thresholdstate.com/\">tellyworth (Alex Shiels)</a>, <a href=\"http://joseph.randomnetworks.com/\">josephscott (Joseph Scott)</a>, <a href=\"http://foolswisdom.com/\">lloydbudd (Lloyd Budd)</a>, <a href=\"http://dd32.id.au/\">DD32 (Dion)</a>, <a href=\"http://www.ilfilosofo.com/\">filosofo (Austin Matzko)</a>, <a href=\"http://engel.uk.to/\">hansengel (Hans Engel)</a>, <a href=\"http://www.freecharity.org.uk/\">pishmishy</a>, ffemtcj, <a href=\"http://www.viper007bond.com/\">Viper007Bond</a>, <a href=\"http://extralogical.net/\">ionfish (Benedict Eastaugh)</a>, <a href=\"http://www.poplarware.com/\">jhodgdon (Jennifer Hodgdon)</a>, <a href=\"http://ottodestruct.com/blog/\">Otto42</a>, <a href=\"http://www.cefm.ca/\">thee17 (Charles E. Free-Melvin)</a>, and <a href=\"http://www.buayacorp.com/\">xknown</a>. Also want to thank MichaelH and Lorelle on the documentation side, and moshu, Kafkaesqui, whooami, MichaelH, Otto42, and jeremyclark13 for helping with support.</p>\n<p>The 2.5 branch is nicknamed &#8220;Brecker&#8221; in honor of <a href=\"http://en.wikipedia.org/wiki/Michael_Brecker\">Michael Brecker</a>, an exceptionally talented saxophonist who could cross styles effortlessly and never stopped experimenting and pushing himself until he passed away last year.</p>\n<h3>New WordPress.org</h3>\n<p>All of this wasn&#8217;t enough, so in our copious spare time we decided to redesign WordPress.org to better match the aesthetics of the new dashboard and also to spruce up a few areas that needed lovin&#8217;. Some parts of the site, like the Codex, might show the old style for a day or two. We know, just give us a bit of time. Thanks to <a href=\"http://iammattthomas.com/\">Matt Thomas</a> for his epic effort in designing and coding the new site.</p>\n<h3>What&#8217;s Next</h3>\n<p>As always with WordPress, we don&#8217;t claim any of these features to be perfect, or to be better than everyone else in the world, but they are done by and for the people and the one thing we do promise is that with every release we listen and do our best to improve. </p>\n<p>2.5 is a major milestone for WordPress not because it added dozens of user-requested features, but because it reaffirms that we&#8217;re as passionate about blogging as the day we started. Our community is too fierce to rest on its laurels &#8212; contrary to what pundits claim, blogging is far from &#8220;finished&#8221; and every improvement just whets our appetite for more. And more is coming.</p>\n<p>It&#8217;s a good thing WordPress doesn&#8217;t limit the length of posts, because this one would have hit it. If you made it this far, thanks for sharing a bit of your day with us. I sincerely hope this new version of WordPress helps you do what you love to do.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:67:\"http://wordpress.org/development/2008/03/wordpress-25-brecker/feed/\";}s:7:\"summary\";s:391:\"WordPress 2.5, the culmination of six months of work by the WordPress community, people just like you. The improvements in 2.5 are numerous, and almost entirely a result of your feedback: multi-file uploading, one-click plugin upgrades, built-in galleries, customizable dashboard, salted passwords and cookie encryption, media library, a WYSIWYG that doesn&#8217;t mess with your code, [...]\";s:12:\"atom_content\";s:15112:\"<p>WordPress 2.5, the culmination of six months of work by the WordPress community, people just like you. The improvements in 2.5 are numerous, and almost entirely a result of your feedback: multi-file uploading, one-click plugin upgrades, built-in galleries, customizable dashboard, salted passwords and cookie encryption, media library, a WYSIWYG that doesn&#8217;t mess with your code, concurrent post editing protection, full-screen writing, and search that covers posts <em>and</em> pages.</p>\n<p>For a short overview of the features with screenshots, it&#8217;d be best to <a href=\"http://wordpress.org/development/2008/03/25-sneak-peek/\">visit our sneak peek announcement for RC1</a>. Or check out <a href=\"http://wordpress.org/development/2008/03/wordpress-25-rc2/\">a 4-minute screencast of the new interface in action</a>. If you just want to jump straight to the good stuff <a href=\"http://wordpress.org/download/\">here&#8217;s where you can find 2.5 upgrade and download information</a>.</p>\n<p>If you want to see everything I would grab a cup of coffee or a mojito, because this post is epic.</p>\n<h3>User Features</h3>\n<p><strong>Cleaner, faster, less cluttered dashboard</strong> &#8212; we&#8217;ve worked hard to take your feedback about what&#8217;s most important in the dashboard and organize things to allow you to focus on what&#8217;s important &#8212; your blog &#8212; and get out of your way. In collaboration with <a href=\"http://happycog.com/\">Happy Cog</a> and the community we&#8217;ve taken the first major step forward in the WordPress interface since version 1.5.</p>\n<p><strong>Dashboard Widgets</strong> &#8212; the dashboard home page is now a series of widgets, including ones to show you fun stats about your posting, latest comments, people linking to you, new and popular plugins, and of course WordPress news. You can customize any of the dashboard widgets to show, for example, news from your local paper instead of WP news. Plugins can also hook in, for example the <a href=\"http://wordpress.org/extend/plugins/stats/\">WordPress.com stats widget</a> adds a handy double-wide stats box.</p>\n<p><img src=\"http://s.wordpress.org/screenshots/2.5/stats-widget.png\" alt=\"\" width=\"690\" /></p>\n<p><strong>Multi-file upload with progress bar</strong> &#8212; before when you would upload a large file you&#8217;d wait forever, never knowing how far along it was. And uploading more than one photo was an exercise in patience, as you could only do one at a time. Now you can select a whole of folder images or music or videos at once and it&#8217;ll show you the progress of each upload.</p>\n<p><strong>Bonus: EXIF extraction</strong> &#8212; if you upload JPEG files with EXIF metadata like camera make and model, aperture, shutter speed, ISO, et al. WordPress will extract all the data into custom fields you can use in your template. If you use the EXIF title fields or similar those will be put into their equivalent fields in WP. Most modern digital cameras generate EXIF data.</p>\n<p><strong>Search posts and pages</strong> &#8212; search used to cover just posts, now it includes pages too, a great boon for those using WordPress as a CMS. New themes can style or sort pages differently in results.</p>\n<p><strong>Tag management</strong> &#8212; you can now add, rename, delete, and do whatever else you like to tags from inside WordPress, no plugins needed.</p>\n<p><strong>Password strength meter</strong> &#8212; when you change your password on your profile it&#8217;ll tell you how strong your password is to help you pick a good one.</p>\n<p><strong>Concurrent editing protection</strong> &#8212; for those of you on multi-author blogs, have you ever opened a post while someone was already editing it, and your auto-saves kept overwriting each other, irrecoverably losing hours of work? I bet that added a few words to your vocabulary. Now if you open a post that someone else is editing, WordPress magically locks it and prevents you from saving until the other person is done. You&#8217;ll see a message like below.</p>\n<p><img src=\"http://s.wordpress.org/screenshots/2.5/write-currently-editing.png\" alt=\"\" /></p>\n<p><strong>Few-click plugin upgrades</strong> &#8212; if the plugins you use are part of the plugin directory since 2.3 we&#8217;ve told you when they have an update available. Now we take that to the next logical step &#8212; downloading and installing the upgrade for you. This is dependent a little bit on your host setup, and it may ask you for your FTP password much like OS X or Windows will ask you for a password, but it works well on majority of hosts we were able to test, your mileage may very, plugins in mirror may be larger than they appear.</p>\n<p><strong>Friendlier visual post editor</strong> &#8212; I&#8217;m not sure how to articulate this improvement except to say &#8220;it doesn&#8217;t mess with your code anymore.&#8221; We&#8217;re now using version 3.0 of TinyMCE, which means better compatibility with Safari, and we&#8217;ve paid particular attention this release to its integration and interaction with complex HTML. It also now has a &#8220;no-distractions&#8221; mode which is like Writeroom for your browser.</p>\n<p><strong>Built-in galleries</strong> &#8212; when you take advantage of multi-file upload to upload a bunch of photos, we have a new shortcode that lets you to easily embed galleries by just putting [ gallery] (without the space) in your post. It&#8217;ll display all your thumbnails and captions and each will link each to a page where people can comment on the individual photos. I&#8217;ve been using this feature on my blog and have already uploaded over <a href=\"http://ma.tt/category/gallery/\">1,200 pictures into 23 galleries</a>. The shortcode has some hidden options too, <a href=\"http://codex.wordpress.org/Using_the_gallery_shortcode\">check out this documentation</a>.</p>\n<h3>Developer Features</h3>\n<p>Now for the geeky stuff. While we&#8217;re excited about the above features, each one represents a new opportunity or API for other developers to take to another level. (The best of which we&#8217;ll someday integrate back into WP.)</p>\n<p><strong>Salted passwords</strong> &#8212; we now use the <a href=\"http://www.openwall.com/phpass/\">phpass</a> library to stretch and salt all passwords stored in the database, which makes brute-forcing them impractical. If you use something like <a href=\"http://modauthmysql.sourceforge.net/\">mod_auth_mysql</a> we&#8217;ve <a href=\"http://wordpress.org/extend/plugins/md5-password-hashes/\">created a plugin that will allow you to use legacy MD5 hashing</a>. (The hashing is completely pluggable.) Users will automatically switch to the more secure passwords next time they log in.</p>\n<p><strong>Secure cookies</strong> &#8212; cookies are now encrypted based on the protocol described <a href=\"http://www.cse.msu.edu/~alexliu/publications/Cookie/cookie.pdf\">in this PDF paper</a>. which is something like <code>user name|expiration time|HMAC( user name|expiration time, k)</code> where <code>k = HMAC(user name|expiration time, sk)</code> and where <code>sk</code> is a secret key, which you can define in your config.</p>\n<p><strong>Easy taxonomy and URL creation</strong> &#8212; probably best illustrated with an example: I can call <code>register_taxonomy()</code> with <a href=\"http://trac.wordpress.org/attachment/ticket/6357/taxes.php\">a few arguments</a> to register a &#8220;people&#8221; taxonomy and whenever I edit an image I&#8217;ll see a UI like tags has for identifying the people in a photo, and these will be URL addressable with <code>/person/firstname-lastname/</code>. All with a single function call.</p>\n<p><strong>Inline documentation</strong> &#8212; the vast majority of the new code going into WordPress include inline documentation that explains the functions and documents their arguments.</p>\n<p><strong>Database optimization</strong> &#8212; we haven&#8217;t changed the table layout in this release, which is one of the reasons so many plugins work fine with 2.5. We have added a few new indicies and made a few default fields more flexible based on some bottlenecks we found on WordPress.com, which now hosts 2.7 million WordPress blogs. It should be invisible to the application, just a bit faster on the database side.</p>\n<p><strong>$wpdb->prepare()</strong> &#8212; now almost all of the SQL in WordPress is prepared first, and the same functions are available to your plugins. This should prevent elementary SQL escaping issues.</p>\n<p><strong>Media buttons</strong> &#8212; the add media buttons above the post are both expandable, so you could have an &#8220;Add Google Map&#8221; button if you like, They can be overridden, so if you think you can do the video or audio tab better than we have you can replace the default.</p>\n<p><strong>Shortcode API</strong> &#8212; the new gallery functionality is powered by the new shortcode API. Shortcodes are little bracket-delineated strings that can be magically expanded at runtime to something more interesting. They give users a short, easy to type and copy/paste string they can move around their post without worrying about messing up complex HTML or embed codes. <a href=\"http://codex.wordpress.org/Shortcode_API\">The Shortcode API is fully documented</a>.</p>\n<p>Now you see why 2.5 took a little extra time. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> </p>\n<h3>Upgrade Notes</h3>\n<p>2.5 does include security fixes so it is recommended for all users, the 2.3 branch will no longer be updated. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">The upgrade instructions for this version are pretty much the same as any other version</a>. The most important thing to check is your plugins, so if for example everything works except the new uploader, a legacy plugin might be causing a javascript error on the page and breaking it. If something goes wrong, the safest thing to do is turn your plugins off (we have a button to do them all at once, now) and turn them back on one-by-one, testing the problem along the way. This has solved almost everybody&#8217;s problems in testing, and it also lets you know which plugin author to show some love to so they&#8217;ll update their plugin, and which plugin authors already have so you can shower them with praises on your blog.</p>\n<p>One brief note about some of the new upload and plugin upgrade features, there are some edge-case hosting platforms, like versions of Lighttpd before 1.5 or over-agressive mod_security rules, which can break. If something isn&#8217;t working like it was looked in the screenshot, ask your host if there&#8217;s something on the server side which may be interfering. Hosts, feel free to join and post to <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">our wp-testers mailing list</a> if you have an environment that requires some extra code to work around. We&#8217;d be happy to include it in the next update.</p>\n<p><em>Quick tip:</em> in 2.5 you click the name of things to edit them, like your username to edit your profile or the title of a post to edit it.</p>\n<h3>The Community is Growing</h3>\n<p>More than growing, it&#8217;s on fire. We always talk about things like downloads, and the 2.3 branch has already had <strong>1.92 million downloads</strong> as I write this post, but this time we have some far more interesting information I&#8217;d like to share.</p>\n<p>There were over 1,200 commits to our repository since 2.3.0 and <strong>over 90 people were credited</strong> in them. This means in our core code, not plugins, there were at least 90 individual folks that contributed something high-quality enough that it made the cut to be part of the download you guys get today. I had no idea this group of people was so large.</p>\n<p>Outside of the <a href=\"http://wordpress.org/about/\">core commit team</a>, there was particular help from these people, in rough order of number of credits and tickets: <a href=\"http://blogwaffe.com/\">mdawaffe (Michael Adams)</a>, <a href=\"http://www.laptoptips.ca/\">azaozz (Andrew Ozz)</a>, <a href=\"http://nb.niichavo.org/\">nbachiyski (Nikolay Bachiyski)</a>, <a href=\"http://skeltoac.com/\">andy (Andy Skelton)</a>, <a href=\"http://iammattthomas.com/\">iammattthomas (Matt Thomas)</a>, <a href=\"http://thresholdstate.com/\">tellyworth (Alex Shiels)</a>, <a href=\"http://joseph.randomnetworks.com/\">josephscott (Joseph Scott)</a>, <a href=\"http://foolswisdom.com/\">lloydbudd (Lloyd Budd)</a>, <a href=\"http://dd32.id.au/\">DD32 (Dion)</a>, <a href=\"http://www.ilfilosofo.com/\">filosofo (Austin Matzko)</a>, <a href=\"http://engel.uk.to/\">hansengel (Hans Engel)</a>, <a href=\"http://www.freecharity.org.uk/\">pishmishy</a>, ffemtcj, <a href=\"http://www.viper007bond.com/\">Viper007Bond</a>, <a href=\"http://extralogical.net/\">ionfish (Benedict Eastaugh)</a>, <a href=\"http://www.poplarware.com/\">jhodgdon (Jennifer Hodgdon)</a>, <a href=\"http://ottodestruct.com/blog/\">Otto42</a>, <a href=\"http://www.cefm.ca/\">thee17 (Charles E. Free-Melvin)</a>, and <a href=\"http://www.buayacorp.com/\">xknown</a>. Also want to thank MichaelH and Lorelle on the documentation side, and moshu, Kafkaesqui, whooami, MichaelH, Otto42, and jeremyclark13 for helping with support.</p>\n<p>The 2.5 branch is nicknamed &#8220;Brecker&#8221; in honor of <a href=\"http://en.wikipedia.org/wiki/Michael_Brecker\">Michael Brecker</a>, an exceptionally talented saxophonist who could cross styles effortlessly and never stopped experimenting and pushing himself until he passed away last year.</p>\n<h3>New WordPress.org</h3>\n<p>All of this wasn&#8217;t enough, so in our copious spare time we decided to redesign WordPress.org to better match the aesthetics of the new dashboard and also to spruce up a few areas that needed lovin&#8217;. Some parts of the site, like the Codex, might show the old style for a day or two. We know, just give us a bit of time. Thanks to <a href=\"http://iammattthomas.com/\">Matt Thomas</a> for his epic effort in designing and coding the new site.</p>\n<h3>What&#8217;s Next</h3>\n<p>As always with WordPress, we don&#8217;t claim any of these features to be perfect, or to be better than everyone else in the world, but they are done by and for the people and the one thing we do promise is that with every release we listen and do our best to improve. </p>\n<p>2.5 is a major milestone for WordPress not because it added dozens of user-requested features, but because it reaffirms that we&#8217;re as passionate about blogging as the day we started. Our community is too fierce to rest on its laurels &#8212; contrary to what pundits claim, blogging is far from &#8220;finished&#8221; and every improvement just whets our appetite for more. And more is coming.</p>\n<p>It&#8217;s a good thing WordPress doesn&#8217;t limit the length of posts, because this one would have hit it. If you made it this far, thanks for sharing a bit of your day with us. I sincerely hope this new version of WordPress helps you do what you love to do.</p>\n\";}i:1;a:12:{s:5:\"title\";s:32:\"Screencast and WordPress 2.5 RC2\";s:4:\"link\";s:58:\"http://wordpress.org/development/2008/03/wordpress-25-rc2/\";s:8:\"comments\";s:67:\"http://wordpress.org/development/2008/03/wordpress-25-rc2/#comments\";s:7:\"pubdate\";s:31:\"Wed, 26 Mar 2008 11:36:25 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=227\";s:11:\"description\";s:334:\"2.5 is coming along thanks to the fantastic feedback you guys provided on RC1 (over 580 pingbacks and counting), and we&#8217;re now ready to show you a bit more of a peek with a short screencast covering the new dashboard and uploader and Release Candidate 2. First here&#8217;s the screencast, which is also available embedded [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:2991:\"<p>2.5 is coming along thanks to the <a href=\"http://wordpress.org/development/2008/03/25-sneak-peek/\">fantastic feedback you guys provided on RC1</a> (over 580 pingbacks and counting), and we&#8217;re now ready to show you a bit more of a peek with a short screencast covering the new dashboard and uploader and Release Candidate 2. First here&#8217;s the screencast, which is also available embedded below, <a href=\"http://s.wordpress.org/resources/2.5/dashboard-and-images.swf\">as a Flash movie</a>, or as a <a href=\"http://s.wordpress.org/resources/2.5/dashboard-and-images.avi\">17mb AVI download</a>:</p>\n<p> <object id=\"csSWF\" classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" width=\"640\" height=\"355\" codebase=\"http://active.macromedia.com/flash7/cabs/ swflash.cab#version=9,0,28,0\"><param name=\"src\" value=\"\"/><param name=\"bgcolor\" value=\"#1a1a1a\"/><param name=\"quality\" value=\"best\"/><param name=\"allowScriptAccess\" value=\"always\"/><param name=\"allowFullScreen\" value=\"true\"/><param name=\"scale\" value=\"showall\"/><param name=\"flashVars\" value=\"autostart=false\"/><embed name=\"csSWF\" src=\"http://s.wordpress.org/resources/2.5/dashboard-and-images.swf\" width=\"549\" height=\"304\" bgcolor=\"#1a1a1a\" quality=\"best\" allowScriptAccess=\"always\" allowFullScreen=\"true\" scale=\"showall\" flashVars=\"autostart=false\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"></embed></object></p>\n<p>I&#8217;ve <a href=\"http://ma.tt/category/gallery/\">uploaded more than a thousand photos already</a> into the new gallery system &#8212; it works.</p>\n<p>(This was my first screencast, but I hope we can have more on WordPress.org and our documentation in the future.)</p>\n<p>If you make frequent backups and youre interested in helping us out with development by testing the very latest, <a href=\"http://wordpress.org/wordpress-2.5-RC2.zip\">download</a> and install <a href=\"http://wordpress.org/wordpress-2.5-RC2.zip\">Release Candidate 2</a> of WordPress 2.5, and <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">join our testers mailing list</a> to report any bugs you find in the code.</p>\n<p>Finally with regards to theme and plugin compatibility, we&#8217;ve had no reports of any broken themes in this upgrade, which makes sense because we didn&#8217;t really change anything core about themes, just added new optional capabilities like Gravatars. Plugins that work with the admin may require updating to take advantage of the new, cleaner UI in WordPress 2.5.</p>\n<p>The community has started to <a href=\"http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.5\">keep a list here of which plugins work great and which don&#8217;t</a>. It&#8217;s worth looking at, or even better just deactivate your plugins before upgrading for 2.5 and let the built-in updater notify and give you one-click upgrades to plugins you have installed, assuming the developer is cool and has updated their code for 2.5 already.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:63:\"http://wordpress.org/development/2008/03/wordpress-25-rc2/feed/\";}s:7:\"summary\";s:334:\"2.5 is coming along thanks to the fantastic feedback you guys provided on RC1 (over 580 pingbacks and counting), and we&#8217;re now ready to show you a bit more of a peek with a short screencast covering the new dashboard and uploader and Release Candidate 2. First here&#8217;s the screencast, which is also available embedded [...]\";s:12:\"atom_content\";s:2991:\"<p>2.5 is coming along thanks to the <a href=\"http://wordpress.org/development/2008/03/25-sneak-peek/\">fantastic feedback you guys provided on RC1</a> (over 580 pingbacks and counting), and we&#8217;re now ready to show you a bit more of a peek with a short screencast covering the new dashboard and uploader and Release Candidate 2. First here&#8217;s the screencast, which is also available embedded below, <a href=\"http://s.wordpress.org/resources/2.5/dashboard-and-images.swf\">as a Flash movie</a>, or as a <a href=\"http://s.wordpress.org/resources/2.5/dashboard-and-images.avi\">17mb AVI download</a>:</p>\n<p> <object id=\"csSWF\" classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" width=\"640\" height=\"355\" codebase=\"http://active.macromedia.com/flash7/cabs/ swflash.cab#version=9,0,28,0\"><param name=\"src\" value=\"\"/><param name=\"bgcolor\" value=\"#1a1a1a\"/><param name=\"quality\" value=\"best\"/><param name=\"allowScriptAccess\" value=\"always\"/><param name=\"allowFullScreen\" value=\"true\"/><param name=\"scale\" value=\"showall\"/><param name=\"flashVars\" value=\"autostart=false\"/><embed name=\"csSWF\" src=\"http://s.wordpress.org/resources/2.5/dashboard-and-images.swf\" width=\"549\" height=\"304\" bgcolor=\"#1a1a1a\" quality=\"best\" allowScriptAccess=\"always\" allowFullScreen=\"true\" scale=\"showall\" flashVars=\"autostart=false\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"></embed></object></p>\n<p>I&#8217;ve <a href=\"http://ma.tt/category/gallery/\">uploaded more than a thousand photos already</a> into the new gallery system &#8212; it works.</p>\n<p>(This was my first screencast, but I hope we can have more on WordPress.org and our documentation in the future.)</p>\n<p>If you make frequent backups and youre interested in helping us out with development by testing the very latest, <a href=\"http://wordpress.org/wordpress-2.5-RC2.zip\">download</a> and install <a href=\"http://wordpress.org/wordpress-2.5-RC2.zip\">Release Candidate 2</a> of WordPress 2.5, and <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">join our testers mailing list</a> to report any bugs you find in the code.</p>\n<p>Finally with regards to theme and plugin compatibility, we&#8217;ve had no reports of any broken themes in this upgrade, which makes sense because we didn&#8217;t really change anything core about themes, just added new optional capabilities like Gravatars. Plugins that work with the admin may require updating to take advantage of the new, cleaner UI in WordPress 2.5.</p>\n<p>The community has started to <a href=\"http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.5\">keep a list here of which plugins work great and which don&#8217;t</a>. It&#8217;s worth looking at, or even better just deactivate your plugins before upgrading for 2.5 and let the built-in updater notify and give you one-click upgrades to plugins you have installed, assuming the developer is cool and has updated their code for 2.5 already.</p>\n\";}i:2;a:12:{s:5:\"title\";s:14:\"2.5 Sneak Peek\";s:4:\"link\";s:55:\"http://wordpress.org/development/2008/03/25-sneak-peek/\";s:8:\"comments\";s:64:\"http://wordpress.org/development/2008/03/25-sneak-peek/#comments\";s:7:\"pubdate\";s:31:\"Tue, 18 Mar 2008 07:08:57 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=226\";s:11:\"description\";s:360:\"A customizable dashboard, multi-file upload, built-in galleries, one-click plugin upgrades, tag management, built-in Gravatars, full text feeds, and faster load times sound interesting? Then WordPress 2.5 might be the release for you. It&#8217;s been in the oven for a while, and we&#8217;re finally ready to open the doors a bit to give you a taste.\nFor [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:5448:\"<p>A customizable dashboard, multi-file upload, built-in galleries, one-click plugin upgrades, tag management, built-in Gravatars, full text feeds, and faster load times sound interesting? Then WordPress 2.5 might be the release for you. It&#8217;s been in the oven for a while, and we&#8217;re finally ready to open the doors a bit to give you a taste.</p>\n<p>For the past few months, weve been working with our friends at Happy Cog &#8212; <a href=\"http://zeldman.com/\">Jeffrey Zeldman</a>, <a href=\"http://jasonsantamaria.com/\">Jason Santa Maria</a>, and <a href=\"http://bobulate.com/\">Liz Danzico</a> &#8212; to redesign WordPress from the ground-up. The result is a new way of interacting with WordPress that will remain familiar to seasoned users while improving the experience for everyone. This isnt just a fresh coat of paint &#8212; weve re-thought the look of WordPress, as well as how its organized so that you can forget about the software and focus on your own creative pursuits.</p>\n<p>Here are a few vignettes of what&#8217;s in store.</p>\n<h3>The Dashboard</h3>\n<p class=\"tutscreen\"><img src=\"http://wpcom.wordpress.com/files/2008/03/dashboard-wide.png\" alt=\"dashboard-wide.png\" /></p>\n<p>The Dashboards most important role is to inform quickly and get you to where youre headed in the admin. In interviewing users, we found that most of you ignore the Dashboard entirely &#8212; its useful information being mostly hidden in an overly complex design. The new Dashboard is focused on the most relevant tasks at hand: a quick summary of whats published and scheduled for publication, the latest comments and incoming links, blog stats, and WordPress updates and news. You can add your own RSS feeds and edit the way information is presented so that the new Dashboard conforms to the way you use WordPress.</p>\n<h3>Navigation</h3>\n<p class=\"tutscreen\"><img src=\"http://wpcom.wordpress.com/files/2008/03/nav-wide.png\" alt=\"nav-wide.png\" /></p>\n<p>The WordPress navigation has confounded even sophisticated users. With the new design, weve cut the number of navigation options in half, separating the primary functions (writing, managing posts and pages, editing the blogs design, and managing comments) from secondary functions. This presents information at a more comfortable pace, revealing only the information thats necessary. Everything you need is still there &#8212; just better organized. (Especially for people new to WP.)</p>\n<h3>Write</h3>\n<p class=\"tutscreen\"><img src=\"http://wpcom.wordpress.com/files/2008/03/write-wide.png\" alt=\"write-wide.png\" /></p>\n<p><img class=\"right\" src=\"http://wpcom.wordpress.com/files/2008/03/write3.png\" alt=\"write2.png\" /></p>\n<p>By far, the most frequently accessed part of WordPress is the Write screen. It gets the job done, but its myriad options can be overwhelming. The new write screen only displays the information that youll use most often. It displays the most common fields in a way that makes posting incredibly easy. Additional options are hidden away until you need them. The new Write screen anticipates the natural flow of the way you write, and is smart enough to remember the way you left it so that your preferred writing environment is always quickly available. The new visual editor even has a handy full-screen mode to help block out distractions while composing your newest post. (My personal favorite new feature.)</p>\n<h3>Manage</h3>\n<p class=\"tutscreen\"><img src=\"http://wpcom.wordpress.com/files/2008/03/manage-wide.png\" alt=\"\" /></p>\n<p><img class=\"right\" src=\"http://wpcom.wordpress.com/files/2008/03/manage.png\" alt=\"\" /></p>\n<p>The Manage screens have been redesigned and unified so that now, managing your pages, posts, media, and comments all use similar, consistent interfaces. Weve omitted superfluous information and made whats important faster to find. We believe these changes will make you a faster, more proficient blogger.</p>\n<p>You might also notice there are some new colors, the dashboard feels much fresher and lighter. If you&#8217;re jonesing for the old look under your user options you can now select the &#8220;classic&#8221; colors and get those old blues back. (It&#8217;s also pluggable so people can easily add or share their own color schemes.)</p>\n<p>If you make frequent backups and you&#8217;re interested in helping us out with development by testing the new code, <a href=\"http://wordpress.org/wordpress-2.5-RC1.zip\">download</a> and install <a href=\"http://wordpress.org/wordpress-2.5-RC1.zip\">Release Candidate 1</a> of WordPress 2.5, and <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">join our testers mailing list</a> to report any bugs you find in the code.</p>\n<p>We&#8217;re also interested in feedback on the new interface and would love to hear your opinions, thoughts, rants, raves, and anything in between. We created a special email address just for the occasion: <a href=\"mailto:2.5-feedback@wordpress.org\">2.5-feedback@wordpress.org</a>.</p>\n<p>The software is basically done and stable, and could be released today, but we&#8217;d like to incorporate feedback from a wider audience before making it available to the general public. After a few days of your feedback we&#8217;ll set a final release date. Personally, I can&#8217;t wait. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /></p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:60:\"http://wordpress.org/development/2008/03/25-sneak-peek/feed/\";}s:7:\"summary\";s:360:\"A customizable dashboard, multi-file upload, built-in galleries, one-click plugin upgrades, tag management, built-in Gravatars, full text feeds, and faster load times sound interesting? Then WordPress 2.5 might be the release for you. It&#8217;s been in the oven for a while, and we&#8217;re finally ready to open the doors a bit to give you a taste.\nFor [...]\";s:12:\"atom_content\";s:5448:\"<p>A customizable dashboard, multi-file upload, built-in galleries, one-click plugin upgrades, tag management, built-in Gravatars, full text feeds, and faster load times sound interesting? Then WordPress 2.5 might be the release for you. It&#8217;s been in the oven for a while, and we&#8217;re finally ready to open the doors a bit to give you a taste.</p>\n<p>For the past few months, weve been working with our friends at Happy Cog &#8212; <a href=\"http://zeldman.com/\">Jeffrey Zeldman</a>, <a href=\"http://jasonsantamaria.com/\">Jason Santa Maria</a>, and <a href=\"http://bobulate.com/\">Liz Danzico</a> &#8212; to redesign WordPress from the ground-up. The result is a new way of interacting with WordPress that will remain familiar to seasoned users while improving the experience for everyone. This isnt just a fresh coat of paint &#8212; weve re-thought the look of WordPress, as well as how its organized so that you can forget about the software and focus on your own creative pursuits.</p>\n<p>Here are a few vignettes of what&#8217;s in store.</p>\n<h3>The Dashboard</h3>\n<p class=\"tutscreen\"><img src=\"http://wpcom.wordpress.com/files/2008/03/dashboard-wide.png\" alt=\"dashboard-wide.png\" /></p>\n<p>The Dashboards most important role is to inform quickly and get you to where youre headed in the admin. In interviewing users, we found that most of you ignore the Dashboard entirely &#8212; its useful information being mostly hidden in an overly complex design. The new Dashboard is focused on the most relevant tasks at hand: a quick summary of whats published and scheduled for publication, the latest comments and incoming links, blog stats, and WordPress updates and news. You can add your own RSS feeds and edit the way information is presented so that the new Dashboard conforms to the way you use WordPress.</p>\n<h3>Navigation</h3>\n<p class=\"tutscreen\"><img src=\"http://wpcom.wordpress.com/files/2008/03/nav-wide.png\" alt=\"nav-wide.png\" /></p>\n<p>The WordPress navigation has confounded even sophisticated users. With the new design, weve cut the number of navigation options in half, separating the primary functions (writing, managing posts and pages, editing the blogs design, and managing comments) from secondary functions. This presents information at a more comfortable pace, revealing only the information thats necessary. Everything you need is still there &#8212; just better organized. (Especially for people new to WP.)</p>\n<h3>Write</h3>\n<p class=\"tutscreen\"><img src=\"http://wpcom.wordpress.com/files/2008/03/write-wide.png\" alt=\"write-wide.png\" /></p>\n<p><img class=\"right\" src=\"http://wpcom.wordpress.com/files/2008/03/write3.png\" alt=\"write2.png\" /></p>\n<p>By far, the most frequently accessed part of WordPress is the Write screen. It gets the job done, but its myriad options can be overwhelming. The new write screen only displays the information that youll use most often. It displays the most common fields in a way that makes posting incredibly easy. Additional options are hidden away until you need them. The new Write screen anticipates the natural flow of the way you write, and is smart enough to remember the way you left it so that your preferred writing environment is always quickly available. The new visual editor even has a handy full-screen mode to help block out distractions while composing your newest post. (My personal favorite new feature.)</p>\n<h3>Manage</h3>\n<p class=\"tutscreen\"><img src=\"http://wpcom.wordpress.com/files/2008/03/manage-wide.png\" alt=\"\" /></p>\n<p><img class=\"right\" src=\"http://wpcom.wordpress.com/files/2008/03/manage.png\" alt=\"\" /></p>\n<p>The Manage screens have been redesigned and unified so that now, managing your pages, posts, media, and comments all use similar, consistent interfaces. Weve omitted superfluous information and made whats important faster to find. We believe these changes will make you a faster, more proficient blogger.</p>\n<p>You might also notice there are some new colors, the dashboard feels much fresher and lighter. If you&#8217;re jonesing for the old look under your user options you can now select the &#8220;classic&#8221; colors and get those old blues back. (It&#8217;s also pluggable so people can easily add or share their own color schemes.)</p>\n<p>If you make frequent backups and you&#8217;re interested in helping us out with development by testing the new code, <a href=\"http://wordpress.org/wordpress-2.5-RC1.zip\">download</a> and install <a href=\"http://wordpress.org/wordpress-2.5-RC1.zip\">Release Candidate 1</a> of WordPress 2.5, and <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">join our testers mailing list</a> to report any bugs you find in the code.</p>\n<p>We&#8217;re also interested in feedback on the new interface and would love to hear your opinions, thoughts, rants, raves, and anything in between. We created a special email address just for the occasion: <a href=\"mailto:2.5-feedback@wordpress.org\">2.5-feedback@wordpress.org</a>.</p>\n<p>The software is basically done and stable, and could be released today, but we&#8217;d like to incorporate feedback from a wider audience before making it available to the general public. After a few days of your feedback we&#8217;ll set a final release date. Personally, I can&#8217;t wait. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /></p>\n\";}i:3;a:12:{s:5:\"title\";s:15:\"WordPress 2.3.3\";s:4:\"link\";s:55:\"http://wordpress.org/development/2008/02/wordpress-233/\";s:8:\"comments\";s:64:\"http://wordpress.org/development/2008/02/wordpress-233/#comments\";s:7:\"pubdate\";s:31:\"Tue, 05 Feb 2008 05:02:45 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=225\";s:11:\"description\";s:307:\"WordPress 2.3.3 is an urgent security release. If you have registration enabled a flaw was found in the XML-RPC implementation such that a specially crafted request would allow a user to edit posts of other users on that blog. In addition to fixing this security flaw, 2.3.3 fixes a few minor bugs. [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1208:\"<p>WordPress 2.3.3 is an urgent security release. If you have registration enabled a flaw was found in the XML-RPC implementation such that a specially crafted request would allow a user to edit posts of other users on that blog. In addition to fixing this security flaw, 2.3.3 fixes <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.3\">a few minor bugs</a>. If you are interested only in the security fix, download the <a href=\"http://trac.wordpress.org/browser/tags/2.3.3/xmlrpc.php?format=raw\">fixed version of <code>xmlrpc.php</code></a> and copy it over your existing <code>xmlrpc.php</code>. Otherwise, you can get the entire release <a href=\"http://wordpress.org/download/\">here</a>.</p>\n<p>Also, there is <a href=\"http://weblogtoolscollection.com/archives/2008/01/21/wp-forum-plugin-security-bulletin/\">a vulnerability in the WP-Forum plugin</a> that is being actively exploited right now. If you are using this plugin, please remove it until an update is available from its author.</p>\n<p>Since we are talking security, remember to use strong passwords and change them regularly.  While you&#8217;re updating WP and your plugins, consider refreshing your passwords.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:60:\"http://wordpress.org/development/2008/02/wordpress-233/feed/\";}s:7:\"summary\";s:307:\"WordPress 2.3.3 is an urgent security release. If you have registration enabled a flaw was found in the XML-RPC implementation such that a specially crafted request would allow a user to edit posts of other users on that blog. In addition to fixing this security flaw, 2.3.3 fixes a few minor bugs. [...]\";s:12:\"atom_content\";s:1208:\"<p>WordPress 2.3.3 is an urgent security release. If you have registration enabled a flaw was found in the XML-RPC implementation such that a specially crafted request would allow a user to edit posts of other users on that blog. In addition to fixing this security flaw, 2.3.3 fixes <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.3\">a few minor bugs</a>. If you are interested only in the security fix, download the <a href=\"http://trac.wordpress.org/browser/tags/2.3.3/xmlrpc.php?format=raw\">fixed version of <code>xmlrpc.php</code></a> and copy it over your existing <code>xmlrpc.php</code>. Otherwise, you can get the entire release <a href=\"http://wordpress.org/download/\">here</a>.</p>\n<p>Also, there is <a href=\"http://weblogtoolscollection.com/archives/2008/01/21/wp-forum-plugin-security-bulletin/\">a vulnerability in the WP-Forum plugin</a> that is being actively exploited right now. If you are using this plugin, please remove it until an update is available from its author.</p>\n<p>Since we are talking security, remember to use strong passwords and change them regularly.  While you&#8217;re updating WP and your plugins, consider refreshing your passwords.</p>\n\";}i:4;a:12:{s:5:\"title\";s:15:\"WordPress 2.3.2\";s:4:\"link\";s:55:\"http://wordpress.org/development/2007/12/wordpress-232/\";s:8:\"comments\";s:64:\"http://wordpress.org/development/2007/12/wordpress-232/#comments\";s:7:\"pubdate\";s:31:\"Sat, 29 Dec 2007 22:44:09 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:55:\"http://wordpress.org/development/2007/12/wordpress-232/\";s:11:\"description\";s:325:\"WordPress 2.3.2 is an urgent security release that fixes a bug that can be used to expose your draft posts. 2.3.2 also suppresses some error messages that can give away information about your database table structure and limits and stops some information leaks in the XML-RPC and APP implementations. Get 2.3.2 now to [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1243:\"<p>WordPress 2.3.2 is an urgent security release that fixes a bug that can be used to <a href=\"http://trac.wordpress.org/ticket/5487\">expose your draft posts</a>. 2.3.2 also <a href=\"http://trac.wordpress.org/ticket/5473\">suppresses some error messages</a> that can give away information about your database table structure and limits and stops some information leaks in the XML-RPC and APP implementations. <a href=\"http://wordpress.org/download/\">Get 2.3.2 now</a> to protect your blog from these disclosures.</p>\n<p>As a little bonus, 2.3.2 allows you to define a custom DB error page. Place your custom template at wp-content/db-error.php. If WP has a problem connecting to your database, this page will displayed rather than the default error message.</p>\n<p>For more detail on what&#8217;s new in 2.3.2, view the list of <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.2&amp;resolution=fixed&amp;order=priority\">fixed bugs</a> and see the <a href=\"http://trac.wordpress.org/changeset?old_path=tags%2F2.3.1&amp;old=6528&amp;new_path=tags%2F2.3.2&amp;new=6528\">changes</a> between 2.3.1 and 2.3.2.</p>\n<p>Special thanks to <a href=\"http://www.buayacorp.com/\">Alex Concha</a> for his help on this release.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:60:\"http://wordpress.org/development/2007/12/wordpress-232/feed/\";}s:7:\"summary\";s:325:\"WordPress 2.3.2 is an urgent security release that fixes a bug that can be used to expose your draft posts. 2.3.2 also suppresses some error messages that can give away information about your database table structure and limits and stops some information leaks in the XML-RPC and APP implementations. Get 2.3.2 now to [...]\";s:12:\"atom_content\";s:1243:\"<p>WordPress 2.3.2 is an urgent security release that fixes a bug that can be used to <a href=\"http://trac.wordpress.org/ticket/5487\">expose your draft posts</a>. 2.3.2 also <a href=\"http://trac.wordpress.org/ticket/5473\">suppresses some error messages</a> that can give away information about your database table structure and limits and stops some information leaks in the XML-RPC and APP implementations. <a href=\"http://wordpress.org/download/\">Get 2.3.2 now</a> to protect your blog from these disclosures.</p>\n<p>As a little bonus, 2.3.2 allows you to define a custom DB error page. Place your custom template at wp-content/db-error.php. If WP has a problem connecting to your database, this page will displayed rather than the default error message.</p>\n<p>For more detail on what&#8217;s new in 2.3.2, view the list of <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.2&amp;resolution=fixed&amp;order=priority\">fixed bugs</a> and see the <a href=\"http://trac.wordpress.org/changeset?old_path=tags%2F2.3.1&amp;old=6528&amp;new_path=tags%2F2.3.2&amp;new=6528\">changes</a> between 2.3.1 and 2.3.2.</p>\n<p>Special thanks to <a href=\"http://www.buayacorp.com/\">Alex Concha</a> for his help on this release.</p>\n\";}i:5;a:12:{s:5:\"title\";s:27:\"Stay Warm, WordPress Hoodie\";s:4:\"link\";s:58:\"http://wordpress.org/development/2007/12/wordpress-hoodie/\";s:8:\"comments\";s:67:\"http://wordpress.org/development/2007/12/wordpress-hoodie/#comments\";s:7:\"pubdate\";s:31:\"Sat, 29 Dec 2007 18:39:05 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:27:\"Storefirefoxschwagwordpress\";s:4:\"guid\";s:58:\"http://wordpress.org/development/2007/12/wordpress-hoodie/\";s:11:\"description\";s:371:\"A least for those of your in the Northern hemisphere, it&#8217;s been a little chilly recently. If you&#8217;re like me you&#8217;re thinking, &#8220;WordPress keeps my servers running hot, couldn&#8217;t it warm me too?&#8221;\nYes, it can.\n\nYou can now buy hip WordPress hoodies in our store so when you&#8217;re not blogging you can loiter around the neighborhood [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1059:\"<p>A least for those of your in the Northern hemisphere, it&#8217;s been a little chilly recently. If you&#8217;re like me you&#8217;re thinking, &#8220;WordPress keeps my servers running hot, couldn&#8217;t it warm me too?&#8221;</p>\n<p>Yes, it can.</p>\n<p><a href=\"http://shop.wordpress.net/\"><img src=\"http://shop.wordpress.net/images/sku/WP5495NVY/WP5495NVY-A3.jpg\" alt=\"WordPress Hoodies\" /></a></p>\n<p><a href=\"http://shop.wordpress.net/\">You can now buy hip WordPress hoodies in our store</a> so when you&#8217;re not blogging you can loiter around the neighborhood like the people in the picture above. As before, we ship locally and internationally.</p>\n<p>If you find you&#8217;re still in the Open Source Hoodie mood afterward, you can <a href=\"http://store.mozilla.org/product.php?code=MZ14015&#038;catid=11\">check out this cool Firefox one from our friends at Mozilla</a>.</p>\n<p><strong>Hint:</strong> Buy the hoodie a size larger than you normally would, they run small. They&#8217;ll begin processing the orders on January 2<sup>nd</sup>.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:63:\"http://wordpress.org/development/2007/12/wordpress-hoodie/feed/\";}s:7:\"summary\";s:371:\"A least for those of your in the Northern hemisphere, it&#8217;s been a little chilly recently. If you&#8217;re like me you&#8217;re thinking, &#8220;WordPress keeps my servers running hot, couldn&#8217;t it warm me too?&#8221;\nYes, it can.\n\nYou can now buy hip WordPress hoodies in our store so when you&#8217;re not blogging you can loiter around the neighborhood [...]\";s:12:\"atom_content\";s:1059:\"<p>A least for those of your in the Northern hemisphere, it&#8217;s been a little chilly recently. If you&#8217;re like me you&#8217;re thinking, &#8220;WordPress keeps my servers running hot, couldn&#8217;t it warm me too?&#8221;</p>\n<p>Yes, it can.</p>\n<p><a href=\"http://shop.wordpress.net/\"><img src=\"http://shop.wordpress.net/images/sku/WP5495NVY/WP5495NVY-A3.jpg\" alt=\"WordPress Hoodies\" /></a></p>\n<p><a href=\"http://shop.wordpress.net/\">You can now buy hip WordPress hoodies in our store</a> so when you&#8217;re not blogging you can loiter around the neighborhood like the people in the picture above. As before, we ship locally and internationally.</p>\n<p>If you find you&#8217;re still in the Open Source Hoodie mood afterward, you can <a href=\"http://store.mozilla.org/product.php?code=MZ14015&#038;catid=11\">check out this cool Firefox one from our friends at Mozilla</a>.</p>\n<p><strong>Hint:</strong> Buy the hoodie a size larger than you normally would, they run small. They&#8217;ll begin processing the orders on January 2<sup>nd</sup>.</p>\n\";}i:6;a:12:{s:5:\"title\";s:15:\"WordPress 2.3.1\";s:4:\"link\";s:55:\"http://wordpress.org/development/2007/10/wordpress-231/\";s:8:\"comments\";s:64:\"http://wordpress.org/development/2007/10/wordpress-231/#comments\";s:7:\"pubdate\";s:31:\"Fri, 26 Oct 2007 20:55:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:55:\"http://wordpress.org/development/2007/10/wordpress-231/\";s:11:\"description\";s:367:\"WordPress 2.3.1 is now available. 2.3.1 is a bug-fix and security release for the 2.3 series.\n2.3.1 fixes over twenty bugs. Some of the notable fixes are:\n\n Tagging support for Windows Live Writer\nFixes for a login bug that affected those with a Blog Address different than\ntheir WordPress Address\nFaster taxonomy database queries, especially tag intersection [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1357:\"<p>WordPress 2.3.1 is now available. 2.3.1 is a bug-fix and security release for the 2.3 series.</p>\n<p>2.3.1 fixes <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.1&amp;resolution=fixed&amp;order=priority\" onclick=\"javascript:urchinTracker (\'/outbound/article/trac.wordpress.org\');\">over twenty bugs</a>. Some of the notable fixes are:</p>\n<ul>\n<li> Tagging support for <a href=\"http://windowslivewriter.spaces.live.com/\" onclick=\"javascript:urchinTracker (\'/outbound/article/windowslivewriter.spaces.live.com\');\">Windows Live Writer</a></li>\n<li>Fixes for a login bug that affected those with a Blog Address different than<br />\ntheir WordPress Address</li>\n<li>Faster taxonomy database queries, especially tag intersection queries</li>\n<li>Link importer fixes</li>\n</ul>\n<p>Unfortunately, some security issues were found in 2.3. <a href=\"http://www.waraxe.us/\">Janek Vind</a> found an XSS problem that can be exploited if your php setup has register_globals enabled. For this reason, upgrading to 2.3.1 is advised.</p>\n<p>The full set of changes between 2.3 and 2.3.1 is <a href=\"http://trac.wordpress.org/changeset?old_path=tags%2F2.3&amp;old=6293&amp;new_path=tags%2F2.3.1&amp;new=6293\">available for viewing on trac</a>.</p>\n<p>Get 2.3.1 from the <a href=\"http://wordpress.org/download/\">download</a> page and enjoy.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:60:\"http://wordpress.org/development/2007/10/wordpress-231/feed/\";}s:7:\"summary\";s:367:\"WordPress 2.3.1 is now available. 2.3.1 is a bug-fix and security release for the 2.3 series.\n2.3.1 fixes over twenty bugs. Some of the notable fixes are:\n\n Tagging support for Windows Live Writer\nFixes for a login bug that affected those with a Blog Address different than\ntheir WordPress Address\nFaster taxonomy database queries, especially tag intersection [...]\";s:12:\"atom_content\";s:1357:\"<p>WordPress 2.3.1 is now available. 2.3.1 is a bug-fix and security release for the 2.3 series.</p>\n<p>2.3.1 fixes <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.1&amp;resolution=fixed&amp;order=priority\" onclick=\"javascript:urchinTracker (\'/outbound/article/trac.wordpress.org\');\">over twenty bugs</a>. Some of the notable fixes are:</p>\n<ul>\n<li> Tagging support for <a href=\"http://windowslivewriter.spaces.live.com/\" onclick=\"javascript:urchinTracker (\'/outbound/article/windowslivewriter.spaces.live.com\');\">Windows Live Writer</a></li>\n<li>Fixes for a login bug that affected those with a Blog Address different than<br />\ntheir WordPress Address</li>\n<li>Faster taxonomy database queries, especially tag intersection queries</li>\n<li>Link importer fixes</li>\n</ul>\n<p>Unfortunately, some security issues were found in 2.3. <a href=\"http://www.waraxe.us/\">Janek Vind</a> found an XSS problem that can be exploited if your php setup has register_globals enabled. For this reason, upgrading to 2.3.1 is advised.</p>\n<p>The full set of changes between 2.3 and 2.3.1 is <a href=\"http://trac.wordpress.org/changeset?old_path=tags%2F2.3&amp;old=6293&amp;new_path=tags%2F2.3.1&amp;new=6293\">available for viewing on trac</a>.</p>\n<p>Get 2.3.1 from the <a href=\"http://wordpress.org/download/\">download</a> page and enjoy.</p>\n\";}i:7;a:12:{s:5:\"title\";s:35:\"WordPress 2.3.1 Release Candidate 1\";s:4:\"link\";s:75:\"http://wordpress.org/development/2007/10/wordpress-231-release-candidate-1/\";s:8:\"comments\";s:84:\"http://wordpress.org/development/2007/10/wordpress-231-release-candidate-1/#comments\";s:7:\"pubdate\";s:31:\"Wed, 24 Oct 2007 22:53:59 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:75:\"http://wordpress.org/development/2007/10/wordpress-231-release-candidate-1/\";s:11:\"description\";s:319:\"WordPress 2.3.1 is almost ready to go. Before we send it out the door, we&#8217;re making a release candidate available so everyone can give it a last look.\n2.3.1 fixes over twenty bugs. Some of the notable fixes are:\n\n Tagging support for Windows Live Writer\nA login bug that affected those with a Blog Address [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1398:\"<p>WordPress 2.3.1 is almost ready to go. Before we send it out the door, we&#8217;re making a release candidate available so everyone can give it a last look.</p>\n<p>2.3.1 fixes <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.1&amp;resolution=fixed&amp;order=priority\" onclick=\"javascript:urchinTracker (\'/outbound/article/trac.wordpress.org\');\">over twenty bugs</a>. Some of the notable fixes are:</p>\n<ul>\n<li> Tagging support for <a href=\"http://windowslivewriter.spaces.live.com/\" onclick=\"javascript:urchinTracker (\'/outbound/article/windowslivewriter.spaces.live.com\');\">Windows Live Writer</a></li>\n<li>A login bug that affected those with a Blog Address different than<br />\ntheir WordPress Address is fixed</li>\n<li>Faster taxonomy database queries, especially tag intersection queries</li>\n<li>Link importer fixes</li>\n</ul>\n<p>More details will be provided in the final release announcement. Until then, <a href=\"http://wordpress.org/wordpress-2.3.1-RC1.zip\">download RC1</a> and let us know if it fixes a particular <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.1&amp;resolution=fixed&amp;order=priority\">bug</a> in 2.3 that was annoying you. If you find that something has broken since 2.3, please <a href=\"http://trac.wordpress.org/newticket\">open a ticket</a> so we can address the problem before the final 2.3.1 release.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:80:\"http://wordpress.org/development/2007/10/wordpress-231-release-candidate-1/feed/\";}s:7:\"summary\";s:319:\"WordPress 2.3.1 is almost ready to go. Before we send it out the door, we&#8217;re making a release candidate available so everyone can give it a last look.\n2.3.1 fixes over twenty bugs. Some of the notable fixes are:\n\n Tagging support for Windows Live Writer\nA login bug that affected those with a Blog Address [...]\";s:12:\"atom_content\";s:1398:\"<p>WordPress 2.3.1 is almost ready to go. Before we send it out the door, we&#8217;re making a release candidate available so everyone can give it a last look.</p>\n<p>2.3.1 fixes <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.1&amp;resolution=fixed&amp;order=priority\" onclick=\"javascript:urchinTracker (\'/outbound/article/trac.wordpress.org\');\">over twenty bugs</a>. Some of the notable fixes are:</p>\n<ul>\n<li> Tagging support for <a href=\"http://windowslivewriter.spaces.live.com/\" onclick=\"javascript:urchinTracker (\'/outbound/article/windowslivewriter.spaces.live.com\');\">Windows Live Writer</a></li>\n<li>A login bug that affected those with a Blog Address different than<br />\ntheir WordPress Address is fixed</li>\n<li>Faster taxonomy database queries, especially tag intersection queries</li>\n<li>Link importer fixes</li>\n</ul>\n<p>More details will be provided in the final release announcement. Until then, <a href=\"http://wordpress.org/wordpress-2.3.1-RC1.zip\">download RC1</a> and let us know if it fixes a particular <a href=\"http://trac.wordpress.org/query?status=closed&amp;milestone=2.3.1&amp;resolution=fixed&amp;order=priority\">bug</a> in 2.3 that was annoying you. If you find that something has broken since 2.3, please <a href=\"http://trac.wordpress.org/newticket\">open a ticket</a> so we can address the problem before the final 2.3.1 release.</p>\n\";}i:8;a:12:{s:5:\"title\";s:13:\"WordPress 2.3\";s:4:\"link\";s:54:\"http://wordpress.org/development/2007/09/wordpress-23/\";s:8:\"comments\";s:63:\"http://wordpress.org/development/2007/09/wordpress-23/#comments\";s:7:\"pubdate\";s:31:\"Tue, 25 Sep 2007 01:22:54 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:66:\"DevelopmentReleasestaggingtaxonomyupdate notificationwordpress 2.3\";s:4:\"guid\";s:54:\"http://wordpress.org/development/2007/09/wordpress-23/\";s:11:\"description\";s:379:\"I&#8217;m thrilled to announce that Version 2.3 &#8220;Dexter&#8221; of WordPress is now ready for the world. This release includes native tagging support, plugin update notification, URL handling improvements, and much more. This release is named for the great tenor saxophonist Dexter Gordon.\nThe entire team is really proud of this release, and I&#8217;m happy that this [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:4883:\"<p>I&#8217;m thrilled to announce that Version 2.3 &#8220;Dexter&#8221; of WordPress is <a href=\"http://wordpress.org/download/\">now ready for the world</a>. This release includes native tagging support, plugin update notification, URL handling improvements, and much more. This release is named for the great tenor saxophonist <a href=\"http://en.wikipedia.org/wiki/Dexter_Gordon\">Dexter Gordon</a>.</p>\n<p>The entire team is really proud of this release, and I&#8217;m happy that this is our second on-time release under our <a href=\"http://wordpress.org/about/roadmap/\">new development schedule</a>. The grand experiment of a more agile WordPress with significant features in the hands of users more often is working. I could write a blog post about each new feature, but I&#8217;ll try to be brief:</p>\n<ol>\n<li><strong>Native tagging support</strong> allows you to use tags in addition to categories on your posts, if you so choose. We&#8217;ve included importers for the Ultimate Tag Warrior, Jerome&#8217;s Keywords, Simple Tags, and Bunny&#8217;s Technorati Tag plugins so if you&#8217;ve already been using a tagging plugin you can bring your data into the new system. The tagging system is also wicked-fast, so your host won&#8217;t mind.</li>\n<li>Our new <strong>update notification</strong> lets you know when there is a new release of WordPress or when any of the plugins you use has an update available. It works by sending your blog URL, plugins, and version information to our new <code>api.wordpress.org</code> service which then compares it to the plugin database and tells you whats the latest and greatest you can use.</li>\n<li>We&#8217;ve cleaned up URLs a bunch in a feature we call <strong>canonical URLs</strong> which does things like enforce your no-www preference, redirect posts with changed slugs so a link never goes bad, redirect URLs that get cut off in emails on similar to the correct post, and much more. This helps your users, and it also <strong>helps your search engine optimization</strong>, as search engines like for each page to be available in one <a href=\"http://www.answers.com/canonical?cat=technology\">canonical</a> location. <a href=\"http://markjaquith.wordpress.com/2007/09/25/wordpress-23-canonical-urls/\">More info here</a>.</li>\n<li>Our new <strong>pending review</strong> feature will be great for multi-author blogs. It allows authors to submit a post for review by an editor or administrator, where before they would just have to save a draft and hope someone noticed it.</li>\n<li>There is new <strong>advanced WYSIWYG</strong> functionality (we call it the kitchen sink button) that allows you to access some features of TinyMCE that were previously hidden.</li>\n</ol>\n<p>You&#8217;ll notice that two of those features are straight out of the <a href=\"http://wordpress.org/extend/ideas/?show=popular\">most-voted for ideas list</a>. That&#8217;s just the user facing stuff, if you&#8217;re a developer you&#8217;ll be interested in:</p>\n<ol>\n<li>Full and complete Atom 1.0 support, including the publishing protocol.</li>\n<li>We&#8217;re using the new jQuery which is &#8220;800% faster.&#8221;</li>\n<li>Behind the user-facing tags system is a really <a href=\"http://codex.wordpress.org/index.php?title=Version_2.3:New_Taxonomy\">kickass taxonomy system</a>, which adds a ton of flexibility. It&#8217;s probably the biggest schema upgrade since version 1.5.</li>\n<li>The importers have been revamped to be more memory efficient, and you can now add an importer through a plugin.</li>\n<li>Through hooks and filters you can now <a href=\"http://wordpress.org/extend/plugins/disable-wordpress-plugin-updates/\">override the update system</a>, the dashboard RSS feeds, the feed parser, and tons more than you could in 2.2.</li>\n<li>The new <code>$wpdb->prepare()</code> way of doing SQL queries.</li>\n<li>Finally there were <a href=\"http://trac.wordpress.org/query?status=closed&#038;milestone=2.3\">over 351 tickets in Trac closed for this release</a>, with over a hundred people contributing. This is the polish, the hundreds of tiny bug fixes and features that make WordPress what it is.</li>\n</ol>\n<p>You can <a href=\"http://codex.wordpress.org/Version_2.3\">view the Codex for more information about the release</a> and some screenshots. And of course <a href=\"http://wordpress.org/download/\">the place to download is always the same</a>. Before you upgrade you may want to <a href=\"http://wordpress.org/development/2007/09/preparing-for-23/\">check out our Preparing for 2.3 post</a> and the <a href=\"http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.3\">list of compatible plugins on the Codex</a>.</p>\n<p>A number of people are hosting upgrade parties around the world, <a href=\"http://upcoming.yahoo.com/event/269586/\">including myself in San Francisco</a>. If you are let me know and I&#8217;ll promote it on my blog.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:59:\"http://wordpress.org/development/2007/09/wordpress-23/feed/\";}s:7:\"summary\";s:379:\"I&#8217;m thrilled to announce that Version 2.3 &#8220;Dexter&#8221; of WordPress is now ready for the world. This release includes native tagging support, plugin update notification, URL handling improvements, and much more. This release is named for the great tenor saxophonist Dexter Gordon.\nThe entire team is really proud of this release, and I&#8217;m happy that this [...]\";s:12:\"atom_content\";s:4883:\"<p>I&#8217;m thrilled to announce that Version 2.3 &#8220;Dexter&#8221; of WordPress is <a href=\"http://wordpress.org/download/\">now ready for the world</a>. This release includes native tagging support, plugin update notification, URL handling improvements, and much more. This release is named for the great tenor saxophonist <a href=\"http://en.wikipedia.org/wiki/Dexter_Gordon\">Dexter Gordon</a>.</p>\n<p>The entire team is really proud of this release, and I&#8217;m happy that this is our second on-time release under our <a href=\"http://wordpress.org/about/roadmap/\">new development schedule</a>. The grand experiment of a more agile WordPress with significant features in the hands of users more often is working. I could write a blog post about each new feature, but I&#8217;ll try to be brief:</p>\n<ol>\n<li><strong>Native tagging support</strong> allows you to use tags in addition to categories on your posts, if you so choose. We&#8217;ve included importers for the Ultimate Tag Warrior, Jerome&#8217;s Keywords, Simple Tags, and Bunny&#8217;s Technorati Tag plugins so if you&#8217;ve already been using a tagging plugin you can bring your data into the new system. The tagging system is also wicked-fast, so your host won&#8217;t mind.</li>\n<li>Our new <strong>update notification</strong> lets you know when there is a new release of WordPress or when any of the plugins you use has an update available. It works by sending your blog URL, plugins, and version information to our new <code>api.wordpress.org</code> service which then compares it to the plugin database and tells you whats the latest and greatest you can use.</li>\n<li>We&#8217;ve cleaned up URLs a bunch in a feature we call <strong>canonical URLs</strong> which does things like enforce your no-www preference, redirect posts with changed slugs so a link never goes bad, redirect URLs that get cut off in emails on similar to the correct post, and much more. This helps your users, and it also <strong>helps your search engine optimization</strong>, as search engines like for each page to be available in one <a href=\"http://www.answers.com/canonical?cat=technology\">canonical</a> location. <a href=\"http://markjaquith.wordpress.com/2007/09/25/wordpress-23-canonical-urls/\">More info here</a>.</li>\n<li>Our new <strong>pending review</strong> feature will be great for multi-author blogs. It allows authors to submit a post for review by an editor or administrator, where before they would just have to save a draft and hope someone noticed it.</li>\n<li>There is new <strong>advanced WYSIWYG</strong> functionality (we call it the kitchen sink button) that allows you to access some features of TinyMCE that were previously hidden.</li>\n</ol>\n<p>You&#8217;ll notice that two of those features are straight out of the <a href=\"http://wordpress.org/extend/ideas/?show=popular\">most-voted for ideas list</a>. That&#8217;s just the user facing stuff, if you&#8217;re a developer you&#8217;ll be interested in:</p>\n<ol>\n<li>Full and complete Atom 1.0 support, including the publishing protocol.</li>\n<li>We&#8217;re using the new jQuery which is &#8220;800% faster.&#8221;</li>\n<li>Behind the user-facing tags system is a really <a href=\"http://codex.wordpress.org/index.php?title=Version_2.3:New_Taxonomy\">kickass taxonomy system</a>, which adds a ton of flexibility. It&#8217;s probably the biggest schema upgrade since version 1.5.</li>\n<li>The importers have been revamped to be more memory efficient, and you can now add an importer through a plugin.</li>\n<li>Through hooks and filters you can now <a href=\"http://wordpress.org/extend/plugins/disable-wordpress-plugin-updates/\">override the update system</a>, the dashboard RSS feeds, the feed parser, and tons more than you could in 2.2.</li>\n<li>The new <code>$wpdb->prepare()</code> way of doing SQL queries.</li>\n<li>Finally there were <a href=\"http://trac.wordpress.org/query?status=closed&#038;milestone=2.3\">over 351 tickets in Trac closed for this release</a>, with over a hundred people contributing. This is the polish, the hundreds of tiny bug fixes and features that make WordPress what it is.</li>\n</ol>\n<p>You can <a href=\"http://codex.wordpress.org/Version_2.3\">view the Codex for more information about the release</a> and some screenshots. And of course <a href=\"http://wordpress.org/download/\">the place to download is always the same</a>. Before you upgrade you may want to <a href=\"http://wordpress.org/development/2007/09/preparing-for-23/\">check out our Preparing for 2.3 post</a> and the <a href=\"http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.3\">list of compatible plugins on the Codex</a>.</p>\n<p>A number of people are hosting upgrade parties around the world, <a href=\"http://upcoming.yahoo.com/event/269586/\">including myself in San Francisco</a>. If you are let me know and I&#8217;ll promote it on my blog.</p>\n\";}i:9;a:12:{s:5:\"title\";s:9:\"New Faces\";s:4:\"link\";s:51:\"http://wordpress.org/development/2007/09/new-faces/\";s:8:\"comments\";s:60:\"http://wordpress.org/development/2007/09/new-faces/#comments\";s:7:\"pubdate\";s:31:\"Mon, 24 Sep 2007 05:41:14 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:50:\"DevelopmentMetamark jaquithpeter westwoodwordpress\";s:4:\"guid\";s:51:\"http://wordpress.org/development/2007/09/new-faces/\";s:11:\"description\";s:332:\"If you follow WordPress development closely you&#8217;ve probably noticed a few new faces around lately, or to be more accurate a few old faces who are taking on bigger roles in the community. I would like to take this opportunity to announce and publicly congratulate Mark Jaquith and Peter Westwood who have both become lead [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1398:\"<p>If you follow WordPress development closely you&#8217;ve probably noticed a few new faces around lately, or to be more accurate a few old faces who are taking on bigger roles in the community. I would like to take this opportunity to announce and publicly congratulate Mark Jaquith and Peter Westwood who have both become lead developers, the highest development honor on WordPress.org.</p>\n<p><a href=\"http://markjaquith.com/\">Mark Jaquith</a> has been using and contributing to WordPress since 2004. Mark especially enjoys watching people use WordPress to express themselves in areas of the world where free expression is suppressed. But, being a voracious consumer of information, he probably reads your cat blog too.</p>\n<p><a href=\"http://blog.ftwr.co.uk/\">Peter</a> works as an Embedded Software Engineer developing a <a href=\"http://www.trend-controls.com/wps/portal/!ut/p/_s.7_0_A/7_0_3TJ/.cmd/ad/.c/6_0_1L5/.ce/7_0_4CL/.p/5_0_3DD/.d/1/_th/J_0_CI/_s.7_0_A/7_0_3TJ?PC_7_0_4CL_proxyurl=j#7_0_4CL\">web-enabled BMS controller</a>. Using WordPress since version 1.0.1, Peter spends his spare time triaging bugs on Trac and investigating new open source tools. When not at the computer Peter can often be found photographing flowers, animals and <a href=\"http://flickr.com/photos/westi \">cars</a> and listening to a <a href=\"http://last.fm/user/peterwestwood\">wide variety of music</a>.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:56:\"http://wordpress.org/development/2007/09/new-faces/feed/\";}s:7:\"summary\";s:332:\"If you follow WordPress development closely you&#8217;ve probably noticed a few new faces around lately, or to be more accurate a few old faces who are taking on bigger roles in the community. I would like to take this opportunity to announce and publicly congratulate Mark Jaquith and Peter Westwood who have both become lead [...]\";s:12:\"atom_content\";s:1398:\"<p>If you follow WordPress development closely you&#8217;ve probably noticed a few new faces around lately, or to be more accurate a few old faces who are taking on bigger roles in the community. I would like to take this opportunity to announce and publicly congratulate Mark Jaquith and Peter Westwood who have both become lead developers, the highest development honor on WordPress.org.</p>\n<p><a href=\"http://markjaquith.com/\">Mark Jaquith</a> has been using and contributing to WordPress since 2004. Mark especially enjoys watching people use WordPress to express themselves in areas of the world where free expression is suppressed. But, being a voracious consumer of information, he probably reads your cat blog too.</p>\n<p><a href=\"http://blog.ftwr.co.uk/\">Peter</a> works as an Embedded Software Engineer developing a <a href=\"http://www.trend-controls.com/wps/portal/!ut/p/_s.7_0_A/7_0_3TJ/.cmd/ad/.c/6_0_1L5/.ce/7_0_4CL/.p/5_0_3DD/.d/1/_th/J_0_CI/_s.7_0_A/7_0_3TJ?PC_7_0_4CL_proxyurl=j#7_0_4CL\">web-enabled BMS controller</a>. Using WordPress since version 1.0.1, Peter spends his spare time triaging bugs on Trac and investigating new open source tools. When not at the computer Peter can often be found photographing flowers, animals and <a href=\"http://flickr.com/photos/westi \">cars</a> and listening to a <a href=\"http://last.fm/user/peterwestwood\">wide variety of music</a>.</p>\n\";}}s:7:\"channel\";a:7:{s:5:\"title\";s:26:\"WordPress Development Blog\";s:4:\"link\";s:32:\"http://wordpress.org/development\";s:11:\"description\";s:33:\"WordPress development and updates\";s:7:\"pubdate\";s:31:\"Mon, 14 Apr 2008 06:48:59 +0000\";s:9:\"generator\";s:36:\"http://wordpress.org/?v=2.6-bleeding\";s:8:\"language\";s:2:\"en\";s:7:\"tagline\";s:33:\"WordPress development and updates\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:13:\"last_modified\";s:31:\"Mon, 14 Apr 2008 06:48:59 GMT\r\n\";s:4:\"etag\";s:36:\"\"f1b80f2f114c17277fb227c3a7b70c67\"\r\n\";}','no'),(75,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4_ts','1208301889','no'),(76,0,'rss_867bd5c64f85878d03a060509cd2f92c','O:9:\"magpierss\":19:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:50:{i:0;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: How-To: Use WordPress 2.5 Tooltips\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3424\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/15/how-to-use-wordpress-25-tooltips/\";s:11:\"description\";s:354:\"<p><a href=\"http://planetozh.com/blog/2008/04/how-to-use-wordpress-25-tooltips/\">How-To: Use WordPress 2.5 Tooltips</a> Ozh has done it again! Have you noticed the cool little hover over tooltips on the WordPress 2.5 admin interface? Ozh&#8217;s small tutorial (with example code) shows us how to add your own tooltips to your cool WordPress plugins.</p>\";s:7:\"pubdate\";s:31:\"Tue, 15 Apr 2008 18:52:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:354:\"<p><a href=\"http://planetozh.com/blog/2008/04/how-to-use-wordpress-25-tooltips/\">How-To: Use WordPress 2.5 Tooltips</a> Ozh has done it again! Have you noticed the cool little hover over tooltips on the WordPress 2.5 admin interface? Ozh&#8217;s small tutorial (with example code) shows us how to add your own tooltips to your cool WordPress plugins.</p>\";}i:1;a:7:{s:5:\"title\";s:15:\"Matt: On Sphere\";s:4:\"guid\";s:20:\"http://ma.tt/?p=5199\";s:4:\"link\";s:31:\"http://ma.tt/2008/04/on-sphere/\";s:11:\"description\";s:737:\"<p><a href=\"http://sphere.com/\">Sphere</a> has found a home at the prescient AOL, as <a href=\"http://www.sphere.com/blog/2008/04/15/aol-buys-sphere/\">talked about on their blog</a>, <a href=\"http://gigaom.com/2008/04/14/aol-buys-sphere/\">GigaOM</a>, and <a href=\"http://www.techcrunch.com/2008/04/14/aol-buys-sphere-content-engine/\">Techcrunch</a>. Sphere is a great company and the folks who made this happen at AOL will look like rockstars as the team continues to execute on their vision of tying the web together through lateral navigation. Disclosure, as it says <a href=\"http://ma.tt/about/\">on my about page</a>, I was an advisor to Sphere and we&#8217;re cousins in the <a href=\"http://www.trueventures.com/\">True family</a>.</p>\";s:7:\"pubdate\";s:31:\"Tue, 15 Apr 2008 06:38:52 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:737:\"<p><a href=\"http://sphere.com/\">Sphere</a> has found a home at the prescient AOL, as <a href=\"http://www.sphere.com/blog/2008/04/15/aol-buys-sphere/\">talked about on their blog</a>, <a href=\"http://gigaom.com/2008/04/14/aol-buys-sphere/\">GigaOM</a>, and <a href=\"http://www.techcrunch.com/2008/04/14/aol-buys-sphere-content-engine/\">Techcrunch</a>. Sphere is a great company and the folks who made this happen at AOL will look like rockstars as the team continues to execute on their vision of tying the web together through lateral navigation. Disclosure, as it says <a href=\"http://ma.tt/about/\">on my about page</a>, I was an advisor to Sphere and we&#8217;re cousins in the <a href=\"http://www.trueventures.com/\">True family</a>.</p>\";}i:2;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Plugin Release For 4/14\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/14/wordpress-plugin-release-for-414/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/14/wordpress-plugin-release-for-414/\";s:11:\"description\";s:1478:\"<p><a href=\"http://www.jenst.se/2008/03/29/wp-page-numbers\" target=\"_blank\">WP Page Numbers</a></p>\n<p>WP Page Numbers uses numbers which makes it easier for users to choose what page to go to instead of the regular Next and Previous links. There are five themes to choose from and an option to create your own themes to display the page numbers.</p>\n<p><a href=\"http://www.jenst.se/2008/03/30/wp-simple-sitemap\" target=\"_blank\">WP Simple Sitemap</a></p>\n<p>WP Simple Sitemap is a Wordpress plugin that automatically lists all your posts with a page number navigation.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/dashboard-last-news/\" target=\"_blank\">Dashboard last news</a></p>\n<p>Allows you to display the last items of several feeds in your dashboard. Aggregates as much feeds you want and displays the last items from it.</p>\n<p><a href=\"http://www.divva-plugins.com/divvaflip-wordpress-plugins/\" target=\"_blank\">DivvaFlip</a></p>\n<p>A plugin based on the WP2.5 media gallery DivvaFlip allows you to flip your pages using AJAX. It works in harmony with your native media WordPress galleries or with your Nextgen gallery.\n<p><a href=\"http://weblogtoolscollection.com/news/topic/smart-ads-plugin\" target=\"_blank\">SmartAds</a>\n<p>SmartAds is a plugin that lets you automatically, yet intelligently place Adsense ads into your posts. Some features include showing ads above and below post content automatically, limiting ad visibility by post word count and more.</p>\";s:7:\"pubdate\";s:31:\"Tue, 15 Apr 2008 03:55:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Keith Dsouza\";}s:7:\"summary\";s:1478:\"<p><a href=\"http://www.jenst.se/2008/03/29/wp-page-numbers\" target=\"_blank\">WP Page Numbers</a></p>\n<p>WP Page Numbers uses numbers which makes it easier for users to choose what page to go to instead of the regular Next and Previous links. There are five themes to choose from and an option to create your own themes to display the page numbers.</p>\n<p><a href=\"http://www.jenst.se/2008/03/30/wp-simple-sitemap\" target=\"_blank\">WP Simple Sitemap</a></p>\n<p>WP Simple Sitemap is a Wordpress plugin that automatically lists all your posts with a page number navigation.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/dashboard-last-news/\" target=\"_blank\">Dashboard last news</a></p>\n<p>Allows you to display the last items of several feeds in your dashboard. Aggregates as much feeds you want and displays the last items from it.</p>\n<p><a href=\"http://www.divva-plugins.com/divvaflip-wordpress-plugins/\" target=\"_blank\">DivvaFlip</a></p>\n<p>A plugin based on the WP2.5 media gallery DivvaFlip allows you to flip your pages using AJAX. It works in harmony with your native media WordPress galleries or with your Nextgen gallery.\n<p><a href=\"http://weblogtoolscollection.com/news/topic/smart-ads-plugin\" target=\"_blank\">SmartAds</a>\n<p>SmartAds is a plugin that lets you automatically, yet intelligently place Adsense ads into your posts. Some features include showing ads above and below post content automatically, limiting ad visibility by post word count and more.</p>\";}i:3;a:7:{s:5:\"title\";s:25:\"Mark Jaquith: CSRF Slides\";s:4:\"guid\";s:39:\"http://markjaquith.wordpress.com/?p=142\";s:4:\"link\";s:56:\"http://markjaquith.wordpress.com/2008/04/14/csrf-slides/\";s:11:\"description\";s:2300:\"<div class=\"snap_preview\"><br /><p><a href=\"http://jeremiahgrossman.blogspot.com/2008/04/csrf-presentation-at-rsa-2008.html\">Jeremiah Grossman posted some good slides</a> about the issue of Cross-Site Request Forgeries (CSRF).  We tackled this security issue in WordPress two years ago.  <a href=\"http://markjaquith.wordpress.com/2006/06/02/wordpress-203-nonces/\">I wrote an article</a> about the issue that still holds true (plugin authors should definitely give it a read if any of this sounds unfamiliar).  Our method is the <strong>token</strong> method, with fallback to a slightly modified version of the <strong>Are You Sure?</strong> method for plugins that haven&#8217;t properly implemented the <strong>token</strong> method.  It was a large effort to implement it, but it has paid off handsomely.  CSRF is largely a non-issue in WordPress, which means we can focus our efforts on XSS and SQL injection vectors.</p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/markjaquith.wordpress.com/142/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/markjaquith.wordpress.com/142/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/142/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/142/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/142/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/142/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/142/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=142&subd=markjaquith&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Tue, 15 Apr 2008 03:08:40 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Mark Jaquith\";}s:7:\"summary\";s:2300:\"<div class=\"snap_preview\"><br /><p><a href=\"http://jeremiahgrossman.blogspot.com/2008/04/csrf-presentation-at-rsa-2008.html\">Jeremiah Grossman posted some good slides</a> about the issue of Cross-Site Request Forgeries (CSRF).  We tackled this security issue in WordPress two years ago.  <a href=\"http://markjaquith.wordpress.com/2006/06/02/wordpress-203-nonces/\">I wrote an article</a> about the issue that still holds true (plugin authors should definitely give it a read if any of this sounds unfamiliar).  Our method is the <strong>token</strong> method, with fallback to a slightly modified version of the <strong>Are You Sure?</strong> method for plugins that haven&#8217;t properly implemented the <strong>token</strong> method.  It was a large effort to implement it, but it has paid off handsomely.  CSRF is largely a non-issue in WordPress, which means we can focus our efforts on XSS and SQL injection vectors.</p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/markjaquith.wordpress.com/142/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/markjaquith.wordpress.com/142/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/142/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/142/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/142/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/142/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/142/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=142&subd=markjaquith&ref=&feed=1\" /></div>\";}i:4;a:7:{s:5:\"title\";s:39:\"Matt: SecurityFocus SQL Injection Bogus\";s:4:\"guid\";s:20:\"http://ma.tt/?p=5198\";s:4:\"link\";s:55:\"http://ma.tt/2008/04/securityfocus-sql-injection-bogus/\";s:11:\"description\";s:8692:\"<p>Since people are asking, <a href=\"http://www.securityfocus.com/bid/28703/info\">this so-called alert on Security Focus</a> appears to be completely false and has no information that an attacker or the WordPress developers could use. It is completely content-free, except for making claims that every version of WP since 2.0 is vulnerable.</p>\n<p>Online, apparently, it&#8217;s fine for someone to run into a crowded theatre and yell &#8220;fire&#8221; and the less basis there is in fact the more people link to them. It&#8217;s not uncommon to see crying-wolf reports like the above several times in a week, and a big part of what the WP security team is sifting through things to see what&#8217;s valid or not.</p>\n<p><a href=\"http://www.securityfocus.com/archive/1/490402\">A valid security report looks like this</a>, it usually includes sample code and a detailed description of the problem. The WP security team was notified of the KSES problem and it was fixed in 2.5. You can impress your friends by saying whether a security report is valid or not, so it&#8217;s a good critical facility to pick up.</p>\n<p>All that said, there is a wave of attacks going around targeting <em>old</em> WordPress blogs, particularly those on the 2.1 or 2.2 branch. They&#8217;re exploiting problems that have been fixed for a year or more. This typically manifests itself through hidden spam being put on your site, either in the post or in a directory, and people notice when they get dropped from Google. (Google will drop your site if it contains links they consider spammy, you&#8217;ll remember this is one of the <a href=\"http://weblogtoolscollection.com/archives/2007/04/12/on-sponsored-themes/\">main reasons I came out against sponsored themes</a>.) Google has some guidelines as well, <a href=\"http://googlewebmastercentral.blogspot.com/2008/04/my-sites-been-hacked-now-what.html\">what to do if your site is hacked</a>. If I were to suggest WordPress-specific ones, I would say:</p>\n<ol>\n<li><strong>Upgrade your blog to the latest WP.</strong> This <em>shouldn&#8217;t</em> be hard. <a href=\"http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/\">There are plugins for it</a>, if you&#8217;re techy <a href=\"http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion\">use Subversion</a>, <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">there is the standard FTP method</a>, and finally <a href=\"http://mediatemple.net/\">Media Temple</a>, <a href=\"http://dreamhost.com/\">Dreamhost</a>, and <a href=\"http://bluehost.com/\">Bluehost</a> (through SimpleScripts) all have been pretty good about having their one-click upgrade systems ready with new versions within a day or two of a release. If your host is chronically behind, vote with your wallet and switch.\n<ul>\n<li>If you need someone to help you upgrade, consider <a href=\"http://lists.automattic.com/mailman/listinfo/wp-pro\">hiring help on the wp-pro mailing list</a>. (It has close to a thousand subscribers and consultants on it.) Or you could always ply a geeky friend with caffeine, libations, food, or gadgets. Just get them to setup a system lik the above so you can do it yourself next time.</li>\n</ul>\n</li>\n<li><strong>Change your passwords</strong>, for yourself and any other users you have on the system. If the attacker grabbed your password when you were on an old version, they can still log in after you&#8217;ve upgraded if you don&#8217;t change it. There&#8217;s a new password strength meter in 2.5 helps you pick a good password.</li>\n<li><strong>Search through your posts</strong> for any that might have been modified, and comb through the directories on your web server looking for anything out of the ordinary. Your host may be able to help you with the latter.</li>\n</ol>\n<p>If you&#8217;re on the latest version, you&#8217;ve changed all your passwords, and something still happens to your blog, don&#8217;t panic. It&#8217;s not your (or WP&#8217;s) fault, but there is likely another account on the server which is malicious and the server you&#8217;re on is set up in a way that your neighbors can modify your files. The best thing to do here is to contact your host or sysadmin and have them check things out. They can look at the other accounts and log files in a forensic fashion to identify and find the source.</p>\n<p>I follow or am involved with many, many WordPress blogs - some that receive millions of pageviews a day and have pageranks of 8 or 9 and are huge targets all the way to small personal blogs. Those that have followed the two basic tenets &#8212; keep up with upgrades and use good passwords &#8212; <strong>have <em>never</em> had a problem</strong>. Those that fall behind upgrades, <a href=\"http://ma.tt/2007/11/al-gore-hacked/\">like Al Gore did</a>, have.</p>\n<p>If you&#8217;re tech-savvy, take a look through your blogroll and see if anyone is on an old version. If they are, consider contacting them to help out. Like a <a href=\"http://en.wikipedia.org/wiki/Barn_raising\">barn raising</a>, if we all work together it&#8217;ll happen a lot faster.</p>\n<p>I often hear reasons why people don&#8217;t want to upgrade, here&#8217;s the most common and my best response:</p>\n<ul>\n<li><strong>I&#8217;m scared something will break, or I don&#8217;t know how.</strong> Ask a friend to help or hire a professional on the aforementioned wp-pro list. Long-term, try to use a plugin like WPAU or a host that will do upgrades.</li>\n<li><strong>One of my plugins doesn&#8217;t work with the new version.</strong> This is getting rarer as we have a very public testing cycle for plugin authors to try their stuff with the latest version, but still common. I would suggest checking for an upgrade to the plugin on the author&#8217;s site, contacting the author about the incompatibility you found, maybe even donate some money, or finally search for an alternative plugin that provides similar functionality but works with the latest and greatest version of WordPress. In the big picture, though, having a secure site is much more important than the functionality of a single plugin, so you should seriously consider turning off a plugin for a few days instead of putting off core upgrades.</li>\n<li><strong>I don&#8217;t like the new version, they moved my cheese.</strong> We believe every new release is better, but sometimes people just aren&#8217;t comfortable with a change, which is fine. The good news is that we constantly improve things based on feedback, including interfaces, and that more importantly for almost everything you can imagine annoying you there is a plugin that changes it. For example in 2.5 the page is fixed-width to allow for greater readability, but <a href=\"http://wordpress.org/extend/plugins/remove-max-width/\">there&#8217;s a plugin to make it stretch to the full width of the window</a>.</li>\n<li><strong>I modified core files, so upgrades are hard.</strong> You should <em>never ever</em> modify core files in WP. If you find you have to, <a href=\"http://trac.wordpress.org/\">file a ticket</a> for a new hook or filter so your modifications can be a plugin &#8212; it makes things so much easier.</li>\n<li><strong>Upgrades are too frequent.</strong> If it takes you more than 5 minutes to upgrade your blog, <a href=\"http://icanhascheezburger.com/category/wrong/\">you&#8217;re doing it wrong</a>. Historically we do a major release about 3 times a year, and a minor release about once a month. Minor releases almost never break anything, so they are the easiest. (And often the most important.) WordPress is fast-evolving software, so this is a good problem to have.</li>\n<li><strong>I don&#8217;t know when there&#8217;s an upgrade. </strong>No excuses here. Since 2.3 we include a big honking notice at the top of your dashboard when there&#8217;s a new release available. It&#8217;s also worth subscribing to our <a href=\"http://wordpress.org/development/\">dev blog</a>, it&#8217;s not like it&#8217;s going to flood your RSS reader.</li>\n</ul>\n<p>Of course the millions of blogs on WordPress.com never worry about any of this, nor do the folks on good hosts that have one-click upgrades. The WP community takes security very seriously and has always done its best to respond diligently to any known problems, but all that work is for naught if you don&#8217;t upgrade. Hosting an application yourself is a responsibility. In the future we&#8217;re hoping to make this whole thing easier, for example with built-in functionality like WPAU. Until that day though, I hope the above helps. Feel free to copy, republish, or steal this post in whole or part for <a href=\"http://codex.wordpress.org/\">whatever</a> you like.</p>\";s:7:\"pubdate\";s:31:\"Mon, 14 Apr 2008 16:30:09 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:8692:\"<p>Since people are asking, <a href=\"http://www.securityfocus.com/bid/28703/info\">this so-called alert on Security Focus</a> appears to be completely false and has no information that an attacker or the WordPress developers could use. It is completely content-free, except for making claims that every version of WP since 2.0 is vulnerable.</p>\n<p>Online, apparently, it&#8217;s fine for someone to run into a crowded theatre and yell &#8220;fire&#8221; and the less basis there is in fact the more people link to them. It&#8217;s not uncommon to see crying-wolf reports like the above several times in a week, and a big part of what the WP security team is sifting through things to see what&#8217;s valid or not.</p>\n<p><a href=\"http://www.securityfocus.com/archive/1/490402\">A valid security report looks like this</a>, it usually includes sample code and a detailed description of the problem. The WP security team was notified of the KSES problem and it was fixed in 2.5. You can impress your friends by saying whether a security report is valid or not, so it&#8217;s a good critical facility to pick up.</p>\n<p>All that said, there is a wave of attacks going around targeting <em>old</em> WordPress blogs, particularly those on the 2.1 or 2.2 branch. They&#8217;re exploiting problems that have been fixed for a year or more. This typically manifests itself through hidden spam being put on your site, either in the post or in a directory, and people notice when they get dropped from Google. (Google will drop your site if it contains links they consider spammy, you&#8217;ll remember this is one of the <a href=\"http://weblogtoolscollection.com/archives/2007/04/12/on-sponsored-themes/\">main reasons I came out against sponsored themes</a>.) Google has some guidelines as well, <a href=\"http://googlewebmastercentral.blogspot.com/2008/04/my-sites-been-hacked-now-what.html\">what to do if your site is hacked</a>. If I were to suggest WordPress-specific ones, I would say:</p>\n<ol>\n<li><strong>Upgrade your blog to the latest WP.</strong> This <em>shouldn&#8217;t</em> be hard. <a href=\"http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/\">There are plugins for it</a>, if you&#8217;re techy <a href=\"http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion\">use Subversion</a>, <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">there is the standard FTP method</a>, and finally <a href=\"http://mediatemple.net/\">Media Temple</a>, <a href=\"http://dreamhost.com/\">Dreamhost</a>, and <a href=\"http://bluehost.com/\">Bluehost</a> (through SimpleScripts) all have been pretty good about having their one-click upgrade systems ready with new versions within a day or two of a release. If your host is chronically behind, vote with your wallet and switch.\n<ul>\n<li>If you need someone to help you upgrade, consider <a href=\"http://lists.automattic.com/mailman/listinfo/wp-pro\">hiring help on the wp-pro mailing list</a>. (It has close to a thousand subscribers and consultants on it.) Or you could always ply a geeky friend with caffeine, libations, food, or gadgets. Just get them to setup a system lik the above so you can do it yourself next time.</li>\n</ul>\n</li>\n<li><strong>Change your passwords</strong>, for yourself and any other users you have on the system. If the attacker grabbed your password when you were on an old version, they can still log in after you&#8217;ve upgraded if you don&#8217;t change it. There&#8217;s a new password strength meter in 2.5 helps you pick a good password.</li>\n<li><strong>Search through your posts</strong> for any that might have been modified, and comb through the directories on your web server looking for anything out of the ordinary. Your host may be able to help you with the latter.</li>\n</ol>\n<p>If you&#8217;re on the latest version, you&#8217;ve changed all your passwords, and something still happens to your blog, don&#8217;t panic. It&#8217;s not your (or WP&#8217;s) fault, but there is likely another account on the server which is malicious and the server you&#8217;re on is set up in a way that your neighbors can modify your files. The best thing to do here is to contact your host or sysadmin and have them check things out. They can look at the other accounts and log files in a forensic fashion to identify and find the source.</p>\n<p>I follow or am involved with many, many WordPress blogs - some that receive millions of pageviews a day and have pageranks of 8 or 9 and are huge targets all the way to small personal blogs. Those that have followed the two basic tenets &#8212; keep up with upgrades and use good passwords &#8212; <strong>have <em>never</em> had a problem</strong>. Those that fall behind upgrades, <a href=\"http://ma.tt/2007/11/al-gore-hacked/\">like Al Gore did</a>, have.</p>\n<p>If you&#8217;re tech-savvy, take a look through your blogroll and see if anyone is on an old version. If they are, consider contacting them to help out. Like a <a href=\"http://en.wikipedia.org/wiki/Barn_raising\">barn raising</a>, if we all work together it&#8217;ll happen a lot faster.</p>\n<p>I often hear reasons why people don&#8217;t want to upgrade, here&#8217;s the most common and my best response:</p>\n<ul>\n<li><strong>I&#8217;m scared something will break, or I don&#8217;t know how.</strong> Ask a friend to help or hire a professional on the aforementioned wp-pro list. Long-term, try to use a plugin like WPAU or a host that will do upgrades.</li>\n<li><strong>One of my plugins doesn&#8217;t work with the new version.</strong> This is getting rarer as we have a very public testing cycle for plugin authors to try their stuff with the latest version, but still common. I would suggest checking for an upgrade to the plugin on the author&#8217;s site, contacting the author about the incompatibility you found, maybe even donate some money, or finally search for an alternative plugin that provides similar functionality but works with the latest and greatest version of WordPress. In the big picture, though, having a secure site is much more important than the functionality of a single plugin, so you should seriously consider turning off a plugin for a few days instead of putting off core upgrades.</li>\n<li><strong>I don&#8217;t like the new version, they moved my cheese.</strong> We believe every new release is better, but sometimes people just aren&#8217;t comfortable with a change, which is fine. The good news is that we constantly improve things based on feedback, including interfaces, and that more importantly for almost everything you can imagine annoying you there is a plugin that changes it. For example in 2.5 the page is fixed-width to allow for greater readability, but <a href=\"http://wordpress.org/extend/plugins/remove-max-width/\">there&#8217;s a plugin to make it stretch to the full width of the window</a>.</li>\n<li><strong>I modified core files, so upgrades are hard.</strong> You should <em>never ever</em> modify core files in WP. If you find you have to, <a href=\"http://trac.wordpress.org/\">file a ticket</a> for a new hook or filter so your modifications can be a plugin &#8212; it makes things so much easier.</li>\n<li><strong>Upgrades are too frequent.</strong> If it takes you more than 5 minutes to upgrade your blog, <a href=\"http://icanhascheezburger.com/category/wrong/\">you&#8217;re doing it wrong</a>. Historically we do a major release about 3 times a year, and a minor release about once a month. Minor releases almost never break anything, so they are the easiest. (And often the most important.) WordPress is fast-evolving software, so this is a good problem to have.</li>\n<li><strong>I don&#8217;t know when there&#8217;s an upgrade. </strong>No excuses here. Since 2.3 we include a big honking notice at the top of your dashboard when there&#8217;s a new release available. It&#8217;s also worth subscribing to our <a href=\"http://wordpress.org/development/\">dev blog</a>, it&#8217;s not like it&#8217;s going to flood your RSS reader.</li>\n</ul>\n<p>Of course the millions of blogs on WordPress.com never worry about any of this, nor do the folks on good hosts that have one-click upgrades. The WP community takes security very seriously and has always done its best to respond diligently to any known problems, but all that work is for naught if you don&#8217;t upgrade. Hosting an application yourself is a responsibility. In the future we&#8217;re hoping to make this whole thing easier, for example with built-in functionality like WPAU. Until that day though, I hope the above helps. Feel free to copy, republish, or steal this post in whole or part for <a href=\"http://codex.wordpress.org/\">whatever</a> you like.</p>\";}i:5;a:7:{s:5:\"title\";s:64:\"Weblog Tools Collection: Absolute Comments - Plugin Video Review\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3422\";s:4:\"link\";s:91:\"http://weblogtoolscollection.com/archives/2008/04/14/absolute-comments-plugin-video-review/\";s:11:\"description\";s:1451:\"<p><br />\n<em>If you cannot see, the video, please visit this link: <a href=\"http://weblogtoolsvideos.com/item/Y2XQMHKYJPJ4QRC7\">Absolute Comments - Video Plugin Review</a></em></p>\n<p>Today&#8217;s WordPress Plugin video review is of <a href=\"http://wordpress.org/extend/plugins/ozh-absolute-comments/\">Absolute Comments</a> by <a href=\"http://planetozh.com/blog/\">PlanetOzh</a>.</p>\n<p><strong>Video Summary:</strong> <a href=\"http://wordpress.org/extend/plugins/ozh-absolute-comments/\">Absolute Comments</a> is a major improvement over the WordPress 2.5 Comments Panel. The plugin allows you to reply to comments easily without having to visit a post. The plugin also allows you to view all comments for a particular post. An immense timesaver.</p>\n<p><strong>Pros:</strong> Major improvement over the existing WordPress 2.5 comments panel. The plugin makes it easy to reply to comments.</p>\n<p><strong>Cons:</strong> None, although it would be nice if there was a way to change the default reply text (or have several options) in the admin-panel without having to edit the plugin&#8217;s code.</p>\n<p>If you think your WordPress plugin will merit itself to a video review, please get in contact with me via e-mail (ronalfy+wltc @ gmail dot com). Please keep in mind I will not review premium plugins.</p>\n<p>For more videos, please check out our brand new video website at <a href=\"http://weblogtoolsvideos.com/\">Weblog Tools Videos</a>.</p>\";s:7:\"pubdate\";s:31:\"Mon, 14 Apr 2008 07:00:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"Ronald Huereca\";}s:7:\"summary\";s:1451:\"<p><br />\n<em>If you cannot see, the video, please visit this link: <a href=\"http://weblogtoolsvideos.com/item/Y2XQMHKYJPJ4QRC7\">Absolute Comments - Video Plugin Review</a></em></p>\n<p>Today&#8217;s WordPress Plugin video review is of <a href=\"http://wordpress.org/extend/plugins/ozh-absolute-comments/\">Absolute Comments</a> by <a href=\"http://planetozh.com/blog/\">PlanetOzh</a>.</p>\n<p><strong>Video Summary:</strong> <a href=\"http://wordpress.org/extend/plugins/ozh-absolute-comments/\">Absolute Comments</a> is a major improvement over the WordPress 2.5 Comments Panel. The plugin allows you to reply to comments easily without having to visit a post. The plugin also allows you to view all comments for a particular post. An immense timesaver.</p>\n<p><strong>Pros:</strong> Major improvement over the existing WordPress 2.5 comments panel. The plugin makes it easy to reply to comments.</p>\n<p><strong>Cons:</strong> None, although it would be nice if there was a way to change the default reply text (or have several options) in the admin-panel without having to edit the plugin&#8217;s code.</p>\n<p>If you think your WordPress plugin will merit itself to a video review, please get in contact with me via e-mail (ronalfy+wltc @ gmail dot com). Please keep in mind I will not review premium plugins.</p>\n<p>For more videos, please check out our brand new video website at <a href=\"http://weblogtoolsvideos.com/\">Weblog Tools Videos</a>.</p>\";}i:6;a:7:{s:5:\"title\";s:70:\"Weblog Tools Collection: How to Only Retrieve Posts With Custom Fields\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3420\";s:4:\"link\";s:99:\"http://weblogtoolscollection.com/archives/2008/04/13/how-to-only-retrieve-posts-with-custom-fields/\";s:11:\"description\";s:7832:\"<p>One question I come across a lot regarding custom fields is how to only retrieve posts based on a custom field.</p>\n<p>For example, if a post has a custom field of &#8220;MyData&#8221;, someone might want to only retrieve <em>that particular post</em>.</p>\n<p>The WordPress Codex has a technique for <a href=\"http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query\">retrieving posts based on custom fields</a>, which consists of writing your own query and going through the results.</p>\n<p>The technique in the Codex is good, but I&#8217;ve found a re-usable way one can retrieve only posts with certain custom fields.</p>\n<p>The technique I use makes use of two custom functions placed in a theme&#8217;s &#8220;<strong>functions.php</strong>&#8221; and a <a href=\"http://weblogtoolscollection.com/archives/2008/04/13/define-your-own-wordpress-loop-using-wp_query/\">custom WordPress Loop</a>.</p>\n<h3>Let&#8217;s get started &#8212; The &#8220;functions.php&#8221; file</h3>\n<p>First, let&#8217;s place the two custom functions in the &#8220;<strong>functions.php</strong>&#8221; file. This file should be in your theme directory, but if it isn&#8217;t there, you can create one using any text editor.</p>\n<p>Here are the two functions below:</p>\n<blockquote><p><code>\n<pre>\nfunction get_custom_field_posts_join($join) {\n global $wpdb, $customFields;\n return $join . \" JOIN $wpdb-&gt;postmeta postmeta ON (postmeta.post_id = $wpdb-&gt;posts.ID and postmeta.meta_key in ($customFields)) \";\n}\nfunction get_custom_field_posts_group($group) {\n global $wpdb;\n $group .= \" $wpdb-&gt;posts.ID \";\n return $group;\n}\n</pre>\n<p></code></p></blockquote>\n<p>The function &#8220;<strong>get_custom_field_posts_join</strong>&#8221; makes use of an advanced WordPress filter called &#8220;<strong>posts_join</strong>&#8220;. Each time posts are called, you can add on extra MySQL parameters using filters. In this case, I add on an option to find certain postmeta. Please note the use of a global variable called &#8220;<strong>customFields</strong>&#8220;, which I&#8217;ll explain a bit later.</p>\n<p>The function &#8220;<strong>get_custom_field_posts_group</strong>&#8221; makes use of another advanced WordPress filter called &#8220;<strong>posts_group</strong>&#8220;. This is used to avoid duplicate entries in our return query.</p>\n<h3>Now Let&#8217;s Work on Our Loop</h3>\n<p>After the two functions are placed in the &#8220;<strong>functions.php</strong>&#8221; file, it&#8217;s time to work on placing the appropriate code into one of our template files. </p>\n<p>For this example, I&#8217;ll be modifying the &#8220;<strong>sidebar.php</strong>&#8221; file in the WordPress default theme. You could place the below code in any of your theme files, however.</p>\n<blockquote><p><code>\n<pre>\n&lt;?php /* Begin Custom Field Posts */ ?&gt;\n&lt;h2&gt;Custom Posts&lt;/h2&gt;\n&lt;ul&gt;\n&lt;?php\nglobal $customFields;\n$customFields = \"\'Links\', \'MyData\'\"; //Comma seperated \'s1\', \'s2\', \'s3\'\n</pre>\n<p></code></p></blockquote>\n<p>The first part of the code deals with establishing the structure of the output. You really could do anything you want here. </p>\n<p>Please note the use of the global variable &#8220;<strong>customFields</strong>&#8220;. What we&#8217;re doing here is setting up a comma-separated variable that will be used to search for our custom fields. The &#8220;<strong>customFields</strong>&#8221; variable is used in the &#8220;<strong>get_custom_field_posts_join</strong>&#8221; function.</p>\n<p>In this example, it is assumed we want to find posts with custom fields of &#8220;<strong>Links</strong>&#8221; and &#8220;<strong>MyData</strong>&#8220;. </p>\n<p class=\"screenshot\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/custom-fields-wordpress.jpg\" alt=\"Custom Fields - Links and MyData\" width=\"450\" height=\"265\" /><br />Custom Fields - Links and MyData</p>\n<p>The next bit of code instantiates a new instance of WP_Query and runs a query to return some posts.</p>\n<blockquote><p><code>\n<pre>\n$customPosts = new WP_Query();\nadd_filter(\'posts_join\', \'get_custom_field_posts_join\');\nadd_filter(\'posts_groupby\', \'get_custom_field_posts_group\');\n$customPosts-&gt;query(\'showposts=5\' );//Uses same parameters as query_posts\nremove_filter(\'posts_join\', \'get_custom_field_posts_join\');\nremove_filter(\'posts_groupby\', \'get_custom_field_posts_group\');\n</pre>\n<p></code></p></blockquote>\n<p>Note the use of the &#8220;<strong>add_filter</strong>&#8221; and &#8220;<strong>remove_filter</strong>&#8221; functions. Since we are doing a post query, we can tap into the query and add our own parameters. So before the query is initiated, two query-type filters are added, and after the query is initiated, the two filters are deactivated since we only want them run once.</p>\n<p>This last bit of code initiates our custom loop, gets the custom values, spits them out, and ends the loop.</p>\n<blockquote><p><code>\n<pre>\nwhile ($customPosts-&gt;have_posts()) : $customPosts-&gt;the_post();\n$links = get_post_custom_values(\"Links\");\n$data = get_post_custom_values(\"MyData\");\n?&gt;\n&lt;li&gt;&lt;a href=\'&lt;?php echo $links[0]; ?&gt;\'&gt;&lt;?php echo $data[0]; ?&gt;&lt;/a&gt;&lt;/li&gt;\n&lt;?php endwhile; ?&gt;\n&lt;/ul&gt;\n&lt;?php /* End Custom Field Posts */ ?&gt;\n</code></pre>\n</blockquote>\n<p>The &#8220;<strong>get_post_custom_values</strong>&#8221; WordPress function returns an array of matching keys. It&#8217;s assumed there is only one key per post, which is why we echo out the first value (Ex: <code>echo $links[0]</code>).</p>\n<h3>The Full Post Code</h3>\n<p>Here is the full post code. The only thing you need to change for your own use is the custom fields needed (change the <strong>customFields</strong> text) and what type of output is desired within our custom loop.</p>\n<blockquote><p><code>\n<pre>\n&lt;?php /* Begin Custom Field Posts */ ?&gt;\n&lt;h2&gt;Custom Posts&lt;/h2&gt;\n&lt;ul&gt;\n&lt;?php\nglobal $customFields;\n$customFields = \"\'Links\', \'MyData\'\"; //Comma seperated \'s1\', \'s2\', \'s3\'\n$customPosts = new WP_Query();\nadd_filter(\'posts_join\', \'get_custom_field_posts_join\');\nadd_filter(\'posts_groupby\', \'get_custom_field_posts_group\');\n$customPosts-&gt;query(\'showposts=5\' );//Uses same parameters as query_posts\nremove_filter(\'posts_join\', \'get_custom_field_posts_join\');\nremove_filter(\'posts_groupby\', \'get_custom_field_posts_group\');\nwhile ($customPosts-&gt;have_posts()) : $customPosts-&gt;the_post();\n$links = get_post_custom_values(\"Links\");\n$data = get_post_custom_values(\"MyData\");\n?&gt;\n&lt;li&gt;&lt;a href=\'&lt;?php echo $links[0]; ?&gt;\'&gt;&lt;?php echo $data[0]; ?&gt;&lt;/a&gt;&lt;/li&gt;\n&lt;?php endwhile; ?&gt;\n&lt;/ul&gt;\n&lt;?php /* End Custom Field Posts */ ?&gt;\n</pre>\n<p></code></p></blockquote>\n<p class=\"screenshot\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/custom-fields-output.jpg\" alt=\"Custom Field Output\" width=\"442\" height=\"91\" /><br />Custom Field Output</p>\n<h3>Downloadable Code</h3>\n<p>The full code mentioned in this post is available for download. Within the &#8220;<strong>zip</strong>&#8221; file are a sample &#8220;<strong>functions.php</strong>&#8221; and &#8220;<strong>sidebar.php</strong>&#8220;. </p>\n<ul>\n<li><a href=\"http://weblogtoolscollection.com/b2-img/2008/04/custom-fields-post.zip\" title=\"Downloadable Code for Posts and Custom Fields\">Downloadable Code for Posts and Custom Fields</a></li>\n</ul>\n<h3>Conclusion</h3>\n<p>With the above technique, you can do some pretty fancy stuff. For example, you can only retrieve posts with <a href=\"http://justintadlock.com/archives/2007/10/27/wordpress-custom-fields-adding-images-to-posts\">custom images for a nice magazine effect</a>.</p>\n<p>If you have any questions regarding the code, I&#8217;ll do my best to answer them in the comments.</p>\";s:7:\"pubdate\";s:31:\"Sun, 13 Apr 2008 22:00:06 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"Ronald Huereca\";}s:7:\"summary\";s:7832:\"<p>One question I come across a lot regarding custom fields is how to only retrieve posts based on a custom field.</p>\n<p>For example, if a post has a custom field of &#8220;MyData&#8221;, someone might want to only retrieve <em>that particular post</em>.</p>\n<p>The WordPress Codex has a technique for <a href=\"http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query\">retrieving posts based on custom fields</a>, which consists of writing your own query and going through the results.</p>\n<p>The technique in the Codex is good, but I&#8217;ve found a re-usable way one can retrieve only posts with certain custom fields.</p>\n<p>The technique I use makes use of two custom functions placed in a theme&#8217;s &#8220;<strong>functions.php</strong>&#8221; and a <a href=\"http://weblogtoolscollection.com/archives/2008/04/13/define-your-own-wordpress-loop-using-wp_query/\">custom WordPress Loop</a>.</p>\n<h3>Let&#8217;s get started &#8212; The &#8220;functions.php&#8221; file</h3>\n<p>First, let&#8217;s place the two custom functions in the &#8220;<strong>functions.php</strong>&#8221; file. This file should be in your theme directory, but if it isn&#8217;t there, you can create one using any text editor.</p>\n<p>Here are the two functions below:</p>\n<blockquote><p><code>\n<pre>\nfunction get_custom_field_posts_join($join) {\n global $wpdb, $customFields;\n return $join . \" JOIN $wpdb-&gt;postmeta postmeta ON (postmeta.post_id = $wpdb-&gt;posts.ID and postmeta.meta_key in ($customFields)) \";\n}\nfunction get_custom_field_posts_group($group) {\n global $wpdb;\n $group .= \" $wpdb-&gt;posts.ID \";\n return $group;\n}\n</pre>\n<p></code></p></blockquote>\n<p>The function &#8220;<strong>get_custom_field_posts_join</strong>&#8221; makes use of an advanced WordPress filter called &#8220;<strong>posts_join</strong>&#8220;. Each time posts are called, you can add on extra MySQL parameters using filters. In this case, I add on an option to find certain postmeta. Please note the use of a global variable called &#8220;<strong>customFields</strong>&#8220;, which I&#8217;ll explain a bit later.</p>\n<p>The function &#8220;<strong>get_custom_field_posts_group</strong>&#8221; makes use of another advanced WordPress filter called &#8220;<strong>posts_group</strong>&#8220;. This is used to avoid duplicate entries in our return query.</p>\n<h3>Now Let&#8217;s Work on Our Loop</h3>\n<p>After the two functions are placed in the &#8220;<strong>functions.php</strong>&#8221; file, it&#8217;s time to work on placing the appropriate code into one of our template files. </p>\n<p>For this example, I&#8217;ll be modifying the &#8220;<strong>sidebar.php</strong>&#8221; file in the WordPress default theme. You could place the below code in any of your theme files, however.</p>\n<blockquote><p><code>\n<pre>\n&lt;?php /* Begin Custom Field Posts */ ?&gt;\n&lt;h2&gt;Custom Posts&lt;/h2&gt;\n&lt;ul&gt;\n&lt;?php\nglobal $customFields;\n$customFields = \"\'Links\', \'MyData\'\"; //Comma seperated \'s1\', \'s2\', \'s3\'\n</pre>\n<p></code></p></blockquote>\n<p>The first part of the code deals with establishing the structure of the output. You really could do anything you want here. </p>\n<p>Please note the use of the global variable &#8220;<strong>customFields</strong>&#8220;. What we&#8217;re doing here is setting up a comma-separated variable that will be used to search for our custom fields. The &#8220;<strong>customFields</strong>&#8221; variable is used in the &#8220;<strong>get_custom_field_posts_join</strong>&#8221; function.</p>\n<p>In this example, it is assumed we want to find posts with custom fields of &#8220;<strong>Links</strong>&#8221; and &#8220;<strong>MyData</strong>&#8220;. </p>\n<p class=\"screenshot\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/custom-fields-wordpress.jpg\" alt=\"Custom Fields - Links and MyData\" width=\"450\" height=\"265\" /><br />Custom Fields - Links and MyData</p>\n<p>The next bit of code instantiates a new instance of WP_Query and runs a query to return some posts.</p>\n<blockquote><p><code>\n<pre>\n$customPosts = new WP_Query();\nadd_filter(\'posts_join\', \'get_custom_field_posts_join\');\nadd_filter(\'posts_groupby\', \'get_custom_field_posts_group\');\n$customPosts-&gt;query(\'showposts=5\' );//Uses same parameters as query_posts\nremove_filter(\'posts_join\', \'get_custom_field_posts_join\');\nremove_filter(\'posts_groupby\', \'get_custom_field_posts_group\');\n</pre>\n<p></code></p></blockquote>\n<p>Note the use of the &#8220;<strong>add_filter</strong>&#8221; and &#8220;<strong>remove_filter</strong>&#8221; functions. Since we are doing a post query, we can tap into the query and add our own parameters. So before the query is initiated, two query-type filters are added, and after the query is initiated, the two filters are deactivated since we only want them run once.</p>\n<p>This last bit of code initiates our custom loop, gets the custom values, spits them out, and ends the loop.</p>\n<blockquote><p><code>\n<pre>\nwhile ($customPosts-&gt;have_posts()) : $customPosts-&gt;the_post();\n$links = get_post_custom_values(\"Links\");\n$data = get_post_custom_values(\"MyData\");\n?&gt;\n&lt;li&gt;&lt;a href=\'&lt;?php echo $links[0]; ?&gt;\'&gt;&lt;?php echo $data[0]; ?&gt;&lt;/a&gt;&lt;/li&gt;\n&lt;?php endwhile; ?&gt;\n&lt;/ul&gt;\n&lt;?php /* End Custom Field Posts */ ?&gt;\n</code></pre>\n</blockquote>\n<p>The &#8220;<strong>get_post_custom_values</strong>&#8221; WordPress function returns an array of matching keys. It&#8217;s assumed there is only one key per post, which is why we echo out the first value (Ex: <code>echo $links[0]</code>).</p>\n<h3>The Full Post Code</h3>\n<p>Here is the full post code. The only thing you need to change for your own use is the custom fields needed (change the <strong>customFields</strong> text) and what type of output is desired within our custom loop.</p>\n<blockquote><p><code>\n<pre>\n&lt;?php /* Begin Custom Field Posts */ ?&gt;\n&lt;h2&gt;Custom Posts&lt;/h2&gt;\n&lt;ul&gt;\n&lt;?php\nglobal $customFields;\n$customFields = \"\'Links\', \'MyData\'\"; //Comma seperated \'s1\', \'s2\', \'s3\'\n$customPosts = new WP_Query();\nadd_filter(\'posts_join\', \'get_custom_field_posts_join\');\nadd_filter(\'posts_groupby\', \'get_custom_field_posts_group\');\n$customPosts-&gt;query(\'showposts=5\' );//Uses same parameters as query_posts\nremove_filter(\'posts_join\', \'get_custom_field_posts_join\');\nremove_filter(\'posts_groupby\', \'get_custom_field_posts_group\');\nwhile ($customPosts-&gt;have_posts()) : $customPosts-&gt;the_post();\n$links = get_post_custom_values(\"Links\");\n$data = get_post_custom_values(\"MyData\");\n?&gt;\n&lt;li&gt;&lt;a href=\'&lt;?php echo $links[0]; ?&gt;\'&gt;&lt;?php echo $data[0]; ?&gt;&lt;/a&gt;&lt;/li&gt;\n&lt;?php endwhile; ?&gt;\n&lt;/ul&gt;\n&lt;?php /* End Custom Field Posts */ ?&gt;\n</pre>\n<p></code></p></blockquote>\n<p class=\"screenshot\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/custom-fields-output.jpg\" alt=\"Custom Field Output\" width=\"442\" height=\"91\" /><br />Custom Field Output</p>\n<h3>Downloadable Code</h3>\n<p>The full code mentioned in this post is available for download. Within the &#8220;<strong>zip</strong>&#8221; file are a sample &#8220;<strong>functions.php</strong>&#8221; and &#8220;<strong>sidebar.php</strong>&#8220;. </p>\n<ul>\n<li><a href=\"http://weblogtoolscollection.com/b2-img/2008/04/custom-fields-post.zip\" title=\"Downloadable Code for Posts and Custom Fields\">Downloadable Code for Posts and Custom Fields</a></li>\n</ul>\n<h3>Conclusion</h3>\n<p>With the above technique, you can do some pretty fancy stuff. For example, you can only retrieve posts with <a href=\"http://justintadlock.com/archives/2007/10/27/wordpress-custom-fields-adding-images-to-posts\">custom images for a nice magazine effect</a>.</p>\n<p>If you have any questions regarding the code, I&#8217;ll do my best to answer them in the comments.</p>\";}i:7;a:7:{s:5:\"title\";s:30:\"Alex King: Twitter Tools 1.2b1\";s:4:\"guid\";s:54:\"http://alexking.org/blog/2008/04/13/twitter-tools-12b1\";s:4:\"link\";s:54:\"http://alexking.org/blog/2008/04/13/twitter-tools-12b1\";s:11:\"description\";s:2659:\"<p>I&#8217;ve got a new version of Twitter Tools ready (I think) for testing. This version adds a number of often requested features and other enhancements:</p>\n<ul>\n<li>Show a link to the tweet being replied to for @replies.</li>\n<li>Option to exclude @replies from the sidebar tweets list.</li>\n<li>Make all @usernames clickable.</li>\n<li>Check that the tweets downloaded are indeed the user&#8217;s tweets - sometimes Twitter has hiccups.</li>\n<li>Don&#8217;t broadcast edits to old posts. Note: Twitter Tools always included code to only broadcast a post once. However edits to posts created before Twitter Tools was installed would be sent to Twitter because there is no &#8220;only when a post is first published&#8221; hook (that I&#8217;m aware of) in WordPress. Now a timestamp is saved upon installation to try to work around this.</li>\n<li>Ability to send blog posts to Twitter on a per-post basis (checkbox added to post authoring screen).</li>\n<li>Option to use jQuery instead of Prototype - useful if you like to tweet from your sidebar. The jQuery library is a smaller download than Prototype.</li>\n<li>Added post author setting.</li>\n<li>Added post tags setting.</li>\n<li>Added an option to make digest posts display tweets in either chronological or reverse-chronological order.</li>\n<li>Make URLs clickable in blog posts created from tweets and digest posts.</li>\n</ul>\n<p>Note: after you install this version of Twitter Tools, you&#8217;ll need to go in and update your settings to take advantage of these new features - until you do, things will not work properly.</p>\n<p>As you can see, there are <em>many</em> changes in this version, so I&#8217;m releasing this as a beta instead of a stable version. I&#8217;ve done about 5-6 hours of testing on it and I&#8217;m using it here, so I obviously think it&#8217;s probably safe for production, but it has not been widely tested&#8230; if I had to bet, I&#8217;d say there are still a few things still to be discovered. You&#8217;ve been warned. <img src=\"http://alexking.org/wp/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n<p>The download and more information are available on my <a href=\"http://alexking.org/projects/wordpress\">WordPress Plugins page</a>.</p>\n<p>If you have any trouble with this, please open a thread in the <a href=\"http://wordpress.org/support/\" rel=\"external\">WP Support Forums</a> and send me the link.</p>\n<p><a href=\"http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=Twitter+Tools+1.2b1&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2008%2F04%2F13%2Ftwitter-tools-12b1\">ShareThis</a></p>\";s:7:\"pubdate\";s:31:\"Sun, 13 Apr 2008 19:12:29 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:2659:\"<p>I&#8217;ve got a new version of Twitter Tools ready (I think) for testing. This version adds a number of often requested features and other enhancements:</p>\n<ul>\n<li>Show a link to the tweet being replied to for @replies.</li>\n<li>Option to exclude @replies from the sidebar tweets list.</li>\n<li>Make all @usernames clickable.</li>\n<li>Check that the tweets downloaded are indeed the user&#8217;s tweets - sometimes Twitter has hiccups.</li>\n<li>Don&#8217;t broadcast edits to old posts. Note: Twitter Tools always included code to only broadcast a post once. However edits to posts created before Twitter Tools was installed would be sent to Twitter because there is no &#8220;only when a post is first published&#8221; hook (that I&#8217;m aware of) in WordPress. Now a timestamp is saved upon installation to try to work around this.</li>\n<li>Ability to send blog posts to Twitter on a per-post basis (checkbox added to post authoring screen).</li>\n<li>Option to use jQuery instead of Prototype - useful if you like to tweet from your sidebar. The jQuery library is a smaller download than Prototype.</li>\n<li>Added post author setting.</li>\n<li>Added post tags setting.</li>\n<li>Added an option to make digest posts display tweets in either chronological or reverse-chronological order.</li>\n<li>Make URLs clickable in blog posts created from tweets and digest posts.</li>\n</ul>\n<p>Note: after you install this version of Twitter Tools, you&#8217;ll need to go in and update your settings to take advantage of these new features - until you do, things will not work properly.</p>\n<p>As you can see, there are <em>many</em> changes in this version, so I&#8217;m releasing this as a beta instead of a stable version. I&#8217;ve done about 5-6 hours of testing on it and I&#8217;m using it here, so I obviously think it&#8217;s probably safe for production, but it has not been widely tested&#8230; if I had to bet, I&#8217;d say there are still a few things still to be discovered. You&#8217;ve been warned. <img src=\"http://alexking.org/wp/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n<p>The download and more information are available on my <a href=\"http://alexking.org/projects/wordpress\">WordPress Plugins page</a>.</p>\n<p>If you have any trouble with this, please open a thread in the <a href=\"http://wordpress.org/support/\" rel=\"external\">WP Support Forums</a> and send me the link.</p>\n<p><a href=\"http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=Twitter+Tools+1.2b1&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2008%2F04%2F13%2Ftwitter-tools-12b1\">ShareThis</a></p>\";}i:8;a:7:{s:5:\"title\";s:24:\"Matt: Any color schemes?\";s:4:\"guid\";s:20:\"http://ma.tt/?p=5196\";s:4:\"link\";s:39:\"http://ma.tt/2008/04/any-color-schemes/\";s:11:\"description\";s:237:\"<p>I&#8217;m just curious if any plugins or such have taken advantage of the admin color scheme switcher in version 2.5 yet? I&#8217;d like to highlight some in <a href=\"http://wordpress.org/extend/plugins/\">the plugin directory</a>.</p>\";s:7:\"pubdate\";s:31:\"Sun, 13 Apr 2008 18:56:24 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:237:\"<p>I&#8217;m just curious if any plugins or such have taken advantage of the admin color scheme switcher in version 2.5 yet? I&#8217;d like to highlight some in <a href=\"http://wordpress.org/extend/plugins/\">the plugin directory</a>.</p>\";}i:9;a:7:{s:5:\"title\";s:43:\"Weblog Tools Collection: New Viddler Plugin\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3415\";s:4:\"link\";s:72:\"http://weblogtoolscollection.com/archives/2008/04/13/new-viddler-plugin/\";s:11:\"description\";s:2004:\"<p>The people over at <a title=\"http://www.viddler.com\" href=\"http://www.viddler.com\" target=\"_blank\">Viddler</a> have released a new plugin compatible with WordPress 2.5. The plugin is at version 1.1 Beta 1 and is still undergoing testing. Here are a few things you can expect from this new plugin:</p>\n<ul>\n<li><strong>Dashboard widget </strong>You can now watch, and help promote, our daily featured videos right from within the Wordpress administration dashboard. There is a preference in the options panel to turn this off.</li>\n<li><strong>Viddler videos in Add Media pop-up</strong> One of Wordpress 2.5s flagship features is the new “Add media” pop-up window when writing posts and pages. Now, you can add Viddler videos in several ways.<strong></strong></li>\n<li><strong>Featured videos </strong>Like on the dashboard widget, you are now able to embed featured videos quickly.<strong></strong></li>\n<li><strong>Your videos </strong>One quick search for your username, and you can page through <em>every</em> public video you have on Viddler and embed them in your posts.<strong></strong></li>\n<li><strong>Search</strong>The search features lets you find, and embed, <em>any video on Viddler</em> by searching by tag and/or username.<strong></strong></li>\n<li><strong>Record </strong>Using your webcam, or any camera attached to your computer, you can use Viddlers recorder to quickly record a brand-new video and embed it in your post, all without leaving your Wordpress admin.</li>\n<li><strong>Fixed Wordpress 2.5 jQuery conflict </strong>Both our plugin and Wordpress use jQuery, the state-of-the-art Javascript framework, and version 1.0 of our plugin causes conflicts with Wordpress 2.5. Now that is fixed!</li>\n</ul>\n<p>Last but not least, a video showcasing the new version in action.</p>\n<p></p>\n<p>You can download the latest version of the Viddler plugin from their <a href=\"http://wiki.developers.viddler.com/index.php/WPViddlerVideoComments\">Wiki Developers page</a>.</p>\";s:7:\"pubdate\";s:31:\"Sun, 13 Apr 2008 12:53:45 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jeffro2pt0\";}s:7:\"summary\";s:2004:\"<p>The people over at <a title=\"http://www.viddler.com\" href=\"http://www.viddler.com\" target=\"_blank\">Viddler</a> have released a new plugin compatible with WordPress 2.5. The plugin is at version 1.1 Beta 1 and is still undergoing testing. Here are a few things you can expect from this new plugin:</p>\n<ul>\n<li><strong>Dashboard widget </strong>You can now watch, and help promote, our daily featured videos right from within the Wordpress administration dashboard. There is a preference in the options panel to turn this off.</li>\n<li><strong>Viddler videos in Add Media pop-up</strong> One of Wordpress 2.5s flagship features is the new “Add media” pop-up window when writing posts and pages. Now, you can add Viddler videos in several ways.<strong></strong></li>\n<li><strong>Featured videos </strong>Like on the dashboard widget, you are now able to embed featured videos quickly.<strong></strong></li>\n<li><strong>Your videos </strong>One quick search for your username, and you can page through <em>every</em> public video you have on Viddler and embed them in your posts.<strong></strong></li>\n<li><strong>Search</strong>The search features lets you find, and embed, <em>any video on Viddler</em> by searching by tag and/or username.<strong></strong></li>\n<li><strong>Record </strong>Using your webcam, or any camera attached to your computer, you can use Viddlers recorder to quickly record a brand-new video and embed it in your post, all without leaving your Wordpress admin.</li>\n<li><strong>Fixed Wordpress 2.5 jQuery conflict </strong>Both our plugin and Wordpress use jQuery, the state-of-the-art Javascript framework, and version 1.0 of our plugin causes conflicts with Wordpress 2.5. Now that is fixed!</li>\n</ul>\n<p>Last but not least, a video showcasing the new version in action.</p>\n<p></p>\n<p>You can download the latest version of the Viddler plugin from their <a href=\"http://wiki.developers.viddler.com/index.php/WPViddlerVideoComments\">Wiki Developers page</a>.</p>\";}i:10;a:7:{s:5:\"title\";s:70:\"Weblog Tools Collection: Define Your Own WordPress Loop Using WP_Query\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3416\";s:4:\"link\";s:99:\"http://weblogtoolscollection.com/archives/2008/04/13/define-your-own-wordpress-loop-using-wp_query/\";s:11:\"description\";s:5426:\"<p>We all know what the <a href=\"http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/\">WordPress Loop</a> is right? If not, there are many great tutorials around the web that <a href=\"http://weblogtoolscollection.com/archives/2007/06/06/global-variables-and-the-wordpress-loop/\">explain the WordPress Loop</a>.</p>\n<p>One of the easiest ways to navigate and manipulate the loop is to use the function called <strong><a href=\"http://codex.wordpress.org/Template_Tags/query_posts\">query_posts</a></strong>. <a href=\"http://www.nathanrice.net/\">Nathan Rice</a> calls it <a href=\"http://www.blogherald.com/2007/05/31/a-wordpress-developers-best-friend/\">a WordPress developers best friend</a>.</p>\n<p>When you use <strong>query_posts</strong>, however, you risk the following:</p>\n<ul>\n<li>Potential to interfere with plugins which make use of the Loop.</li>\n<li>Potential to invalidate WordPress conditional tags.</li>\n<li>Having to deal with resetting, rewinding, offsetting&#8230;</li>\n</ul>\n<p>I say skip <strong>query_posts</strong>. In a way you&#8217;ll still be using it, but the better (and sometimes easier) technique is to instantiate your own <strong><a href=\"http://codex.wordpress.org/Function_Reference/WP_Query\">WP_Query</a></strong> object and create your own loop.</p>\n<h3>Creating Your Own Loop With WP_Query</h3>\n<p>The first step is to instantiate your own variable using the WP_Query class. </p>\n<p>What we&#8217;ll be doing in this example is creating a common feature on blogs, which is to display a list of the recent articles.</p>\n<blockquote><p><code>\n<pre>\n&lt;?php\n $recentPosts = new WP_Query();\n $recentPosts-&gt;query(\'showposts=5\');\n?&gt;\n</pre>\n<p></code></p></blockquote>\n<p>All I&#8217;ve done in the above code is defined a variable named <strong>recentPosts</strong> and instantiated an instance of <strong>WP_Query</strong>.</p>\n<p>I then used a method of <strong>WP_Query</strong> to start a query (pretty much the same thing as using <strong>query_posts</strong>). You even use the <a href=\"http://codex.wordpress.org/Template_Tags/query_posts#Usage\">same usage parameters</a> as <strong>query_posts</strong>.</p>\n<p>Now it&#8217;s time to start our own loop:</p>\n<blockquote><p><code>\n<pre>\n&lt;?php while ($recentPosts-&gt;have_posts()) : $recentPosts-&gt;the_post(); ?&gt;\n &lt;!-- do some stuff here --&gt;\n&lt;?php endwhile; ?&gt;\n</pre>\n<p></code></p></blockquote>\n<p>Notice the use of the <strong>recentPosts</strong> variable to start the loop. We utilize two methods of WP_Query, which is <strong>have_posts</strong> and <strong>the_post</strong>. You can read more about those two methods on my article <a href=\"http://weblogtoolscollection.com/archives/2007/06/06/global-variables-and-the-wordpress-loop/\">Global Variables and the WordPress Loop</a>.</p>\n<p>The beauty of this is that once you are inside your own loop, you can use the <a href=\"http://codex.wordpress.org/Template_Tags#Post_tags\">standard post tags</a>.</p>\n<h3>The Full Code</h3>\n<p>Here&#8217;s the full code for showing the last five recent posts using your own loop:</p>\n<blockquote><p><code>\n<pre>\n&lt;h3&gt;Recent Articles&lt;/h3&gt;\n&lt;ul&gt;\n&lt;?php\n $recentPosts = new WP_Query();\n $recentPosts-&gt;query(\'showposts=5\');\n?&gt;\n&lt;?php while ($recentPosts-&gt;have_posts()) : $recentPosts-&gt;the_post(); ?&gt;\n &lt;li&gt;&lt;a href=\"&lt;?php the_permalink() ?&gt;\" rel=\"bookmark\"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;\n&lt;?php endwhile; ?&gt;\n&lt;/ul&gt;\n</pre>\n<p></code></p></blockquote>\n<h3>Update: Using Pagination</h3>\n<p>This comment is from <a href=\"http://www.anthologyoi.com\">Aaron Harun</a> - </p>\n<p>@Ron and Monika</p>\n<p>If you use the query:</p>\n<blockquote><p><code>\n<pre>\n$recentPosts-&gt;query(\'showposts=5\'.\'&amp;paged=\'.$paged);\n</pre>\n<p></code></p></blockquote>\n<p>it will automatically page the wury based on the page number passed<br />\nthrough the url eg \"/page/4\"</p>\n<p>However, this doesn\'t work with the &#8220;<strong>post_nav_link</strong>&#8221; function because it<br />\nonly checks the $<strong>wp_query</strong> variable. To get around this you have to<br />\ntrick the function by switching $<strong>wp_query</strong> on it. Add the first block<br />\nbefore your custom loop and the second after to achieve this effect.</p>\n<blockquote><p><code>\n<pre>&lt;?php //query_posts(\'paged=\'.$paged);\n$temp = $wp_query;\n$wp_query= null;\n $wp_query = new WP_Query();\n $wp_query-&gt;query(\'showposts=5\'.\'&amp;paged=\'.$paged);\n?&gt;\n</pre>\n<p></code></p></blockquote>\n<blockquote><p><code>\n<pre>\n&lt;?php $wp_query = null; $wp_query = $temp;?&gt;\n</pre>\n<p></code></p></blockquote>\n<p><em>Thanks Aaron for the contribution.</em></p>\n<h3>Conclusion</h3>\n<p>Defining your own loop using WP_Query is an easy way to run your own custom queries without interfering with the default Loop. It&#8217;s also a great way to run multiple loops that are completely independent of each other.</p>\n<p>WordPress Resources mentioned:</p>\n<ul>\n<li><a href=\"http://codex.wordpress.org/Function_Reference/WP_Query\">WP_Query</a></li>\n<li><a href=\"http://codex.wordpress.org/Template_Tags/query_posts\">query_posts</a></li>\n<li><a href=\"http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/\">The Loop</a></li>\n<li><a href=\"http://codex.wordpress.org/Template_Tags#Post_tags\">Post Template Tags</a></li>\n</ul>\";s:7:\"pubdate\";s:31:\"Sun, 13 Apr 2008 08:00:00 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"Ronald Huereca\";}s:7:\"summary\";s:5426:\"<p>We all know what the <a href=\"http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/\">WordPress Loop</a> is right? If not, there are many great tutorials around the web that <a href=\"http://weblogtoolscollection.com/archives/2007/06/06/global-variables-and-the-wordpress-loop/\">explain the WordPress Loop</a>.</p>\n<p>One of the easiest ways to navigate and manipulate the loop is to use the function called <strong><a href=\"http://codex.wordpress.org/Template_Tags/query_posts\">query_posts</a></strong>. <a href=\"http://www.nathanrice.net/\">Nathan Rice</a> calls it <a href=\"http://www.blogherald.com/2007/05/31/a-wordpress-developers-best-friend/\">a WordPress developers best friend</a>.</p>\n<p>When you use <strong>query_posts</strong>, however, you risk the following:</p>\n<ul>\n<li>Potential to interfere with plugins which make use of the Loop.</li>\n<li>Potential to invalidate WordPress conditional tags.</li>\n<li>Having to deal with resetting, rewinding, offsetting&#8230;</li>\n</ul>\n<p>I say skip <strong>query_posts</strong>. In a way you&#8217;ll still be using it, but the better (and sometimes easier) technique is to instantiate your own <strong><a href=\"http://codex.wordpress.org/Function_Reference/WP_Query\">WP_Query</a></strong> object and create your own loop.</p>\n<h3>Creating Your Own Loop With WP_Query</h3>\n<p>The first step is to instantiate your own variable using the WP_Query class. </p>\n<p>What we&#8217;ll be doing in this example is creating a common feature on blogs, which is to display a list of the recent articles.</p>\n<blockquote><p><code>\n<pre>\n&lt;?php\n $recentPosts = new WP_Query();\n $recentPosts-&gt;query(\'showposts=5\');\n?&gt;\n</pre>\n<p></code></p></blockquote>\n<p>All I&#8217;ve done in the above code is defined a variable named <strong>recentPosts</strong> and instantiated an instance of <strong>WP_Query</strong>.</p>\n<p>I then used a method of <strong>WP_Query</strong> to start a query (pretty much the same thing as using <strong>query_posts</strong>). You even use the <a href=\"http://codex.wordpress.org/Template_Tags/query_posts#Usage\">same usage parameters</a> as <strong>query_posts</strong>.</p>\n<p>Now it&#8217;s time to start our own loop:</p>\n<blockquote><p><code>\n<pre>\n&lt;?php while ($recentPosts-&gt;have_posts()) : $recentPosts-&gt;the_post(); ?&gt;\n &lt;!-- do some stuff here --&gt;\n&lt;?php endwhile; ?&gt;\n</pre>\n<p></code></p></blockquote>\n<p>Notice the use of the <strong>recentPosts</strong> variable to start the loop. We utilize two methods of WP_Query, which is <strong>have_posts</strong> and <strong>the_post</strong>. You can read more about those two methods on my article <a href=\"http://weblogtoolscollection.com/archives/2007/06/06/global-variables-and-the-wordpress-loop/\">Global Variables and the WordPress Loop</a>.</p>\n<p>The beauty of this is that once you are inside your own loop, you can use the <a href=\"http://codex.wordpress.org/Template_Tags#Post_tags\">standard post tags</a>.</p>\n<h3>The Full Code</h3>\n<p>Here&#8217;s the full code for showing the last five recent posts using your own loop:</p>\n<blockquote><p><code>\n<pre>\n&lt;h3&gt;Recent Articles&lt;/h3&gt;\n&lt;ul&gt;\n&lt;?php\n $recentPosts = new WP_Query();\n $recentPosts-&gt;query(\'showposts=5\');\n?&gt;\n&lt;?php while ($recentPosts-&gt;have_posts()) : $recentPosts-&gt;the_post(); ?&gt;\n &lt;li&gt;&lt;a href=\"&lt;?php the_permalink() ?&gt;\" rel=\"bookmark\"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;\n&lt;?php endwhile; ?&gt;\n&lt;/ul&gt;\n</pre>\n<p></code></p></blockquote>\n<h3>Update: Using Pagination</h3>\n<p>This comment is from <a href=\"http://www.anthologyoi.com\">Aaron Harun</a> - </p>\n<p>@Ron and Monika</p>\n<p>If you use the query:</p>\n<blockquote><p><code>\n<pre>\n$recentPosts-&gt;query(\'showposts=5\'.\'&amp;paged=\'.$paged);\n</pre>\n<p></code></p></blockquote>\n<p>it will automatically page the wury based on the page number passed<br />\nthrough the url eg \"/page/4\"</p>\n<p>However, this doesn\'t work with the &#8220;<strong>post_nav_link</strong>&#8221; function because it<br />\nonly checks the $<strong>wp_query</strong> variable. To get around this you have to<br />\ntrick the function by switching $<strong>wp_query</strong> on it. Add the first block<br />\nbefore your custom loop and the second after to achieve this effect.</p>\n<blockquote><p><code>\n<pre>&lt;?php //query_posts(\'paged=\'.$paged);\n$temp = $wp_query;\n$wp_query= null;\n $wp_query = new WP_Query();\n $wp_query-&gt;query(\'showposts=5\'.\'&amp;paged=\'.$paged);\n?&gt;\n</pre>\n<p></code></p></blockquote>\n<blockquote><p><code>\n<pre>\n&lt;?php $wp_query = null; $wp_query = $temp;?&gt;\n</pre>\n<p></code></p></blockquote>\n<p><em>Thanks Aaron for the contribution.</em></p>\n<h3>Conclusion</h3>\n<p>Defining your own loop using WP_Query is an easy way to run your own custom queries without interfering with the default Loop. It&#8217;s also a great way to run multiple loops that are completely independent of each other.</p>\n<p>WordPress Resources mentioned:</p>\n<ul>\n<li><a href=\"http://codex.wordpress.org/Function_Reference/WP_Query\">WP_Query</a></li>\n<li><a href=\"http://codex.wordpress.org/Template_Tags/query_posts\">query_posts</a></li>\n<li><a href=\"http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/\">The Loop</a></li>\n<li><a href=\"http://codex.wordpress.org/Template_Tags#Post_tags\">Post Template Tags</a></li>\n</ul>\";}i:11;a:7:{s:5:\"title\";s:30:\"Andy Skelton: Attachment Stats\";s:4:\"guid\";s:32:\"http://andy.wordpress.com/?p=173\";s:4:\"link\";s:54:\"http://andy.wordpress.com/2008/04/12/attachment-stats/\";s:11:\"description\";s:1837:\"<div class=\"snap_preview\"><br /><p>WordPress 2.5 with its new uploader results in a lot more post attachments. Until now, the <a href=\"http://wordpress.org/extend/plugins/stats/\">Stats</a> plugin didn&#8217;t keep track of which attachments were viewed. Stats 1.2.1 contains a <a href=\"http://dev.wp-plugins.org/changeset/40064/stats/trunk/stats.php\">minor change</a> that lets us show you which of your attachments are most popular.</p>\n<p>Remember, attachment views are only counted if you link to the attachment&#8217;s Post URL when inserting from the uploader.</p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/andy.wordpress.com/173/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/andy.wordpress.com/173/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/andy.wordpress.com/173/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/andy.wordpress.com/173/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/andy.wordpress.com/173/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/andy.wordpress.com/173/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/andy.wordpress.com/173/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=andy.wordpress.com&blog=155&post=173&subd=andy&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Sat, 12 Apr 2008 23:53:17 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Andy\";}s:7:\"summary\";s:1837:\"<div class=\"snap_preview\"><br /><p>WordPress 2.5 with its new uploader results in a lot more post attachments. Until now, the <a href=\"http://wordpress.org/extend/plugins/stats/\">Stats</a> plugin didn&#8217;t keep track of which attachments were viewed. Stats 1.2.1 contains a <a href=\"http://dev.wp-plugins.org/changeset/40064/stats/trunk/stats.php\">minor change</a> that lets us show you which of your attachments are most popular.</p>\n<p>Remember, attachment views are only counted if you link to the attachment&#8217;s Post URL when inserting from the uploader.</p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/andy.wordpress.com/173/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/andy.wordpress.com/173/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/andy.wordpress.com/173/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/andy.wordpress.com/173/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/andy.wordpress.com/173/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/andy.wordpress.com/173/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/andy.wordpress.com/173/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/andy.wordpress.com/173/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=andy.wordpress.com&blog=155&post=173&subd=andy&ref=&feed=1\" /></div>\";}i:12;a:7:{s:5:\"title\";s:44:\"Weblog Tools Collection: Shortcode Generator\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3414\";s:4:\"link\";s:73:\"http://weblogtoolscollection.com/archives/2008/04/12/shortcode-generator/\";s:11:\"description\";s:1098:\"<p>Julien of Webinventif has created a <a title=\"http://www.webinventif.fr/generateur-de-shortcode-et-de-boutons-pour-wordpress/\" href=\"http://www.webinventif.fr/generateur-de-shortcode-et-de-boutons-pour-wordpress/\" target=\"_blank\">shortcode generator for WordPress</a>. Shortcode is like BBcode in that it provides the ability to use shortcuts to execute a block of code, rather than having to write out the block of code time and time again. Julien has made use of the new API calls within WordPress and with his shortcode generator, makes it easy as 1,2,3 to create your own custom shortcode. Although everything has been written in French, this generator looks promising. If anyone could translate this generator into English, I think there would be many WordPresser&#8217;s who would be grateful.</p>\n<p>Here is a screencast showcasing the generator in action.</p>\n<p><br />\n<a href=\"http://www.vimeo.com/886550/l:embed_886550\">Shortcode generator</a> from <a href=\"http://www.vimeo.com/webinventif/l:embed_886550\">WebInventif.fr</a> on <a href=\"http://vimeo.com/l:embed_886550\">Vimeo</a></p>\";s:7:\"pubdate\";s:31:\"Sat, 12 Apr 2008 21:29:55 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jeffro2pt0\";}s:7:\"summary\";s:1098:\"<p>Julien of Webinventif has created a <a title=\"http://www.webinventif.fr/generateur-de-shortcode-et-de-boutons-pour-wordpress/\" href=\"http://www.webinventif.fr/generateur-de-shortcode-et-de-boutons-pour-wordpress/\" target=\"_blank\">shortcode generator for WordPress</a>. Shortcode is like BBcode in that it provides the ability to use shortcuts to execute a block of code, rather than having to write out the block of code time and time again. Julien has made use of the new API calls within WordPress and with his shortcode generator, makes it easy as 1,2,3 to create your own custom shortcode. Although everything has been written in French, this generator looks promising. If anyone could translate this generator into English, I think there would be many WordPresser&#8217;s who would be grateful.</p>\n<p>Here is a screencast showcasing the generator in action.</p>\n<p><br />\n<a href=\"http://www.vimeo.com/886550/l:embed_886550\">Shortcode generator</a> from <a href=\"http://www.vimeo.com/webinventif/l:embed_886550\">WebInventif.fr</a> on <a href=\"http://vimeo.com/l:embed_886550\">Vimeo</a></p>\";}i:13;a:7:{s:5:\"title\";s:74:\"Weblog Tools Collection: Javascript advice for WordPress Plugin Developers\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3413\";s:4:\"link\";s:103:\"http://weblogtoolscollection.com/archives/2008/04/12/javascript-advice-for-wordpress-plugin-developers/\";s:11:\"description\";s:496:\"<p><a href=\"http://planetozh.com/blog/2008/04/how-to-load-javascript-with-your-wordpress-plugin/\">Load Javascript With Your WordPress Plugin</a>: Sage advice from a seasoned and proven plugin developer for WordPress. Ozh talks about some neat javacript loading options and dos and don&#8217;t s for plugin developers who need to load various javascript libraries. If you use javascript in your plugin and are not aware of <em>wp_enqueue_script</em>, you need to head over to Ozh&#8217;s post.</p>\";s:7:\"pubdate\";s:31:\"Sat, 12 Apr 2008 12:26:12 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:496:\"<p><a href=\"http://planetozh.com/blog/2008/04/how-to-load-javascript-with-your-wordpress-plugin/\">Load Javascript With Your WordPress Plugin</a>: Sage advice from a seasoned and proven plugin developer for WordPress. Ozh talks about some neat javacript loading options and dos and don&#8217;t s for plugin developers who need to load various javascript libraries. If you use javascript in your plugin and are not aware of <em>wp_enqueue_script</em>, you need to head over to Ozh&#8217;s post.</p>\";}i:14;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Theme releases for 4/10\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/10/wordpress-theme-releases-for-410/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/10/wordpress-theme-releases-for-410/\";s:11:\"description\";s:2377:\"<h3>Two Column Themes</h3>\n<p><a href=\"http://www.themelab.com/2008/04/01/colourise-free-wordpress-theme-38/\" target=\"_blank\"><strong>Colourise</strong></a></p>\n<p><img height=\"128\" alt=\"colourise-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/colourise-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>Colourise is a two column theme which is made up of dark colors, it sports a gray colored text on a dark background. The theme comes built in with recents posts and comments listing in the footer area.</p>\n<p><a href=\"http://www.themelab.com/2008/04/01/colourise-free-wordpress-theme-38/\" target=\"_blank\">Colourise Theme</a></p>\n<p><a href=\"http://www.xhtmlvalid.com/2008/04/01/wp-brown/\" target=\"_blank\"><strong>WP Brown</strong></a></p>\n<p><img height=\"135\" alt=\"wp-brown-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/wp-brown-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>WP Brown is a two column widget ready page with valid XHTML and CSS. The theme is largely made up of brown colors. </p>\n<p><a href=\"http://www.xhtmlvalid.com/2008/04/01/wp-brown/\" target=\"_blank\">WP Brown Theme</a></p>\n<h3>Three Column Themes</h3>\n<p><a href=\"http://3oneseven.com/02/grunge-style-wordpress-theme/\" target=\"_blank\"><strong>Grunge Style</strong></a></p>\n<p><img height=\"117\" alt=\"grunge-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/grunge-thumbnail.png\" width=\"199\" border=\"0\" /> </p>\n<p>Grunge Style is a three column theme with in built support for flickr, pagenavi support, custom field options, related posts and recent comments. The theme sports a wooden background with a grunge unique style.</p>\n<p><a href=\"http://3oneseven.com/02/grunge-style-wordpress-theme/\" target=\"_blank\">Grunge Style Theme</a></p>\n<p><a href=\"http://www.infocreek.com/webdesign/freewordpressthemes\" target=\"_blank\"><strong>Blue Jeans</strong></a></p>\n<p><img height=\"102\" alt=\"blue-jeans-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/blue-jeans-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>Blue Jeans is a three column theme which is based on the popular denim. It sports the material in the background and also has trendy buttons in the sidebar headers. If you are a denim lover you will definitely like this.</p>\n<p><a href=\"http://www.infocreek.com/webdesign/freewordpressthemes\" target=\"_blank\">Blue Jeans Theme</a></p>\";s:7:\"pubdate\";s:31:\"Fri, 11 Apr 2008 03:55:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Keith Dsouza\";}s:7:\"summary\";s:2377:\"<h3>Two Column Themes</h3>\n<p><a href=\"http://www.themelab.com/2008/04/01/colourise-free-wordpress-theme-38/\" target=\"_blank\"><strong>Colourise</strong></a></p>\n<p><img height=\"128\" alt=\"colourise-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/colourise-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>Colourise is a two column theme which is made up of dark colors, it sports a gray colored text on a dark background. The theme comes built in with recents posts and comments listing in the footer area.</p>\n<p><a href=\"http://www.themelab.com/2008/04/01/colourise-free-wordpress-theme-38/\" target=\"_blank\">Colourise Theme</a></p>\n<p><a href=\"http://www.xhtmlvalid.com/2008/04/01/wp-brown/\" target=\"_blank\"><strong>WP Brown</strong></a></p>\n<p><img height=\"135\" alt=\"wp-brown-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/wp-brown-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>WP Brown is a two column widget ready page with valid XHTML and CSS. The theme is largely made up of brown colors. </p>\n<p><a href=\"http://www.xhtmlvalid.com/2008/04/01/wp-brown/\" target=\"_blank\">WP Brown Theme</a></p>\n<h3>Three Column Themes</h3>\n<p><a href=\"http://3oneseven.com/02/grunge-style-wordpress-theme/\" target=\"_blank\"><strong>Grunge Style</strong></a></p>\n<p><img height=\"117\" alt=\"grunge-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/grunge-thumbnail.png\" width=\"199\" border=\"0\" /> </p>\n<p>Grunge Style is a three column theme with in built support for flickr, pagenavi support, custom field options, related posts and recent comments. The theme sports a wooden background with a grunge unique style.</p>\n<p><a href=\"http://3oneseven.com/02/grunge-style-wordpress-theme/\" target=\"_blank\">Grunge Style Theme</a></p>\n<p><a href=\"http://www.infocreek.com/webdesign/freewordpressthemes\" target=\"_blank\"><strong>Blue Jeans</strong></a></p>\n<p><img height=\"102\" alt=\"blue-jeans-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/blue-jeans-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>Blue Jeans is a three column theme which is based on the popular denim. It sports the material in the background and also has trendy buttons in the sidebar headers. If you are a denim lover you will definitely like this.</p>\n<p><a href=\"http://www.infocreek.com/webdesign/freewordpressthemes\" target=\"_blank\">Blue Jeans Theme</a></p>\";}i:15;a:7:{s:5:\"title\";s:49:\"Weblog Tools Collection: Kubrick Header Generator\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3404\";s:4:\"link\";s:78:\"http://weblogtoolscollection.com/archives/2008/04/10/kubrick-header-generator/\";s:11:\"description\";s:1579:\"<p>I came across this <a title=\"http://bighugelabs.com/flickr/blogheader.php\" href=\"http://bighugelabs.com/flickr/blogheader.php\" target=\"_blank\">blog header generator</a> via <a title=\"http://stuff.techwhack.com/\" href=\"http://stuff.techwhack.com/\" target=\"_blank\">TechWack.com</a> Big Huge Labs is the company behind this header generator which takes an image from either your local machine, Flickr, Photobucket or a linked image and creates a custom header image for you to use on the Kubrick WordPress theme. The generator provides options to align the visible part of the image in case it needs to be cropped. You can also choose whether to add credit to the image or not.</p>\n<p>Linking to an image I found on a quick Google image search, this is what I was able to come up with. Click on the image to see the full size.</p>\n<p><a href=\"http://weblogtoolscollection.com/b2-img/2008/04/headergenerator.png\"><img class=\"aligncenter size-medium wp-image-3405\" title=\"Header Generator End Result\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/headergenerator-300x93.png\" alt=\"\" width=\"300\" height=\"93\" /></a></p>\n<p>\n<p>Big Huge Labs allows you to edit your result, save the image or share it through links or email. You can also elect to start over if you choose.</p>\n<p>Although I hate seeing Kubrick being used all over the place, it&#8217;s nice to see such a generator service for those that would like to do things this way. I realize the default Kubrick theme has the option to upload a new header image but it&#8217;s no where near as nice as this generator.</p>\";s:7:\"pubdate\";s:31:\"Thu, 10 Apr 2008 14:00:08 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jeffro2pt0\";}s:7:\"summary\";s:1579:\"<p>I came across this <a title=\"http://bighugelabs.com/flickr/blogheader.php\" href=\"http://bighugelabs.com/flickr/blogheader.php\" target=\"_blank\">blog header generator</a> via <a title=\"http://stuff.techwhack.com/\" href=\"http://stuff.techwhack.com/\" target=\"_blank\">TechWack.com</a> Big Huge Labs is the company behind this header generator which takes an image from either your local machine, Flickr, Photobucket or a linked image and creates a custom header image for you to use on the Kubrick WordPress theme. The generator provides options to align the visible part of the image in case it needs to be cropped. You can also choose whether to add credit to the image or not.</p>\n<p>Linking to an image I found on a quick Google image search, this is what I was able to come up with. Click on the image to see the full size.</p>\n<p><a href=\"http://weblogtoolscollection.com/b2-img/2008/04/headergenerator.png\"><img class=\"aligncenter size-medium wp-image-3405\" title=\"Header Generator End Result\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/headergenerator-300x93.png\" alt=\"\" width=\"300\" height=\"93\" /></a></p>\n<p>\n<p>Big Huge Labs allows you to edit your result, save the image or share it through links or email. You can also elect to start over if you choose.</p>\n<p>Although I hate seeing Kubrick being used all over the place, it&#8217;s nice to see such a generator service for those that would like to do things this way. I realize the default Kubrick theme has the option to upload a new header image but it&#8217;s no where near as nice as this generator.</p>\";}i:16;a:7:{s:5:\"title\";s:37:\"Lorelle on WP: WordCamp Dallas Videos\";s:4:\"guid\";s:36:\"http://lorelle.wordpress.com/?p=2448\";s:4:\"link\";s:63:\"http://lorelle.wordpress.com/2008/04/09/wordcamp-dallas-videos/\";s:11:\"description\";s:6965:\"<div class=\"snap_preview\"><br /><p><a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/\" title=\"In Case You Missed It\">Weblog Tools Collection has a list</a> of the videos and special interviews of the speakers at <a href=\"http://dallas.wordcamp.org/schedule/\" title=\"WordCamp Dallas Schedule of Speakers\">WordCamp Dallas</a>, including <a href=\"http://www.viddler.com/explore/jpozadzides/videos/77/\" title=\"Lorelle VanFossen and WordPress Tips Video at WordCamp Dallas\">my presentation on WordPress Tips</a>. </p>\n<p>Check it out and tell me if I did okay. And be sure and watch everyone else. They did much better. <img src=\"http://lorelle.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif\" alt=\":D\" class=\"wp-smiley\" /> </p>\n<h4>Related Articles</h4>\n<ul>\n<li><a href=\"http://lorelle.wordpress.com/2007/07/28/wordcamp-connections/\" title=\"WordCamp Connections\">WordCamp Connections</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/07/25/wordcamp-2007-kicking-ass-content-connections/\" title=\"Kicking Ass Content Connections\">WordCamp 2007: Kicking Ass Content Connections</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/07/23/wordcamp-2007/\" title=\"WordCamp 2007\">WordCamp 2007</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2008/03/28/weekly-digest-wordcamp-dallas-pasadena-education-and-blogging-and-more-on-the-road-blogging-and-talking/\" title=\"WordCamp Dallas, Pasadena Education and Blogging ...\">Weekly Digest: WordCamp Dallas, Pasadena Education and Blogging and Talking</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2008/03/26/what-you-need-to-know-about-wordcamp-dallas/\" title=\"What You Need To Know About WordCamp Dallas\">What You Need To Know About WordCamp Dallas</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2008/01/30/wordcamp-hamburg-germany/\" title=\"WordCamp Hamburg, Germany\">WordCamp Hamburg, Germany</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/11/19/wordcamp-israel-wordpress-tips-talk/\" title=\"WordCamp Israel WordPress Tips Talk\">WordCamp Israel WordPress Tips Talk</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/10/09/wordcamp-israel-october-25-with-lorelle/\" title=\"WordCamp Israel October 25 with Lorelle\">WordCamp Israel October 25 with Lorelle</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/08/08/lorelle-live-at-wordcamp-2007/\" title=\"Lorelle Live at WordCamp 2007\">Lorelle Live at WordCamp 2007</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/07/30/wordcamp-2007-wordcamp-caricatures/\" title=\"WordCamp Caricatures\">WordCamp 2007: WordCamp Caricatures</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/06/20/wordcamp-2007-registration-and-schedule/\" title=\"WordCamp 2007 Registration and Schedule\">WordCamp 2007 Registration and Schedule</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/08/09/all-the-news-that-was-from-wordcamp-2006/\" title=\"All The News That Was from WordCamp 2006\">All The News That Was from WordCamp 2006</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/07/27/whats-new-with-wordpress-news-and-wordcamp-wordpress-conference/\" title=\"Whats New With WordPress News and WordCamp WordPress Conference ...\">Whats New With WordPress News and WordCamp WordPress Conference</a></li>\n</ul>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcamp\" rel=\"tag\">wordcamp</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+tips\" rel=\"tag\">wordpress tips</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcampdallas2008\" rel=\"tag\">wordcampdallas2008</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcampdallas\" rel=\"tag\">wordcampdallas</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+event\" rel=\"tag\">blog event</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+techniques\" rel=\"tag\">wordpress techniques</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=video\" rel=\"tag\">video</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+video\" rel=\"tag\">wordpress video</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcamp+video\" rel=\"tag\">wordcamp video</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a> <a href=\"http://feeds.feedburner.com/LorelleOnWordpress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a> <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/2448/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/2448/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/2448/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/2448/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/2448/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/2448/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/2448/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=2448&subd=lorelle&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Thu, 10 Apr 2008 01:54:42 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Lorelle VanFossen\";}s:7:\"summary\";s:6965:\"<div class=\"snap_preview\"><br /><p><a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/\" title=\"In Case You Missed It\">Weblog Tools Collection has a list</a> of the videos and special interviews of the speakers at <a href=\"http://dallas.wordcamp.org/schedule/\" title=\"WordCamp Dallas Schedule of Speakers\">WordCamp Dallas</a>, including <a href=\"http://www.viddler.com/explore/jpozadzides/videos/77/\" title=\"Lorelle VanFossen and WordPress Tips Video at WordCamp Dallas\">my presentation on WordPress Tips</a>. </p>\n<p>Check it out and tell me if I did okay. And be sure and watch everyone else. They did much better. <img src=\"http://lorelle.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif\" alt=\":D\" class=\"wp-smiley\" /> </p>\n<h4>Related Articles</h4>\n<ul>\n<li><a href=\"http://lorelle.wordpress.com/2007/07/28/wordcamp-connections/\" title=\"WordCamp Connections\">WordCamp Connections</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/07/25/wordcamp-2007-kicking-ass-content-connections/\" title=\"Kicking Ass Content Connections\">WordCamp 2007: Kicking Ass Content Connections</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/07/23/wordcamp-2007/\" title=\"WordCamp 2007\">WordCamp 2007</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2008/03/28/weekly-digest-wordcamp-dallas-pasadena-education-and-blogging-and-more-on-the-road-blogging-and-talking/\" title=\"WordCamp Dallas, Pasadena Education and Blogging ...\">Weekly Digest: WordCamp Dallas, Pasadena Education and Blogging and Talking</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2008/03/26/what-you-need-to-know-about-wordcamp-dallas/\" title=\"What You Need To Know About WordCamp Dallas\">What You Need To Know About WordCamp Dallas</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2008/01/30/wordcamp-hamburg-germany/\" title=\"WordCamp Hamburg, Germany\">WordCamp Hamburg, Germany</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/11/19/wordcamp-israel-wordpress-tips-talk/\" title=\"WordCamp Israel WordPress Tips Talk\">WordCamp Israel WordPress Tips Talk</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/10/09/wordcamp-israel-october-25-with-lorelle/\" title=\"WordCamp Israel October 25 with Lorelle\">WordCamp Israel October 25 with Lorelle</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/08/08/lorelle-live-at-wordcamp-2007/\" title=\"Lorelle Live at WordCamp 2007\">Lorelle Live at WordCamp 2007</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/07/30/wordcamp-2007-wordcamp-caricatures/\" title=\"WordCamp Caricatures\">WordCamp 2007: WordCamp Caricatures</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/06/20/wordcamp-2007-registration-and-schedule/\" title=\"WordCamp 2007 Registration and Schedule\">WordCamp 2007 Registration and Schedule</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/08/09/all-the-news-that-was-from-wordcamp-2006/\" title=\"All The News That Was from WordCamp 2006\">All The News That Was from WordCamp 2006</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/07/27/whats-new-with-wordpress-news-and-wordcamp-wordpress-conference/\" title=\"Whats New With WordPress News and WordCamp WordPress Conference ...\">Whats New With WordPress News and WordCamp WordPress Conference</a></li>\n</ul>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcamp\" rel=\"tag\">wordcamp</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+tips\" rel=\"tag\">wordpress tips</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcampdallas2008\" rel=\"tag\">wordcampdallas2008</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcampdallas\" rel=\"tag\">wordcampdallas</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+event\" rel=\"tag\">blog event</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+techniques\" rel=\"tag\">wordpress techniques</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=video\" rel=\"tag\">video</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+video\" rel=\"tag\">wordpress video</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcamp+video\" rel=\"tag\">wordcamp video</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a> <a href=\"http://feeds.feedburner.com/LorelleOnWordpress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a> <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/2448/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/2448/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/2448/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/2448/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/2448/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/2448/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/2448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/2448/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=2448&subd=lorelle&ref=&feed=1\" /></div>\";}i:17;a:7:{s:5:\"title\";s:55:\"Weblog Tools Collection: FAQ On WordPress 2.5 Version 2\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3402\";s:4:\"link\";s:83:\"http://weblogtoolscollection.com/archives/2008/04/09/faq-on-wordpress-25-version-2/\";s:11:\"description\";s:6817:\"<p>Although the <a title=\"http://weblogtoolscollection.com/archives/2008/04/01/faq-on-wordpress-25/\" href=\"http://weblogtoolscollection.com/archives/2008/04/01/faq-on-wordpress-25/\" target=\"_blank\">FAQ on WordPress 2.5</a> did an excellent job of answering a ton of frequently asked questions, users chipped in via their comments and ended up asking even more questions. This post will try to highlight a few of the questions brought up in that post and explain the answers in more detail.</p>\n<p><strong>Q.</strong> Is there a way to see a count on the number of comments you have total?</p>\n<p><strong>A.</strong> I&#8217;ve looked around for that particular detail and it has been omitted from WordPress 2.5. However, the good news is that a ticket has already been made (<a title=\"http://trac.wordpress.org/ticket/6471\" href=\"http://trac.wordpress.org/ticket/6471\" target=\"_blank\">Ticket #6471</a>) According to the change history, it looks like this will be one of those things that will come along with 2.6 and not WordPress 2.5.1.</p>\n<p><strong>Q.</strong> What happens if i dont upgrade to WP 2.5?</p>\n<p><strong>A</strong>. This is open to opinion but I&#8217;ll point out the obvious. If you don&#8217;t upgrade, you are putting your blog at risk of being exploited by any known security vulnerability that may have been discovered for your version of WordPress. More specifically, if you are running 2.3.2 or earlier, you are at risk with the exception of 2.0.11 which contains all the security patches for the 2.0 branch. Also, the longer you wait to upgrade, the worst off you&#8217;ll be as the last thing anyone wants is to upgrade their blog and one week later, they have to upgrade again.</p>\n<p><strong>Q.</strong> Where can I find “Multi-file upload with progress bar” as described by Matt on his <a title=\"WordPress 2.5\" href=\"http://wordpress.org/development/2008/03/wordpress-25-brecker/\">launching WP 2.5</a> post?</p>\n<p><strong>A.</strong> In WordPress 2.5, there is not a button specifically for uploading multiple files. After clicking on any of the ADD MEDIA buttons, click on the CHOOSE FILES TO UPLOAD BUTTON. You can select multiple files and then click on the upload button and each file you selected will then be uploaded to WordPress. You can also select a directory where all files within that directory will be uploaded.</p>\n<p><a href=\"http://weblogtoolscollection.com/b2-img/2008/04/multifiles.png\"><img class=\"aligncenter size-full wp-image-3403\" title=\"Multi File Uploads\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/multifiles.png\" alt=\"This Button is both a single and multiple file uploader\" width=\"442\" height=\"179\" /></a></p>\n<p><strong>Q.</strong> What happened to my Import Links ability?</p>\n<p><strong>A.</strong> It&#8217;s still there, it&#8217;s just a little more hidden. You can access the link importer by logging into your WordPress administration area and selecting <strong>WRITE - LINK - IMPORT LINKS</strong>. Note that the <strong>IMPORT LINKS</strong> will show up under the RELATED box in the right hand sidebar.</p>\n<p><strong>Q.</strong> Why cant I “Save and continue editing” anymore?</p>\n<p><strong>A.</strong> At first, it may seem like this option doesn&#8217;t exist anymore but the SAVE button now acts the same as the old <strong>SAVE AND CONTINUE EDITING</strong> button.</p>\n<p><strong>Q.</strong> Some examples of code that uses the [<b></b>gallery<b></b>] feature of 2.5</p>\n<p><strong>A.</strong> WordPress 2.5 introduced something called the gallery shortcode. It looks a little something like this [<b></b>gallery<b></b>] The shortcode can be used in either a post or a page and displays a thumbnail set of gallery images attached to that page/post. Here are a few examples in how you could use this shortcode. </p>\n<p><strong> columns</strong> - specify the number of columns. The gallery will include a break tag at the end of each row, and calculate the column width as appropriate. The default value is 3. If columns is set to 0, no row breaks will be included. For example, to display a 4 column gallery:</p>\n<p><strong>For Example: [<b></b>gallery columns=&#8221;4&#8243;<b></b>]</strong></p>\n<p><strong><br />\n</strong><strong> id</strong> - specify the post ID. The gallery will display images which are attached to that post. The default behaviour if no ID is specified is to display images attached to the current post. For example, to display images attached to post 123:</p>\n<p><strong>For Example: [<b></b>gallery id=&#8221;123&#8243;<b></b>]</strong></p>\n<p><strong>size</strong> - specify the image size to use for the thumbnail display. Valid values include &#8220;thumbnail&#8221;, &#8220;medium&#8221; and &#8220;full&#8221;. The default is &#8220;thumbnail&#8221;. For example, to display a gallery of medium sized images:</p>\n<p><strong>For Example: [<b></b>gallery size=&#8221;medium&#8221;<b></b>]</strong></p>\n<p>Some advanced options are available:<strong> </strong></p>\n<p><strong>orderby</strong> - specify the sort order used to display thumbnails. The default is &#8220;menu_order ASC, ID ASC&#8221;.</p>\n<p><strong> itemtag</strong> - the name of the XHTML tag used to enclose each item in the gallery. The default is &#8220;dl&#8221;.</p>\n<p><strong> icontag</strong> - the name of the XHTML tag used to enclose each thumbnail icon in the gallery. The default is &#8220;dt&#8221;.<strong> </strong></p>\n<p><strong>captiontag</strong> - the name of the XHTML tag used to enclose each caption. The default is &#8220;dd&#8221;. For example, to change the gallery markup to use div, span and p tags:</p>\n<p><strong>For Example: [<b></b>gallery itemtag=&#8221;div&#8221; icontag=&#8221;span&#8221; captiontag=&#8221;p&#8221;<b></b>]</strong></p>\n<p>Special thanks to the folks who put this information in the Codex which you can view here. <a title=\"http://codex.wordpress.org/Using_the_gallery_shortcode\" href=\"http://codex.wordpress.org/Using_the_gallery_shortcode\" target=\"_blank\">(Using The Gallery Shortcode)</a></p>\n<p><a title=\"http://codex.wordpress.org/Using_the_gallery_shortcode\" href=\"http://codex.wordpress.org/Using_the_gallery_shortcode\" target=\"_blank\"><br />\n</a><strong>Q.</strong> How do I edit Widget Configuration?<strong></strong></p>\n<p><strong>A.</strong> Login to your WordPress back end and browse to <strong>DESIGN - WIDGETS</strong>. Look on the right hand side under CURRENT WIDGETS and click on the EDIT link for any widget you would like to configure the settings for.</p>\n<p>If you have any more questions, keep them rolling in as this quite possibly might be a regular feature here at WeblogToolsCollection.com. Also, be sure to read the Codex first if you encounter any issues with WordPress as it&#8217;s the best source of documentation available.</p>\";s:7:\"pubdate\";s:31:\"Wed, 09 Apr 2008 16:04:57 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jeffro2pt0\";}s:7:\"summary\";s:6817:\"<p>Although the <a title=\"http://weblogtoolscollection.com/archives/2008/04/01/faq-on-wordpress-25/\" href=\"http://weblogtoolscollection.com/archives/2008/04/01/faq-on-wordpress-25/\" target=\"_blank\">FAQ on WordPress 2.5</a> did an excellent job of answering a ton of frequently asked questions, users chipped in via their comments and ended up asking even more questions. This post will try to highlight a few of the questions brought up in that post and explain the answers in more detail.</p>\n<p><strong>Q.</strong> Is there a way to see a count on the number of comments you have total?</p>\n<p><strong>A.</strong> I&#8217;ve looked around for that particular detail and it has been omitted from WordPress 2.5. However, the good news is that a ticket has already been made (<a title=\"http://trac.wordpress.org/ticket/6471\" href=\"http://trac.wordpress.org/ticket/6471\" target=\"_blank\">Ticket #6471</a>) According to the change history, it looks like this will be one of those things that will come along with 2.6 and not WordPress 2.5.1.</p>\n<p><strong>Q.</strong> What happens if i dont upgrade to WP 2.5?</p>\n<p><strong>A</strong>. This is open to opinion but I&#8217;ll point out the obvious. If you don&#8217;t upgrade, you are putting your blog at risk of being exploited by any known security vulnerability that may have been discovered for your version of WordPress. More specifically, if you are running 2.3.2 or earlier, you are at risk with the exception of 2.0.11 which contains all the security patches for the 2.0 branch. Also, the longer you wait to upgrade, the worst off you&#8217;ll be as the last thing anyone wants is to upgrade their blog and one week later, they have to upgrade again.</p>\n<p><strong>Q.</strong> Where can I find “Multi-file upload with progress bar” as described by Matt on his <a title=\"WordPress 2.5\" href=\"http://wordpress.org/development/2008/03/wordpress-25-brecker/\">launching WP 2.5</a> post?</p>\n<p><strong>A.</strong> In WordPress 2.5, there is not a button specifically for uploading multiple files. After clicking on any of the ADD MEDIA buttons, click on the CHOOSE FILES TO UPLOAD BUTTON. You can select multiple files and then click on the upload button and each file you selected will then be uploaded to WordPress. You can also select a directory where all files within that directory will be uploaded.</p>\n<p><a href=\"http://weblogtoolscollection.com/b2-img/2008/04/multifiles.png\"><img class=\"aligncenter size-full wp-image-3403\" title=\"Multi File Uploads\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/multifiles.png\" alt=\"This Button is both a single and multiple file uploader\" width=\"442\" height=\"179\" /></a></p>\n<p><strong>Q.</strong> What happened to my Import Links ability?</p>\n<p><strong>A.</strong> It&#8217;s still there, it&#8217;s just a little more hidden. You can access the link importer by logging into your WordPress administration area and selecting <strong>WRITE - LINK - IMPORT LINKS</strong>. Note that the <strong>IMPORT LINKS</strong> will show up under the RELATED box in the right hand sidebar.</p>\n<p><strong>Q.</strong> Why cant I “Save and continue editing” anymore?</p>\n<p><strong>A.</strong> At first, it may seem like this option doesn&#8217;t exist anymore but the SAVE button now acts the same as the old <strong>SAVE AND CONTINUE EDITING</strong> button.</p>\n<p><strong>Q.</strong> Some examples of code that uses the [<b></b>gallery<b></b>] feature of 2.5</p>\n<p><strong>A.</strong> WordPress 2.5 introduced something called the gallery shortcode. It looks a little something like this [<b></b>gallery<b></b>] The shortcode can be used in either a post or a page and displays a thumbnail set of gallery images attached to that page/post. Here are a few examples in how you could use this shortcode. </p>\n<p><strong> columns</strong> - specify the number of columns. The gallery will include a break tag at the end of each row, and calculate the column width as appropriate. The default value is 3. If columns is set to 0, no row breaks will be included. For example, to display a 4 column gallery:</p>\n<p><strong>For Example: [<b></b>gallery columns=&#8221;4&#8243;<b></b>]</strong></p>\n<p><strong><br />\n</strong><strong> id</strong> - specify the post ID. The gallery will display images which are attached to that post. The default behaviour if no ID is specified is to display images attached to the current post. For example, to display images attached to post 123:</p>\n<p><strong>For Example: [<b></b>gallery id=&#8221;123&#8243;<b></b>]</strong></p>\n<p><strong>size</strong> - specify the image size to use for the thumbnail display. Valid values include &#8220;thumbnail&#8221;, &#8220;medium&#8221; and &#8220;full&#8221;. The default is &#8220;thumbnail&#8221;. For example, to display a gallery of medium sized images:</p>\n<p><strong>For Example: [<b></b>gallery size=&#8221;medium&#8221;<b></b>]</strong></p>\n<p>Some advanced options are available:<strong> </strong></p>\n<p><strong>orderby</strong> - specify the sort order used to display thumbnails. The default is &#8220;menu_order ASC, ID ASC&#8221;.</p>\n<p><strong> itemtag</strong> - the name of the XHTML tag used to enclose each item in the gallery. The default is &#8220;dl&#8221;.</p>\n<p><strong> icontag</strong> - the name of the XHTML tag used to enclose each thumbnail icon in the gallery. The default is &#8220;dt&#8221;.<strong> </strong></p>\n<p><strong>captiontag</strong> - the name of the XHTML tag used to enclose each caption. The default is &#8220;dd&#8221;. For example, to change the gallery markup to use div, span and p tags:</p>\n<p><strong>For Example: [<b></b>gallery itemtag=&#8221;div&#8221; icontag=&#8221;span&#8221; captiontag=&#8221;p&#8221;<b></b>]</strong></p>\n<p>Special thanks to the folks who put this information in the Codex which you can view here. <a title=\"http://codex.wordpress.org/Using_the_gallery_shortcode\" href=\"http://codex.wordpress.org/Using_the_gallery_shortcode\" target=\"_blank\">(Using The Gallery Shortcode)</a></p>\n<p><a title=\"http://codex.wordpress.org/Using_the_gallery_shortcode\" href=\"http://codex.wordpress.org/Using_the_gallery_shortcode\" target=\"_blank\"><br />\n</a><strong>Q.</strong> How do I edit Widget Configuration?<strong></strong></p>\n<p><strong>A.</strong> Login to your WordPress back end and browse to <strong>DESIGN - WIDGETS</strong>. Look on the right hand side under CURRENT WIDGETS and click on the EDIT link for any widget you would like to configure the settings for.</p>\n<p>If you have any more questions, keep them rolling in as this quite possibly might be a regular feature here at WeblogToolsCollection.com. Also, be sure to read the Codex first if you encounter any issues with WordPress as it&#8217;s the best source of documentation available.</p>\";}i:18;a:7:{s:5:\"title\";s:46:\"Weblog Tools Collection: In a word, “wow.”\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3406\";s:4:\"link\";s:67:\"http://weblogtoolscollection.com/archives/2008/04/08/in-a-word-wow/\";s:11:\"description\";s:212:\"<p><a href=\"http://www.linux.com/feature/131658\">Linux.com on The new WordPress</a> <em>How do I like WordPress 2.5? In a word, &#8220;wow.&#8221; </em>Thanks <a href=\"http://www.chrismlindsey.com/\">Chris</a></p>\";s:7:\"pubdate\";s:31:\"Wed, 09 Apr 2008 01:14:10 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:212:\"<p><a href=\"http://www.linux.com/feature/131658\">Linux.com on The new WordPress</a> <em>How do I like WordPress 2.5? In a word, &#8220;wow.&#8221; </em>Thanks <a href=\"http://www.chrismlindsey.com/\">Chris</a></p>\";}i:19;a:7:{s:5:\"title\";s:33:\"Dougal Campbell: Upgrade or else!\";s:4:\"guid\";s:32:\"http://dougal.gunters.org/?p=902\";s:4:\"link\";s:57:\"http://dougal.gunters.org/blog/2008/04/08/upgrade-or-else\";s:11:\"description\";s:3108:\"<p>Okay, people, if you are running any version of <a href=\"http://wordpress.org/\">WordPress</a> older than 2.3.3<a title=\"Footnote\" href=\"http://dougal.gunters.org/blog/category/wordpress/feed/#note2011\">*</a>, you need to <strong>upgrade now</strong>. Seriously. WordPress 2.3.2 and older have security holes that are being actively exploited by hackers to inject spam links into blogs which are not maintained. And search engines like <a href=\"http://technorati.com/weblog/2008/04/424.html\">Technorati are de-listing hacked blogs</a>. Are you listening now? Do I have your attention? <strong>Upgrade your web apps before you get hacked and your site drops off the search-engine radar</strong>.</p>\n<p>While the Technorati article specifically talks about WordPress sites, this goes for any web application. You need to pay attention to updates which are released, and upgrade whenever a security probem is fixed. WordPress gets particular attention due to its popularity and the sheer number of installed sites out in the wild. But it is no more or less secure than any other similar web application. So whatever you&#8217;re running, keep it up-to-date.</p>\n<p>And the same goes for any add-ons &#8212; if you install third-part plugins or themes, make sure you keep up with updates. WordPress 2.5 makes updating plugins easier than ever. Review your Plugins page from time to time, and pay attention when it tells you that a newer version of a plugin is available.</p>\n<p>I see comments from people all the time saying that they don&#8217;t want to upgrade because it might break this theme or that plugin that they have installed. To those people, I say, GET OVER IT. <strong>The security of your site is important.</strong> If some theme or plugin is not compatible with a newer version of WordPress, ask the author politely to update it. Or find a replacement. Or live without it. I have in excess of 25 plugins active here. But there&#8217;s not one of them that I would hesitate to deactivate when it comes to security of my site.</p>\n<p>There are several ways to keep up with new WordPress releases. The Dashboard shows you all sorts of news from the WP community, including announcements from the <a href=\"http://wordpress.org/development/\">Development Blog</a>. There are several <a href=\"http://codex.wordpress.org/Mailing_Lists\">mailing lists</a>. If those lists are too noisy for you, you can get just release announcements by signing up on <a href=\"http://freshmeat.net/\">Freshmeat.net</a> and subscribing to the <a href=\"http://freshmeat.net/projects/wordpress/\">WordPress Project</a>. I normally submit the Freshmeat update within 24 hours of an official release.</p>\n<p id=\"note2011\"><small>* One exception is WordPress version 2.0.11 (or the 2.0 svn branch, more generally), which is maintained with security updates for the Debian package.</small></p>\n<p><a href=\"http://sharethis.com/item?&wp=2.5.1-alpha&amp;publisher=06a70a77-1fc0-46a9-81d1-6a696e6ed23f&amp;title=Upgrade+or+else%21&amp;url=http%3A%2F%2Fdougal.gunters.org%2Fblog%2F2008%2F04%2F08%2Fupgrade-or-else\">ShareThis</a></p>\";s:7:\"pubdate\";s:31:\"Tue, 08 Apr 2008 16:48:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"Dougal\";}s:7:\"summary\";s:3108:\"<p>Okay, people, if you are running any version of <a href=\"http://wordpress.org/\">WordPress</a> older than 2.3.3<a title=\"Footnote\" href=\"http://dougal.gunters.org/blog/category/wordpress/feed/#note2011\">*</a>, you need to <strong>upgrade now</strong>. Seriously. WordPress 2.3.2 and older have security holes that are being actively exploited by hackers to inject spam links into blogs which are not maintained. And search engines like <a href=\"http://technorati.com/weblog/2008/04/424.html\">Technorati are de-listing hacked blogs</a>. Are you listening now? Do I have your attention? <strong>Upgrade your web apps before you get hacked and your site drops off the search-engine radar</strong>.</p>\n<p>While the Technorati article specifically talks about WordPress sites, this goes for any web application. You need to pay attention to updates which are released, and upgrade whenever a security probem is fixed. WordPress gets particular attention due to its popularity and the sheer number of installed sites out in the wild. But it is no more or less secure than any other similar web application. So whatever you&#8217;re running, keep it up-to-date.</p>\n<p>And the same goes for any add-ons &#8212; if you install third-part plugins or themes, make sure you keep up with updates. WordPress 2.5 makes updating plugins easier than ever. Review your Plugins page from time to time, and pay attention when it tells you that a newer version of a plugin is available.</p>\n<p>I see comments from people all the time saying that they don&#8217;t want to upgrade because it might break this theme or that plugin that they have installed. To those people, I say, GET OVER IT. <strong>The security of your site is important.</strong> If some theme or plugin is not compatible with a newer version of WordPress, ask the author politely to update it. Or find a replacement. Or live without it. I have in excess of 25 plugins active here. But there&#8217;s not one of them that I would hesitate to deactivate when it comes to security of my site.</p>\n<p>There are several ways to keep up with new WordPress releases. The Dashboard shows you all sorts of news from the WP community, including announcements from the <a href=\"http://wordpress.org/development/\">Development Blog</a>. There are several <a href=\"http://codex.wordpress.org/Mailing_Lists\">mailing lists</a>. If those lists are too noisy for you, you can get just release announcements by signing up on <a href=\"http://freshmeat.net/\">Freshmeat.net</a> and subscribing to the <a href=\"http://freshmeat.net/projects/wordpress/\">WordPress Project</a>. I normally submit the Freshmeat update within 24 hours of an official release.</p>\n<p id=\"note2011\"><small>* One exception is WordPress version 2.0.11 (or the 2.0 svn branch, more generally), which is maintained with security updates for the Debian package.</small></p>\n<p><a href=\"http://sharethis.com/item?&wp=2.5.1-alpha&amp;publisher=06a70a77-1fc0-46a9-81d1-6a696e6ed23f&amp;title=Upgrade+or+else%21&amp;url=http%3A%2F%2Fdougal.gunters.org%2Fblog%2F2008%2F04%2F08%2Fupgrade-or-else\">ShareThis</a></p>\";}i:20;a:7:{s:5:\"title\";s:69:\"Weblog Tools Collection: Vulnerable WordPress Blogs Not Being Indexed\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3401\";s:4:\"link\";s:98:\"http://weblogtoolscollection.com/archives/2008/04/08/vulnerable-wordpress-blogs-not-being-indexed/\";s:11:\"description\";s:2575:\"<p><a href=\"http://technorati.com/weblog/2008/04/424.html\">Vulnerable WordPress Blogs Not Being Indexed</a>: Technorati has decided to not index vulnerable and exploited WordPress blogs. This comes after the <a href=\"http://www.blogherald.com/2008/04/08/technorati-no-longer-indexing-hacked-or-vulnerable-wordpress-blogs/\">recent spat of hacks</a> that were discovered on <a href=\"http://www.deepjiveinterests.com/2008/04/07/breaking-tailrank-exposes-massive-number-of-blogs-hacked/\">various high profile blogs and websites</a>. What was even more interesting was the fact that <a href=\"http://gigaom.com/2008/04/07/blog-hacks-coming-back-to-roost/\">some of these hacks and exploitations</a> might have come from <a href=\"http://www.yugatech.com/blog/blogosphere/massive-blog-hackery-exposed/\">covert and encrypted code hidden in various themes available for free over the web</a>. The moral of this story is that you need to upgrade your WordPress blog now to WordPress 2.5.</p>\n<p>Just so that everyone is aware, WordPress 2.5 is the latest stable version and this should be the version that everyone should upgrade to. <span>Any older versions leaves you vulnerable</span>. [EDIT] As mentioned on the <a href=\"http://wordpress.org/download/legacy/\">legacy 2.0 page</a>, WordPress 2.0.11 is the latest stable download with all the latest security fixes for the 2.0 branch. However, WordPress 2.5 is still the latest and the greatest and should be everyones upgrade target.</p>\n<p>As for themes, if you feel that the theme you are using might be suspect of something strange, just disable it and get something else. I suggest you download themes from the original author&#8217;s website/blog and stay away from any theme that has an encrypted footer (though that would be hard to determine without looking at the code). At weblogtoolscollection.com we try our darnest to link directly to theme authors for the download.</p>\n<p>Technorati is just the beginning. If your blog has spammy links, has covert hidden pages or links, is used for nefarious purposes, even without your knowledge, you are being penalized by the search engines. We are going to put together a post on how to figure out if your blog is hacked/exploited, clean up your blog if it <em>is</em> hacked, get your blog back to order, find spammy pages if they do exist and how to get your blog re-indexed. In the meantime, if you know of a good resource, please let us know and we will add it to the post.</p>\n<p>Today is a good day to upgrade to <a href=\"http://wordpress.org/download/\">WordPress 2.5</a></p>\";s:7:\"pubdate\";s:31:\"Tue, 08 Apr 2008 14:26:38 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:2575:\"<p><a href=\"http://technorati.com/weblog/2008/04/424.html\">Vulnerable WordPress Blogs Not Being Indexed</a>: Technorati has decided to not index vulnerable and exploited WordPress blogs. This comes after the <a href=\"http://www.blogherald.com/2008/04/08/technorati-no-longer-indexing-hacked-or-vulnerable-wordpress-blogs/\">recent spat of hacks</a> that were discovered on <a href=\"http://www.deepjiveinterests.com/2008/04/07/breaking-tailrank-exposes-massive-number-of-blogs-hacked/\">various high profile blogs and websites</a>. What was even more interesting was the fact that <a href=\"http://gigaom.com/2008/04/07/blog-hacks-coming-back-to-roost/\">some of these hacks and exploitations</a> might have come from <a href=\"http://www.yugatech.com/blog/blogosphere/massive-blog-hackery-exposed/\">covert and encrypted code hidden in various themes available for free over the web</a>. The moral of this story is that you need to upgrade your WordPress blog now to WordPress 2.5.</p>\n<p>Just so that everyone is aware, WordPress 2.5 is the latest stable version and this should be the version that everyone should upgrade to. <span>Any older versions leaves you vulnerable</span>. [EDIT] As mentioned on the <a href=\"http://wordpress.org/download/legacy/\">legacy 2.0 page</a>, WordPress 2.0.11 is the latest stable download with all the latest security fixes for the 2.0 branch. However, WordPress 2.5 is still the latest and the greatest and should be everyones upgrade target.</p>\n<p>As for themes, if you feel that the theme you are using might be suspect of something strange, just disable it and get something else. I suggest you download themes from the original author&#8217;s website/blog and stay away from any theme that has an encrypted footer (though that would be hard to determine without looking at the code). At weblogtoolscollection.com we try our darnest to link directly to theme authors for the download.</p>\n<p>Technorati is just the beginning. If your blog has spammy links, has covert hidden pages or links, is used for nefarious purposes, even without your knowledge, you are being penalized by the search engines. We are going to put together a post on how to figure out if your blog is hacked/exploited, clean up your blog if it <em>is</em> hacked, get your blog back to order, find spammy pages if they do exist and how to get your blog re-indexed. In the meantime, if you know of a good resource, please let us know and we will add it to the post.</p>\n<p>Today is a good day to upgrade to <a href=\"http://wordpress.org/download/\">WordPress 2.5</a></p>\";}i:21;a:7:{s:5:\"title\";s:50:\"Donncha: The best way to test new WordPress themes\";s:4:\"guid\";s:29:\"http://ocaoimh.ie/?p=89493646\";s:4:\"link\";s:71:\"http://ocaoimh.ie/2008/04/08/the-best-way-to-test-new-wordpress-themes/\";s:11:\"description\";s:2012:\"<ol>\n<li> Download the <a href=\"http://ocaoimh.ie/theme-tester/\">Theme Tester</a> plugin for WordPress, install and activate it.</li>\n<li> Download themes from <strike>http://themes.wordpress.net/</strike> (or maybe not, see Adam&#8217;s comment below!) and try them out without annoying your visitors by changing themes on them.</li>\n</ol>\n<div align=\"center\"><img src=\"http://ocaoimh.ie/wp-content/uploads/2008/04/themetester.png\" alt=\"\" title=\"theme tester\" width=\"424\" height=\"233\" class=\"alignnone size-full wp-image-89493647\" /></div>\n<p>My new <a href=\"http://ocaoimh.ie/theme-tester/\">Theme Tester</a> plugin allows you to change themes and view the results without the visitors to your blog seeing any changes.<br />\nThere is one cavaet. Your visitors may notice some changes if your current theme uses blog options that a new theme overwrites. This could happen if for example you&#8217;re testing a newer version of your current theme or testing a theme based on the same engine as your current theme. The K2 theme springs to mind here because it&#8217;s the base for several other themes but YMMV.</p>\n<p>I used the plugin already when I trawled the themes sites and the archives at <a href=\"http://weblogtoolscollection.com/\">Weblog Tools Collection</a> for a new theme for this place. As you can guess if you&#8217;re a regular visitor, I haven&#8217;t changed theme yet, but I found a couple of very pretty designs that may make an appearance here eventually.</p>\n<p><img src=\"http://ocaoimh.ie/?voyeur=1\" /></p><p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/2005/06/09/wpmu-using-wordpress-themes/\" rel=\"bookmark\" title=\"Permanent Link: WPMU - Using WordPress Themes\">WPMU - Using WordPress Themes</a></li><li><a href=\"http://ocaoimh.ie/theme-tester/\" rel=\"bookmark\" title=\"Permanent Link: Theme Tester\">Theme Tester</a></li><li><a href=\"http://ocaoimh.ie/2007/03/28/wordpress-mu-12/\" rel=\"bookmark\" title=\"Permanent Link: WordPress MU 1.2\">WordPress MU 1.2</a></li></ul></p>\";s:7:\"pubdate\";s:31:\"Tue, 08 Apr 2008 12:15:10 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Donncha\";}s:7:\"summary\";s:2012:\"<ol>\n<li> Download the <a href=\"http://ocaoimh.ie/theme-tester/\">Theme Tester</a> plugin for WordPress, install and activate it.</li>\n<li> Download themes from <strike>http://themes.wordpress.net/</strike> (or maybe not, see Adam&#8217;s comment below!) and try them out without annoying your visitors by changing themes on them.</li>\n</ol>\n<div align=\"center\"><img src=\"http://ocaoimh.ie/wp-content/uploads/2008/04/themetester.png\" alt=\"\" title=\"theme tester\" width=\"424\" height=\"233\" class=\"alignnone size-full wp-image-89493647\" /></div>\n<p>My new <a href=\"http://ocaoimh.ie/theme-tester/\">Theme Tester</a> plugin allows you to change themes and view the results without the visitors to your blog seeing any changes.<br />\nThere is one cavaet. Your visitors may notice some changes if your current theme uses blog options that a new theme overwrites. This could happen if for example you&#8217;re testing a newer version of your current theme or testing a theme based on the same engine as your current theme. The K2 theme springs to mind here because it&#8217;s the base for several other themes but YMMV.</p>\n<p>I used the plugin already when I trawled the themes sites and the archives at <a href=\"http://weblogtoolscollection.com/\">Weblog Tools Collection</a> for a new theme for this place. As you can guess if you&#8217;re a regular visitor, I haven&#8217;t changed theme yet, but I found a couple of very pretty designs that may make an appearance here eventually.</p>\n<p><img src=\"http://ocaoimh.ie/?voyeur=1\" /></p><p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/2005/06/09/wpmu-using-wordpress-themes/\" rel=\"bookmark\" title=\"Permanent Link: WPMU - Using WordPress Themes\">WPMU - Using WordPress Themes</a></li><li><a href=\"http://ocaoimh.ie/theme-tester/\" rel=\"bookmark\" title=\"Permanent Link: Theme Tester\">Theme Tester</a></li><li><a href=\"http://ocaoimh.ie/2007/03/28/wordpress-mu-12/\" rel=\"bookmark\" title=\"Permanent Link: WordPress MU 1.2\">WordPress MU 1.2</a></li></ul></p>\";}i:22;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Plugin releases for 4/7\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/07/wordpress-plugin-releases-for-47/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/07/wordpress-plugin-releases-for-47/\";s:11:\"description\";s:2503:\"<p><strong>Plugin Central</strong></p>\n<p>Plugin Central is a WordPress plugin management add-on to automatically install and update WordPress plugins. It works with WordPress 2.5+ only. Install plugin by typing the name of the plugin and allows you to install multiple plugins at once. </p>\n<p><a href=\"http://www.prelovac.com/vladimir/wordpress-plugins/plugin-central\" target=\"_blank\">Release Page</a> | <a href=\"http://www.prelovac.com/vladimir/download-manager.php?id=9\" target=\"_blank\">Download</a></p>\n<p><strong>Login Error Cleanup</strong></p>\n<p>Returns the message &#8220;Error&#8221; when the username and password combination are invalid while logging into WordPress account. The message helps thwart attackers who are trying to guess username and passwords.</p>\n<p><a href=\"http://www.planetmike.com/plugins/lec/\" target=\"_blank\">Release Page</a> | <a href=\"http://www.planetmike.com/software/lec.zip\" target=\"_blank\">Download</a></p>\n<p><strong>ReadySetFlickr</strong></p>\n<p>ReadySetFlickr will display a photo set from Flickr. Two options for layout display. Also supports a random and a most recent option.</p>\n<p><a href=\"http://www.husar.us/blog/projects/readysetflickr-wordpress-widgetplugin\" target=\"_blank\">Release Page</a> | <a href=\"http://www.husar.us/blog/wp-content/plugins/wp-download_monitor/download.php?id=3\" target=\"_blank\">Download</a></p>\n<p><strong>Widgetized Admin Dashboard</strong></p>\n<p>Widgetized Admin Dashboard is a Wordpress Plugin for 2.5+ that lets you edit the Wordpress Dashboard in the Design &gt; Widgets area.</p>\n<p><a href=\"http://pressography.com/plugins/widgetized-admin-dashboard/\" target=\"_blank\">Release Page</a> | <a href=\"http://pressography.com/plugins/widgetizeddashboard.zip\" target=\"_blank\">Download</a></p>\n<p><strong>KeywordLuv</strong></p>\n<p>KeywordLuv separates commentators name from their keywords in the link to their website, giving them improved anchor text.</p>\n<p><a href=\"http://www.scratch99.com/wordpress-plugin-keywordluv/\" target=\"_blank\">Release Page</a> | <a href=\"http://www.scratch99.com/?download=keywordluv-1.03.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Login-box</strong></p>\n<p>Login-box is a plugin that inserts a hidden login box into all the pages that can be opened with Ctrl + E.</p>\n<p><a href=\"http://danillonunes.net/wordpress/login-box-en/\" target=\"_blank\">Release Page</a> | <a href=\"http://danillonunes.net/downloads/wordpress/plugins/login-box/login-box-1.0.zip\" target=\"_blank\">Download</a></p>\";s:7:\"pubdate\";s:31:\"Tue, 08 Apr 2008 03:55:24 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Keith Dsouza\";}s:7:\"summary\";s:2503:\"<p><strong>Plugin Central</strong></p>\n<p>Plugin Central is a WordPress plugin management add-on to automatically install and update WordPress plugins. It works with WordPress 2.5+ only. Install plugin by typing the name of the plugin and allows you to install multiple plugins at once. </p>\n<p><a href=\"http://www.prelovac.com/vladimir/wordpress-plugins/plugin-central\" target=\"_blank\">Release Page</a> | <a href=\"http://www.prelovac.com/vladimir/download-manager.php?id=9\" target=\"_blank\">Download</a></p>\n<p><strong>Login Error Cleanup</strong></p>\n<p>Returns the message &#8220;Error&#8221; when the username and password combination are invalid while logging into WordPress account. The message helps thwart attackers who are trying to guess username and passwords.</p>\n<p><a href=\"http://www.planetmike.com/plugins/lec/\" target=\"_blank\">Release Page</a> | <a href=\"http://www.planetmike.com/software/lec.zip\" target=\"_blank\">Download</a></p>\n<p><strong>ReadySetFlickr</strong></p>\n<p>ReadySetFlickr will display a photo set from Flickr. Two options for layout display. Also supports a random and a most recent option.</p>\n<p><a href=\"http://www.husar.us/blog/projects/readysetflickr-wordpress-widgetplugin\" target=\"_blank\">Release Page</a> | <a href=\"http://www.husar.us/blog/wp-content/plugins/wp-download_monitor/download.php?id=3\" target=\"_blank\">Download</a></p>\n<p><strong>Widgetized Admin Dashboard</strong></p>\n<p>Widgetized Admin Dashboard is a Wordpress Plugin for 2.5+ that lets you edit the Wordpress Dashboard in the Design &gt; Widgets area.</p>\n<p><a href=\"http://pressography.com/plugins/widgetized-admin-dashboard/\" target=\"_blank\">Release Page</a> | <a href=\"http://pressography.com/plugins/widgetizeddashboard.zip\" target=\"_blank\">Download</a></p>\n<p><strong>KeywordLuv</strong></p>\n<p>KeywordLuv separates commentators name from their keywords in the link to their website, giving them improved anchor text.</p>\n<p><a href=\"http://www.scratch99.com/wordpress-plugin-keywordluv/\" target=\"_blank\">Release Page</a> | <a href=\"http://www.scratch99.com/?download=keywordluv-1.03.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Login-box</strong></p>\n<p>Login-box is a plugin that inserts a hidden login box into all the pages that can be opened with Ctrl + E.</p>\n<p><a href=\"http://danillonunes.net/wordpress/login-box-en/\" target=\"_blank\">Release Page</a> | <a href=\"http://danillonunes.net/downloads/wordpress/plugins/login-box/login-box-1.0.zip\" target=\"_blank\">Download</a></p>\";}i:23;a:7:{s:5:\"title\";s:50:\"Lorelle on WP: Strip Down Your Blog: CSS Naked Day\";s:4:\"guid\";s:36:\"http://lorelle.wordpress.com/?p=2445\";s:4:\"link\";s:75:\"http://lorelle.wordpress.com/2008/04/07/strip-down-your-blog-css-naked-day/\";s:11:\"description\";s:14380:\"<div class=\"snap_preview\"><br /><p><a href=\"http://lorelle.wordpress.com/tag/web-design/\" title=\"Web Design\"><img src=\"http://lorelle.files.wordpress.com/2007/05/cssarticles.gif\" alt=\"Articles on Web Design and CSS\" align=\"right\" /></a>Get ready to go naked. On April 9th, 2008, hundreds, possibly thousands, of blogs and websites will go naked in honor of <a href=\"http://naked.dustindiaz.com/\" title=\"CSS Naked Day\">CSS Naked Day</a>. Join fellow WordPress bloggers in honoring web designers and WordPress Theme builders by going naked.</p>\n<p>This is the third year of the annual CSS Naked Day which honors web design and designers around the world who help make our websites and blogs look &#8220;pretty&#8221; to the eye while still being totally functional under the hood. Dustin Diaz wanted to give the web world an opportunity to remind everyone of the benefits of CSS web page design. By removing the stylesheet for the day, the world would see naked web pages, giving a little more appreciation for the skills of web page designers.</p>\n<p>As explained yesterday in the <a href=\"http://www.blogherald.com/2008/04/06/css-naked-day-on-april-9th-2008/\" title=\"CSS Naked Day on April 9th, 2008\">Blog Herald announcement of CSS Naked Day</a>, this is also an opportunity to showcase how <a href=\"http://lorelle.wordpress.com/2005/09/24/meet-them-benefits-of-compliance-with-web-standards/\" title=\"Benefits of Compliance with Web Standards\">usable and accessible</a> your web page structure is even without the pretty, reminding the world that it is the <a href=\"http://lorelle.wordpress.com/2006/02/27/website-accessibility-is-now-getting-serious-in-the-usa/\" title=\"Website Accessibility is Now Getting Serious in the USA\">law that your website must accessible</a> by everyone using any method to access your blog. </p>\n<h4>Make Your WordPress Blog Naked</h4>\n<p>Going naked is easy for WordPress blogs. In <a href=\"http://lorelle.wordpress.com/2007/04/04/lorelle-is-naked/\" title=\"Lorelle is Naked\">Lorelle is Naked</a>, I explained the various options last year on how to turn off your blog&#8217;s stylesheet using WordPress Plugins with <a href=\"http://www.ajalapus.com/downloads/css-naked-day/\" title=\"WordPress Naked Day Plugin\">WordPress Naked Day Plugin</a> for all WordPress versions, <a href=\"http://guff.szub.net/2006/04/03/css-naked-day/\" title=\"CSS Naked Day WordPress Plugin\">CSS Naked Day WordPress Plugin</a> for pre-WordPress 2x blogs, the <a href=\"http://www.dustindiaz.com/naked-day/#naked_function\" title=\"Diaz created the Naked Day PHP Function script\">Naked Day PHP Function script</a> for non-WordPress and PHP driven blogs, do it manually by renaming your blog&#8217;s stylesheet for the day, or removing the stylesheet temporarily on WordPress.com blogs.</p>\n<p>Recent versions of WordPress will automatically reset to the Default WordPress Theme if no Theme is detected, which means changing the <code>style.css</code> file will revert your Theme to the Default/Kubrick style. To override this redirection, you must use the <a href=\"http://www.ajalapus.com/downloads/css-naked-day/\" title=\"WordPress Naked Day Plugin\">WordPress Naked Day Plugin</a> or create a separate Theme that has no styles in the stylesheet, which I&#8217;ve prepared just for this event.</p>\n<p>I have stripped down the styles in the Default WordPress Theme for current versions of WordPress and pre-WordPress 2.1 versions which changed some of the sidebar tags. </p>\n<ol>\n<li>Unzip and upload the Theme version of choice to your <code>themes</code> directory.\n<ul>\n<li><a href=\"http://www.cameraontheroad.com/files/defaultblank2_5.zip\" title=\"Zip file for Default Blank WordPress Theme for current versions of WordPress\">Default Blank WordPress Theme for current versions of WordPress for CSS Naked Day</a> (zip)</li>\n<li><a href=\"http://www.cameraontheroad.com/files/defaultblank.zip\" title=\"Zip file for Default Blank WordPress Theme for CSS Naked Day\">Default Blank WordPress Theme for CSS Naked Day (Pre-WordPress 2.1)</a> (zip)</li>\n</ul>\n</li>\n<li>Activate the Theme through the Presentation or Design panel.</li>\n<li>Switch back to your regularly scheduled WordPress Theme on April 10.</li>\n</ol>\n<p>For those on WordPress.com, you can also participate if you are using the <a href=\"http://www.plaintxt.org/themes/sandbox/\" title=\"Sandbox\">Sandbox WordPress Theme</a> with the <a href=\"http://lorelle.wordpress.com/2006/08/06/wordpresscom-custom-css-all-the-styles-for-the-sandbox-theme/\" title=\"CSS Extra\">WordPress.com CSS Extra</a> feature. </p>\n<ol>\n<li>From the WordPress Administration Panels, go to <strong>Presentation &gt; Edit CSS</strong>.</li>\n<li>Cut ALL of the styles from your custom stylesheet and paste them into a text file. Save it with a name you will remember in a very safe place, leaving a blank stylesheet.</li>\n<li>Choose the option: <strong>Start from scratch and just use this</strong> to create a blank stylesheet.</li>\n<li>Click <strong>Save Stylesheet</strong>.</li>\n<li>View your WordPress.com blog and all the design elements will be gone. The layout structure will remain but it will be “naked”.</li>\n</ol>\n<p><a href=\"http://lorelle.wordpress.com/2007/04/04/lorelle-is-naked/\" title=\"Lorelle is Naked\">Reverse the process to restore</a> your Sandbox Theme on April 10. </p>\n<p>Be sure and <a href=\"http://naked.dustindiaz.com/#signup\" title=\"naked day signup form\">sign up for the CSS Naked Day</a> so your blog will be celebrated as one of those honoring web design and designers. Last year, almost 2,000 sites signed up for CSS Naked Day. So far, the list is over 400. Let your naked stance join with others on April 9.</p>\n<h4>Related Articles</h4>\n<ul>\n<li><a href=\"http://www.blogherald.com/2007/03/30/strip-down-naked-css-day/\" title=\"Naked CSS Day\">Blog Herald - Strip Down: Naked CSS Day Instructions</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/04/28/bloggers-share-step-by-step-tips-for-increasing-blog-usability/\" title=\"Bloggers Share Step-by-Step Tips for Increasing Blog Usability\">Bloggers Share Step-by-Step Tips for Increasing Blog Usability</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/09/01/one-year-anniversary-review-accessibility-and-usability/\" title=\"Accessibility and Usability\">One Year Anniversary Review: Accessibility and Usability</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/08/12/how-do-you-know-if-a-blog-has-integrity/\" title=\"How Do You Know If a Blog Has Integrity?\">How Do You Know If a Blog Has Integrity?</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/03/15/creative-usability-with-wordpresscom-blogs/\" title=\"Creative Usability with WordPress.com Blogs\">Creative Usability with WordPress.com Blogs</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/02/27/website-accessibility-is-now-getting-serious-in-the-usa/\" title=\"Website Accessibility is Now Getting Serious in the USA\">Website Accessibility is Now Getting Serious in the USA</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/02/21/usability-isnt-expensive-its-practical-usability-is-useful/\" title=\"Usability Isnt Expensive. Its Practical. Usability is Useful.\">Usability Isnt Expensive. Its Practical. Usability is Useful.</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/02/21/beauty-is-only-skin-deep-designing-blogs-for-feeds-search-engines-and-audience/\" title=\"Designing Blogs For Feeds, Search Engines and Audience\">Beauty is Only Skin Deep: Designing Blogs For Feeds, Search Engines and Audience</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/02/07/accessibility-for-everyone-including-the-colorblind/\" title=\"For Everyone, Including the Colorblind\">Accessibility: For Everyone, Including the Colorblind</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/12/04/accessibility-wins-seo-plus-plus/\" title=\"Accessibility Wins SEO Plus Plus\">Accessibility Wins SEO Plus Plus</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/12/02/image-replacement-techniques/\" title=\"Image Replacement Techniques\">Image Replacement Techniques</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/11/15/accessibility-doesnt-have-to-be-boring/\" title=\"Accessibility Doesnt Have to Be Boring\">Accessibility Doesnt Have to Be Boring</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/11/12/validate-an-entire-website/\" title=\"Validate an Entire Website\">Validate an Entire Website</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/11/04/css-and-web-standard-feeds-in-one-place/\" title=\"CSS and Web Standard Feeds in One Place\">CSS and Web Standard Feeds in One Place</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/11/03/css-switching-styles-for-the-low-vision-user/\" title=\"CSS Switching Styles for the Low Vision User\">CSS Switching Styles for the Low Vision User</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/10/22/more-than-you-want-to-know-search-engine-articles-information-and-resources/\" title=\"More Than You Want to Know - Search Engine Articles, Information, and Resources\">More Than You Want to Know - Search Engine Articles, Information, and Resources</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/10/17/step-by-step-website-development-check-list/\" title=\"Step-By-Step Website Development - Check List\">Step-By-Step Website Development - Check List</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/10/11/css-maintainability-serious-style-sheets-2/\" title=\"CSS Maintainability - Serious Style Sheets\">CSS Maintainability - Serious Style Sheets</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/10/04/css-and-web-page-design-list-of-resources/\" title=\"CSS and Web Page Design List of Resources\">CSS and Web Page Design List of Resources</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/25/website-development-international-standards-and-languages/\" title=\"Website Development - International Standards and Languages\">Website Development - International Standards and Languages</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/24/validating-the-code-behind-the-page/\" title=\"Validating the Code Behind the Page\">Validating the Code Behind the Page</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/24/meet-them-benefits-of-compliance-with-web-standards/\" title=\"Benefits of Compliance with Web Standards\">Meet Them: Benefits of Compliance with Web Standards</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/07/blogging-about-disabilities/\" title=\"Blogging About Disabilities\">Blogging About Disabilities</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/01/wordpress-in-your-language/\" title=\"WordPress in Your Language\">WordPress in Your Language</a></li>\n</ul>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=css+naked+day\" rel=\"tag\">css naked day</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=naked+css\" rel=\"tag\">naked css</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=css\" rel=\"tag\">css</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=web+design\" rel=\"tag\">web design</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+event\" rel=\"tag\">blog event</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=turn+off+stylesheets\" rel=\"tag\">turn off stylesheets</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=accessibility\" rel=\"tag\">accessibility</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=usability\" rel=\"tag\">usability</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=honor+web+designers\" rel=\"tag\">honor web designers</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a> <a href=\"http://feeds.feedburner.com/LorelleOnWordpress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a> <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/2445/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/2445/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/2445/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/2445/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/2445/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/2445/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/2445/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=2445&subd=lorelle&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Mon, 07 Apr 2008 18:00:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Lorelle VanFossen\";}s:7:\"summary\";s:14380:\"<div class=\"snap_preview\"><br /><p><a href=\"http://lorelle.wordpress.com/tag/web-design/\" title=\"Web Design\"><img src=\"http://lorelle.files.wordpress.com/2007/05/cssarticles.gif\" alt=\"Articles on Web Design and CSS\" align=\"right\" /></a>Get ready to go naked. On April 9th, 2008, hundreds, possibly thousands, of blogs and websites will go naked in honor of <a href=\"http://naked.dustindiaz.com/\" title=\"CSS Naked Day\">CSS Naked Day</a>. Join fellow WordPress bloggers in honoring web designers and WordPress Theme builders by going naked.</p>\n<p>This is the third year of the annual CSS Naked Day which honors web design and designers around the world who help make our websites and blogs look &#8220;pretty&#8221; to the eye while still being totally functional under the hood. Dustin Diaz wanted to give the web world an opportunity to remind everyone of the benefits of CSS web page design. By removing the stylesheet for the day, the world would see naked web pages, giving a little more appreciation for the skills of web page designers.</p>\n<p>As explained yesterday in the <a href=\"http://www.blogherald.com/2008/04/06/css-naked-day-on-april-9th-2008/\" title=\"CSS Naked Day on April 9th, 2008\">Blog Herald announcement of CSS Naked Day</a>, this is also an opportunity to showcase how <a href=\"http://lorelle.wordpress.com/2005/09/24/meet-them-benefits-of-compliance-with-web-standards/\" title=\"Benefits of Compliance with Web Standards\">usable and accessible</a> your web page structure is even without the pretty, reminding the world that it is the <a href=\"http://lorelle.wordpress.com/2006/02/27/website-accessibility-is-now-getting-serious-in-the-usa/\" title=\"Website Accessibility is Now Getting Serious in the USA\">law that your website must accessible</a> by everyone using any method to access your blog. </p>\n<h4>Make Your WordPress Blog Naked</h4>\n<p>Going naked is easy for WordPress blogs. In <a href=\"http://lorelle.wordpress.com/2007/04/04/lorelle-is-naked/\" title=\"Lorelle is Naked\">Lorelle is Naked</a>, I explained the various options last year on how to turn off your blog&#8217;s stylesheet using WordPress Plugins with <a href=\"http://www.ajalapus.com/downloads/css-naked-day/\" title=\"WordPress Naked Day Plugin\">WordPress Naked Day Plugin</a> for all WordPress versions, <a href=\"http://guff.szub.net/2006/04/03/css-naked-day/\" title=\"CSS Naked Day WordPress Plugin\">CSS Naked Day WordPress Plugin</a> for pre-WordPress 2x blogs, the <a href=\"http://www.dustindiaz.com/naked-day/#naked_function\" title=\"Diaz created the Naked Day PHP Function script\">Naked Day PHP Function script</a> for non-WordPress and PHP driven blogs, do it manually by renaming your blog&#8217;s stylesheet for the day, or removing the stylesheet temporarily on WordPress.com blogs.</p>\n<p>Recent versions of WordPress will automatically reset to the Default WordPress Theme if no Theme is detected, which means changing the <code>style.css</code> file will revert your Theme to the Default/Kubrick style. To override this redirection, you must use the <a href=\"http://www.ajalapus.com/downloads/css-naked-day/\" title=\"WordPress Naked Day Plugin\">WordPress Naked Day Plugin</a> or create a separate Theme that has no styles in the stylesheet, which I&#8217;ve prepared just for this event.</p>\n<p>I have stripped down the styles in the Default WordPress Theme for current versions of WordPress and pre-WordPress 2.1 versions which changed some of the sidebar tags. </p>\n<ol>\n<li>Unzip and upload the Theme version of choice to your <code>themes</code> directory.\n<ul>\n<li><a href=\"http://www.cameraontheroad.com/files/defaultblank2_5.zip\" title=\"Zip file for Default Blank WordPress Theme for current versions of WordPress\">Default Blank WordPress Theme for current versions of WordPress for CSS Naked Day</a> (zip)</li>\n<li><a href=\"http://www.cameraontheroad.com/files/defaultblank.zip\" title=\"Zip file for Default Blank WordPress Theme for CSS Naked Day\">Default Blank WordPress Theme for CSS Naked Day (Pre-WordPress 2.1)</a> (zip)</li>\n</ul>\n</li>\n<li>Activate the Theme through the Presentation or Design panel.</li>\n<li>Switch back to your regularly scheduled WordPress Theme on April 10.</li>\n</ol>\n<p>For those on WordPress.com, you can also participate if you are using the <a href=\"http://www.plaintxt.org/themes/sandbox/\" title=\"Sandbox\">Sandbox WordPress Theme</a> with the <a href=\"http://lorelle.wordpress.com/2006/08/06/wordpresscom-custom-css-all-the-styles-for-the-sandbox-theme/\" title=\"CSS Extra\">WordPress.com CSS Extra</a> feature. </p>\n<ol>\n<li>From the WordPress Administration Panels, go to <strong>Presentation &gt; Edit CSS</strong>.</li>\n<li>Cut ALL of the styles from your custom stylesheet and paste them into a text file. Save it with a name you will remember in a very safe place, leaving a blank stylesheet.</li>\n<li>Choose the option: <strong>Start from scratch and just use this</strong> to create a blank stylesheet.</li>\n<li>Click <strong>Save Stylesheet</strong>.</li>\n<li>View your WordPress.com blog and all the design elements will be gone. The layout structure will remain but it will be “naked”.</li>\n</ol>\n<p><a href=\"http://lorelle.wordpress.com/2007/04/04/lorelle-is-naked/\" title=\"Lorelle is Naked\">Reverse the process to restore</a> your Sandbox Theme on April 10. </p>\n<p>Be sure and <a href=\"http://naked.dustindiaz.com/#signup\" title=\"naked day signup form\">sign up for the CSS Naked Day</a> so your blog will be celebrated as one of those honoring web design and designers. Last year, almost 2,000 sites signed up for CSS Naked Day. So far, the list is over 400. Let your naked stance join with others on April 9.</p>\n<h4>Related Articles</h4>\n<ul>\n<li><a href=\"http://www.blogherald.com/2007/03/30/strip-down-naked-css-day/\" title=\"Naked CSS Day\">Blog Herald - Strip Down: Naked CSS Day Instructions</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2007/04/28/bloggers-share-step-by-step-tips-for-increasing-blog-usability/\" title=\"Bloggers Share Step-by-Step Tips for Increasing Blog Usability\">Bloggers Share Step-by-Step Tips for Increasing Blog Usability</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/09/01/one-year-anniversary-review-accessibility-and-usability/\" title=\"Accessibility and Usability\">One Year Anniversary Review: Accessibility and Usability</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/08/12/how-do-you-know-if-a-blog-has-integrity/\" title=\"How Do You Know If a Blog Has Integrity?\">How Do You Know If a Blog Has Integrity?</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/03/15/creative-usability-with-wordpresscom-blogs/\" title=\"Creative Usability with WordPress.com Blogs\">Creative Usability with WordPress.com Blogs</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/02/27/website-accessibility-is-now-getting-serious-in-the-usa/\" title=\"Website Accessibility is Now Getting Serious in the USA\">Website Accessibility is Now Getting Serious in the USA</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/02/21/usability-isnt-expensive-its-practical-usability-is-useful/\" title=\"Usability Isnt Expensive. Its Practical. Usability is Useful.\">Usability Isnt Expensive. Its Practical. Usability is Useful.</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/02/21/beauty-is-only-skin-deep-designing-blogs-for-feeds-search-engines-and-audience/\" title=\"Designing Blogs For Feeds, Search Engines and Audience\">Beauty is Only Skin Deep: Designing Blogs For Feeds, Search Engines and Audience</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2006/02/07/accessibility-for-everyone-including-the-colorblind/\" title=\"For Everyone, Including the Colorblind\">Accessibility: For Everyone, Including the Colorblind</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/12/04/accessibility-wins-seo-plus-plus/\" title=\"Accessibility Wins SEO Plus Plus\">Accessibility Wins SEO Plus Plus</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/12/02/image-replacement-techniques/\" title=\"Image Replacement Techniques\">Image Replacement Techniques</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/11/15/accessibility-doesnt-have-to-be-boring/\" title=\"Accessibility Doesnt Have to Be Boring\">Accessibility Doesnt Have to Be Boring</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/11/12/validate-an-entire-website/\" title=\"Validate an Entire Website\">Validate an Entire Website</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/11/04/css-and-web-standard-feeds-in-one-place/\" title=\"CSS and Web Standard Feeds in One Place\">CSS and Web Standard Feeds in One Place</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/11/03/css-switching-styles-for-the-low-vision-user/\" title=\"CSS Switching Styles for the Low Vision User\">CSS Switching Styles for the Low Vision User</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/10/22/more-than-you-want-to-know-search-engine-articles-information-and-resources/\" title=\"More Than You Want to Know - Search Engine Articles, Information, and Resources\">More Than You Want to Know - Search Engine Articles, Information, and Resources</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/10/17/step-by-step-website-development-check-list/\" title=\"Step-By-Step Website Development - Check List\">Step-By-Step Website Development - Check List</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/10/11/css-maintainability-serious-style-sheets-2/\" title=\"CSS Maintainability - Serious Style Sheets\">CSS Maintainability - Serious Style Sheets</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/10/04/css-and-web-page-design-list-of-resources/\" title=\"CSS and Web Page Design List of Resources\">CSS and Web Page Design List of Resources</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/25/website-development-international-standards-and-languages/\" title=\"Website Development - International Standards and Languages\">Website Development - International Standards and Languages</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/24/validating-the-code-behind-the-page/\" title=\"Validating the Code Behind the Page\">Validating the Code Behind the Page</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/24/meet-them-benefits-of-compliance-with-web-standards/\" title=\"Benefits of Compliance with Web Standards\">Meet Them: Benefits of Compliance with Web Standards</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/07/blogging-about-disabilities/\" title=\"Blogging About Disabilities\">Blogging About Disabilities</a></li>\n<li><a href=\"http://lorelle.wordpress.com/2005/09/01/wordpress-in-your-language/\" title=\"WordPress in Your Language\">WordPress in Your Language</a></li>\n</ul>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=css+naked+day\" rel=\"tag\">css naked day</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=naked+css\" rel=\"tag\">naked css</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=css\" rel=\"tag\">css</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=web+design\" rel=\"tag\">web design</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+event\" rel=\"tag\">blog event</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=turn+off+stylesheets\" rel=\"tag\">turn off stylesheets</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=accessibility\" rel=\"tag\">accessibility</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=usability\" rel=\"tag\">usability</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=honor+web+designers\" rel=\"tag\">honor web designers</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a> <a href=\"http://feeds.feedburner.com/LorelleOnWordpress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a> <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/2445/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/2445/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/2445/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/2445/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/2445/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/2445/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/2445/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/2445/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=2445&subd=lorelle&ref=&feed=1\" /></div>\";}i:24;a:7:{s:5:\"title\";s:46:\"Weblog Tools Collection: In Case You Missed It\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3381\";s:4:\"link\";s:75:\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/\";s:11:\"description\";s:8233:\"<p>This might be the last WordCamp Dallas 2008 post you see on this blog and since that is the case, better to go out with a bang! In case you were one of the unlucky ones who didn&#8217;t have a chance to attend the conference live, the good news is that there were plenty of attendees blogging, vlogging, and live blogging the event. I present to you a list of links which will correspond to the conference schedule.</p>\n<p><a title=\"http://wp-community.org/2008/04/04/wordcamp-dallas-matt-mullenweg-wordpress-25/\" href=\"http://wp-community.org/2008/04/04/wordcamp-dallas-matt-mullenweg-wordpress-25/\" target=\"_blank\">Matt Mullenweg discussing WordPress 2.5 and beyond</a>. Actually, he announced the redesign of WordPress.org along with the release of 2.5.</p>\n<p><a title=\"http://wp-community.org/2008/04/04/pozadzides-45-ways-power-up-your-blog/\" href=\"http://wp-community.org/2008/04/04/pozadzides-45-ways-power-up-your-blog/\" target=\"_blank\">John Pozadzides presented his 45 ways to power up your blog.</a><a title=\"http://onemansblog.com/2008/04/04/wordcamp-dallas-2008-john-pozadzides-45-ways-to-power-up-your-blog/\" href=\"http://http//onemansblog.com/2008/04/04/wordcamp-dallas-2008-john-pozadzides-45-ways-to-power-up-your-blog/\" target=\"_blank\"> </a></p>\n<p>After Lunch, <a title=\"http://mashable.com/2008/03/29/livestream-how-to-prevent-detect-and-stop-content-theft-with-jonathan-bailey-wordcamp-dallas/\" href=\"http://mashable.com/2008/03/29/livestream-how-to-prevent-detect-and-stop-content-theft-with-jonathan-bailey-wordcamp-dallas/\" target=\"_blank\">Jonathan Bailey gave us the lowdown</a> on content theft and protection along with a number of other things that bloggers of any platform would be interested in. Jonathan has also published the slides for his presentation on his own blog which can be <a title=\"http://www.plagiarismtoday.com/2008/03/29/heading-to-wordcamp-dallas/\" href=\"http://http//www.plagiarismtoday.com/2008/03/29/heading-to-wordcamp-dallas/\" target=\"_blank\">viewed here</a>.</p>\n<p><a title=\"http://mashable.com/2008/03/29/livestream-cali-lewis-and-neal-campbell-wordcamp-dallas/\" href=\"http://http//mashable.com/2008/03/29/livestream-cali-lewis-and-neal-campbell-wordcamp-dallas/\" target=\"_blank\">Cali Lewis and Neal Campbell</a> shared their experience with using WordPress for powering their websites.</p>\n<p><a href=\"http://www.successful-blog.com/\">Liz Strauss</a> gave a presentation that was titled, C&#8217;mon, Let&#8217;s Talk! which dealt with building influence and interaction with blogging. <a title=\"http://www.viddler.com/explore/jpozadzides/videos/76/\" href=\"http://www.viddler.com/explore/jpozadzides/videos/76/\" target=\"_blank\">You can check out her full presentation here</a>.</p>\n<p>Lorelle VanFossen stepped up to the plate and shared her WordPress Power Tips. <a title=\"http://www.viddler.com/explore/jpozadzides/videos/77/\" href=\"http://www.viddler.com/explore/jpozadzides/videos/77/\" target=\"_blank\">Her presentation can be viewed here.</a></p>\n<p>The next day of the event featured a live recording of the <a title=\"http://wp-community.org/\" href=\"http://wp-community.org/\" target=\"_blank\">WordPress Podcast</a>. The full <a title=\"http://weblogtoolsvideos.com/item/6F8VL6NWR8G9FVS9\" href=\"http://weblogtoolsvideos.com/item/6F8VL6NWR8G9FVS9\" target=\"_blank\">video of this presentation</a> is now online at WeblogToolsVideos.com.</p>\n<p>The next panel was by Chris Smith who went over <a title=\"http://www.naturalsearchblog.com/archives/2008/04/01/dallas-wordcamp-2008-followup/\" href=\"http://www.naturalsearchblog.com/archives/2008/04/01/dallas-wordcamp-2008-followup/\" target=\"_blank\">SEO for Bloggers</a>. The link to the Natural Search Blog contains a link to the presentation that Chris Smith gave the attendees.</p>\n<p>Aaron Brazell offered up an extensive presentation called <a title=\"http://technosailor.com/2008/03/30/wordpress-faq-session-at-wordcamp-dallas/\" href=\"http://technosailor.com/2008/03/30/wordpress-faq-session-at-wordcamp-dallas/\" target=\"_blank\">WordPress FAQ</a>. The FAQ answers questions such as can you have too many tags, what is the GPL, and the explanation of hooks. The end of the presentation takes questions from the attendees.</p>\n<p>A panel that I particularly found interesting was the Business of blogging session featuring Liz Strauss, Mark Ghosh, Matt Mullenweg and Aaron Brazell. A ton of interesting points and conversations took place during the session and I thought it was one of the highlights of the event. <a title=\"http://mashable.com/2008/03/30/livestream-the-business-of-blogging-panel-wordcamp-dallas/\" href=\"http://mashable.com/2008/03/30/livestream-the-business-of-blogging-panel-wordcamp-dallas/\" target=\"_blank\">Check out the ustream video that Mark Rizzn of Mashable.com recorded here</a>.</p>\n<p>Last but not least, Jacob Santos closed out the event with his presentation on Testing With WordPress. I have yet to see any videos posted of his session but he goes over it in more detail <a title=\"http://www.santosj.name/web-applications/testing-with-wordpress-presentation/\" href=\"http://www.santosj.name/web-applications/testing-with-wordpress-presentation/\" target=\"_blank\">here</a>.</p>\n<p>For those that have yet to see what this thing called Woopra is all about, <a title=\"http://www.vimeo.com/839783/\" href=\"http://www.vimeo.com/839783/\" target=\"_blank\">Cali Lewis of GeekBrief.TV interviews John Pozadzides and gives you the low down.</a></p>\n<p><a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2376093093_3f46109388_b/\" title=\"John, Ptah and Matt\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2376093093_3f46109388_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2376871018_2e1353c568_b/\" title=\"Charles Stricklin and Ptah Dunbar\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2376871018_2e1353c568_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378034725_2c3498838e_b/\" title=\"Three of the four WeblogToolsCollection.com authors\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378034725_2c3498838e_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378039399_d7783a9436_b/\" title=\"Jeff\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378039399_d7783a9436_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378870448_38eaa7c1f8_b/\" title=\"Mark and Matt\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378870448_38eaa7c1f8_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378887266_0ed9380e56_b/\" title=\"Ronald and Ptah at the lunch line\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378887266_0ed9380e56_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2383062076_d856037103_b/\" title=\"Lorelle, Mark Jaquith and Aaron Brazell\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2383062076_d856037103_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378040919_27f468e78b_b/\" title=\"The Venue\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378040919_27f468e78b_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2376024993_a77cc46e6f_b/\" title=\"WordCamp Participants mingling\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2376024993_a77cc46e6f_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a></p>\";s:7:\"pubdate\";s:31:\"Mon, 07 Apr 2008 16:23:37 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jeffro2pt0\";}s:7:\"summary\";s:8233:\"<p>This might be the last WordCamp Dallas 2008 post you see on this blog and since that is the case, better to go out with a bang! In case you were one of the unlucky ones who didn&#8217;t have a chance to attend the conference live, the good news is that there were plenty of attendees blogging, vlogging, and live blogging the event. I present to you a list of links which will correspond to the conference schedule.</p>\n<p><a title=\"http://wp-community.org/2008/04/04/wordcamp-dallas-matt-mullenweg-wordpress-25/\" href=\"http://wp-community.org/2008/04/04/wordcamp-dallas-matt-mullenweg-wordpress-25/\" target=\"_blank\">Matt Mullenweg discussing WordPress 2.5 and beyond</a>. Actually, he announced the redesign of WordPress.org along with the release of 2.5.</p>\n<p><a title=\"http://wp-community.org/2008/04/04/pozadzides-45-ways-power-up-your-blog/\" href=\"http://wp-community.org/2008/04/04/pozadzides-45-ways-power-up-your-blog/\" target=\"_blank\">John Pozadzides presented his 45 ways to power up your blog.</a><a title=\"http://onemansblog.com/2008/04/04/wordcamp-dallas-2008-john-pozadzides-45-ways-to-power-up-your-blog/\" href=\"http://http//onemansblog.com/2008/04/04/wordcamp-dallas-2008-john-pozadzides-45-ways-to-power-up-your-blog/\" target=\"_blank\"> </a></p>\n<p>After Lunch, <a title=\"http://mashable.com/2008/03/29/livestream-how-to-prevent-detect-and-stop-content-theft-with-jonathan-bailey-wordcamp-dallas/\" href=\"http://mashable.com/2008/03/29/livestream-how-to-prevent-detect-and-stop-content-theft-with-jonathan-bailey-wordcamp-dallas/\" target=\"_blank\">Jonathan Bailey gave us the lowdown</a> on content theft and protection along with a number of other things that bloggers of any platform would be interested in. Jonathan has also published the slides for his presentation on his own blog which can be <a title=\"http://www.plagiarismtoday.com/2008/03/29/heading-to-wordcamp-dallas/\" href=\"http://http//www.plagiarismtoday.com/2008/03/29/heading-to-wordcamp-dallas/\" target=\"_blank\">viewed here</a>.</p>\n<p><a title=\"http://mashable.com/2008/03/29/livestream-cali-lewis-and-neal-campbell-wordcamp-dallas/\" href=\"http://http//mashable.com/2008/03/29/livestream-cali-lewis-and-neal-campbell-wordcamp-dallas/\" target=\"_blank\">Cali Lewis and Neal Campbell</a> shared their experience with using WordPress for powering their websites.</p>\n<p><a href=\"http://www.successful-blog.com/\">Liz Strauss</a> gave a presentation that was titled, C&#8217;mon, Let&#8217;s Talk! which dealt with building influence and interaction with blogging. <a title=\"http://www.viddler.com/explore/jpozadzides/videos/76/\" href=\"http://www.viddler.com/explore/jpozadzides/videos/76/\" target=\"_blank\">You can check out her full presentation here</a>.</p>\n<p>Lorelle VanFossen stepped up to the plate and shared her WordPress Power Tips. <a title=\"http://www.viddler.com/explore/jpozadzides/videos/77/\" href=\"http://www.viddler.com/explore/jpozadzides/videos/77/\" target=\"_blank\">Her presentation can be viewed here.</a></p>\n<p>The next day of the event featured a live recording of the <a title=\"http://wp-community.org/\" href=\"http://wp-community.org/\" target=\"_blank\">WordPress Podcast</a>. The full <a title=\"http://weblogtoolsvideos.com/item/6F8VL6NWR8G9FVS9\" href=\"http://weblogtoolsvideos.com/item/6F8VL6NWR8G9FVS9\" target=\"_blank\">video of this presentation</a> is now online at WeblogToolsVideos.com.</p>\n<p>The next panel was by Chris Smith who went over <a title=\"http://www.naturalsearchblog.com/archives/2008/04/01/dallas-wordcamp-2008-followup/\" href=\"http://www.naturalsearchblog.com/archives/2008/04/01/dallas-wordcamp-2008-followup/\" target=\"_blank\">SEO for Bloggers</a>. The link to the Natural Search Blog contains a link to the presentation that Chris Smith gave the attendees.</p>\n<p>Aaron Brazell offered up an extensive presentation called <a title=\"http://technosailor.com/2008/03/30/wordpress-faq-session-at-wordcamp-dallas/\" href=\"http://technosailor.com/2008/03/30/wordpress-faq-session-at-wordcamp-dallas/\" target=\"_blank\">WordPress FAQ</a>. The FAQ answers questions such as can you have too many tags, what is the GPL, and the explanation of hooks. The end of the presentation takes questions from the attendees.</p>\n<p>A panel that I particularly found interesting was the Business of blogging session featuring Liz Strauss, Mark Ghosh, Matt Mullenweg and Aaron Brazell. A ton of interesting points and conversations took place during the session and I thought it was one of the highlights of the event. <a title=\"http://mashable.com/2008/03/30/livestream-the-business-of-blogging-panel-wordcamp-dallas/\" href=\"http://mashable.com/2008/03/30/livestream-the-business-of-blogging-panel-wordcamp-dallas/\" target=\"_blank\">Check out the ustream video that Mark Rizzn of Mashable.com recorded here</a>.</p>\n<p>Last but not least, Jacob Santos closed out the event with his presentation on Testing With WordPress. I have yet to see any videos posted of his session but he goes over it in more detail <a title=\"http://www.santosj.name/web-applications/testing-with-wordpress-presentation/\" href=\"http://www.santosj.name/web-applications/testing-with-wordpress-presentation/\" target=\"_blank\">here</a>.</p>\n<p>For those that have yet to see what this thing called Woopra is all about, <a title=\"http://www.vimeo.com/839783/\" href=\"http://www.vimeo.com/839783/\" target=\"_blank\">Cali Lewis of GeekBrief.TV interviews John Pozadzides and gives you the low down.</a></p>\n<p><a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2376093093_3f46109388_b/\" title=\"John, Ptah and Matt\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2376093093_3f46109388_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2376871018_2e1353c568_b/\" title=\"Charles Stricklin and Ptah Dunbar\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2376871018_2e1353c568_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378034725_2c3498838e_b/\" title=\"Three of the four WeblogToolsCollection.com authors\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378034725_2c3498838e_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378039399_d7783a9436_b/\" title=\"Jeff\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378039399_d7783a9436_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378870448_38eaa7c1f8_b/\" title=\"Mark and Matt\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378870448_38eaa7c1f8_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378887266_0ed9380e56_b/\" title=\"Ronald and Ptah at the lunch line\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378887266_0ed9380e56_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2383062076_d856037103_b/\" title=\"Lorelle, Mark Jaquith and Aaron Brazell\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2383062076_d856037103_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2378040919_27f468e78b_b/\" title=\"The Venue\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2378040919_27f468e78b_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a><br />\n<a href=\"http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/2376024993_a77cc46e6f_b/\" title=\"WordCamp Participants mingling\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/04/2376024993_a77cc46e6f_b-150x150.jpg\" width=\"150\" height=\"150\" class=\"attachment-thumbnail\" /></a></p>\";}i:25;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: Admin Favicon Plugin Video Review\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3389\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2008/04/07/admin-favicon-plugin-video-review/\";s:11:\"description\";s:1176:\"<p></p>\n<p>Today&#8217;s WordPress Plugin video review is of <a href=\"http://wordpress.org/extend/plugins/admin-favicon/\">Admin Favicon</a> by <a href=\"http://simply-basic.com/\">John Kolbert</a>.</p>\n<p><strong>Video Summary:</strong> <a href=\"http://wordpress.org/extend/plugins/admin-favicon/\">Admin Favicon</a> is a plugin for those who have a lot of open tabs and would like to use a <a href=\"http://en.wikipedia.org/wiki/Favicon\">Favicon</a> to show using the WordPress Administrative Panels. </p>\n<p><strong>Pros:</strong> Extremely simple to use and quite useful for those who have a lot of open tabs in their browser. Very light-weight script.</p>\n<p><strong>Cons:</strong> None. <a href=\"http://wordpress.org/extend/plugins/admin-favicon/\">Admin Favicon</a> is not ideal for those who use desktop publishers or browsers without tabbed support.</p>\n<p>If you would like your own plugin reviewed, please get in contact with me via e-mail (ronalfy+wltc @ gmail dot com). Please keep in mind I will not review premium plugins.</p>\n<p>For more videos, please check out our brand new video website at <a href=\"http://weblogtoolsvideos.com/\">Weblog Tools Videos</a>.</p>\";s:7:\"pubdate\";s:31:\"Mon, 07 Apr 2008 08:00:27 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"Ronald Huereca\";}s:7:\"summary\";s:1176:\"<p></p>\n<p>Today&#8217;s WordPress Plugin video review is of <a href=\"http://wordpress.org/extend/plugins/admin-favicon/\">Admin Favicon</a> by <a href=\"http://simply-basic.com/\">John Kolbert</a>.</p>\n<p><strong>Video Summary:</strong> <a href=\"http://wordpress.org/extend/plugins/admin-favicon/\">Admin Favicon</a> is a plugin for those who have a lot of open tabs and would like to use a <a href=\"http://en.wikipedia.org/wiki/Favicon\">Favicon</a> to show using the WordPress Administrative Panels. </p>\n<p><strong>Pros:</strong> Extremely simple to use and quite useful for those who have a lot of open tabs in their browser. Very light-weight script.</p>\n<p><strong>Cons:</strong> None. <a href=\"http://wordpress.org/extend/plugins/admin-favicon/\">Admin Favicon</a> is not ideal for those who use desktop publishers or browsers without tabbed support.</p>\n<p>If you would like your own plugin reviewed, please get in contact with me via e-mail (ronalfy+wltc @ gmail dot com). Please keep in mind I will not review premium plugins.</p>\n<p>For more videos, please check out our brand new video website at <a href=\"http://weblogtoolsvideos.com/\">Weblog Tools Videos</a>.</p>\";}i:26;a:7:{s:5:\"title\";s:81:\"WordPress Podcast: Episode 39: WordPress 2.5 released - Live from WordCamp Dallas\";s:4:\"guid\";s:29:\"http://wp-community.org/?p=74\";s:4:\"link\";s:46:\"http://wp-community.org/2008/04/06/episode-39/\";s:11:\"description\";s:7169:\"<p>I&#8217;d intended to release this episode during the week of March 30th, days after it was recorded live at <a href=\"http://dallas.wordcamp.org\" title=\"WordCamp Dallas\" target=\"_blank\" class=\"extlink\">WordCamp Dallas</a>, but problems with the recorded audio prevented doing so. The audio you&#8217;ll hear was actually ripped from the video <a href=\"http://onemansblog.com\" title=\"John Pozadzides\' blog\" target=\"_blank\" class=\"extlink\">John Pozadzides</a> released, so thanks, John!<br />\nJoining me on the dais were Jonathan Bailey of <a href=\"http://www.plagiarismtoday.com\" title=\"Plagiarism Today\" target=\"_blank\" class=\"extlink\">Plagiarism Today</a>, <a href=\"http://markjaquith.com\" title=\"Mark Jaquith\'s portal\" target=\"_blank\" class=\"extlink\">Mark Jaquith</a> of <a href=\"http://b5media.com\" title=\"b5media\" target=\"_blank\" class=\"extlink\">b5media</a>, later Mark Ghosh of <a href=\"http://weblogtoolscollection.com\" title=\"Weblog Tools Collection\" target=\"_blank\" class=\"extlink\">Weblog Tools Collection</a>, and later still, <a href=\"http://ma.tt\" title=\"Matt Mullenweg\'s blog\" target=\"_blank\" class=\"extlink\">Matt Mullenweg</a> of <a href=\"http://automattic.com\" title=\"Automattic, Inc.\" target=\"_blank\" class=\"extlink\">Automattic</a>. <a href=\"http://lorelle.wordpress.com\" title=\"Lorelle on WordPress\" target=\"_blank\" class=\"extlink\">Lorelle Van Fossen</a> was nice enough to run around handing the wireless mic around so people could comment and ask questions. Subjects discussed and links to items mentioned in this episode include:</p>\n<ol>\n<li><a href=\"http://wordpress.org/development/2008/03/wordpress-25-brecker/\" title=\"WordPress 2.5\" target=\"_blank\" class=\"extlink\">WordPress 2.5</a> had been released exactly 24 hours prior. Some people have experienced <a href=\"http://www.icastlimited.com/2008/03/31/wordpress-25-image-upload-problem/\" title=\"a fix for WordPress 2.5 and IE7 problems\" target=\"_blank\" class=\"extlink\">problems with IE7</a> and other plugins. Expect 2.5.1 within about a month.</li>\n<li>Beginning with WordPress 2.2 incoming links were changed from <a href=\"http://www.technorati.com\" title=\"Technorati\" target=\"_blank\" class=\"extlink\">Technorati</a> to <a href=\"http://blogsearch.google.com\" title=\"Google Blog Search\" target=\"_blank\" class=\"extlink\">Google Blog Search</a>. If you&#8217;d prefer to revert back or use some other link reporter, find the Incoming Links Box&#8217;s &#8220;Edit&#8221; link in the Dashboard and change it to the RSS feed of your choosing.</li>\n<li>Issues with &#8220;disappearing plugins&#8221; relate to the plugin updater&#8217;s requirement that plugin authors build in additional functionality to work properly with the updater and submitting it to the <a href=\"http://wordpress.org/extend/plugins/about/\" title=\"WordPress Plugin Directory\" target=\"_blank\" class=\"extlink\">plugin directory</a>.</li>\n<li>Mark Jaquith discusses the genesis of his <a href=\"http://markjaquith.wordpress.com/2008/03/20/the-comment-inbox/\" title=\"Comment Inbox\" target=\"_blank\" class=\"extlink\">Comment Inbox plugin</a>. Lorelle chimes in with <a href=\"http://internetducttape.com/tools/wordpress/wordpress-comment-ninja/\" title=\"Comment Ninja\" target=\"_blank\" class=\"extlink\">Comment Ninja</a>, a <a href=\"http://www.mozilla.com/firefox/\" title=\"Mozilla Firefox\" target=\"_blank\" class=\"extlink\">Firefox</a> <a href=\"http://www.greasespot.net\" title=\"Greasemonkey\" target=\"_blank\" class=\"extlink\">Greasemonkey</a> script.</li>\n<li>We discussed security, including the possibility of an independent review of the core, as well as the direction themes and theme development might take in the future.</li>\n<li>Matt expressed a desire for improved client-side JavaScript performance.</li>\n<li><a href=\"http://www.ronalfy.com/\" title=\"Ronald Huereca\'s blog\" target=\"_blank\" class=\"extlink\">Ronald Huereca</a> asked an interesting question about how developers might store data without creating new database tables.</li>\n<li><a href=\"http://vsellis.com\" title=\"Scott Ellis\' blog\" target=\"_blank\" class=\"extlink\">Scott Ellis</a> asked for examples of WordPress being used as a CMS or other unusual uses, and the panel offers up <a href=\"http://publisherblog.automattic.com\" title=\"Publisher Blog\" target=\"_blank\" class=\"extlink\">Automattic&#8217;s Publisher Blog</a>, <a href=\"http://truemors.com\" title=\"Truemors\" target=\"_blank\" class=\"extlink\">Trumors</a> and <a href=\"http://71miles.com\" title=\"71 Miles\" target=\"_blank\" class=\"extlink\">71 Miles</a>, amongst others.</li>\n<li><a href=\"http://www.texbiker.net/blog\" title=\"Texas Bicycling Information Center\" target=\"_blank\" class=\"extlink\">Rick Ankrum</a>&#8217;s question about changes made to the default theme leads to an interesting throw-away comment by Mark Ghosh concerning a possible file integrity-checker making its way into future versions of WordPress.</li>\n<li><a href=\"http://simpledailyrecipes.com\" title=\"Simply Daily Recipes\" target=\"_blank\" class=\"extlink\">Jill McKeever</a>&#8217;s question about image borders and a &#8220;word wrap button&#8221; stumps the panel. (Did we ever come up with an answer for this?)</li>\n<li>Someone asks about the future of <a href=\"http://www.plaintxt.org/themes/sandbox/\" title=\"Sandbox WordPress theme\" target=\"_blank\" class=\"extlink\">Sandbox</a>, and the possibility of incorporating its best features into the core. Several themes are discussed, including the <a href=\"http://justintadlock.com/archives/2008/02/24/options-wordpress-theme\" title=\"the Options theme\" target=\"_blank\" class=\"extlink\">Options theme</a> and <a href=\"http://www.binarymoon.co.uk/projects/regulus/\" title=\"Regulus theme\" target=\"_blank\" class=\"extlink\">Regulus.</a></li>\n<li>Matt expressed frustration with the way WordPress handles menus as static pages and sub-pages, raising the possibility of choosing which items appear in the navigation menu. Mark Jaquith brings up his <a href=\"http://txfx.net/code/wordpress/page-links-to/\" title=\"Page Links To plugin\" target=\"_blank\" class=\"extlink\">Page Links To</a> plugin which allows you to point pages and menus to links outside of your blog&#8217;s domain.</li>\n<li>Matt also expressed frustration with the disparity between the image uploader and inserting an image from within the WYSIWYG editor, and brought up the possibility of an easy &#8220;image caption&#8221; function.</li>\n<li><a href=\"http://www.jeffro2pt0.com\" title=\"Jeffro2pt0\" target=\"_blank\" class=\"extlink\">Jeff Chandler</a>&#8217;s frustration with the perception of WordPress not being able to withstand the &#8220;Digg effect&#8221; leads to a minor debate on caching. Matt effectively debunks the issue, blaming bad server configurations and cautioning against reliance on <a href=\"http://mnm.uib.es/gallir/wp-cache-2/\" title=\"WP-Cache\" target=\"_blank\" class=\"extlink\">WP-Cache</a> and <a href=\"http://ocaoimh.ie/wp-super-cache/\" title=\"WP Super Cache\" target=\"_blank\" class=\"extlink\">WP-Super Cache</a>. Mark Ghosh cautions against the use of <a href=\"http://error.wordpress.com/2006/07/04/bad-behavior-2/\" title=\"Bad Behavior\" target=\"_blank\" class=\"extlink\">Bad Behavior</a> for high-traffic sites.</li>\n</ol>\";s:7:\"pubdate\";s:31:\"Mon, 07 Apr 2008 00:28:40 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Charles Stricklin\";}s:7:\"summary\";s:7169:\"<p>I&#8217;d intended to release this episode during the week of March 30th, days after it was recorded live at <a href=\"http://dallas.wordcamp.org\" title=\"WordCamp Dallas\" target=\"_blank\" class=\"extlink\">WordCamp Dallas</a>, but problems with the recorded audio prevented doing so. The audio you&#8217;ll hear was actually ripped from the video <a href=\"http://onemansblog.com\" title=\"John Pozadzides\' blog\" target=\"_blank\" class=\"extlink\">John Pozadzides</a> released, so thanks, John!<br />\nJoining me on the dais were Jonathan Bailey of <a href=\"http://www.plagiarismtoday.com\" title=\"Plagiarism Today\" target=\"_blank\" class=\"extlink\">Plagiarism Today</a>, <a href=\"http://markjaquith.com\" title=\"Mark Jaquith\'s portal\" target=\"_blank\" class=\"extlink\">Mark Jaquith</a> of <a href=\"http://b5media.com\" title=\"b5media\" target=\"_blank\" class=\"extlink\">b5media</a>, later Mark Ghosh of <a href=\"http://weblogtoolscollection.com\" title=\"Weblog Tools Collection\" target=\"_blank\" class=\"extlink\">Weblog Tools Collection</a>, and later still, <a href=\"http://ma.tt\" title=\"Matt Mullenweg\'s blog\" target=\"_blank\" class=\"extlink\">Matt Mullenweg</a> of <a href=\"http://automattic.com\" title=\"Automattic, Inc.\" target=\"_blank\" class=\"extlink\">Automattic</a>. <a href=\"http://lorelle.wordpress.com\" title=\"Lorelle on WordPress\" target=\"_blank\" class=\"extlink\">Lorelle Van Fossen</a> was nice enough to run around handing the wireless mic around so people could comment and ask questions. Subjects discussed and links to items mentioned in this episode include:</p>\n<ol>\n<li><a href=\"http://wordpress.org/development/2008/03/wordpress-25-brecker/\" title=\"WordPress 2.5\" target=\"_blank\" class=\"extlink\">WordPress 2.5</a> had been released exactly 24 hours prior. Some people have experienced <a href=\"http://www.icastlimited.com/2008/03/31/wordpress-25-image-upload-problem/\" title=\"a fix for WordPress 2.5 and IE7 problems\" target=\"_blank\" class=\"extlink\">problems with IE7</a> and other plugins. Expect 2.5.1 within about a month.</li>\n<li>Beginning with WordPress 2.2 incoming links were changed from <a href=\"http://www.technorati.com\" title=\"Technorati\" target=\"_blank\" class=\"extlink\">Technorati</a> to <a href=\"http://blogsearch.google.com\" title=\"Google Blog Search\" target=\"_blank\" class=\"extlink\">Google Blog Search</a>. If you&#8217;d prefer to revert back or use some other link reporter, find the Incoming Links Box&#8217;s &#8220;Edit&#8221; link in the Dashboard and change it to the RSS feed of your choosing.</li>\n<li>Issues with &#8220;disappearing plugins&#8221; relate to the plugin updater&#8217;s requirement that plugin authors build in additional functionality to work properly with the updater and submitting it to the <a href=\"http://wordpress.org/extend/plugins/about/\" title=\"WordPress Plugin Directory\" target=\"_blank\" class=\"extlink\">plugin directory</a>.</li>\n<li>Mark Jaquith discusses the genesis of his <a href=\"http://markjaquith.wordpress.com/2008/03/20/the-comment-inbox/\" title=\"Comment Inbox\" target=\"_blank\" class=\"extlink\">Comment Inbox plugin</a>. Lorelle chimes in with <a href=\"http://internetducttape.com/tools/wordpress/wordpress-comment-ninja/\" title=\"Comment Ninja\" target=\"_blank\" class=\"extlink\">Comment Ninja</a>, a <a href=\"http://www.mozilla.com/firefox/\" title=\"Mozilla Firefox\" target=\"_blank\" class=\"extlink\">Firefox</a> <a href=\"http://www.greasespot.net\" title=\"Greasemonkey\" target=\"_blank\" class=\"extlink\">Greasemonkey</a> script.</li>\n<li>We discussed security, including the possibility of an independent review of the core, as well as the direction themes and theme development might take in the future.</li>\n<li>Matt expressed a desire for improved client-side JavaScript performance.</li>\n<li><a href=\"http://www.ronalfy.com/\" title=\"Ronald Huereca\'s blog\" target=\"_blank\" class=\"extlink\">Ronald Huereca</a> asked an interesting question about how developers might store data without creating new database tables.</li>\n<li><a href=\"http://vsellis.com\" title=\"Scott Ellis\' blog\" target=\"_blank\" class=\"extlink\">Scott Ellis</a> asked for examples of WordPress being used as a CMS or other unusual uses, and the panel offers up <a href=\"http://publisherblog.automattic.com\" title=\"Publisher Blog\" target=\"_blank\" class=\"extlink\">Automattic&#8217;s Publisher Blog</a>, <a href=\"http://truemors.com\" title=\"Truemors\" target=\"_blank\" class=\"extlink\">Trumors</a> and <a href=\"http://71miles.com\" title=\"71 Miles\" target=\"_blank\" class=\"extlink\">71 Miles</a>, amongst others.</li>\n<li><a href=\"http://www.texbiker.net/blog\" title=\"Texas Bicycling Information Center\" target=\"_blank\" class=\"extlink\">Rick Ankrum</a>&#8217;s question about changes made to the default theme leads to an interesting throw-away comment by Mark Ghosh concerning a possible file integrity-checker making its way into future versions of WordPress.</li>\n<li><a href=\"http://simpledailyrecipes.com\" title=\"Simply Daily Recipes\" target=\"_blank\" class=\"extlink\">Jill McKeever</a>&#8217;s question about image borders and a &#8220;word wrap button&#8221; stumps the panel. (Did we ever come up with an answer for this?)</li>\n<li>Someone asks about the future of <a href=\"http://www.plaintxt.org/themes/sandbox/\" title=\"Sandbox WordPress theme\" target=\"_blank\" class=\"extlink\">Sandbox</a>, and the possibility of incorporating its best features into the core. Several themes are discussed, including the <a href=\"http://justintadlock.com/archives/2008/02/24/options-wordpress-theme\" title=\"the Options theme\" target=\"_blank\" class=\"extlink\">Options theme</a> and <a href=\"http://www.binarymoon.co.uk/projects/regulus/\" title=\"Regulus theme\" target=\"_blank\" class=\"extlink\">Regulus.</a></li>\n<li>Matt expressed frustration with the way WordPress handles menus as static pages and sub-pages, raising the possibility of choosing which items appear in the navigation menu. Mark Jaquith brings up his <a href=\"http://txfx.net/code/wordpress/page-links-to/\" title=\"Page Links To plugin\" target=\"_blank\" class=\"extlink\">Page Links To</a> plugin which allows you to point pages and menus to links outside of your blog&#8217;s domain.</li>\n<li>Matt also expressed frustration with the disparity between the image uploader and inserting an image from within the WYSIWYG editor, and brought up the possibility of an easy &#8220;image caption&#8221; function.</li>\n<li><a href=\"http://www.jeffro2pt0.com\" title=\"Jeffro2pt0\" target=\"_blank\" class=\"extlink\">Jeff Chandler</a>&#8217;s frustration with the perception of WordPress not being able to withstand the &#8220;Digg effect&#8221; leads to a minor debate on caching. Matt effectively debunks the issue, blaming bad server configurations and cautioning against reliance on <a href=\"http://mnm.uib.es/gallir/wp-cache-2/\" title=\"WP-Cache\" target=\"_blank\" class=\"extlink\">WP-Cache</a> and <a href=\"http://ocaoimh.ie/wp-super-cache/\" title=\"WP Super Cache\" target=\"_blank\" class=\"extlink\">WP-Super Cache</a>. Mark Ghosh cautions against the use of <a href=\"http://error.wordpress.com/2006/07/04/bad-behavior-2/\" title=\"Bad Behavior\" target=\"_blank\" class=\"extlink\">Bad Behavior</a> for high-traffic sites.</li>\n</ol>\";}i:27;a:7:{s:5:\"title\";s:62:\"Weblog Tools Collection: SeaWorld, WordPress and conversations\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3388\";s:4:\"link\";s:90:\"http://weblogtoolscollection.com/archives/2008/04/06/seaworld-wordpress-and-conversations/\";s:11:\"description\";s:1069:\"<p><a href=\"http://www.digitalpodcast.com/podcastnews/2008/04/06/social-media-marketing-at-seaworld/\">Social Media Marketing at SeaWorld</a> <em>They put up a WordPress blog and uploaded raw content to Flickr and YouTube. They then worked the online communities focused on roller coasters to get the word out. </em>This article is based on a <a href=\"http://redcouch.typepad.com/weblog/2008/03/gntv-making-a-s.html\">video podcast by Shel Israel</a> of FastCompany.tv. On one of the panels at WordCamp, we were asked a question that roughly translated to the same one that Shel is trying to get answers for. &#8220;<em>How do you measure a conversation?</em>&#8221; SeaWorld simply put together a blog and some pictures and videos using tools that are feely available, to generate buzz and conversation amongst ethusiasts they might have normally overlooked. The question in my mind is not <em>how</em> we measure but <em>what</em> we measure as the outcome of a social media marketing strategy and how we know that it is time to measure a particular set of results.</p>\";s:7:\"pubdate\";s:31:\"Sun, 06 Apr 2008 20:11:51 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:1069:\"<p><a href=\"http://www.digitalpodcast.com/podcastnews/2008/04/06/social-media-marketing-at-seaworld/\">Social Media Marketing at SeaWorld</a> <em>They put up a WordPress blog and uploaded raw content to Flickr and YouTube. They then worked the online communities focused on roller coasters to get the word out. </em>This article is based on a <a href=\"http://redcouch.typepad.com/weblog/2008/03/gntv-making-a-s.html\">video podcast by Shel Israel</a> of FastCompany.tv. On one of the panels at WordCamp, we were asked a question that roughly translated to the same one that Shel is trying to get answers for. &#8220;<em>How do you measure a conversation?</em>&#8221; SeaWorld simply put together a blog and some pictures and videos using tools that are feely available, to generate buzz and conversation amongst ethusiasts they might have normally overlooked. The question in my mind is not <em>how</em> we measure but <em>what</em> we measure as the outcome of a social media marketing strategy and how we know that it is time to measure a particular set of results.</p>\";}i:28;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme releases for 4 / 5\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/05/wordpress-theme-releases-for-4-5/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/05/wordpress-theme-releases-for-4-5/\";s:11:\"description\";s:2551:\"<h3>Two Column Themes</h3>\n<p><strong>Mercedes</strong></p>\n<p><img height=\"117\" alt=\"mercedes-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/mercedes-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>A fixed width 2 column theme which sports a Mercedes in its header. The theme is widget ready with a 2 column footer.</p>\n<p><a href=\"http://www.demo.samirkamble.com/index.php?wptheme=Mercedese\" target=\"_blank\">Demo</a> | <a href=\"http://www.samirkamble.com/mercedes-wordpress-theme/\" target=\"_blank\">Release Page</a> | <a href=\"http://www.samirkamble.com/wp-content/plugins/wp-downloadMonitor/download.php?id=Merc.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Blue Ecstasy</strong></p>\n<p><img height=\"127\" alt=\"blue-ecstasy-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/blue-ecstasy-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>Blue Ecstasy is a simple, usable, and customizable widget-ready theme based on the famous Kubrick theme. The theme lighter than the original Kubrick theme.</p>\n<p><a href=\"http://bloggingbits.com/demo/\" target=\"_blank\">Demo</a> | <a href=\"http://bloggingbits.com/wordpress-theme-blue-ecstasy/\" target=\"_blank\">Release Page</a> | <a href=\"http://bloggingbits.com/wp-content/blue-ecstasy.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Simply News</strong></p>\n<p><img height=\"129\" alt=\"simply-news-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/simply-news-thumbnail.png\" width=\"199\" border=\"0\" /> </p>\n<p>Simply News is a two column widget ready theme which makes use of red, black and while colors. </p>\n<p><a href=\"http://www.xhtmlvalid.com/demo/index.php?wptheme=simply-news\" target=\"_blank\">Demo</a> | <a href=\"http://www.xhtmlvalid.com/2008/03/14/simply-news/\" target=\"_blank\">Release Page</a> | <a href=\"http://www.xhtmlvalid.com/download/simply-news.zip\" target=\"_blank\">Download</a></p>\n<h3>Three Column Themes</h3>\n<p><strong>Night Whimsy</strong></p>\n<p><img height=\"133\" alt=\"night-wimsy-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/night-wimsy-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>A three column theme which makes use of blue colors and also includes a illustration created by the author. The theme is widget ready.</p>\n<p><a href=\"http://demo.scribblescratch.com/index.php?wptheme=Night+Whimsy\" target=\"_blank\">Demo</a> | <a href=\"http://scribblescratch.com/2008/04/01/wp-theme-night-whimsy/\" target=\"_blank\">Release Page</a> | <a href=\"http://herbrokentoy.com/themes/nightwhimsy.zip\" target=\"_blank\">Download</a></p>\";s:7:\"pubdate\";s:31:\"Sun, 06 Apr 2008 03:55:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Keith Dsouza\";}s:7:\"summary\";s:2551:\"<h3>Two Column Themes</h3>\n<p><strong>Mercedes</strong></p>\n<p><img height=\"117\" alt=\"mercedes-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/mercedes-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>A fixed width 2 column theme which sports a Mercedes in its header. The theme is widget ready with a 2 column footer.</p>\n<p><a href=\"http://www.demo.samirkamble.com/index.php?wptheme=Mercedese\" target=\"_blank\">Demo</a> | <a href=\"http://www.samirkamble.com/mercedes-wordpress-theme/\" target=\"_blank\">Release Page</a> | <a href=\"http://www.samirkamble.com/wp-content/plugins/wp-downloadMonitor/download.php?id=Merc.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Blue Ecstasy</strong></p>\n<p><img height=\"127\" alt=\"blue-ecstasy-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/blue-ecstasy-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>Blue Ecstasy is a simple, usable, and customizable widget-ready theme based on the famous Kubrick theme. The theme lighter than the original Kubrick theme.</p>\n<p><a href=\"http://bloggingbits.com/demo/\" target=\"_blank\">Demo</a> | <a href=\"http://bloggingbits.com/wordpress-theme-blue-ecstasy/\" target=\"_blank\">Release Page</a> | <a href=\"http://bloggingbits.com/wp-content/blue-ecstasy.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Simply News</strong></p>\n<p><img height=\"129\" alt=\"simply-news-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/simply-news-thumbnail.png\" width=\"199\" border=\"0\" /> </p>\n<p>Simply News is a two column widget ready theme which makes use of red, black and while colors. </p>\n<p><a href=\"http://www.xhtmlvalid.com/demo/index.php?wptheme=simply-news\" target=\"_blank\">Demo</a> | <a href=\"http://www.xhtmlvalid.com/2008/03/14/simply-news/\" target=\"_blank\">Release Page</a> | <a href=\"http://www.xhtmlvalid.com/download/simply-news.zip\" target=\"_blank\">Download</a></p>\n<h3>Three Column Themes</h3>\n<p><strong>Night Whimsy</strong></p>\n<p><img height=\"133\" alt=\"night-wimsy-thumbnail\" src=\"http://weblogtoolscollection.com/b2-img/2008/04/night-wimsy-thumbnail.png\" width=\"200\" border=\"0\" /> </p>\n<p>A three column theme which makes use of blue colors and also includes a illustration created by the author. The theme is widget ready.</p>\n<p><a href=\"http://demo.scribblescratch.com/index.php?wptheme=Night+Whimsy\" target=\"_blank\">Demo</a> | <a href=\"http://scribblescratch.com/2008/04/01/wp-theme-night-whimsy/\" target=\"_blank\">Release Page</a> | <a href=\"http://herbrokentoy.com/themes/nightwhimsy.zip\" target=\"_blank\">Download</a></p>\";}i:29;a:7:{s:5:\"title\";s:79:\"Lorelle on WP: Scott Reilly: Two Weeks of WordPress Plugin Releases and Updates\";s:4:\"guid\";s:36:\"http://lorelle.wordpress.com/?p=2444\";s:4:\"link\";s:104:\"http://lorelle.wordpress.com/2008/04/05/scott-reilly-two-weeks-of-wordpress-plugin-releases-and-updates/\";s:11:\"description\";s:15006:\"<div class=\"snap_preview\"><br /><p><a href=\"http://lorelle.wordpress.com/tag/wordpress-plugins/\" title=\"WordPress Plugins\"><img src=\"http://lorelle.files.wordpress.com/2007/01/wpplugins.gif\" alt=\"WordPress Plugins\" align=\"right\" /></a>In March of 2005, <a href=\"http://coffee2code.com/\" title=\"Coffee2Code\">Scott Reilly of Coffee2Code</a> shook up the WordPress Community with <a href=\"http://coffee2code.com/archives/2005/03/23/7-days-of-plugins/\" title=\"7 Days of Plugins\">7 Days of Plugins</a>. During that week, Scott created and released:</p>\n<ul>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/23/plugin-easy-post-to-post-links/\" title=\"Easy Post-to-Post Links\">Easy Post-to-Post Links WordPress Plugin</a>:</strong> A shortcut code for referencing onsite blog posts by id or post slug name.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/24/plugin-obfuscate-e-mail/\" title=\"Obfuscate E-mail\">Obfuscate E-mail WordPress Plugin</a>:</strong> Automatically disguise emails within blog posts and Pages.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/25/plugin-never-moderate-admin-or-post-author/\" title=\"Never Moderate Admin or Post Author\">Never Moderate Admin or Post Author WordPress Plugin</a>:</strong> Prevents moderation or marking as spam any comments by the site administrator, post author, or a registered user above a specified user level, no matter how spammy the comment.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/26/plugin-sync-draft-slug-and-title/\" title=\"Sync Draft Slug and Title\">Sync Draft Slug and Title WordPress Plugin</a>:</strong> While the post is still in draft mode, it keeps the post slug in sync with any changes to the post title, no longer necessary with current versions of WordPress, but critical then.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/28/plugin-author-images/\" title=\"Author Image(s)\">Author Image(s) WordPress Plugin</a>:</strong> Offers the feature to add an author image to the blog post.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/29/plugin-preserve-code-formatting/\" title=\"Preserve Code Formatting\">Preserve Code Formatting WordPress Plugin</a>:</strong> Writing code in a WordPress blog continues to be painful, and Scott Reilly brought out one of the first code specific Plugins that preserves the formatting for text within <code>&lt;code&gt;</code> and <code>&lt;pre&gt;</code> tags to make writing code easier.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/29/plugin-notification-disabler/\" title=\"Notification Disabler\">Notification Disabler WordPress Plugin</a>:</strong> Disabled email notifications about new and/or moderated comments, pingbacks, and/or trackbacks en masse or on an individual author basis, allowing customization of the email notification feature in WordPress.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/29/plugin-dynamic-text-replace/\" title=\"Dynamic Text Replace\">Dynamic Text Replace WordPress Plugin</a>:</strong> Allows custom dynamic text replacement which allows you to pre-define text replacement strings which are converted to their full text value when the post is saved. For instance, if you frequently link to the WordPress Codex, you can use a shortcut for the link which will convert to the full text in a link when the post saves, saving you some keystrokes.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/30/plugin-no-duplicate-comments/\" title=\"No Duplicate Comments\">No Duplicate Comments WordPress Plugin</a>:</strong> This was one of the first Plugins to battle against human and machine comment spammers by preventing duplicate comments, pingbacks, and trackbacks.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/customizable-post-listings\" title=\"Customizable Post Listings WordPress Plugin\" rel=\"tag\">Customizable Post Listings WordPress Plugin</a>:</strong> I consider this Plugin a ground breaker. Customizable Post Listings revolutionized the ways WordPress users display post and comment content on their blogs. Post and Comment information can be displayed as recent posts, related posts, by author, category, and so many ways, I had to write the <a href=\"http://lorelle.wordpress.com/2007/02/14/customizable-post-listings-wordpress-plugin/\" title=\"Customizable Post Listings WordPress Plugin\">Customizable Post Listings WordPress Plugin guide</a>, highlighting a few of the dozens of ways to use it.</li>\n</ul>\n<p>This was a major undertaking, and the WordPress Community loved these useful and powerful Plugins. Customizable Post Listings, though, became Scott&#8217;s most powerful and most desirable Plugin over the past three plus years, surviving all WordPress upgrades until just recently. </p>\n<p><img src=\"http://lorelle.files.wordpress.com/2007/02/postshighlighted.png\" alt=\"Customizable Post Listings WordPress Plugin - Random Posts example\" align=\"right\" />Starting Monday, March 31, 2008, Scott began a double version of his 2005 success with <a href=\"http://coffee2code.com/archives/2008/03/30/14-days-of-plugins/\" title=\"14 Days of WordPress Plugins\">14 Days of WordPress Plugins</a>, which began with the release of the new version of <a href=\"http://coffee2code.com/archives/2008/03/31/customizable-post-listings-v30/\" title=\"Customizable Post Listings v3.0\">Customizable Post Listings v3.0</a>.</p>\n<p>Some of the new features in this amazingly versatile Plugin are:</p>\n<ul>\n<li>Works with WordPress 2.5 and most past versions.</li>\n<li>36 ways of displaying posts and comments.</li>\n<li>Display by Recent Posts, Recently Commented Posts, Most Recent Comments, Random Posts, Recently Modified Posts&#8230;</li>\n<li>Sorting by category, author, post status, date, and more by title and/or excerpt.</li>\n<li>54 different and more dynamic percent-substitution tags.</li>\n<li>Queries the taxonomy tables for relationships.</li>\n<li>Improved Administration Panel interface and added customization.</li>\n</ul>\n<p>But the fun doesn&#8217;t stop with the update of Customizable Post Listings. In the past week, Scott has released numerous posts, updated old Plugins, and released new ones. Here are some highlights.</p>\n<ul>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/03/31/customizable-post-listings-v30/\" title=\"Customizable Post Listings v3.0\">Customizable Post Listings v3.0</a>:</strong> The newest version of this powerful and flexible Plugin for displaying posts and comments and more.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/04/safe-function-call-v10/\" title=\"Safe Function Call v1.0\">Safe Function Call v1.0</a>:</strong> Offers the ability to safely call functions not normally available from within a template, such as calling a function provided by a deactivated WordPress Plugin - great for intermediate to advanced WordPress users who like pushing the envelop with their WordPress blogs.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/04/wpuntexturize-v10/\" title=\"wpuntexturize v1.0\">wpuntexturize v1.0</a>:</strong> Prevents WordPress from displaying those annoying &#8220;smart quotes&#8221; in a blog post, those curly alternatives to straight quotes and apostrophes.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/03/custom-admin-post-listing-v11/\" title=\"Custom Admin Post Listing v1.1\">Custom Admin Post Listing v1.1</a>:</strong> Adds a feature to configure the post listing fields show in the Manage &gt; Posts Administration Panel by removing existing columns or adding columns for custom field data, giving you more functionality for custom fields.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/03/obfuscate-email-v20/\" title=\"Obfuscate E-mail v2.0\">Obfuscate E-mail v2.0</a>:</strong> The updated version of Scott&#8217;s very popular Plugin to hide email addresses from harvesters and evil-doers.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/auto-hyperlink-urls/\" title=\"Auto-hyperlink URLs\">Auto-hyperlink URLs WordPress Plugin</a>:</strong> Automatically converts text hyperlinks (URLs) and email addresses that appear as plain text into links in post content and comments, if WordPress fails to convert them.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/if-file-exists/\" title=\"If File Exists\">If File Exists WordPress Plugin</a>:</strong> Checks the existence of a file and returns a simple boolean state or displays an HTML snippet with information about the file.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/no-update-nag/\" title=\"No Update Nag\">No Update Nag WordPress Plugin</a>:</strong> Provides the option to remove the WordPress update nag which appears at the top of all Administration Panels when a new version of WordPress is released. While most users shouldn&#8217;t remove the nag, if you are a web designer, developer, or manager and you track WordPress updates and don&#8217;t need to remind your clients of when WordPress requires updates (so they don&#8217;t nag you), this is an easy way to prevent the warning from showing on those blogs.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/\" title=\"Get Custom Field Values v2.5\">Get Custom Field Values v2.5</a>:</strong> This updates Scott&#8217;s popular Plugin for WordPress 2.5 and recent versions to retrieve and control the display of custom field values and meta data for posts inside or outside of the WordPress Loop. Most custom fields must appear within the WordPress Loop, and this Plugin helps break the barriers, giving a WordPress Theme designer or blog owner more options on what content goes where.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/custom-post-limits/\" title=\"Custom Post Limits\">Custom Post Limits WordPress Plugin</a>:</strong> Custom Post Limits WordPress Plugin allows customization and control of the number of posts that appear on the front page, search results, author, category, tags, archives, and more on your blog. You can customize how many posts to appear on each type of pageview.</li>\n</ul>\n<p>So far, a week into the 14 day WordPress Plugin party, Scott has released five new Plugins and updated four older ones. A few of his Plugins have been deprecated, as their features are no longer needed in current WordPress versions, but the 5 new Plugins and the ones to come over the next 7 days will definitely make up for the loss of the old ones.</p>\n<p>Scott Reilly is one of the most innovative WordPress Plugin authors within the WordPress Community. He goes for usefulness rather than showy Plugins, improving how WordPress works for you and not against you. He may be taking requests, so if you have an idea for a great Plugin for WordPress, stop by <a href=\"http://coffee2code.com/\" title=\"Coffee2Code\">Coffee2Code</a> and offer your suggests. </p>\n<p>If you don&#8217;t have a new idea for a WordPress Plugin, stop by anyway and cheer on this exhausting two week project of giving back to the WordPress Community. </p>\n<p>Scott, good luck and thank you for all the hard work you do to help us blog better with WordPress.</p>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugins\" rel=\"tag\">wordpress plugins</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=scott+reilly\" rel=\"tag\">scott reilly</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=coffee2code\" rel=\"tag\">coffee2code</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=week+of+wordpress+plugins\" rel=\"tag\">week of wordpress plugins</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=two+weeks+of+wordpress+plugins\" rel=\"tag\">two weeks of wordpress plugins</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=customizable+post+listings\" rel=\"tag\">customizable post listings</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugin+news\" rel=\"tag\">wordpress plugin news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugin+releases\" rel=\"tag\">wordpress plugin releases</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=plugins\" rel=\"tag\">plugins</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a> <a href=\"http://feeds.feedburner.com/LorelleOnWordpress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a> <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/2444/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/2444/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/2444/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/2444/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/2444/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/2444/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/2444/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=2444&subd=lorelle&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Sun, 06 Apr 2008 00:44:04 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Lorelle VanFossen\";}s:7:\"summary\";s:15006:\"<div class=\"snap_preview\"><br /><p><a href=\"http://lorelle.wordpress.com/tag/wordpress-plugins/\" title=\"WordPress Plugins\"><img src=\"http://lorelle.files.wordpress.com/2007/01/wpplugins.gif\" alt=\"WordPress Plugins\" align=\"right\" /></a>In March of 2005, <a href=\"http://coffee2code.com/\" title=\"Coffee2Code\">Scott Reilly of Coffee2Code</a> shook up the WordPress Community with <a href=\"http://coffee2code.com/archives/2005/03/23/7-days-of-plugins/\" title=\"7 Days of Plugins\">7 Days of Plugins</a>. During that week, Scott created and released:</p>\n<ul>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/23/plugin-easy-post-to-post-links/\" title=\"Easy Post-to-Post Links\">Easy Post-to-Post Links WordPress Plugin</a>:</strong> A shortcut code for referencing onsite blog posts by id or post slug name.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/24/plugin-obfuscate-e-mail/\" title=\"Obfuscate E-mail\">Obfuscate E-mail WordPress Plugin</a>:</strong> Automatically disguise emails within blog posts and Pages.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/25/plugin-never-moderate-admin-or-post-author/\" title=\"Never Moderate Admin or Post Author\">Never Moderate Admin or Post Author WordPress Plugin</a>:</strong> Prevents moderation or marking as spam any comments by the site administrator, post author, or a registered user above a specified user level, no matter how spammy the comment.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/26/plugin-sync-draft-slug-and-title/\" title=\"Sync Draft Slug and Title\">Sync Draft Slug and Title WordPress Plugin</a>:</strong> While the post is still in draft mode, it keeps the post slug in sync with any changes to the post title, no longer necessary with current versions of WordPress, but critical then.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/28/plugin-author-images/\" title=\"Author Image(s)\">Author Image(s) WordPress Plugin</a>:</strong> Offers the feature to add an author image to the blog post.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/29/plugin-preserve-code-formatting/\" title=\"Preserve Code Formatting\">Preserve Code Formatting WordPress Plugin</a>:</strong> Writing code in a WordPress blog continues to be painful, and Scott Reilly brought out one of the first code specific Plugins that preserves the formatting for text within <code>&lt;code&gt;</code> and <code>&lt;pre&gt;</code> tags to make writing code easier.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/29/plugin-notification-disabler/\" title=\"Notification Disabler\">Notification Disabler WordPress Plugin</a>:</strong> Disabled email notifications about new and/or moderated comments, pingbacks, and/or trackbacks en masse or on an individual author basis, allowing customization of the email notification feature in WordPress.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/29/plugin-dynamic-text-replace/\" title=\"Dynamic Text Replace\">Dynamic Text Replace WordPress Plugin</a>:</strong> Allows custom dynamic text replacement which allows you to pre-define text replacement strings which are converted to their full text value when the post is saved. For instance, if you frequently link to the WordPress Codex, you can use a shortcut for the link which will convert to the full text in a link when the post saves, saving you some keystrokes.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2005/03/30/plugin-no-duplicate-comments/\" title=\"No Duplicate Comments\">No Duplicate Comments WordPress Plugin</a>:</strong> This was one of the first Plugins to battle against human and machine comment spammers by preventing duplicate comments, pingbacks, and trackbacks.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/customizable-post-listings\" title=\"Customizable Post Listings WordPress Plugin\" rel=\"tag\">Customizable Post Listings WordPress Plugin</a>:</strong> I consider this Plugin a ground breaker. Customizable Post Listings revolutionized the ways WordPress users display post and comment content on their blogs. Post and Comment information can be displayed as recent posts, related posts, by author, category, and so many ways, I had to write the <a href=\"http://lorelle.wordpress.com/2007/02/14/customizable-post-listings-wordpress-plugin/\" title=\"Customizable Post Listings WordPress Plugin\">Customizable Post Listings WordPress Plugin guide</a>, highlighting a few of the dozens of ways to use it.</li>\n</ul>\n<p>This was a major undertaking, and the WordPress Community loved these useful and powerful Plugins. Customizable Post Listings, though, became Scott&#8217;s most powerful and most desirable Plugin over the past three plus years, surviving all WordPress upgrades until just recently. </p>\n<p><img src=\"http://lorelle.files.wordpress.com/2007/02/postshighlighted.png\" alt=\"Customizable Post Listings WordPress Plugin - Random Posts example\" align=\"right\" />Starting Monday, March 31, 2008, Scott began a double version of his 2005 success with <a href=\"http://coffee2code.com/archives/2008/03/30/14-days-of-plugins/\" title=\"14 Days of WordPress Plugins\">14 Days of WordPress Plugins</a>, which began with the release of the new version of <a href=\"http://coffee2code.com/archives/2008/03/31/customizable-post-listings-v30/\" title=\"Customizable Post Listings v3.0\">Customizable Post Listings v3.0</a>.</p>\n<p>Some of the new features in this amazingly versatile Plugin are:</p>\n<ul>\n<li>Works with WordPress 2.5 and most past versions.</li>\n<li>36 ways of displaying posts and comments.</li>\n<li>Display by Recent Posts, Recently Commented Posts, Most Recent Comments, Random Posts, Recently Modified Posts&#8230;</li>\n<li>Sorting by category, author, post status, date, and more by title and/or excerpt.</li>\n<li>54 different and more dynamic percent-substitution tags.</li>\n<li>Queries the taxonomy tables for relationships.</li>\n<li>Improved Administration Panel interface and added customization.</li>\n</ul>\n<p>But the fun doesn&#8217;t stop with the update of Customizable Post Listings. In the past week, Scott has released numerous posts, updated old Plugins, and released new ones. Here are some highlights.</p>\n<ul>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/03/31/customizable-post-listings-v30/\" title=\"Customizable Post Listings v3.0\">Customizable Post Listings v3.0</a>:</strong> The newest version of this powerful and flexible Plugin for displaying posts and comments and more.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/04/safe-function-call-v10/\" title=\"Safe Function Call v1.0\">Safe Function Call v1.0</a>:</strong> Offers the ability to safely call functions not normally available from within a template, such as calling a function provided by a deactivated WordPress Plugin - great for intermediate to advanced WordPress users who like pushing the envelop with their WordPress blogs.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/04/wpuntexturize-v10/\" title=\"wpuntexturize v1.0\">wpuntexturize v1.0</a>:</strong> Prevents WordPress from displaying those annoying &#8220;smart quotes&#8221; in a blog post, those curly alternatives to straight quotes and apostrophes.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/03/custom-admin-post-listing-v11/\" title=\"Custom Admin Post Listing v1.1\">Custom Admin Post Listing v1.1</a>:</strong> Adds a feature to configure the post listing fields show in the Manage &gt; Posts Administration Panel by removing existing columns or adding columns for custom field data, giving you more functionality for custom fields.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/03/obfuscate-email-v20/\" title=\"Obfuscate E-mail v2.0\">Obfuscate E-mail v2.0</a>:</strong> The updated version of Scott&#8217;s very popular Plugin to hide email addresses from harvesters and evil-doers.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/auto-hyperlink-urls/\" title=\"Auto-hyperlink URLs\">Auto-hyperlink URLs WordPress Plugin</a>:</strong> Automatically converts text hyperlinks (URLs) and email addresses that appear as plain text into links in post content and comments, if WordPress fails to convert them.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/if-file-exists/\" title=\"If File Exists\">If File Exists WordPress Plugin</a>:</strong> Checks the existence of a file and returns a simple boolean state or displays an HTML snippet with information about the file.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/no-update-nag/\" title=\"No Update Nag\">No Update Nag WordPress Plugin</a>:</strong> Provides the option to remove the WordPress update nag which appears at the top of all Administration Panels when a new version of WordPress is released. While most users shouldn&#8217;t remove the nag, if you are a web designer, developer, or manager and you track WordPress updates and don&#8217;t need to remind your clients of when WordPress requires updates (so they don&#8217;t nag you), this is an easy way to prevent the warning from showing on those blogs.</li>\n<li><strong><a href=\"http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/\" title=\"Get Custom Field Values v2.5\">Get Custom Field Values v2.5</a>:</strong> This updates Scott&#8217;s popular Plugin for WordPress 2.5 and recent versions to retrieve and control the display of custom field values and meta data for posts inside or outside of the WordPress Loop. Most custom fields must appear within the WordPress Loop, and this Plugin helps break the barriers, giving a WordPress Theme designer or blog owner more options on what content goes where.</li>\n<li><strong><a href=\"http://coffee2code.com/wp-plugins/custom-post-limits/\" title=\"Custom Post Limits\">Custom Post Limits WordPress Plugin</a>:</strong> Custom Post Limits WordPress Plugin allows customization and control of the number of posts that appear on the front page, search results, author, category, tags, archives, and more on your blog. You can customize how many posts to appear on each type of pageview.</li>\n</ul>\n<p>So far, a week into the 14 day WordPress Plugin party, Scott has released five new Plugins and updated four older ones. A few of his Plugins have been deprecated, as their features are no longer needed in current WordPress versions, but the 5 new Plugins and the ones to come over the next 7 days will definitely make up for the loss of the old ones.</p>\n<p>Scott Reilly is one of the most innovative WordPress Plugin authors within the WordPress Community. He goes for usefulness rather than showy Plugins, improving how WordPress works for you and not against you. He may be taking requests, so if you have an idea for a great Plugin for WordPress, stop by <a href=\"http://coffee2code.com/\" title=\"Coffee2Code\">Coffee2Code</a> and offer your suggests. </p>\n<p>If you don&#8217;t have a new idea for a WordPress Plugin, stop by anyway and cheer on this exhausting two week project of giving back to the WordPress Community. </p>\n<p>Scott, good luck and thank you for all the hard work you do to help us blog better with WordPress.</p>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugins\" rel=\"tag\">wordpress plugins</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=scott+reilly\" rel=\"tag\">scott reilly</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=coffee2code\" rel=\"tag\">coffee2code</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=week+of+wordpress+plugins\" rel=\"tag\">week of wordpress plugins</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=two+weeks+of+wordpress+plugins\" rel=\"tag\">two weeks of wordpress plugins</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=customizable+post+listings\" rel=\"tag\">customizable post listings</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugin+news\" rel=\"tag\">wordpress plugin news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugin+releases\" rel=\"tag\">wordpress plugin releases</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=plugins\" rel=\"tag\">plugins</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a> <a href=\"http://feeds.feedburner.com/LorelleOnWordpress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a> <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/2444/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/2444/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/2444/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/2444/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/2444/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/2444/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/2444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/2444/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=2444&subd=lorelle&ref=&feed=1\" /></div>\";}i:30;a:7:{s:5:\"title\";s:56:\"Weblog Tools Collection: Introducing Weblog Tools Videos\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3382\";s:4:\"link\";s:85:\"http://weblogtoolscollection.com/archives/2008/04/05/introducing-weblog-tools-videos/\";s:11:\"description\";s:1979:\"<p>We had talked about introducing something new and exciting and I would like to take this opportunity to introduce <a href=\"http://weblogtoolsvideos.com/\">Weblog Tools Videos</a> to my readers. It is simply an extension of Weblog Tools Collection and a means for us to have the ability to find, upload, view, peruse and aggregate videos related to WordPress, blogging, tutorials, web design etc.</p>\n<p>I am really excited about quite a few of the features of Weblog Tools Videos. In addition to the obvious ability to browse through the latest videos and the most popular ones, readers can add videos from various video upload sites, link to videos published elsewhere, upload their own videos and most importantly, record and upload videos from their computers <em>directly from their webcam</em>. There are plans to allow screencast capture and record and post Skype videos and conferences as well. So go ahead and <a href=\"http://weblogtoolsvideos.com/login/\">register</a> and start uploading and linking videos.</p>\n<p>The power of Weblog Tools Videos is in its users (which is why I ask you to register). When you upload a WordPress or a blogging video to YouTube, your video is lost in YouTube&#8217;s content stream, picked up and washed away in the barrage of new content. On Weblog Tools Videos, your multimedia will be exposed to a highly concentrated and well defined audience looking to view and absorb just the kind of media you are looking to produce. Since most of the other features, including the embedding and the social interaction is the same, you could upload your newly produced videos to Weblog Tools Videos and use it/embed it on your blog and/or social content in almost exactly the same way as before (expect an embed plugin soon). In the process, you will receive the attention of the Weblog Tools Collection audience as well as benefit from the exposure on your own site.</p>\n<p>Are you <a href=\"http://weblogtoolsvideos.com/\">videoing</a> yet?</p>\";s:7:\"pubdate\";s:31:\"Sat, 05 Apr 2008 15:51:12 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:1979:\"<p>We had talked about introducing something new and exciting and I would like to take this opportunity to introduce <a href=\"http://weblogtoolsvideos.com/\">Weblog Tools Videos</a> to my readers. It is simply an extension of Weblog Tools Collection and a means for us to have the ability to find, upload, view, peruse and aggregate videos related to WordPress, blogging, tutorials, web design etc.</p>\n<p>I am really excited about quite a few of the features of Weblog Tools Videos. In addition to the obvious ability to browse through the latest videos and the most popular ones, readers can add videos from various video upload sites, link to videos published elsewhere, upload their own videos and most importantly, record and upload videos from their computers <em>directly from their webcam</em>. There are plans to allow screencast capture and record and post Skype videos and conferences as well. So go ahead and <a href=\"http://weblogtoolsvideos.com/login/\">register</a> and start uploading and linking videos.</p>\n<p>The power of Weblog Tools Videos is in its users (which is why I ask you to register). When you upload a WordPress or a blogging video to YouTube, your video is lost in YouTube&#8217;s content stream, picked up and washed away in the barrage of new content. On Weblog Tools Videos, your multimedia will be exposed to a highly concentrated and well defined audience looking to view and absorb just the kind of media you are looking to produce. Since most of the other features, including the embedding and the social interaction is the same, you could upload your newly produced videos to Weblog Tools Videos and use it/embed it on your blog and/or social content in almost exactly the same way as before (expect an embed plugin soon). In the process, you will receive the attention of the Weblog Tools Collection audience as well as benefit from the exposure on your own site.</p>\n<p>Are you <a href=\"http://weblogtoolsvideos.com/\">videoing</a> yet?</p>\";}i:31;a:7:{s:5:\"title\";s:57:\"Ryan Boren: New admin UI on WordPress.com, 2.5.1, and 2.6\";s:4:\"guid\";s:23:\"http://boren.nu/?p=1545\";s:4:\"link\";s:76:\"http://boren.nu/archives/2008/04/04/new-admin-ui-on-wordpresscom-251-and-26/\";s:11:\"description\";s:824:\"<p>I went on an already planned vacation on the day we released <a href=\"http://wordpress.org/development/2008/03/wordpress-25-brecker/\">2.5</a>. While I&#8217;ve been chilling out with my family in SoCal, the WP devs have been fixing bugs in preparation for 2.5.1, and the <a href=\"http://automattic.com/\">Automattic</a> crew <a href=\"http://wordpress.com/blog/2008/04/04/new-dashboard/\">unveiled the new admin UI</a> on <a href=\"http://wordpress.com/\">WordPress.com</a>. Feedback on the new UI from the large WordPress.com user base will be interesting and educational.</p>\n<p>I&#8217;ll be back to WP work on Monday. I and the other WP devs will be focusing on fixing bugs for 2.5.1 and planning 2.6 features. After the lengthy 2.5 cycle, we&#8217;ll aim for a shorter feature list and quicker turn-around on 2.6.</p>\";s:7:\"pubdate\";s:31:\"Sat, 05 Apr 2008 01:32:35 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:824:\"<p>I went on an already planned vacation on the day we released <a href=\"http://wordpress.org/development/2008/03/wordpress-25-brecker/\">2.5</a>. While I&#8217;ve been chilling out with my family in SoCal, the WP devs have been fixing bugs in preparation for 2.5.1, and the <a href=\"http://automattic.com/\">Automattic</a> crew <a href=\"http://wordpress.com/blog/2008/04/04/new-dashboard/\">unveiled the new admin UI</a> on <a href=\"http://wordpress.com/\">WordPress.com</a>. Feedback on the new UI from the large WordPress.com user base will be interesting and educational.</p>\n<p>I&#8217;ll be back to WP work on Monday. I and the other WP devs will be focusing on fixing bugs for 2.5.1 and planning 2.6 features. After the lengthy 2.5 cycle, we&#8217;ll aim for a shorter feature list and quicker turn-around on 2.6.</p>\";}i:32;a:7:{s:5:\"title\";s:61:\"Weblog Tools Collection: Ultimate Guide to the WordPress Loop\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=3374\";s:4:\"link\";s:90:\"http://weblogtoolscollection.com/archives/2008/04/04/ultimate-guide-to-the-wordpress-loop/\";s:11:\"description\";s:891:\"<p><a href=\"http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/\">The Ultimate Guide to the WordPress Loop</a>: Ah, the famed WordPress loop that runs it all. Ronald has done a <a href=\"http://weblogtoolscollection.com/archives/2007/06/06/global-variables-and-the-wordpress-loop/\">very nice job of identifying global variables in the WordPress loop</a> in the past. Much like that post, this guide is for themers and plugin developers who want the inside scoop with some technical details on how things progress and what each of the pieces of code mean and how they do their job. The release of the fantastic 2.5 Brecker, all of this useful documentation being put together by the community and the tremendous theme designs being released, makes me want to add some fuel to the fire and build up the fever pitch. Stay tuned to this channel for some exciting news.</p>\";s:7:\"pubdate\";s:31:\"Fri, 04 Apr 2008 23:30:09 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:891:\"<p><a href=\"http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/\">The Ultimate Guide to the WordPress Loop</a>: Ah, the famed WordPress loop that runs it all. Ronald has done a <a href=\"http://weblogtoolscollection.com/archives/2007/06/06/global-variables-and-the-wordpress-loop/\">very nice job of identifying global variables in the WordPress loop</a> in the past. Much like that post, this guide is for themers and plugin developers who want the inside scoop with some technical details on how things progress and what each of the pieces of code mean and how they do their job. The release of the fantastic 2.5 Brecker, all of this useful documentation being put together by the community and the tremendous theme designs being released, makes me want to add some fuel to the fire and build up the fever pitch. Stay tuned to this channel for some exciting news.</p>\";}i:33;a:7:{s:5:\"title\";s:31:\"Matt: WP Meetup in Philadelphia\";s:4:\"guid\";s:20:\"http://ma.tt/?p=4981\";s:4:\"link\";s:47:\"http://ma.tt/2008/04/wp-meetup-in-philadelphia/\";s:11:\"description\";s:432:\"<p>I&#8217;m being <a href=\"http://biz.yahoo.com/bw/080401/20080401006261.html?.v=1\">honored by the Temple Fox School IT Awards</a> so I&#8217;ll be in Philadelphia next week. I extended my trip so we can do a WordPress meetup on Thursday night, April 10. The current plan, thanks to <a href=\"http://www.round3media.com/\">Alex Hillman</a>, is meeting at <a href=\"http://www.nationalmechanics.com/\">National Mechanics</a> at 6PM.</p>\";s:7:\"pubdate\";s:31:\"Thu, 03 Apr 2008 23:40:36 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:432:\"<p>I&#8217;m being <a href=\"http://biz.yahoo.com/bw/080401/20080401006261.html?.v=1\">honored by the Temple Fox School IT Awards</a> so I&#8217;ll be in Philadelphia next week. I extended my trip so we can do a WordPress meetup on Thursday night, April 10. The current plan, thanks to <a href=\"http://www.round3media.com/\">Alex Hillman</a>, is meeting at <a href=\"http://www.nationalmechanics.com/\">National Mechanics</a> at 6PM.</p>\";}i:34;a:7:{s:5:\"title\";s:53:\"Weblog Tools Collection: Organizing A WordCamp Part 1\";s:4:\"guid\";s:82:\"http://weblogtoolscollection.com/archives/2008/04/03/organizing-a-wordcamp-part-1/\";s:4:\"link\";s:82:\"http://weblogtoolscollection.com/archives/2008/04/03/organizing-a-wordcamp-part-1/\";s:11:\"description\";s:1299:\"<p>WordCamps are awesome events that take up an extraordinary amount of time and effort to put together. I was lucky enough to be able to attend the recent WordCamp Dallas and I must admit, Charles Stricklin along with John Pozadzides did one heck of a job putting on a great conference. I thought it went over rather well and I have yet to hear anyone complain about any aspect of the event.</p>\n<p>As promised, <a href=\"http://charlesstricklin.com/2008/04/01/organize-a-wordcamp-1/\" title=\"http://charlesstricklin.com/2008/04/01/organize-a-wordcamp-1/\" target=\"_blank\">Charles has published the first</a> in a series of articles which will cover in detail what it took in order to turn WordCamp Dallas from an idea, into a reality. The first article contains information related to the very beginnings of a WordCamp event. This is the brainstorming session.</p>\n<p>The first three steps you should consider before going any further include:</p>\n<ul>\n<li><strong>Gauge interest.</strong></li>\n<li><strong>Determine the overall structure of your WordCamp.</strong></li>\n<li><strong>Pick a weekend, and maybe even a few alternate weekends</strong></li>\n</ul>\n<p>Charles plans on tackling the subjects of venue selection, pricing and sponsors so be sure to keep an eye on his blog for those posts.</p>\";s:7:\"pubdate\";s:31:\"Thu, 03 Apr 2008 20:52:04 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jeffro2pt0\";}s:7:\"summary\";s:1299:\"<p>WordCamps are awesome events that take up an extraordinary amount of time and effort to put together. I was lucky enough to be able to attend the recent WordCamp Dallas and I must admit, Charles Stricklin along with John Pozadzides did one heck of a job putting on a great conference. I thought it went over rather well and I have yet to hear anyone complain about any aspect of the event.</p>\n<p>As promised, <a href=\"http://charlesstricklin.com/2008/04/01/organize-a-wordcamp-1/\" title=\"http://charlesstricklin.com/2008/04/01/organize-a-wordcamp-1/\" target=\"_blank\">Charles has published the first</a> in a series of articles which will cover in detail what it took in order to turn WordCamp Dallas from an idea, into a reality. The first article contains information related to the very beginnings of a WordCamp event. This is the brainstorming session.</p>\n<p>The first three steps you should consider before going any further include:</p>\n<ul>\n<li><strong>Gauge interest.</strong></li>\n<li><strong>Determine the overall structure of your WordCamp.</strong></li>\n<li><strong>Pick a weekend, and maybe even a few alternate weekends</strong></li>\n</ul>\n<p>Charles plans on tackling the subjects of venue selection, pricing and sponsors so be sure to keep an eye on his blog for those posts.</p>\";}i:35;a:7:{s:5:\"title\";s:17:\"Matt: New bbPress\";s:4:\"guid\";s:20:\"http://ma.tt/?p=4980\";s:4:\"link\";s:33:\"http://ma.tt/2008/04/new-bbpress/\";s:11:\"description\";s:94:\"<p><a href=\"http://bbpress.org/blog/2008/04/bbpress-09-brubeck/\">bbPress 0.9 released</a>.</p>\";s:7:\"pubdate\";s:31:\"Thu, 03 Apr 2008 16:34:44 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:94:\"<p><a href=\"http://bbpress.org/blog/2008/04/bbpress-09-brubeck/\">bbPress 0.9 released</a>.</p>\";}i:36;a:7:{s:5:\"title\";s:66:\"Donncha: Slow down trackback spam with Simple Trackback Validation\";s:4:\"guid\";s:29:\"http://ocaoimh.ie/?p=89493627\";s:4:\"link\";s:87:\"http://ocaoimh.ie/2008/04/03/slow-down-trackback-spam-with-simple-trackback-validation/\";s:11:\"description\";s:2482:\"<p>I used the <a href=\"http://sw-guide.de/wordpress/plugins/simple-trackback-validation/\">Simple Trackback Validation plugin</a> for a while until I noticed these errors showing up in php_errors.</p>\n<blockquote><p><code>PHP Fatal error: Cannot instantiate non-existent class: snoopy in /home/www/wp-content/plugins/simple-trackback-validation/simple-trackback-validation.php on line 158</code></p></blockquote>\n<p>This morning I decided to fix it as the spammers have been going crazy. I spotted dozens of POST requests to trackbacks as I tailed my log files. </p>\n<div align=\"center\"><a href=\"http://ocaoimh.ie/?attachment_id=89493628\"><img src=\"http://ocaoimh.ie/wp-content/uploads/2008/04/spamtrackbacks-300x276.jpg\" alt=\"\" title=\"spam trackbacks\" width=\"300\" height=\"276\" class=\"alignnone size-medium wp-image-89493628\" /></a></div>\n<p>How to fix the plugin:</p>\n<ol>\n<li> Open simple-trackback-validation.php in a text editor and go to line 158. It should be this line:<br />\n<blockquote>$stbvSnoopy = new Snoopy;</p></blockquote>\n</li>\n<li> Above that line, add the folloing line:<br />\n<blockquote>include_once( ABSPATH . \'wp-includes/class-snoopy.php\' );</p></blockquote>\n</li>\n<li> Save the file and upload to your host again.</li>\n</ol>\n<p>It&#8217;s no substitute for <a href=\"http://akismet.com/\">Akismet</a> but along with <a href=\"http://ocaoimh.ie/cookies-for-comments/\">Cookies for comments</a> it should help keep your blog spam free!</p>\n<p>Or, as I&#8217;ve just done because this blog is being inundated with trackback spam right now (over 17,000 in the last 9 hours), I blocked off access completely with this rewrite rule. Any WordPress blog will send a pingback anyway and MT even supports pingback now!</p>\n<blockquote><p><code>RewriteRule ^(.*)/trackback/ - [F]</code></p></blockquote>\n<p><img src=\"http://ocaoimh.ie/?voyeur=1\" /></p><p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/2005/03/09/is-it-trackback-spam-from-other-blogs/\" rel=\"bookmark\" title=\"Permanent Link: Is It Trackback Spam If From Other Blogs?\">Is It Trackback Spam If From Other Blogs?</a></li><li><a href=\"http://ocaoimh.ie/2008/03/06/please-sir-can-i-have-more/\" rel=\"bookmark\" title=\"Permanent Link: Please sir, can I have more?\">Please sir, can I have more?</a></li><li><a href=\"http://ocaoimh.ie/2007/10/10/keep-the-libwww-perl-bad-guys-out/\" rel=\"bookmark\" title=\"Permanent Link: Keep the libwww-perl bots out\">Keep the libwww-perl bots out</a></li></ul></p>\";s:7:\"pubdate\";s:31:\"Thu, 03 Apr 2008 06:30:06 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Donncha\";}s:7:\"summary\";s:2482:\"<p>I used the <a href=\"http://sw-guide.de/wordpress/plugins/simple-trackback-validation/\">Simple Trackback Validation plugin</a> for a while until I noticed these errors showing up in php_errors.</p>\n<blockquote><p><code>PHP Fatal error: Cannot instantiate non-existent class: snoopy in /home/www/wp-content/plugins/simple-trackback-validation/simple-trackback-validation.php on line 158</code></p></blockquote>\n<p>This morning I decided to fix it as the spammers have been going crazy. I spotted dozens of POST requests to trackbacks as I tailed my log files. </p>\n<div align=\"center\"><a href=\"http://ocaoimh.ie/?attachment_id=89493628\"><img src=\"http://ocaoimh.ie/wp-content/uploads/2008/04/spamtrackbacks-300x276.jpg\" alt=\"\" title=\"spam trackbacks\" width=\"300\" height=\"276\" class=\"alignnone size-medium wp-image-89493628\" /></a></div>\n<p>How to fix the plugin:</p>\n<ol>\n<li> Open simple-trackback-validation.php in a text editor and go to line 158. It should be this line:<br />\n<blockquote>$stbvSnoopy = new Snoopy;</p></blockquote>\n</li>\n<li> Above that line, add the folloing line:<br />\n<blockquote>include_once( ABSPATH . \'wp-includes/class-snoopy.php\' );</p></blockquote>\n</li>\n<li> Save the file and upload to your host again.</li>\n</ol>\n<p>It&#8217;s no substitute for <a href=\"http://akismet.com/\">Akismet</a> but along with <a href=\"http://ocaoimh.ie/cookies-for-comments/\">Cookies for comments</a> it should help keep your blog spam free!</p>\n<p>Or, as I&#8217;ve just done because this blog is being inundated with trackback spam right now (over 17,000 in the last 9 hours), I blocked off access completely with this rewrite rule. Any WordPress blog will send a pingback anyway and MT even supports pingback now!</p>\n<blockquote><p><code>RewriteRule ^(.*)/trackback/ - [F]</code></p></blockquote>\n<p><img src=\"http://ocaoimh.ie/?voyeur=1\" /></p><p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/2005/03/09/is-it-trackback-spam-from-other-blogs/\" rel=\"bookmark\" title=\"Permanent Link: Is It Trackback Spam If From Other Blogs?\">Is It Trackback Spam If From Other Blogs?</a></li><li><a href=\"http://ocaoimh.ie/2008/03/06/please-sir-can-i-have-more/\" rel=\"bookmark\" title=\"Permanent Link: Please sir, can I have more?\">Please sir, can I have more?</a></li><li><a href=\"http://ocaoimh.ie/2007/10/10/keep-the-libwww-perl-bad-guys-out/\" rel=\"bookmark\" title=\"Permanent Link: Keep the libwww-perl bots out\">Keep the libwww-perl bots out</a></li></ul></p>\";}i:37;a:7:{s:5:\"title\";s:29:\"bbPress: bbPress 0.9 released\";s:4:\"guid\";s:24:\"http://bbpress.org/?p=79\";s:4:\"link\";s:51:\"http://bbpress.org/blog/2008/04/bbpress-09-brubeck/\";s:11:\"description\";s:5893:\"<p>The bbPress team is happy to release <a href=\"http://bbpress.org/download/\">bbPress 0.9 for download</a>. This release is important for anyone who integrates bbPress with WordPress and wishes to update to WordPress 2.5.</p>\n<p>Primarily this is a compatibility release so that we can continue to provide the same integration levels with WordPress as in the past, however quite a few other improvements have made their way into this version.</p>\n<p>Improvements and changes include:</p>\n<ul>\n<li>\n New installer:</p>\n<ul>\n<li>Creates your bb-config.php file for you when possible.</li>\n<li>Allows for setting up integration with WordPress at install time.</li>\n<li>Supports languages other than English when language translations are available.</li>\n<li>Looks pretty.</li>\n</ul>\n</li>\n<li>Additional RSS feeds for views.</li>\n<li>A &#8220;new topics&#8221; RSS feed, available on the front-page and on each forum. This feed only returns the first post from each new topic as it is created, instead of all posts.</li>\n<li>More configurable &lt;title&gt; tag available to themes.</li>\n<li>More secure authentication cookies which are compatible with WordPress 2.5</li>\n<li>Passwords now stored using &#8220;phpass&#8221; hashing library instead of md5. If you still want to store your passwords as md5 for any reason, there is a plugin <a href=\"http://bbpress.org/plugins/topic/md5-insecurity-for-bbpress/\">here</a> which will do that for you.</li>\n<li>A second core theme called &#8220;Kakumei Blue&#8221;. This theme demonstrates just how little you need to do to start creating a new theme.</li>\n<li>&#8220;General&#8221; and &#8220;WordPress Integration&#8221; options configurable via admin interface.</li>\n<li>Built-in support for <a href=\"http://gravatar.com/\">Gravatars</a>, implemented in a way that makes 3rd-party avatar plugins much easier to author.</li>\n<li>New &#8220;Date and time format&#8221; and &#8220;Date format&#8221; options.</li>\n<li>Akismet and Bozo functionalities have been moved to plugins. Akismet key now enterable via an admin interface.</li>\n<li>Removed &#8220;replies&#8221; querystring argument (?replies=#) from topic links. If you still want that functionality, there is a plugin <a href=\"http://trac.bbpress.org/attachment/ticket/768/repliesequalnumber.php\">here</a> which should emulate it.</li>\n<li>Fixes to use of PHP &#8220;glob()&#8221; function to avoid errors on hosts that don&#8217;t support it.</li>\n<li>Moderators can now manage tags by default.</li>\n<li>Fixes to slug incrementing.</li>\n<li>The old &#8220;admin_email&#8221; setting is now called &#8220;from_email&#8221;. This is now the email address that emails from your installation appear to come from.</li>\n<li>&#8220;No replies&#8221; view is now technically &#8220;no replies and greater than 2 hours old&#8221;.</li>\n<li>Improvements to the export script towards the integration of an upcoming import script.</li>\n<li>RSS feeds now sent as UTF-8</li>\n<li>Full support for slug-based feeds on forum and topic feeds.</li>\n<li>Keymasters can no longer be demoted by non-keymasters.</li>\n<li>Many other smaller bug and typo fixes.</li>\n</ul>\n<h3>Installation</h3>\n<p>We intend to provide updated and more detailed <a href=\"http://bbpress.org/documentation/installation/\">installation</a> and <a href=\"http://bbpress.org/documentation/integration-with-wordpress/\">integration</a> instructions in the near future, but most users will find the following &#8220;quickstart&#8221; sufficient:</p>\n<ol>\n<li>Download bbPress 0.9 from the <a href=\"http://bbpress.org/download/\">download page</a></li>\n<li>Upload the uncompressed files your server</li>\n<li>Optionally upload <a href=\"http://svn.automattic.com/bbpress-i18n/\">language files</a> to bb-includes/languages/ - You will have to create this directory\n</li>\n<li>Visit the intended URL of the bbPress site</li>\n<li>You will be greeted with the bbPress installer</li>\n<li>Follow the instructions in the installer</li>\n<li>If you have any questions, ask in the <a href=\"http://bbpress.org/forums/\">forums</a></li>\n</ol>\n<h3>Upgrading</h3>\n<p>Upgrading to bbPress 0.9 will not be as straight-forward as past releases. Our recommended upgrade path is to follow the sequence below:</p>\n<ol>\n<li>Backup everything first! Database and code</li>\n<li>Deactivate all plugins</li>\n<li>Rename your existing <code>config.php</code> file to <code>config.old.php</code></li>\n<li>Upload the new bbPress 0.9 files</li>\n<li>Go to your bbPress forum URL and run the installer which appears</li>\n<li>On step one of the installer, enter the database details for the same database you had been using for the previous version</li>\n<li>The installer will either create a new config file or show you the contents to paste into a file manually</li>\n<li>As soon as your new config file is created and validated by the installer, you should be redirected to your forum index page</li>\n<li>From the forum index page, log-in as a keymaster and then visit the &#8220;admin&#8221; area</li>\n<li>You will be prompted to upgrade the installation, go ahead and do so</li>\n<li>Once the upgrade is complete, visit the new &#8220;Settings&#8221; area of the admin</li>\n<li>Edit any details or settings in the &#8220;General&#8221; section</li>\n<li>Users integrating with WordPress may wish to review the options in the &#8220;WordPress Integration&#8221; area</li>\n<li>Reactivate plugins one-by-one and test them as you go</li>\n</ol>\n<h3>Dedication</h3>\n<p>bbPress 0.9 is named &#8220;Brubeck&#8221; after American Jazz pianist <a href=\"http://en.wikipedia.org/wiki/Dave_Brubeck\">Dave Brubeck</a>. In his early career he often performed with saxophonist <a href=\"http://en.wikipedia.org/wiki/Paul_Desmond\">Paul Desmond</a>, after whom bbPress 0.8 was named. Brubeck has composed a number of jazz standards many of which employ complex rhythms and unusual time signatures.</p>\";s:7:\"pubdate\";s:31:\"Thu, 03 Apr 2008 03:16:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Sam Bauers\";}s:7:\"summary\";s:5893:\"<p>The bbPress team is happy to release <a href=\"http://bbpress.org/download/\">bbPress 0.9 for download</a>. This release is important for anyone who integrates bbPress with WordPress and wishes to update to WordPress 2.5.</p>\n<p>Primarily this is a compatibility release so that we can continue to provide the same integration levels with WordPress as in the past, however quite a few other improvements have made their way into this version.</p>\n<p>Improvements and changes include:</p>\n<ul>\n<li>\n New installer:</p>\n<ul>\n<li>Creates your bb-config.php file for you when possible.</li>\n<li>Allows for setting up integration with WordPress at install time.</li>\n<li>Supports languages other than English when language translations are available.</li>\n<li>Looks pretty.</li>\n</ul>\n</li>\n<li>Additional RSS feeds for views.</li>\n<li>A &#8220;new topics&#8221; RSS feed, available on the front-page and on each forum. This feed only returns the first post from each new topic as it is created, instead of all posts.</li>\n<li>More configurable &lt;title&gt; tag available to themes.</li>\n<li>More secure authentication cookies which are compatible with WordPress 2.5</li>\n<li>Passwords now stored using &#8220;phpass&#8221; hashing library instead of md5. If you still want to store your passwords as md5 for any reason, there is a plugin <a href=\"http://bbpress.org/plugins/topic/md5-insecurity-for-bbpress/\">here</a> which will do that for you.</li>\n<li>A second core theme called &#8220;Kakumei Blue&#8221;. This theme demonstrates just how little you need to do to start creating a new theme.</li>\n<li>&#8220;General&#8221; and &#8220;WordPress Integration&#8221; options configurable via admin interface.</li>\n<li>Built-in support for <a href=\"http://gravatar.com/\">Gravatars</a>, implemented in a way that makes 3rd-party avatar plugins much easier to author.</li>\n<li>New &#8220;Date and time format&#8221; and &#8220;Date format&#8221; options.</li>\n<li>Akismet and Bozo functionalities have been moved to plugins. Akismet key now enterable via an admin interface.</li>\n<li>Removed &#8220;replies&#8221; querystring argument (?replies=#) from topic links. If you still want that functionality, there is a plugin <a href=\"http://trac.bbpress.org/attachment/ticket/768/repliesequalnumber.php\">here</a> which should emulate it.</li>\n<li>Fixes to use of PHP &#8220;glob()&#8221; function to avoid errors on hosts that don&#8217;t support it.</li>\n<li>Moderators can now manage tags by default.</li>\n<li>Fixes to slug incrementing.</li>\n<li>The old &#8220;admin_email&#8221; setting is now called &#8220;from_email&#8221;. This is now the email address that emails from your installation appear to come from.</li>\n<li>&#8220;No replies&#8221; view is now technically &#8220;no replies and greater than 2 hours old&#8221;.</li>\n<li>Improvements to the export script towards the integration of an upcoming import script.</li>\n<li>RSS feeds now sent as UTF-8</li>\n<li>Full support for slug-based feeds on forum and topic feeds.</li>\n<li>Keymasters can no longer be demoted by non-keymasters.</li>\n<li>Many other smaller bug and typo fixes.</li>\n</ul>\n<h3>Installation</h3>\n<p>We intend to provide updated and more detailed <a href=\"http://bbpress.org/documentation/installation/\">installation</a> and <a href=\"http://bbpress.org/documentation/integration-with-wordpress/\">integration</a> instructions in the near future, but most users will find the following &#8220;quickstart&#8221; sufficient:</p>\n<ol>\n<li>Download bbPress 0.9 from the <a href=\"http://bbpress.org/download/\">download page</a></li>\n<li>Upload the uncompressed files your server</li>\n<li>Optionally upload <a href=\"http://svn.automattic.com/bbpress-i18n/\">language files</a> to bb-includes/languages/ - You will have to create this directory\n</li>\n<li>Visit the intended URL of the bbPress site</li>\n<li>You will be greeted with the bbPress installer</li>\n<li>Follow the instructions in the installer</li>\n<li>If you have any questions, ask in the <a href=\"http://bbpress.org/forums/\">forums</a></li>\n</ol>\n<h3>Upgrading</h3>\n<p>Upgrading to bbPress 0.9 will not be as straight-forward as past releases. Our recommended upgrade path is to follow the sequence below:</p>\n<ol>\n<li>Backup everything first! Database and code</li>\n<li>Deactivate all plugins</li>\n<li>Rename your existing <code>config.php</code> file to <code>config.old.php</code></li>\n<li>Upload the new bbPress 0.9 files</li>\n<li>Go to your bbPress forum URL and run the installer which appears</li>\n<li>On step one of the installer, enter the database details for the same database you had been using for the previous version</li>\n<li>The installer will either create a new config file or show you the contents to paste into a file manually</li>\n<li>As soon as your new config file is created and validated by the installer, you should be redirected to your forum index page</li>\n<li>From the forum index page, log-in as a keymaster and then visit the &#8220;admin&#8221; area</li>\n<li>You will be prompted to upgrade the installation, go ahead and do so</li>\n<li>Once the upgrade is complete, visit the new &#8220;Settings&#8221; area of the admin</li>\n<li>Edit any details or settings in the &#8220;General&#8221; section</li>\n<li>Users integrating with WordPress may wish to review the options in the &#8220;WordPress Integration&#8221; area</li>\n<li>Reactivate plugins one-by-one and test them as you go</li>\n</ol>\n<h3>Dedication</h3>\n<p>bbPress 0.9 is named &#8220;Brubeck&#8221; after American Jazz pianist <a href=\"http://en.wikipedia.org/wiki/Dave_Brubeck\">Dave Brubeck</a>. In his early career he often performed with saxophonist <a href=\"http://en.wikipedia.org/wiki/Paul_Desmond\">Paul Desmond</a>, after whom bbPress 0.8 was named. Brubeck has composed a number of jazz standards many of which employ complex rhythms and unusual time signatures.</p>\";}i:38;a:7:{s:5:\"title\";s:55:\"Weblog Tools Collection: WordPress 2.5 Upgrade Guide(s)\";s:4:\"guid\";s:81:\"http://weblogtoolscollection.com/archives/2008/04/02/wordpress-25-upgrade-guides/\";s:4:\"link\";s:81:\"http://weblogtoolscollection.com/archives/2008/04/02/wordpress-25-upgrade-guides/\";s:11:\"description\";s:1658:\"<p>There are many guides out there (one in particular I won&#8217;t dare mention) about upgrading to 2.5, but I was curious how your experience was.</p>\n<p>I&#8217;ve personally upgraded two of my blogs &#8212; one manually, and one using Keith&#8217;s awesome <a href=\"http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/\">WordPress Automatic Upgrade plugin</a>. In both cases, I ran into no issues aside from a few incompatible plugins (you did <a href=\"http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.5\">check the list</a>, right?).</p>\n<p>To get the ball rolling, here are several links to some upgrade experiences around the web. My hope is to make this post a resource with a list of upgrade guides and experiences. Please feel free to add your own in the comments below (only one link please).</p>\n<ul>\n<li>Alex Frison shares with us <a href=\"http://afrison.com/how-upgrade-wordpress-25/612/\">how to upgrade 2.5 in 5 minutes</a>.</li>\n<li>Random View <a href=\"http://blog.dylx-infotech.com/6/wordpress-25-upgrade-steps-procedure-my-experience.htm\">shares his experience with upgrading to 2.5.</a></li>\n<li>Christer Edwards discusses updating, not one, but <a href=\"http://ubuntu-tutorials.com/2008/03/29/wordpress-25-upgrade/\">multiple blogs to WP 2.5 with no issues</a>.</li>\n<li>Jeffro2pt0 <a href=\"http://www.jeffro2pt0.com/jeffro2pt0-now-on-wp-25\">discusses his transition to 2.5</a>.</li>\n<li>And of course Socialized Software provides us with an <del datetime=\"2008-04-03T16:00:48+00:00\">in-depth WordPress 2.5 Review</del> (link removed for suspicion of XSS).</li>\n</ul>\n<p>So what was your upgrade experience like?</p>\";s:7:\"pubdate\";s:31:\"Thu, 03 Apr 2008 00:56:12 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"Ronald Huereca\";}s:7:\"summary\";s:1658:\"<p>There are many guides out there (one in particular I won&#8217;t dare mention) about upgrading to 2.5, but I was curious how your experience was.</p>\n<p>I&#8217;ve personally upgraded two of my blogs &#8212; one manually, and one using Keith&#8217;s awesome <a href=\"http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/\">WordPress Automatic Upgrade plugin</a>. In both cases, I ran into no issues aside from a few incompatible plugins (you did <a href=\"http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.5\">check the list</a>, right?).</p>\n<p>To get the ball rolling, here are several links to some upgrade experiences around the web. My hope is to make this post a resource with a list of upgrade guides and experiences. Please feel free to add your own in the comments below (only one link please).</p>\n<ul>\n<li>Alex Frison shares with us <a href=\"http://afrison.com/how-upgrade-wordpress-25/612/\">how to upgrade 2.5 in 5 minutes</a>.</li>\n<li>Random View <a href=\"http://blog.dylx-infotech.com/6/wordpress-25-upgrade-steps-procedure-my-experience.htm\">shares his experience with upgrading to 2.5.</a></li>\n<li>Christer Edwards discusses updating, not one, but <a href=\"http://ubuntu-tutorials.com/2008/03/29/wordpress-25-upgrade/\">multiple blogs to WP 2.5 with no issues</a>.</li>\n<li>Jeffro2pt0 <a href=\"http://www.jeffro2pt0.com/jeffro2pt0-now-on-wp-25\">discusses his transition to 2.5</a>.</li>\n<li>And of course Socialized Software provides us with an <del datetime=\"2008-04-03T16:00:48+00:00\">in-depth WordPress 2.5 Review</del> (link removed for suspicion of XSS).</li>\n</ul>\n<p>So what was your upgrade experience like?</p>\";}i:39;a:7:{s:5:\"title\";s:25:\"Matt: Why Blog? Book Deal\";s:4:\"guid\";s:20:\"http://ma.tt/?p=4979\";s:4:\"link\";s:40:\"http://ma.tt/2008/04/why-blog-book-deal/\";s:11:\"description\";s:373:\"<p><a href=\"http://www.nytimes.com/2008/03/30/fashion/30web.html?ei=5124&#038;en=ef7f5e7d4ded7efd&#038;ex=1364529600&#038;adxnnl=1&#038;partner=permalink&#038;exprod=permalink&#038;adxnnlx=1206974983-veRFc/pHat86GBwpHvc3Qg\">Why Blog? Reason No. 92: Book Deal - New York Times</a>. Talks about two WordPress.com blogs - Stuff White People Like and I Can Haz Cheezburger.</p>\";s:7:\"pubdate\";s:31:\"Wed, 02 Apr 2008 19:54:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:373:\"<p><a href=\"http://www.nytimes.com/2008/03/30/fashion/30web.html?ei=5124&#038;en=ef7f5e7d4ded7efd&#038;ex=1364529600&#038;adxnnl=1&#038;partner=permalink&#038;exprod=permalink&#038;adxnnlx=1206974983-veRFc/pHat86GBwpHvc3Qg\">Why Blog? Reason No. 92: Book Deal - New York Times</a>. Talks about two WordPress.com blogs - Stuff White People Like and I Can Haz Cheezburger.</p>\";}i:40;a:7:{s:5:\"title\";s:28:\"Dougal Campbell: Atlanta PHP\";s:4:\"guid\";s:32:\"http://dougal.gunters.org/?p=901\";s:4:\"link\";s:53:\"http://dougal.gunters.org/blog/2008/04/02/atlanta-php\";s:11:\"description\";s:2309:\"<p>Tomorrow night, I will be attending the April <a href=\"http://www.atlantaphp.org/\">Atlanta <acronym title=\"Php Hypertext Processor\"><span class=\"caps\">PHP</span></acronym></a> meeting. My friend <a href=\"http://blogs.msdn.com/glengordon\">Glen Gordon</a> will be giving a presentation titled, &#8220;<a href=\"http://www.atlantaphp.org/archive/77\">Im a <acronym title=\"Php Hypertext Processor\"><span class=\"caps\">PHP</span></acronym> dev! Why should I care about Microsoft?</a>&#8221;</p>\n<blockquote><p>There are a host of technologies and tools from Microsoft that can add value to your <acronym title=\"Php Hypertext Processor\"><span class=\"caps\">PHP</span></acronym> solutions, save you time, and are just plain cool. This presentation will cover server technologies like FastCGI, <acronym title=\"Internet Infomation Server\"><span class=\"caps\">IIS</span></acronym> and the <acronym title=\"Php Hypertext Processor\"><span class=\"caps\">PHP</span></acronym> <acronym title=\"Structured Query Language\"><span class=\"caps\">SQL</span></acronym> Server Driver, client technologies like the ASP.NET <acronym title=\"Asynchronous Javascript and XML\"><span class=\"caps\">AJAX</span></acronym> Library and Silverlight, as well as developer tools. This is not a sales pitch its a technical walkthrough with demos, and will give you pointers to lots of resources for digging deeper.</p></blockquote>\n<p>I&#8217;m sure Glen&#8217;s talk will be interesting, and I&#8217;m looking forward to a chance to catch up on the current state of web servers in Microsoft-land. While I tend to use unix-based systems for most of my own work, there are plenty of organizations who are standardized on Microsoft products, and you have to be able to be able to work with what they have. Case in point, my wife is hoping to set up a WordPress website for her department at work, and they&#8217;ll probably set it up on a Windows-based server.</p>\n<p>If anybody reading this is planning to attend, please introduce yourself. I&#8217;ll be wearing a <a href=\"http://wordpress.org/\">WordPress</a> shirt.</p>\n<p><a href=\"http://sharethis.com/item?&wp=2.5.1-alpha&amp;publisher=06a70a77-1fc0-46a9-81d1-6a696e6ed23f&amp;title=Atlanta+PHP&amp;url=http%3A%2F%2Fdougal.gunters.org%2Fblog%2F2008%2F04%2F02%2Fatlanta-php\">ShareThis</a></p>\";s:7:\"pubdate\";s:31:\"Wed, 02 Apr 2008 15:42:16 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"Dougal\";}s:7:\"summary\";s:2309:\"<p>Tomorrow night, I will be attending the April <a href=\"http://www.atlantaphp.org/\">Atlanta <acronym title=\"Php Hypertext Processor\"><span class=\"caps\">PHP</span></acronym></a> meeting. My friend <a href=\"http://blogs.msdn.com/glengordon\">Glen Gordon</a> will be giving a presentation titled, &#8220;<a href=\"http://www.atlantaphp.org/archive/77\">Im a <acronym title=\"Php Hypertext Processor\"><span class=\"caps\">PHP</span></acronym> dev! Why should I care about Microsoft?</a>&#8221;</p>\n<blockquote><p>There are a host of technologies and tools from Microsoft that can add value to your <acronym title=\"Php Hypertext Processor\"><span class=\"caps\">PHP</span></acronym> solutions, save you time, and are just plain cool. This presentation will cover server technologies like FastCGI, <acronym title=\"Internet Infomation Server\"><span class=\"caps\">IIS</span></acronym> and the <acronym title=\"Php Hypertext Processor\"><span class=\"caps\">PHP</span></acronym> <acronym title=\"Structured Query Language\"><span class=\"caps\">SQL</span></acronym> Server Driver, client technologies like the ASP.NET <acronym title=\"Asynchronous Javascript and XML\"><span class=\"caps\">AJAX</span></acronym> Library and Silverlight, as well as developer tools. This is not a sales pitch its a technical walkthrough with demos, and will give you pointers to lots of resources for digging deeper.</p></blockquote>\n<p>I&#8217;m sure Glen&#8217;s talk will be interesting, and I&#8217;m looking forward to a chance to catch up on the current state of web servers in Microsoft-land. While I tend to use unix-based systems for most of my own work, there are plenty of organizations who are standardized on Microsoft products, and you have to be able to be able to work with what they have. Case in point, my wife is hoping to set up a WordPress website for her department at work, and they&#8217;ll probably set it up on a Windows-based server.</p>\n<p>If anybody reading this is planning to attend, please introduce yourself. I&#8217;ll be wearing a <a href=\"http://wordpress.org/\">WordPress</a> shirt.</p>\n<p><a href=\"http://sharethis.com/item?&wp=2.5.1-alpha&amp;publisher=06a70a77-1fc0-46a9-81d1-6a696e6ed23f&amp;title=Atlanta+PHP&amp;url=http%3A%2F%2Fdougal.gunters.org%2Fblog%2F2008%2F04%2F02%2Fatlanta-php\">ShareThis</a></p>\";}i:41;a:7:{s:5:\"title\";s:21:\"Matt: OpenID and Spam\";s:4:\"guid\";s:20:\"http://ma.tt/?p=4978\";s:4:\"link\";s:37:\"http://ma.tt/2008/04/openid-and-spam/\";s:11:\"description\";s:2368:\"<p><a href=\"http://www.readwriteweb.com/archives/magnolia_openid_to_save_anti-spam_anti-spam_to_save_openid.php\">Magnolia is going to be restricting their signups to only OpenID users</a>:</p>\n<blockquote><p>Why? Because 75% of new accounts being created there lately have been created by spammers using automated tools. Spammers took over Ma.gnolia. Now, the company is using OpenID as a system of 3rd party verified identity and using the superior spam blocking skills of services like Yahoo! and AIM to clean up the Ma.gnolia ranks. Spamfighting could be the incentive that puts many other vendors over the edge to leverage OpenID.</p></blockquote>\n<p>At best <a href=\"http://diveintomark.org/archives/2002/10/29/club_vs_lojack_solutions\">this is a Club solution</a>, meaning it&#8217;ll be effective as long as Magnolia is not a worthwhile enough target or not enough people use the technique.</p>\n<p>Anyone advocating that a Yahoo, Google, or AOL account is going to stop spam signups, sploggers, or anything of the sort is out of touch with the dark side of the internet. The going rate for a valid Google account is about a penny each. For $100 get a text file with 10,000 valid logins and passwords, and go to town. We used to require email verification to signup for WordPress.com, and the vast majority of splogs were coming from Gmail or Yahoo email addresses, hundreds of thousands of them. Myspace and ICQ are both good examples of completely closed identity systems with registration barriers but still overrun with spam.</p>\n<p>Each of the big guys probably has an anti-abuse team larger than all of Magnolia fighting these spam signups, but it obviously hasn&#8217;t been effective. In theory you could blacklist OpenID providers but who&#8217;s going to block Google and Yahoo and even if they did they&#8217;re just pushing the problem outward, to the point where spammers eventually run their own identity providers, and if you think they won&#8217;t come from millions of unique registered domains look at your comment spam queue.</p>\n<p>OpenID has a ton of promise for the web &#8212; let&#8217;s not hurt it by setting people up for disappointment by telling them it&#8217;s a spam blocker when it&#8217;s not. Regardless of registration, identity verification, or CAPTCHA, you still need something working at the content level to block spam.</p>\";s:7:\"pubdate\";s:31:\"Wed, 02 Apr 2008 06:38:19 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:2368:\"<p><a href=\"http://www.readwriteweb.com/archives/magnolia_openid_to_save_anti-spam_anti-spam_to_save_openid.php\">Magnolia is going to be restricting their signups to only OpenID users</a>:</p>\n<blockquote><p>Why? Because 75% of new accounts being created there lately have been created by spammers using automated tools. Spammers took over Ma.gnolia. Now, the company is using OpenID as a system of 3rd party verified identity and using the superior spam blocking skills of services like Yahoo! and AIM to clean up the Ma.gnolia ranks. Spamfighting could be the incentive that puts many other vendors over the edge to leverage OpenID.</p></blockquote>\n<p>At best <a href=\"http://diveintomark.org/archives/2002/10/29/club_vs_lojack_solutions\">this is a Club solution</a>, meaning it&#8217;ll be effective as long as Magnolia is not a worthwhile enough target or not enough people use the technique.</p>\n<p>Anyone advocating that a Yahoo, Google, or AOL account is going to stop spam signups, sploggers, or anything of the sort is out of touch with the dark side of the internet. The going rate for a valid Google account is about a penny each. For $100 get a text file with 10,000 valid logins and passwords, and go to town. We used to require email verification to signup for WordPress.com, and the vast majority of splogs were coming from Gmail or Yahoo email addresses, hundreds of thousands of them. Myspace and ICQ are both good examples of completely closed identity systems with registration barriers but still overrun with spam.</p>\n<p>Each of the big guys probably has an anti-abuse team larger than all of Magnolia fighting these spam signups, but it obviously hasn&#8217;t been effective. In theory you could blacklist OpenID providers but who&#8217;s going to block Google and Yahoo and even if they did they&#8217;re just pushing the problem outward, to the point where spammers eventually run their own identity providers, and if you think they won&#8217;t come from millions of unique registered domains look at your comment spam queue.</p>\n<p>OpenID has a ton of promise for the web &#8212; let&#8217;s not hurt it by setting people up for disappointment by telling them it&#8217;s a spam blocker when it&#8217;s not. Regardless of registration, identity verification, or CAPTCHA, you still need something working at the content level to block spam.</p>\";}i:42;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Plugin releases for 4/1\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/01/wordpress-plugin-releases-for-41/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2008/04/01/wordpress-plugin-releases-for-41/\";s:11:\"description\";s:1651:\"<p><strong>iBox</strong></p>\n<p>iBox is plugin that allows you to create overlays of images, html pages, inline layers and YouTube videos or any other flash videos. The plugin works even when there is no JavaScript support in the browser.</p>\n<p><a href=\"http://labs.ibegin.com/ibox/\" target=\"_blank\">Release Page</a> | <a href=\"http://labs.ibegin.com/ibox/wp_iboxv101.zip\" target=\"_blank\">Download</a></p>\n<p><strong>iShare</strong></p>\n<p>Another plugin from the previous authors which allows you to easily share your content using social networking and email. Even allows you users to directly print the document or download word and PDF documents.</p>\n<p><a href=\"http://labs.ibegin.com/share/\" target=\"_blank\">Release Page</a> | <a href=\"http://labs.ibegin.com/download.php?file=%2Fshare%2Fwp_ibeginsharev102.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Shashin</strong></p>\n<p>Use Shashin to embed Picasa photos and album galleries in your posts, pages, and sidebar. Includes widgets, random photos, newest photos, links to Google Maps, and more.</p>\n<p><a href=\"http://www.toppa.com/shashin-wordpress-plugin\" target=\"_blank\">Release Page</a> | <a href=\"http://downloads.wordpress.org/plugin/shashin.2.0.3.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Branded Login Screen</strong></p>\n<p>This plugin allows custom graphics for the login screen that will not be overwritten with an upgrade of WordPress. It is complatible with WP 2.3.3 &amp; WP 2.5.</p>\n<p><a href=\"http://www.kerrywebster.com/?p=136\" target=\"_blank\">Release Page</a> | <a href=\"http://www.kerrywebster.com/?download=Branded-Login-Screen\" target=\"_blank\">Download</a></p>\";s:7:\"pubdate\";s:31:\"Wed, 02 Apr 2008 03:55:49 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Keith Dsouza\";}s:7:\"summary\";s:1651:\"<p><strong>iBox</strong></p>\n<p>iBox is plugin that allows you to create overlays of images, html pages, inline layers and YouTube videos or any other flash videos. The plugin works even when there is no JavaScript support in the browser.</p>\n<p><a href=\"http://labs.ibegin.com/ibox/\" target=\"_blank\">Release Page</a> | <a href=\"http://labs.ibegin.com/ibox/wp_iboxv101.zip\" target=\"_blank\">Download</a></p>\n<p><strong>iShare</strong></p>\n<p>Another plugin from the previous authors which allows you to easily share your content using social networking and email. Even allows you users to directly print the document or download word and PDF documents.</p>\n<p><a href=\"http://labs.ibegin.com/share/\" target=\"_blank\">Release Page</a> | <a href=\"http://labs.ibegin.com/download.php?file=%2Fshare%2Fwp_ibeginsharev102.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Shashin</strong></p>\n<p>Use Shashin to embed Picasa photos and album galleries in your posts, pages, and sidebar. Includes widgets, random photos, newest photos, links to Google Maps, and more.</p>\n<p><a href=\"http://www.toppa.com/shashin-wordpress-plugin\" target=\"_blank\">Release Page</a> | <a href=\"http://downloads.wordpress.org/plugin/shashin.2.0.3.zip\" target=\"_blank\">Download</a></p>\n<p><strong>Branded Login Screen</strong></p>\n<p>This plugin allows custom graphics for the login screen that will not be overwritten with an upgrade of WordPress. It is complatible with WP 2.3.3 &amp; WP 2.5.</p>\n<p><a href=\"http://www.kerrywebster.com/?p=136\" target=\"_blank\">Release Page</a> | <a href=\"http://www.kerrywebster.com/?download=Branded-Login-Screen\" target=\"_blank\">Download</a></p>\";}i:43;a:7:{s:5:\"title\";s:51:\"Mark Jaquith: Mike Industries switches to WordPress\";s:4:\"guid\";s:39:\"http://markjaquith.wordpress.com/?p=140\";s:4:\"link\";s:82:\"http://markjaquith.wordpress.com/2008/04/01/mike-industries-switches-to-wordpress/\";s:11:\"description\";s:2442:\"<div class=\"snap_preview\"><br /><p><a href=\"http://www.mikeindustries.com/\">Mike Davidson</a>, CEO of the very cool <a href=\"http://newsvine.com/\">Newsvine</a>, switched from <a href=\"http://movabletype.com/\">Movable Type</a> to <a href=\"http://wordpress.org/\">WordPress</a> three months ago, and <a href=\"http://www.mikeindustries.com/blog/archive/2008/03/mike-industries-now-powered-by-wordpress\">spent some time listing his reasons for doing so</a>. Consider this the antidote for any WordPress community members who were feeling a little bruised by <a href=\"http://www.movabletype.com/blog/2008/03/a-wordpress-25-upgrade-guide.html\">Anil Dash&#8217;s recent article about switching in the opposite direction</a>.</p>\n<p>Aside to Mike: are you planning on attending Gnomedex this year? Rumored to be the weekend of August 8th. I&#8217;d love a chance to meet you.</p>\n<p>Aside to Anil: I swear I&#8217;m going to reply to the technical points of your WP 2.5 article eventually. There are a few points that merit correction, and other points that deserve a response.</p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/markjaquith.wordpress.com/140/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/markjaquith.wordpress.com/140/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/140/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/140/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/140/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/140/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/140/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=140&subd=markjaquith&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Tue, 01 Apr 2008 18:36:06 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Mark Jaquith\";}s:7:\"summary\";s:2442:\"<div class=\"snap_preview\"><br /><p><a href=\"http://www.mikeindustries.com/\">Mike Davidson</a>, CEO of the very cool <a href=\"http://newsvine.com/\">Newsvine</a>, switched from <a href=\"http://movabletype.com/\">Movable Type</a> to <a href=\"http://wordpress.org/\">WordPress</a> three months ago, and <a href=\"http://www.mikeindustries.com/blog/archive/2008/03/mike-industries-now-powered-by-wordpress\">spent some time listing his reasons for doing so</a>. Consider this the antidote for any WordPress community members who were feeling a little bruised by <a href=\"http://www.movabletype.com/blog/2008/03/a-wordpress-25-upgrade-guide.html\">Anil Dash&#8217;s recent article about switching in the opposite direction</a>.</p>\n<p>Aside to Mike: are you planning on attending Gnomedex this year? Rumored to be the weekend of August 8th. I&#8217;d love a chance to meet you.</p>\n<p>Aside to Anil: I swear I&#8217;m going to reply to the technical points of your WP 2.5 article eventually. There are a few points that merit correction, and other points that deserve a response.</p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/markjaquith.wordpress.com/140/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/markjaquith.wordpress.com/140/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/140/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/140/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/140/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/140/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/140/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/140/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=140&subd=markjaquith&ref=&feed=1\" /></div>\";}i:44;a:7:{s:5:\"title\";s:45:\"Weblog Tools Collection: FAQ on WordPress 2.5\";s:4:\"guid\";s:73:\"http://weblogtoolscollection.com/archives/2008/04/01/faq-on-wordpress-25/\";s:4:\"link\";s:73:\"http://weblogtoolscollection.com/archives/2008/04/01/faq-on-wordpress-25/\";s:11:\"description\";s:10797:\"<p><small>[I did not write this post. It was written with great care and in great detail by <a href=\"http://wordpress.org/support/profile/18989\">MichaelH</a> on the <a href=\"http://weblogtoolscollection.com/news/topic/answers-to-questions-about-version-25#post-2519\">news section</a> and is reproduced verbatim here. For those of you that do not know Michael&#8217;s work, his <a href=\"http://codex.wordpress.org/User:MichaelH\">work on the Codex</a> and his help with WordPress and its documentation makes him a legend in my books. Thank you Michael!]</small></p>\n<p class=\"post\">These questions and answers were gleaned from the wp-hackers and wp-testers e-mail lists over that last several weeks.</p>\n<p><strong>Q. How can I find the Post ID or Page ID?</strong><br />\nA. If your browser shows the URL in the status bar, when you mouse over a link, you can see the ID in the as part of the URL displayed in the browser status bar. In FireFox you can show the status bar by checking the Status bar choice under View. A more complicated method to finding the ID is to use something like phpMyAdmin to look at the database table wp_posts&#8211;look down the column of post_title to find your Post or Page Title. The ID field on that row will be your Post (or Page) ID.</p>\n<p><strong>Q. How do I find the Category ID?</strong><br />\nA. In Manage-&gt;Categories, place your mouse over the Category Name you are trying to find the ID for and the &#8216;cat_ID&#8217; will show as part of the URL displayed in the browser status bar. In FireFox you can show the status bar by checking the Status bar choice under View. A more complicated method to finding the Category ID is to use something like phpMyAdmin to look at the database table wp_terms and find the row where name column is your Category Description. The term_id on that row will be your Category ID.</p>\n<p><strong>Q. How can I edit my Post slug or my Page slug?</strong><br />\nA. The Post (or Page) slug is now displayed as the Permalink under the Title field in writing or editing a Post or Page. If you are using the &#8220;Default&#8221; Peramlink Settings you will not see and can&#8217;t edit the Permalink. Only if you are using a &#8216;pretty Permalink&#8217; (e.g. Month and name) in Settings-&gt;Permalinks will the Permalink be available for edit. When creating a new Post or Page, the Permalink field won&#8217;t show up until you complete the Title.</p>\n<p><strong>Q. Where are my Post Categories and Tags when writing a Post?</strong><br />\nA. Scroll down below the Post content box.</p>\n<p><strong>Q. How do I rearrange the order Advanced Options boxes like Custom Fields and Excerpt?</strong><br />\nA. This is no longer possible.</p>\n<p><strong>Q. I don&#8217;t see a link to edit a user&#8217;s name.</strong><br />\nA. In the table of Users, click on the name (represented as a link), to edit that user&#8217;s information.</p>\n<p><strong>Q. What happened to my Import Links ability?</strong><br />\nA. Export Links is displayed under the Related section on the Write-&gt;Link screen</p>\n<p><strong>Q. Where&#8217;s the menu tab to access the Dashboard?</strong><br />\nA. The link to the Dashboard is in the dark border at the top left of the screen.</p>\n<p><strong>Q. What happened to my child categories? I had the Category Ford both as a Child of New Cars, and as a Child of Old Car, but I can&#8217;t do that any longer?</strong><br />\nA. Duplicate Category (and Tag) names are not longer allowed.</p>\n<p><strong>Q. I can&#8217;t upload certain file types and get message &#8220;File type does not meet security guidelines. Try another&#8221;</strong><br />\nA. Unknown file extensions are &#8216;blocked from uploading&#8217;. New extensions and their icons can be added via changes to the functions wp_check_filetype and wp_ext2type in wp-includes/functions.php.</p>\n<p><strong>Q. How can I change that red banner in the Dashboard?</strong><br />\nA. Change to the &#8216;Classic&#8217; Admin Color Schemes in Users-&gt;Your Profile.</p>\n<p><strong>Q. What happened to my Options choices?</strong><br />\nA. Options are now called Settings and that menu tab is to the right on your menu next to Plugins and Users.</p>\n<p><strong>Q. How do I edit a Category Description?</strong><br />\nA. Under Manage-&gt;Categories, click on the Category Name you wish to edit.</p>\n<p><strong>Q. How do I edit a Comment?</strong><br />\nA. Under Comments, click on the name of the comment author and then you will be placed in &#8216;Edit Comment&#8217; mode.</p>\n<p><strong>Q. Where is the WordPress Bookmarklet?</strong><br />\nA. It&#8217;s gone for now but will likely be available in Version 2.6 but see <a href=\"http://wordpress.org/support/topic/164205\">Dion Hulce&#8217;s suggestion in the Forums</a>.</p>\n<p><strong>Q. When in the Media Library, what is this error &#8212; Fatal error: Call to undefined function: wp_get_attachment_image() in /home/public_html/wp-includes/post-template.php on line 384</strong><br />\nA. This is usually caused by a PHP file not being correctly uploaded. Make sure wp-includes/media.php and wp-settings.php are intact (reupload them).</p>\n<p><strong>Q. When trying to upload media files I get the message &#8220;Are you sure you want to do that?&#8221; with a link telling me to try again. Clicking &#8220;Please try again&#8221; simply reloads the dashboard into the frame.</strong><br />\nA. You may need to disable your plugins one-by-one to find the &#8216;problem&#8217; plugin. Some older plugins, such as Ryan Duff&#8217;s old WP-Contact plugin, have been reported to cause this problem, so check under the Plugins tab to see if your Plugins need updating.</p>\n<p><strong>Q. Has the option to enable/disable Gzip compression been removed from 2.5?</strong><br />\nA Yes, the option is gone. WordPress now leaves compression as a decision for the server.</p>\n<p><strong>Q. Why can&#8217;t I add media in Manage-&gt;Media Library?</strong><br />\nA. This was planned for 2.5 but didn&#8217;t make it into code so this will be included in a future release.</p>\n<p><strong>Q. How do I add links to my Blogroll?</strong><br />\nA. A new menu choice, Write-&gt;Link, allows creation of new Links. In Manage-&gt;Links, there is an &#8220;add new&#8221; link to the right of the Manage Links heading. Also remember the new Manage-&gt;Link Categories to add and maintain Link Categories.</p>\n<p><strong>Q. What happened to the Post Timestamp box? How do I change the Post Timestamp?</strong><br />\nA. In Write-&gt;Post, in the Publish Status area, click on the Edit button to the right of Publish immediately. When editing a Post, there is a similar edit button in the Publish Status area next to the Published on date and time.</p>\n<p><strong>Q. My screen is using 1280&#215;960 pixels and I notice that admin screens are left aligned, not centered or stretched 100%.</strong><br />\nA. This is the intended design. Viper007bond has <a href=\"http://wordpress.org/extend/plugins/remove-max-width\">Remove Max Width Plugin</a> to change this.</p>\n<p><strong>Q. The collation set in &#8220;wp-config.php&#8221; (DB_COLLATE) is not being used in searches.</strong><br />\nA. This will be likely be fixed in 2.5.1 but see <a href=\"http://comox.textdrive.com/pipermail/wp-testers/2008-March/007284.html\">this thread at wp-testers</a> for a suggested fix.</p>\n<p><strong>Q. I get a “403 Forbidden&#8221; error when uploading files. I am also using the Bad Behavior plugin.</strong><br />\nA. May need to delete the &#8220;Shockwave Flash&#8221; from the Bad Behavior blacklist file. See <a href=\"http://rickbeckman.org/wordpress-25-bad-behavior-20x/\">Rick Beckman&#8217;s post</a> for a detailed description.</p>\n<p><strong>Q. I just tried to upload several media file and my browser crashed when it got to the &#8220;Crunching&#8221; part.</strong><br />\nA. It is possible your system doesn&#8217;t support the Flash uploader or needs an upgrade to your Flash Player. Dion Hulse also wrote the <a href=\"http://trac.wordpress.org/attachment/ticket/6406/no-flash-uploader.php\">the No Flash Uploader plugin</a> to disable the Flash uploader.</p>\n<p><strong>Q. I can&#8217;t edit the Post slug/permalink and I&#8217;m sure I&#8217;m using pretty permalinks</strong><br />\nA. To help debug the problem, answer these questions. What is your permalink structure? Can you provide the permalink for a post that does not show the Permalink field in the editor? Do you get any JS errors in the console? If you have plugins activated, does the problem persist if they are deactivated?</p>\n<p><strong>Q. The Change button (beside the Remove button) in Design-&gt;Widgets isn&#8217;t working. When I click change (beside remove button) it doesn&#8217;t save the changes to the widget.</strong><br />\nA. Clicking Change doesn&#8217;t actually do a save and reload. You have to click &#8220;Save Changes&#8221; at the bottom to make the changes stick.</p>\n<p><strong>Q. In older versions, below widgets we had the option to select how many &#8216;Text&#8217; widgets we want to use, but I don&#8217;t see that in 2.5.</strong><br />\nA. The option is no longer needed. Widgets that allow multiple instances (e.g. Text widget) can be added as many times as you like by just clicking on the Add button. Remember to &#8220;Save Changes&#8221; when done adding the widgets.</p>\n<p><strong>Q. Can I revert from Version 2.5 to Version 2.3.3?</strong><br />\nA. The best way is to restore your 2.3.3 database and files. If that is not possible, then any user that accessed the 2.5 blog or was added in 2.5 would need the MD5 password reset in the user table.</p>\n<p><strong>Q. I have several production blogs using Version 2.3.3 and I just upgraded to Version 2.5 on one of those blog. All the blogs share a common user table for the user names and passwords, but when I login to the Version 2.5 blog with a user, why can&#8217;t I use that same user to login to the 2.3.3 blogs.</strong><br />\nA. Version 2.5 has enhance the password authentication so the passwords created/used for a 2.5 blog will not work on a 2.3.3 blog. Ryan wrote <a href=\"http://wordpress.org/extend/plugins/md5-password-hashes/\">MD5 Password Hashes plugin</a> to use the old password hashing (like what is used in Version 2.3.3) in a Version 2.5 blog.</p>\n<p><strong>Q. How do I add a youtube video to a 2.5 Post?</strong><br />\nA. In the HTML mode, paste the youtube URL (youtube tells you this) into the post. In the Visual mode, paste the youtube URL into the popup activated when you click on the &#8220;Insert/edit embedded media&#8221; icon on the 2nd toolbar row.</p>\n<p>In addition to these questions and the provided answers, if you have any new ones that you would like to add, please leave us a comment and we will add them to the list.</p>\";s:7:\"pubdate\";s:31:\"Tue, 01 Apr 2008 17:08:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:10797:\"<p><small>[I did not write this post. It was written with great care and in great detail by <a href=\"http://wordpress.org/support/profile/18989\">MichaelH</a> on the <a href=\"http://weblogtoolscollection.com/news/topic/answers-to-questions-about-version-25#post-2519\">news section</a> and is reproduced verbatim here. For those of you that do not know Michael&#8217;s work, his <a href=\"http://codex.wordpress.org/User:MichaelH\">work on the Codex</a> and his help with WordPress and its documentation makes him a legend in my books. Thank you Michael!]</small></p>\n<p class=\"post\">These questions and answers were gleaned from the wp-hackers and wp-testers e-mail lists over that last several weeks.</p>\n<p><strong>Q. How can I find the Post ID or Page ID?</strong><br />\nA. If your browser shows the URL in the status bar, when you mouse over a link, you can see the ID in the as part of the URL displayed in the browser status bar. In FireFox you can show the status bar by checking the Status bar choice under View. A more complicated method to finding the ID is to use something like phpMyAdmin to look at the database table wp_posts&#8211;look down the column of post_title to find your Post or Page Title. The ID field on that row will be your Post (or Page) ID.</p>\n<p><strong>Q. How do I find the Category ID?</strong><br />\nA. In Manage-&gt;Categories, place your mouse over the Category Name you are trying to find the ID for and the &#8216;cat_ID&#8217; will show as part of the URL displayed in the browser status bar. In FireFox you can show the status bar by checking the Status bar choice under View. A more complicated method to finding the Category ID is to use something like phpMyAdmin to look at the database table wp_terms and find the row where name column is your Category Description. The term_id on that row will be your Category ID.</p>\n<p><strong>Q. How can I edit my Post slug or my Page slug?</strong><br />\nA. The Post (or Page) slug is now displayed as the Permalink under the Title field in writing or editing a Post or Page. If you are using the &#8220;Default&#8221; Peramlink Settings you will not see and can&#8217;t edit the Permalink. Only if you are using a &#8216;pretty Permalink&#8217; (e.g. Month and name) in Settings-&gt;Permalinks will the Permalink be available for edit. When creating a new Post or Page, the Permalink field won&#8217;t show up until you complete the Title.</p>\n<p><strong>Q. Where are my Post Categories and Tags when writing a Post?</strong><br />\nA. Scroll down below the Post content box.</p>\n<p><strong>Q. How do I rearrange the order Advanced Options boxes like Custom Fields and Excerpt?</strong><br />\nA. This is no longer possible.</p>\n<p><strong>Q. I don&#8217;t see a link to edit a user&#8217;s name.</strong><br />\nA. In the table of Users, click on the name (represented as a link), to edit that user&#8217;s information.</p>\n<p><strong>Q. What happened to my Import Links ability?</strong><br />\nA. Export Links is displayed under the Related section on the Write-&gt;Link screen</p>\n<p><strong>Q. Where&#8217;s the menu tab to access the Dashboard?</strong><br />\nA. The link to the Dashboard is in the dark border at the top left of the screen.</p>\n<p><strong>Q. What happened to my child categories? I had the Category Ford both as a Child of New Cars, and as a Child of Old Car, but I can&#8217;t do that any longer?</strong><br />\nA. Duplicate Category (and Tag) names are not longer allowed.</p>\n<p><strong>Q. I can&#8217;t upload certain file types and get message &#8220;File type does not meet security guidelines. Try another&#8221;</strong><br />\nA. Unknown file extensions are &#8216;blocked from uploading&#8217;. New extensions and their icons can be added via changes to the functions wp_check_filetype and wp_ext2type in wp-includes/functions.php.</p>\n<p><strong>Q. How can I change that red banner in the Dashboard?</strong><br />\nA. Change to the &#8216;Classic&#8217; Admin Color Schemes in Users-&gt;Your Profile.</p>\n<p><strong>Q. What happened to my Options choices?</strong><br />\nA. Options are now called Settings and that menu tab is to the right on your menu next to Plugins and Users.</p>\n<p><strong>Q. How do I edit a Category Description?</strong><br />\nA. Under Manage-&gt;Categories, click on the Category Name you wish to edit.</p>\n<p><strong>Q. How do I edit a Comment?</strong><br />\nA. Under Comments, click on the name of the comment author and then you will be placed in &#8216;Edit Comment&#8217; mode.</p>\n<p><strong>Q. Where is the WordPress Bookmarklet?</strong><br />\nA. It&#8217;s gone for now but will likely be available in Version 2.6 but see <a href=\"http://wordpress.org/support/topic/164205\">Dion Hulce&#8217;s suggestion in the Forums</a>.</p>\n<p><strong>Q. When in the Media Library, what is this error &#8212; Fatal error: Call to undefined function: wp_get_attachment_image() in /home/public_html/wp-includes/post-template.php on line 384</strong><br />\nA. This is usually caused by a PHP file not being correctly uploaded. Make sure wp-includes/media.php and wp-settings.php are intact (reupload them).</p>\n<p><strong>Q. When trying to upload media files I get the message &#8220;Are you sure you want to do that?&#8221; with a link telling me to try again. Clicking &#8220;Please try again&#8221; simply reloads the dashboard into the frame.</strong><br />\nA. You may need to disable your plugins one-by-one to find the &#8216;problem&#8217; plugin. Some older plugins, such as Ryan Duff&#8217;s old WP-Contact plugin, have been reported to cause this problem, so check under the Plugins tab to see if your Plugins need updating.</p>\n<p><strong>Q. Has the option to enable/disable Gzip compression been removed from 2.5?</strong><br />\nA Yes, the option is gone. WordPress now leaves compression as a decision for the server.</p>\n<p><strong>Q. Why can&#8217;t I add media in Manage-&gt;Media Library?</strong><br />\nA. This was planned for 2.5 but didn&#8217;t make it into code so this will be included in a future release.</p>\n<p><strong>Q. How do I add links to my Blogroll?</strong><br />\nA. A new menu choice, Write-&gt;Link, allows creation of new Links. In Manage-&gt;Links, there is an &#8220;add new&#8221; link to the right of the Manage Links heading. Also remember the new Manage-&gt;Link Categories to add and maintain Link Categories.</p>\n<p><strong>Q. What happened to the Post Timestamp box? How do I change the Post Timestamp?</strong><br />\nA. In Write-&gt;Post, in the Publish Status area, click on the Edit button to the right of Publish immediately. When editing a Post, there is a similar edit button in the Publish Status area next to the Published on date and time.</p>\n<p><strong>Q. My screen is using 1280&#215;960 pixels and I notice that admin screens are left aligned, not centered or stretched 100%.</strong><br />\nA. This is the intended design. Viper007bond has <a href=\"http://wordpress.org/extend/plugins/remove-max-width\">Remove Max Width Plugin</a> to change this.</p>\n<p><strong>Q. The collation set in &#8220;wp-config.php&#8221; (DB_COLLATE) is not being used in searches.</strong><br />\nA. This will be likely be fixed in 2.5.1 but see <a href=\"http://comox.textdrive.com/pipermail/wp-testers/2008-March/007284.html\">this thread at wp-testers</a> for a suggested fix.</p>\n<p><strong>Q. I get a “403 Forbidden&#8221; error when uploading files. I am also using the Bad Behavior plugin.</strong><br />\nA. May need to delete the &#8220;Shockwave Flash&#8221; from the Bad Behavior blacklist file. See <a href=\"http://rickbeckman.org/wordpress-25-bad-behavior-20x/\">Rick Beckman&#8217;s post</a> for a detailed description.</p>\n<p><strong>Q. I just tried to upload several media file and my browser crashed when it got to the &#8220;Crunching&#8221; part.</strong><br />\nA. It is possible your system doesn&#8217;t support the Flash uploader or needs an upgrade to your Flash Player. Dion Hulse also wrote the <a href=\"http://trac.wordpress.org/attachment/ticket/6406/no-flash-uploader.php\">the No Flash Uploader plugin</a> to disable the Flash uploader.</p>\n<p><strong>Q. I can&#8217;t edit the Post slug/permalink and I&#8217;m sure I&#8217;m using pretty permalinks</strong><br />\nA. To help debug the problem, answer these questions. What is your permalink structure? Can you provide the permalink for a post that does not show the Permalink field in the editor? Do you get any JS errors in the console? If you have plugins activated, does the problem persist if they are deactivated?</p>\n<p><strong>Q. The Change button (beside the Remove button) in Design-&gt;Widgets isn&#8217;t working. When I click change (beside remove button) it doesn&#8217;t save the changes to the widget.</strong><br />\nA. Clicking Change doesn&#8217;t actually do a save and reload. You have to click &#8220;Save Changes&#8221; at the bottom to make the changes stick.</p>\n<p><strong>Q. In older versions, below widgets we had the option to select how many &#8216;Text&#8217; widgets we want to use, but I don&#8217;t see that in 2.5.</strong><br />\nA. The option is no longer needed. Widgets that allow multiple instances (e.g. Text widget) can be added as many times as you like by just clicking on the Add button. Remember to &#8220;Save Changes&#8221; when done adding the widgets.</p>\n<p><strong>Q. Can I revert from Version 2.5 to Version 2.3.3?</strong><br />\nA. The best way is to restore your 2.3.3 database and files. If that is not possible, then any user that accessed the 2.5 blog or was added in 2.5 would need the MD5 password reset in the user table.</p>\n<p><strong>Q. I have several production blogs using Version 2.3.3 and I just upgraded to Version 2.5 on one of those blog. All the blogs share a common user table for the user names and passwords, but when I login to the Version 2.5 blog with a user, why can&#8217;t I use that same user to login to the 2.3.3 blogs.</strong><br />\nA. Version 2.5 has enhance the password authentication so the passwords created/used for a 2.5 blog will not work on a 2.3.3 blog. Ryan wrote <a href=\"http://wordpress.org/extend/plugins/md5-password-hashes/\">MD5 Password Hashes plugin</a> to use the old password hashing (like what is used in Version 2.3.3) in a Version 2.5 blog.</p>\n<p><strong>Q. How do I add a youtube video to a 2.5 Post?</strong><br />\nA. In the HTML mode, paste the youtube URL (youtube tells you this) into the post. In the Visual mode, paste the youtube URL into the popup activated when you click on the &#8220;Insert/edit embedded media&#8221; icon on the 2nd toolbar row.</p>\n<p>In addition to these questions and the provided answers, if you have any new ones that you would like to add, please leave us a comment and we will add them to the list.</p>\";}i:45;a:7:{s:5:\"title\";s:25:\"Matt: New BuddyPress Site\";s:4:\"guid\";s:20:\"http://ma.tt/?p=4977\";s:4:\"link\";s:41:\"http://ma.tt/2008/03/new-buddypress-site/\";s:11:\"description\";s:353:\"<p><a href=\"http://buddypress.org/\">The new BuddyPress site is up</a> and includes the key ingredients of an open source project: mailing list, bug tracker, and SVN. No official release of anything yet, but if you&#8217;re interested in following the development you should join the mailing list. The site itself is, of course, powered by WordPress.</p>\";s:7:\"pubdate\";s:31:\"Tue, 01 Apr 2008 06:57:12 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:353:\"<p><a href=\"http://buddypress.org/\">The new BuddyPress site is up</a> and includes the key ingredients of an open source project: mailing list, bug tracker, and SVN. No official release of anything yet, but if you&#8217;re interested in following the development you should join the mailing list. The site itself is, of course, powered by WordPress.</p>\";}i:46;a:7:{s:5:\"title\";s:56:\"Weblog Tools Collection: Phenomenal WordCamp Dallas 2008\";s:4:\"guid\";s:85:\"http://weblogtoolscollection.com/archives/2008/03/31/phenomenal-wordcamp-dallas-2008/\";s:4:\"link\";s:85:\"http://weblogtoolscollection.com/archives/2008/03/31/phenomenal-wordcamp-dallas-2008/\";s:11:\"description\";s:1106:\"<p>So we had a really good time and wished that all of you were there. The presentations were all top notch and audience participation was very good. In his keynote Matt mentioned that attendees would get the most from this conference if they mingled and connected with each other as much as they paid attention to the people up on stage and I noticed a lot of mingling going on. <img src=\"http://weblogtoolscollection.com/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> It was wonderful to finally meet a whole bunch of people. I have all the pictures that I took (I should have taken the D70) on my Flickr account with the agreed upon <a href=\"http://flickr.com/photos/laughinglizard/sets/72157604332447712/\">WordCampDallas2008 tag</a>. If you have any questions, have any media from the event that you would like to share or have any questions for any of the events/presenters, please let us know.</p>\n<p>Special thanks to <a href=\"http://charlesstricklin.com/\">Charles</a> for organizing the event and to <a href=\"http://onemansblog.com\">John</a> for being a terrific host.</p>\";s:7:\"pubdate\";s:31:\"Tue, 01 Apr 2008 00:17:15 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:1106:\"<p>So we had a really good time and wished that all of you were there. The presentations were all top notch and audience participation was very good. In his keynote Matt mentioned that attendees would get the most from this conference if they mingled and connected with each other as much as they paid attention to the people up on stage and I noticed a lot of mingling going on. <img src=\"http://weblogtoolscollection.com/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> It was wonderful to finally meet a whole bunch of people. I have all the pictures that I took (I should have taken the D70) on my Flickr account with the agreed upon <a href=\"http://flickr.com/photos/laughinglizard/sets/72157604332447712/\">WordCampDallas2008 tag</a>. If you have any questions, have any media from the event that you would like to share or have any questions for any of the events/presenters, please let us know.</p>\n<p>Special thanks to <a href=\"http://charlesstricklin.com/\">Charles</a> for organizing the event and to <a href=\"http://onemansblog.com\">John</a> for being a terrific host.</p>\";}i:47;a:7:{s:5:\"title\";s:26:\"Matt: Catching up on March\";s:4:\"guid\";s:20:\"http://ma.tt/?p=4975\";s:4:\"link\";s:42:\"http://ma.tt/2008/03/catching-up-on-march/\";s:11:\"description\";s:373:\"<p>March is almost over, but email-wise I&#8217;m just getting started. Between the travel, conferences like SxSW and WordCamp, the 2.5 release, and the wisdom tooth stuff I&#8217;ve got stuff backed up even from Febuary. I&#8217;m back home this week so I&#8217;ll be doing as much catch-up as possible. If you get a response to an old email from me, that&#8217;s why.</p>\";s:7:\"pubdate\";s:31:\"Mon, 31 Mar 2008 19:16:24 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:373:\"<p>March is almost over, but email-wise I&#8217;m just getting started. Between the travel, conferences like SxSW and WordCamp, the 2.5 release, and the wisdom tooth stuff I&#8217;ve got stuff backed up even from Febuary. I&#8217;m back home this week so I&#8217;ll be doing as much catch-up as possible. If you get a response to an old email from me, that&#8217;s why.</p>\";}i:48;a:7:{s:5:\"title\";s:32:\"Alex King: WP Mobile Edition 2.1\";s:4:\"guid\";s:56:\"http://alexking.org/blog/2008/03/30/wp-mobile-edition-21\";s:4:\"link\";s:56:\"http://alexking.org/blog/2008/03/30/wp-mobile-edition-21\";s:11:\"description\";s:1667:\"<p>I&#8217;ve updated my WordPress Mobile Edition plugin. I&#8217;ve made a couple of changes:</p>\n<ul>\n<li>Since many people don&#8217;t RTFM, I&#8217;ve added some code that (hopefully) only tries to show the mobile theme if everything is installed correctly.</li>\n<li>If it&#8217;s not installed correctly, it will show an error message accordingly in WP 2.5+.</li>\n<li>Experimental: a link to explicitly enter the mobile interface - requires cookies.</li>\n</ul>\n<p>This plugin creates a PDA friendly interface for your blog. You can see it in action by visiting this site in a mobile browser. If your mobile browser is not automatically detected, get your browser details <a href=\"http://alexking.org/who.php\">here</a> and <a href=\"http://alexking.org/contact\">let me know</a>.</p>\n<p>This plugin could use some CSS now that mobile browsers are supporting them better. Send me your submissions if you&#8217;d like to contribute.</p>\n<p>The download and more information are available on my <a href=\"http://alexking.org/projects/wordpress\">WordPress Plugins page</a>.</p>\n<p>If you have any trouble with this, please open a thread in the <a href=\"http://wordpress.org/support/\" rel=\"external\">WP Support Forums</a> and send me the link.</p>\n<p>UPDATE: Version 2.1.1 is now available and should work better than version 2.1. <img src=\"http://alexking.org/wp/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /></p>\n<p><a href=\"http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=WP+Mobile+Edition+2.1&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2008%2F03%2F30%2Fwp-mobile-edition-21\">ShareThis</a></p>\";s:7:\"pubdate\";s:31:\"Mon, 31 Mar 2008 05:27:27 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:1667:\"<p>I&#8217;ve updated my WordPress Mobile Edition plugin. I&#8217;ve made a couple of changes:</p>\n<ul>\n<li>Since many people don&#8217;t RTFM, I&#8217;ve added some code that (hopefully) only tries to show the mobile theme if everything is installed correctly.</li>\n<li>If it&#8217;s not installed correctly, it will show an error message accordingly in WP 2.5+.</li>\n<li>Experimental: a link to explicitly enter the mobile interface - requires cookies.</li>\n</ul>\n<p>This plugin creates a PDA friendly interface for your blog. You can see it in action by visiting this site in a mobile browser. If your mobile browser is not automatically detected, get your browser details <a href=\"http://alexking.org/who.php\">here</a> and <a href=\"http://alexking.org/contact\">let me know</a>.</p>\n<p>This plugin could use some CSS now that mobile browsers are supporting them better. Send me your submissions if you&#8217;d like to contribute.</p>\n<p>The download and more information are available on my <a href=\"http://alexking.org/projects/wordpress\">WordPress Plugins page</a>.</p>\n<p>If you have any trouble with this, please open a thread in the <a href=\"http://wordpress.org/support/\" rel=\"external\">WP Support Forums</a> and send me the link.</p>\n<p>UPDATE: Version 2.1.1 is now available and should work better than version 2.1. <img src=\"http://alexking.org/wp/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /></p>\n<p><a href=\"http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=WP+Mobile+Edition+2.1&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2008%2F03%2F30%2Fwp-mobile-edition-21\">ShareThis</a></p>\";}i:49;a:7:{s:5:\"title\";s:30:\"Alex King: Shortcut Macros 1.2\";s:4:\"guid\";s:54:\"http://alexking.org/blog/2008/03/30/shortcut-macros-12\";s:4:\"link\";s:54:\"http://alexking.org/blog/2008/03/30/shortcut-macros-12\";s:11:\"description\";s:1018:\"<p>I&#8217;ve updated my Shortcut Macros plugin to make it <a href=\"http://wordpress.org/\" rel=\"external\">WordPress</a> 2.5 compatible.</p>\n<p>This plugin allows you to set up shortcuts that expand into longer text when you save a post/page. For example, if you link to my site often, you might create a macro of <code>ak</code>. You type <code>##ak</code> into a post/page and when you save it will expand to <code>&lt;a href=\"http://alexking.org/\"&gt;Alex King&lt;/a&gt;</code>.</p>\n<p>The download and more information are available on my <a href=\"http://alexking.org/projects/wordpress\">WordPress Plugins page</a>.</p>\n<p>If you have any trouble with this, please open a thread in the <a href=\"http://wordpress.org/support/\" rel=\"external\">WP Support Forums</a> and send me the link.</p>\n<p><a href=\"http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=Shortcut+Macros+1.2&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2008%2F03%2F30%2Fshortcut-macros-12\">ShareThis</a></p>\";s:7:\"pubdate\";s:31:\"Mon, 31 Mar 2008 04:34:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:1018:\"<p>I&#8217;ve updated my Shortcut Macros plugin to make it <a href=\"http://wordpress.org/\" rel=\"external\">WordPress</a> 2.5 compatible.</p>\n<p>This plugin allows you to set up shortcuts that expand into longer text when you save a post/page. For example, if you link to my site often, you might create a macro of <code>ak</code>. You type <code>##ak</code> into a post/page and when you save it will expand to <code>&lt;a href=\"http://alexking.org/\"&gt;Alex King&lt;/a&gt;</code>.</p>\n<p>The download and more information are available on my <a href=\"http://alexking.org/projects/wordpress\">WordPress Plugins page</a>.</p>\n<p>If you have any trouble with this, please open a thread in the <a href=\"http://wordpress.org/support/\" rel=\"external\">WP Support Forums</a> and send me the link.</p>\n<p><a href=\"http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=Shortcut+Macros+1.2&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2008%2F03%2F30%2Fshortcut-macros-12\">ShareThis</a></p>\";}}s:7:\"channel\";a:5:{s:5:\"title\";s:16:\"WordPress Planet\";s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:8:\"language\";s:2:\"en\";s:11:\"description\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"tagline\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:4:\"etag\";s:25:\"\"318c5-48053701-c10597\"\r\n\";s:13:\"last_modified\";s:31:\"Tue, 15 Apr 2008 23:15:13 GMT\r\n\";}','no'),(77,0,'rss_867bd5c64f85878d03a060509cd2f92c_ts','1208301890','no'),(78,0,'update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1207764270;s:7:\"checked\";a:14:{s:17:\"lightbox-auto.php\";s:3:\"0.2\";s:19:\"akismet/akismet.php\";s:5:\"2.1.4\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:7:\"1.4.6.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"1.7.5\";s:24:\"lightbox-2/lightbox2.php\";s:5:\"2.5.0\";s:31:\"page-links-to/page-links-to.php\";s:3:\"1.4\";s:21:\"pagemash/pagemash.php\";s:5:\"0.1.3\";s:27:\"picturegrid/picturegrid.php\";s:3:\"1.0\";s:36:\"random-image-widget/random_image.php\";s:3:\"1.1\";s:39:\"search-everything/search_everything.php\";s:5:\"4.2.2\";s:33:\"twitter-widget/twitter-widget.php\";s:5:\"1.0.2\";s:9:\"stats.php\";s:3:\"1.2\";s:30:\"wp-shortstat2/wp-shortstat.php\";s:5:\"1.13a\";s:35:\"wp-simpleviewer/wp-simpleviewer.php\";s:4:\"1.11\";}s:8:\"response\";a:4:{s:17:\"lightbox-auto.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:4:\"1485\";s:4:\"slug\";s:12:\"add-lightbox\";s:11:\"new_version\";s:3:\"0.3\";s:3:\"url\";s:49:\"http://wordpress.org/extend/plugins/add-lightbox/\";s:7:\"package\";s:54:\"http://downloads.wordpress.org/plugin/add-lightbox.zip\";}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:3:\"520\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:11:\"new_version\";s:7:\"1.4.6.7\";s:3:\"url\";s:56:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"contact-form-7\";s:11:\"new_version\";s:5:\"1.7.7\";s:3:\"url\";s:51:\"http://wordpress.org/extend/plugins/contact-form-7/\";s:7:\"package\";s:62:\"http://downloads.wordpress.org/plugin/contact-form-7.1.7.7.zip\";}s:21:\"pagemash/pagemash.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:4:\"1557\";s:4:\"slug\";s:8:\"pagemash\";s:11:\"new_version\";s:5:\"1.0.3\";s:3:\"url\";s:45:\"http://wordpress.org/extend/plugins/pagemash/\";s:7:\"package\";s:56:\"http://downloads.wordpress.org/plugin/pagemash.1.0.3.zip\";}}}','yes'),(81,0,'Twitter Widget','a:2:{s:8:\"username\";s:12:\"silverdragon\";s:11:\"numStatuses\";s:1:\"3\";}','yes'),(82,0,'widget_pages','a:3:{s:5:\"title\";s:0:\"\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}','yes'),(83,0,'widget_calendar','a:1:{s:5:\"title\";s:8:\"Calendar\";}','yes'),(84,0,'widget_archives','a:3:{s:5:\"count\";b:0;s:8:\"dropdown\";b:0;s:5:\"title\";s:0:\"\";}','yes'),(85,0,'widget_meta','a:1:{s:5:\"title\";s:0:\"\";}','yes'),(86,0,'widget_recent_entries','a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}','yes'),(87,0,'widget_tag_cloud','a:1:{s:5:\"title\";s:0:\"\";}','yes'),(88,0,'widget_text','a:3:{i:1;a:2:{s:5:\"title\";s:18:\"Under Construction\";s:4:\"text\";s:243:\"Thanks for stopping by Grand View Photography right now things are still under construction so some things wont be working quite correctly and there is much to look at. So for now be sure and subscribe to the RSS and keep looking for updates. \";}s:6:\"number\";i:2;i:2;a:2:{s:5:\"title\";s:34:\"Frontiers 25th Anniversary Banquet\";s:4:\"text\";s:476:\"<p>Hey I had a great time getting to talk to everyone who stopped by the photo booth at the banquet. The photos taken at the booth are currently in processing. For more info about the portraits taken please contact Frontiers, by calling 480.834.1500 </p>\r\n\r\n<p>If you are interested in the photographic services that I have to offer check out the packages section. For photos from my recent trip to India <a href=\"http://grandviewphotographyaz.com/images/india07/\">click here</a></p>\r\n\r\n\r\n\";}}','yes'),(89,0,'widget_rss','a:1:{i:1;a:4:{s:5:\"items\";i:10;s:5:\"title\";s:0:\"\";s:5:\"error\";b:1;s:3:\"url\";s:54:\"Error: could not find an RSS or ATOM feed at that URL.\";}}','yes'),(90,0,'widget_recent_comments','a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}','yes'),(116,0,'widget_random_image','a:3:{s:5:\"title\";s:6:\"Images\";s:11:\"image_count\";s:1:\"1\";s:9:\"directory\";s:27:\"wp-content/uploads/2008/03/\";}','yes'),(91,0,'lightbox_2_theme_path','/home/eric/public_html/wp-content/plugins/lightbox-2/Themes','yes'),(92,0,'lightbox_2_theme','Black','yes'),(93,0,'wordpress_api_key','04226df0606f','yes'),(94,0,'akismet_discard_month','true','yes'),(95,0,'aiosp_home_description','Website of professional photographer Eric Taylor','yes'),(96,0,'aiosp_home_title','Grand View Photography','yes'),(97,0,'aiosp_rewrite_titles','on','yes'),(98,0,'aiosp_use_categories','','yes'),(99,0,'aiosp_category_noindex','on','yes'),(100,0,'aiosp_archive_noindex','on','yes'),(101,0,'aiosp_tags_noindex','','yes'),(102,0,'aiosp_generate_descriptions','on','yes'),(103,0,'aiosp_post_title_format','%post_title% | %blog_title%','yes'),(104,0,'aiosp_page_title_format','%page_title% | %blog_title%','yes'),(105,0,'aiosp_category_title_format','%category_title% | %blog_title%','yes'),(106,0,'aiosp_archive_title_format','%date% | %blog_title%','yes'),(107,0,'aiosp_tag_title_format','%tag% | %blog_title%','yes'),(108,0,'aiosp_search_title_format','%search% | %blog_title%','yes'),(109,0,'aiosp_description_format','%description%','yes'),(110,0,'aiosp_paged_format','- Part %page%','yes'),(111,0,'aiosp_404_title_format','Nothing found for %request_words%','yes'),(112,0,'aiosp_post_meta_tags','','yes'),(113,0,'aiosp_page_meta_tags','','yes'),(114,0,'aiosp_home_meta_tags','','yes'),(115,0,'aiosp_do_log','','yes'),(117,0,'widget_akismet','a:1:{s:5:\"title\";s:12:\"Spam Blocked\";}','yes'),(118,0,'widget_Twidget','a:3:{s:7:\"account\";s:12:\"silverdragon\";s:5:\"title\";s:15:\"Twitter Updates\";s:4:\"show\";s:1:\"5\";}','yes'),(124,0,'doing_cron','0','yes'),(158,0,'widget_flickr','a:3:{s:5:\"title\";s:13:\"Flickr Photos\";s:5:\"items\";s:1:\"4\";s:14:\"flickr_rss_url\";s:96:\"http://api.flickr.com/services/feeds/photos_public.gne?id=51404603@N00&lang=en-us&format=rss_200\";}','yes'),(159,0,'rss_c071f5a01ba103b58fb73a17281349e0','O:9:\"magpierss\":18:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:20:{i:0;a:9:{s:5:\"title\";s:20:\"Sarah Sr. Pictures 1\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/2040095189/\";s:11:\"description\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040095189/\" title=\"Sarah Sr. Pictures 1\"><img src=\"http://farm3.static.flickr.com/2365/2040095189_794ec03b8b_m.jpg\" width=\"240\" height=\"174\" alt=\"Sarah Sr. Pictures 1\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";s:7:\"pubdate\";s:31:\"Sat, 17 Nov 2007 08:40:00 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-07-05T11:01:01-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/2040095189\";s:5:\"media\";a:4:{s:5:\"title\";s:20:\"Sarah Sr. Pictures 1\";s:4:\"text\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040095189/\" title=\"Sarah Sr. Pictures 1\"><img src=\"http://farm3.static.flickr.com/2365/2040095189_794ec03b8b_m.jpg\" width=\"240\" height=\"174\" alt=\"Sarah Sr. Pictures 1\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:11:\"portrait sr\";}s:7:\"summary\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040095189/\" title=\"Sarah Sr. Pictures 1\"><img src=\"http://farm3.static.flickr.com/2365/2040095189_794ec03b8b_m.jpg\" width=\"240\" height=\"174\" alt=\"Sarah Sr. Pictures 1\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";}i:1;a:9:{s:5:\"title\";s:20:\"Sarah Sr. Pictures 2\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/2040095037/\";s:11:\"description\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040095037/\" title=\"Sarah Sr. Pictures 2\"><img src=\"http://farm3.static.flickr.com/2111/2040095037_c35250eef1_m.jpg\" width=\"174\" height=\"240\" alt=\"Sarah Sr. Pictures 2\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";s:7:\"pubdate\";s:31:\"Sat, 17 Nov 2007 08:39:57 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-07-05T10:59:57-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/2040095037\";s:5:\"media\";a:4:{s:5:\"title\";s:20:\"Sarah Sr. Pictures 2\";s:4:\"text\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040095037/\" title=\"Sarah Sr. Pictures 2\"><img src=\"http://farm3.static.flickr.com/2111/2040095037_c35250eef1_m.jpg\" width=\"174\" height=\"240\" alt=\"Sarah Sr. Pictures 2\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:11:\"portrait sr\";}s:7:\"summary\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040095037/\" title=\"Sarah Sr. Pictures 2\"><img src=\"http://farm3.static.flickr.com/2111/2040095037_c35250eef1_m.jpg\" width=\"174\" height=\"240\" alt=\"Sarah Sr. Pictures 2\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";}i:2;a:9:{s:5:\"title\";s:20:\"Sarah Sr. Pictures 3\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/2040094913/\";s:11:\"description\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040094913/\" title=\"Sarah Sr. Pictures 3\"><img src=\"http://farm3.static.flickr.com/2175/2040094913_aeede0a715_m.jpg\" width=\"164\" height=\"240\" alt=\"Sarah Sr. Pictures 3\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";s:7:\"pubdate\";s:31:\"Sat, 17 Nov 2007 08:39:54 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-07-05T11:01:31-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/2040094913\";s:5:\"media\";a:4:{s:5:\"title\";s:20:\"Sarah Sr. Pictures 3\";s:4:\"text\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040094913/\" title=\"Sarah Sr. Pictures 3\"><img src=\"http://farm3.static.flickr.com/2175/2040094913_aeede0a715_m.jpg\" width=\"164\" height=\"240\" alt=\"Sarah Sr. Pictures 3\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:11:\"portrait sr\";}s:7:\"summary\";s:383:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/2040094913/\" title=\"Sarah Sr. Pictures 3\"><img src=\"http://farm3.static.flickr.com/2175/2040094913_aeede0a715_m.jpg\" width=\"164\" height=\"240\" alt=\"Sarah Sr. Pictures 3\" /></a></p>\n\n<p>Photos taken for Sarahs Sr. Pictures</p>\";}i:3;a:9:{s:5:\"title\";s:28:\"Jaime + Eric Invitaion Front\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1911307096/\";s:11:\"description\";s:527:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911307096/\" title=\"Jaime + Eric Invitaion Front\"><img src=\"http://farm3.static.flickr.com/2295/1911307096_0100f7f800_m.jpg\" width=\"115\" height=\"240\" alt=\"Jaime + Eric Invitaion Front\" /></a></p>\n\n<p>Our Wedding invitations Designed and photographed by me.<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:7:\"pubdate\";s:30:\"Wed, 7 Nov 2007 17:51:04 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-07T17:51:04-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1911307096\";s:5:\"media\";a:4:{s:5:\"title\";s:28:\"Jaime + Eric Invitaion Front\";s:4:\"text\";s:527:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911307096/\" title=\"Jaime + Eric Invitaion Front\"><img src=\"http://farm3.static.flickr.com/2295/1911307096_0100f7f800_m.jpg\" width=\"115\" height=\"240\" alt=\"Jaime + Eric Invitaion Front\" /></a></p>\n\n<p>Our Wedding invitations Designed and photographed by me.<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:26:\"graphicdesign skitch jaime\";}s:7:\"summary\";s:527:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911307096/\" title=\"Jaime + Eric Invitaion Front\"><img src=\"http://farm3.static.flickr.com/2295/1911307096_0100f7f800_m.jpg\" width=\"115\" height=\"240\" alt=\"Jaime + Eric Invitaion Front\" /></a></p>\n\n<p>Our Wedding invitations Designed and photographed by me.<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";}i:4;a:9:{s:5:\"title\";s:30:\"Performance Ergonomics Website\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1911070264/\";s:11:\"description\";s:527:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911070264/\" title=\"Performance Ergonomics Website\"><img src=\"http://farm3.static.flickr.com/2155/1911070264_a270688a02_m.jpg\" width=\"240\" height=\"215\" alt=\"Performance Ergonomics Website\" /></a></p>\n\n<p>Website created for Performance Ergonomics <br />\n<br />\n<br />\n Uploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:7:\"pubdate\";s:30:\"Wed, 7 Nov 2007 17:30:27 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-07T17:30:27-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1911070264\";s:5:\"media\";a:4:{s:5:\"title\";s:30:\"Performance Ergonomics Website\";s:4:\"text\";s:527:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911070264/\" title=\"Performance Ergonomics Website\"><img src=\"http://farm3.static.flickr.com/2155/1911070264_a270688a02_m.jpg\" width=\"240\" height=\"215\" alt=\"Performance Ergonomics Website\" /></a></p>\n\n<p>Website created for Performance Ergonomics <br />\n<br />\n<br />\n Uploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:6:\"skitch\";}s:7:\"summary\";s:527:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911070264/\" title=\"Performance Ergonomics Website\"><img src=\"http://farm3.static.flickr.com/2155/1911070264_a270688a02_m.jpg\" width=\"240\" height=\"215\" alt=\"Performance Ergonomics Website\" /></a></p>\n\n<p>Website created for Performance Ergonomics <br />\n<br />\n<br />\n Uploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";}i:5;a:9:{s:5:\"title\";s:19:\"Asher CD Back Cover\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1911033088/\";s:11:\"description\";s:510:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911033088/\" title=\"Asher CD Back Cover\"><img src=\"http://farm3.static.flickr.com/2249/1911033088_bd333356a9_m.jpg\" width=\"240\" height=\"193\" alt=\"Asher CD Back Cover\" /></a></p>\n\n<p>The Back side of the CD cover designed for the band ASHER<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:7:\"pubdate\";s:30:\"Wed, 7 Nov 2007 17:27:11 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-07T17:27:11-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1911033088\";s:5:\"media\";a:4:{s:5:\"title\";s:19:\"Asher CD Back Cover\";s:4:\"text\";s:510:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911033088/\" title=\"Asher CD Back Cover\"><img src=\"http://farm3.static.flickr.com/2249/1911033088_bd333356a9_m.jpg\" width=\"240\" height=\"193\" alt=\"Asher CD Back Cover\" /></a></p>\n\n<p>The Back side of the CD cover designed for the band ASHER<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:20:\"graphicdesign skitch\";}s:7:\"summary\";s:510:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1911033088/\" title=\"Asher CD Back Cover\"><img src=\"http://farm3.static.flickr.com/2249/1911033088_bd333356a9_m.jpg\" width=\"240\" height=\"193\" alt=\"Asher CD Back Cover\" /></a></p>\n\n<p>The Back side of the CD cover designed for the band ASHER<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";}i:6;a:9:{s:5:\"title\";s:14:\"Asher CD Cover\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1910956768/\";s:11:\"description\";s:488:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1910956768/\" title=\"Asher CD Cover\"><img src=\"http://farm3.static.flickr.com/2332/1910956768_437aeed5a3_m.jpg\" width=\"240\" height=\"239\" alt=\"Asher CD Cover\" /></a></p>\n\n<p>The Font CD cover designed for a friends band<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:7:\"pubdate\";s:30:\"Wed, 7 Nov 2007 17:20:34 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-07T17:20:34-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1910956768\";s:5:\"media\";a:4:{s:5:\"title\";s:14:\"Asher CD Cover\";s:4:\"text\";s:488:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1910956768/\" title=\"Asher CD Cover\"><img src=\"http://farm3.static.flickr.com/2332/1910956768_437aeed5a3_m.jpg\" width=\"240\" height=\"239\" alt=\"Asher CD Cover\" /></a></p>\n\n<p>The Font CD cover designed for a friends band<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:20:\"graphicdesign skitch\";}s:7:\"summary\";s:488:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1910956768/\" title=\"Asher CD Cover\"><img src=\"http://farm3.static.flickr.com/2332/1910956768_437aeed5a3_m.jpg\" width=\"240\" height=\"239\" alt=\"Asher CD Cover\" /></a></p>\n\n<p>The Font CD cover designed for a friends band<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";}i:7;a:9:{s:5:\"title\";s:44:\"Christian Spotlight\'s Guide to Games Website\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1882864872/\";s:11:\"description\";s:563:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1882864872/\" title=\"Christian Spotlight\'s Guide to Games Website\"><img src=\"http://farm3.static.flickr.com/2374/1882864872_92abf53c1b_m.jpg\" width=\"227\" height=\"240\" alt=\"Christian Spotlight\'s Guide to Games Website\" /></a></p>\n\n<p>Created complete website along with forums and logo design. <br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:7:\"pubdate\";s:30:\"Mon, 5 Nov 2007 19:53:27 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-05T19:53:27-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1882864872\";s:5:\"media\";a:4:{s:5:\"title\";s:44:\"Christian Spotlight\'s Guide to Games Website\";s:4:\"text\";s:563:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1882864872/\" title=\"Christian Spotlight\'s Guide to Games Website\"><img src=\"http://farm3.static.flickr.com/2374/1882864872_92abf53c1b_m.jpg\" width=\"227\" height=\"240\" alt=\"Christian Spotlight\'s Guide to Games Website\" /></a></p>\n\n<p>Created complete website along with forums and logo design. <br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:6:\"skitch\";}s:7:\"summary\";s:563:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1882864872/\" title=\"Christian Spotlight\'s Guide to Games Website\"><img src=\"http://farm3.static.flickr.com/2374/1882864872_92abf53c1b_m.jpg\" width=\"227\" height=\"240\" alt=\"Christian Spotlight\'s Guide to Games Website\" /></a></p>\n\n<p>Created complete website along with forums and logo design. <br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";}i:8;a:9:{s:5:\"title\";s:28:\"Performance Economics\'s Logo\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1882000625/\";s:11:\"description\";s:547:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1882000625/\" title=\"Performance Economics\'s Logo\"><img src=\"http://farm3.static.flickr.com/2242/1882000625_14a839a013_m.jpg\" width=\"240\" height=\"121\" alt=\"Performance Economics\'s Logo\" /></a></p>\n\n<p>Logo Design for Performance Economics I also made business cards and website<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:7:\"pubdate\";s:30:\"Mon, 5 Nov 2007 19:49:56 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-05T19:49:56-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1882000625\";s:5:\"media\";a:4:{s:5:\"title\";s:28:\"Performance Economics\'s Logo\";s:4:\"text\";s:547:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1882000625/\" title=\"Performance Economics\'s Logo\"><img src=\"http://farm3.static.flickr.com/2242/1882000625_14a839a013_m.jpg\" width=\"240\" height=\"121\" alt=\"Performance Economics\'s Logo\" /></a></p>\n\n<p>Logo Design for Performance Economics I also made business cards and website<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:25:\"logo graphicdesign skitch\";}s:7:\"summary\";s:547:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1882000625/\" title=\"Performance Economics\'s Logo\"><img src=\"http://farm3.static.flickr.com/2242/1882000625_14a839a013_m.jpg\" width=\"240\" height=\"121\" alt=\"Performance Economics\'s Logo\" /></a></p>\n\n<p>Logo Design for Performance Economics I also made business cards and website<br />\n<br />\nUploaded with <a href=\"http://plasq.com/\">plasq</a>\'s <a href=\"http://myskitch.com\">Skitch</a></p>\";}i:9;a:9:{s:5:\"title\";s:6:\"Hazard\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1877636006/\";s:11:\"description\";s:352:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877636006/\" title=\"Hazard\"><img src=\"http://farm3.static.flickr.com/2133/1877636006_e11d250e45_m.jpg\" width=\"182\" height=\"240\" alt=\"Hazard\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:7:\"pubdate\";s:30:\"Mon, 5 Nov 2007 11:54:25 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-05T12:47:40-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1877636006\";s:5:\"media\";a:4:{s:5:\"title\";s:6:\"Hazard\";s:4:\"text\";s:352:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877636006/\" title=\"Hazard\"><img src=\"http://farm3.static.flickr.com/2133/1877636006_e11d250e45_m.jpg\" width=\"182\" height=\"240\" alt=\"Hazard\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:34:\"bw mediumformat gasmask asu photo2\";}s:7:\"summary\";s:352:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877636006/\" title=\"Hazard\"><img src=\"http://farm3.static.flickr.com/2133/1877636006_e11d250e45_m.jpg\" width=\"182\" height=\"240\" alt=\"Hazard\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";}i:10;a:9:{s:5:\"title\";s:12:\"Winking Goat\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1876813933/\";s:11:\"description\";s:364:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813933/\" title=\"Winking Goat\"><img src=\"http://farm3.static.flickr.com/2186/1876813933_bc7992df19_m.jpg\" width=\"187\" height=\"240\" alt=\"Winking Goat\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:7:\"pubdate\";s:30:\"Mon, 5 Nov 2007 11:54:17 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-05T12:38:18-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1876813933\";s:5:\"media\";a:4:{s:5:\"title\";s:12:\"Winking Goat\";s:4:\"text\";s:364:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813933/\" title=\"Winking Goat\"><img src=\"http://farm3.static.flickr.com/2186/1876813933_bc7992df19_m.jpg\" width=\"187\" height=\"240\" alt=\"Winking Goat\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:31:\"bw mediumformat goat asu photo2\";}s:7:\"summary\";s:364:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813933/\" title=\"Winking Goat\"><img src=\"http://farm3.static.flickr.com/2186/1876813933_bc7992df19_m.jpg\" width=\"187\" height=\"240\" alt=\"Winking Goat\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";}i:11;a:9:{s:5:\"title\";s:13:\"Foward Motion\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1876813709/\";s:11:\"description\";s:366:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813709/\" title=\"Foward Motion\"><img src=\"http://farm3.static.flickr.com/2257/1876813709_2f1dafe332_m.jpg\" width=\"240\" height=\"187\" alt=\"Foward Motion\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:7:\"pubdate\";s:30:\"Mon, 5 Nov 2007 11:54:15 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-05T12:49:21-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1876813709\";s:5:\"media\";a:4:{s:5:\"title\";s:13:\"Foward Motion\";s:4:\"text\";s:366:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813709/\" title=\"Foward Motion\"><img src=\"http://farm3.static.flickr.com/2257/1876813709_2f1dafe332_m.jpg\" width=\"240\" height=\"187\" alt=\"Foward Motion\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:37:\"bw mediumformat skateboard asu photo2\";}s:7:\"summary\";s:366:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813709/\" title=\"Foward Motion\"><img src=\"http://farm3.static.flickr.com/2257/1876813709_2f1dafe332_m.jpg\" width=\"240\" height=\"187\" alt=\"Foward Motion\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";}i:12;a:9:{s:5:\"title\";s:6:\"Tucker\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1876813503/\";s:11:\"description\";s:352:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813503/\" title=\"Tucker\"><img src=\"http://farm3.static.flickr.com/2189/1876813503_37733ee33e_m.jpg\" width=\"240\" height=\"185\" alt=\"Tucker\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:7:\"pubdate\";s:30:\"Mon, 5 Nov 2007 11:54:12 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-05T11:36:11-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1876813503\";s:5:\"media\";a:4:{s:5:\"title\";s:6:\"Tucker\";s:4:\"text\";s:352:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813503/\" title=\"Tucker\"><img src=\"http://farm3.static.flickr.com/2189/1876813503_37733ee33e_m.jpg\" width=\"240\" height=\"185\" alt=\"Tucker\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:39:\"bw dog mediumformat blacklab asu photo2\";}s:7:\"summary\";s:352:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1876813503/\" title=\"Tucker\"><img src=\"http://farm3.static.flickr.com/2189/1876813503_37733ee33e_m.jpg\" width=\"240\" height=\"185\" alt=\"Tucker\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";}i:13;a:9:{s:5:\"title\";s:15:\"Self Portrait 2\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1877634722/\";s:11:\"description\";s:370:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877634722/\" title=\"Self Portrait 2\"><img src=\"http://farm3.static.flickr.com/2108/1877634722_7ecec12b65_m.jpg\" width=\"187\" height=\"240\" alt=\"Self Portrait 2\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:7:\"pubdate\";s:30:\"Mon, 5 Nov 2007 11:54:10 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-05T12:44:04-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1877634722\";s:5:\"media\";a:4:{s:5:\"title\";s:15:\"Self Portrait 2\";s:4:\"text\";s:370:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877634722/\" title=\"Self Portrait 2\"><img src=\"http://farm3.static.flickr.com/2108/1877634722_7ecec12b65_m.jpg\" width=\"187\" height=\"240\" alt=\"Self Portrait 2\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:26:\"bw mediumformat asu photo2\";}s:7:\"summary\";s:370:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877634722/\" title=\"Self Portrait 2\"><img src=\"http://farm3.static.flickr.com/2108/1877634722_7ecec12b65_m.jpg\" width=\"187\" height=\"240\" alt=\"Self Portrait 2\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";}i:14;a:9:{s:5:\"title\";s:17:\"Towards the Light\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1877632198/\";s:11:\"description\";s:374:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877632198/\" title=\"Towards the Light\"><img src=\"http://farm3.static.flickr.com/2400/1877632198_283ef3afb3_m.jpg\" width=\"240\" height=\"188\" alt=\"Towards the Light\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:7:\"pubdate\";s:30:\"Mon, 5 Nov 2007 11:54:02 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-11-05T12:35:03-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1877632198\";s:5:\"media\";a:4:{s:5:\"title\";s:17:\"Towards the Light\";s:4:\"text\";s:374:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877632198/\" title=\"Towards the Light\"><img src=\"http://farm3.static.flickr.com/2400/1877632198_283ef3afb3_m.jpg\" width=\"240\" height=\"188\" alt=\"Towards the Light\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:48:\"bw mediumformat asu photo2 interactionwithnature\";}s:7:\"summary\";s:374:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1877632198/\" title=\"Towards the Light\"><img src=\"http://farm3.static.flickr.com/2400/1877632198_283ef3afb3_m.jpg\" width=\"240\" height=\"188\" alt=\"Towards the Light\" /></a></p>\n\n<p>Taken for my photo 2 class at ASU</p>\";}i:15;a:9:{s:5:\"title\";s:28:\"Giant fortune cookie costume\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1805972300/\";s:11:\"description\";s:435:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1805972300/\" title=\"Giant fortune cookie costume\"><img src=\"http://farm3.static.flickr.com/2169/1805972300_3a2fa8cb7d_m.jpg\" width=\"180\" height=\"240\" alt=\"Giant fortune cookie costume\" /></a></p>\n\n<p>My costume for my 3D design class<br />\n<br />\n------<br />\n-Eric Taylor</p>\";s:7:\"pubdate\";s:31:\"Tue, 30 Oct 2007 14:10:14 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-10-30T14:10:14-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1805972300\";s:5:\"media\";a:4:{s:5:\"title\";s:28:\"Giant fortune cookie costume\";s:4:\"text\";s:435:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1805972300/\" title=\"Giant fortune cookie costume\"><img src=\"http://farm3.static.flickr.com/2169/1805972300_3a2fa8cb7d_m.jpg\" width=\"180\" height=\"240\" alt=\"Giant fortune cookie costume\" /></a></p>\n\n<p>My costume for my 3D design class<br />\n<br />\n------<br />\n-Eric Taylor</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:6:\"mobile\";}s:7:\"summary\";s:435:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1805972300/\" title=\"Giant fortune cookie costume\"><img src=\"http://farm3.static.flickr.com/2169/1805972300_3a2fa8cb7d_m.jpg\" width=\"180\" height=\"240\" alt=\"Giant fortune cookie costume\" /></a></p>\n\n<p>My costume for my 3D design class<br />\n<br />\n------<br />\n-Eric Taylor</p>\";}i:16;a:9:{s:5:\"title\";s:5:\"Maple\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1779735041/\";s:11:\"description\";s:310:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1779735041/\" title=\"Maple\"><img src=\"http://farm3.static.flickr.com/2004/1779735041_45a9002754_m.jpg\" width=\"240\" height=\"171\" alt=\"Maple\" /></a></p>\n\n\";s:7:\"pubdate\";s:31:\"Sat, 27 Oct 2007 14:51:05 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-10-27T14:51:05-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1779735041\";s:5:\"media\";a:4:{s:5:\"title\";s:5:\"Maple\";s:4:\"text\";s:310:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1779735041/\" title=\"Maple\"><img src=\"http://farm3.static.flickr.com/2004/1779735041_45a9002754_m.jpg\" width=\"240\" height=\"171\" alt=\"Maple\" /></a></p>\n\n\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:24:\"red fall nature facebook\";}s:7:\"summary\";s:310:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1779735041/\" title=\"Maple\"><img src=\"http://farm3.static.flickr.com/2004/1779735041_45a9002754_m.jpg\" width=\"240\" height=\"171\" alt=\"Maple\" /></a></p>\n\n\";}i:17;a:9:{s:5:\"title\";s:26:\"Christina\'s Sr. Pictures 1\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1760643310/\";s:11:\"description\";s:433:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1760643310/\" title=\"Christina\'s Sr. Pictures 1\"><img src=\"http://farm3.static.flickr.com/2198/1760643310_3dc5992bef_m.jpg\" width=\"174\" height=\"240\" alt=\"Christina\'s Sr. Pictures 1\" /></a></p>\n\n<p><a href=\"http://grandviewphotographyaz.com\">grandviewphotographyaz.com</a></p>\";s:7:\"pubdate\";s:31:\"Fri, 26 Oct 2007 08:29:05 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-07-05T11:02:28-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1760643310\";s:5:\"media\";a:4:{s:5:\"title\";s:26:\"Christina\'s Sr. Pictures 1\";s:4:\"text\";s:433:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1760643310/\" title=\"Christina\'s Sr. Pictures 1\"><img src=\"http://farm3.static.flickr.com/2198/1760643310_3dc5992bef_m.jpg\" width=\"174\" height=\"240\" alt=\"Christina\'s Sr. Pictures 1\" /></a></p>\n\n<p><a href=\"http://grandviewphotographyaz.com\">grandviewphotographyaz.com</a></p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:48:\"people girl grunge facebook lightroom srpictures\";}s:7:\"summary\";s:433:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1760643310/\" title=\"Christina\'s Sr. Pictures 1\"><img src=\"http://farm3.static.flickr.com/2198/1760643310_3dc5992bef_m.jpg\" width=\"174\" height=\"240\" alt=\"Christina\'s Sr. Pictures 1\" /></a></p>\n\n<p><a href=\"http://grandviewphotographyaz.com\">grandviewphotographyaz.com</a></p>\";}i:18;a:9:{s:5:\"title\";s:26:\"Christina\'s Sr. Pictures 2\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1759791739/\";s:11:\"description\";s:433:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1759791739/\" title=\"Christina\'s Sr. Pictures 2\"><img src=\"http://farm3.static.flickr.com/2058/1759791739_3128ce2598_m.jpg\" width=\"158\" height=\"240\" alt=\"Christina\'s Sr. Pictures 2\" /></a></p>\n\n<p><a href=\"http://grandviewphotographyaz.com\">grandviewphotographyaz.com</a></p>\";s:7:\"pubdate\";s:31:\"Fri, 26 Oct 2007 08:28:55 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-07-05T11:00:38-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1759791739\";s:5:\"media\";a:4:{s:5:\"title\";s:26:\"Christina\'s Sr. Pictures 2\";s:4:\"text\";s:433:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1759791739/\" title=\"Christina\'s Sr. Pictures 2\"><img src=\"http://farm3.static.flickr.com/2058/1759791739_3128ce2598_m.jpg\" width=\"158\" height=\"240\" alt=\"Christina\'s Sr. Pictures 2\" /></a></p>\n\n<p><a href=\"http://grandviewphotographyaz.com\">grandviewphotographyaz.com</a></p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:53:\"portrait people bw girl facebook lightroom srpictures\";}s:7:\"summary\";s:433:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1759791739/\" title=\"Christina\'s Sr. Pictures 2\"><img src=\"http://farm3.static.flickr.com/2058/1759791739_3128ce2598_m.jpg\" width=\"158\" height=\"240\" alt=\"Christina\'s Sr. Pictures 2\" /></a></p>\n\n<p><a href=\"http://grandviewphotographyaz.com\">grandviewphotographyaz.com</a></p>\";}i:19;a:9:{s:5:\"title\";s:15:\"Happy Afternoon\";s:4:\"link\";s:54:\"http://www.flickr.com/photos/silver-dragon/1759791071/\";s:11:\"description\";s:424:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1759791071/\" title=\"Happy Afternoon\"><img src=\"http://farm3.static.flickr.com/2181/1759791071_b84f81053d_m.jpg\" width=\"240\" height=\"163\" alt=\"Happy Afternoon\" /></a></p>\n\n<p>My soon to be wife :) <br />\n<br />\nTaken on my birthday the day before we got engaged.</p>\";s:7:\"pubdate\";s:31:\"Fri, 26 Oct 2007 08:28:52 -0800\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-17T10:22:46-08:00\";}s:6:\"author\";s:42:\"nobody@flickr.com (Grand View Photography)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1759791071\";s:5:\"media\";a:4:{s:5:\"title\";s:15:\"Happy Afternoon\";s:4:\"text\";s:424:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1759791071/\" title=\"Happy Afternoon\"><img src=\"http://farm3.static.flickr.com/2181/1759791071_b84f81053d_m.jpg\" width=\"240\" height=\"163\" alt=\"Happy Afternoon\" /></a></p>\n\n<p>My soon to be wife :) <br />\n<br />\nTaken on my birthday the day before we got engaged.</p>\";s:6:\"credit\";s:22:\"Grand View Photography\";s:8:\"category\";s:44:\"portrait people girl lensbaby jaime facebook\";}s:7:\"summary\";s:424:\"<p><a href=\"http://www.flickr.com/people/silver-dragon/\">Grand View Photography</a> posted a photo:</p>\n<p><a href=\"http://www.flickr.com/photos/silver-dragon/1759791071/\" title=\"Happy Afternoon\"><img src=\"http://farm3.static.flickr.com/2181/1759791071_b84f81053d_m.jpg\" width=\"240\" height=\"163\" alt=\"Happy Afternoon\" /></a></p>\n\n<p>My soon to be wife :) <br />\n<br />\nTaken on my birthday the day before we got engaged.</p>\";}}s:7:\"channel\";a:6:{s:5:\"title\";s:34:\"Photos from Grand View Photography\";s:4:\"link\";s:43:\"http://www.flickr.com/photos/silver-dragon/\";s:7:\"pubdate\";s:31:\"Sat, 17 Nov 2007 08:40:00 -0800\";s:13:\"lastbuilddate\";s:31:\"Sat, 17 Nov 2007 08:40:00 -0800\";s:9:\"generator\";s:22:\"http://www.flickr.com/\";s:7:\"tagline\";N;}s:9:\"textinput\";a:0:{}s:5:\"image\";a:3:{s:3:\"url\";s:85:\"http://farm1.static.flickr.com/99/buddyicons/51404603@N00.jpg?1165369111#51404603@N00\";s:5:\"title\";s:34:\"Photos from Grand View Photography\";s:4:\"link\";s:43:\"http://www.flickr.com/photos/silver-dragon/\";}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:13:\"last_modified\";s:31:\"Sat, 17 Nov 2007 16:40:00 GMT\r\n\";}','no'),(160,0,'rss_c071f5a01ba103b58fb73a17281349e0_ts','1205729414','no'),(132,0,'page_on_front','0','yes'),(133,0,'page_for_posts','','yes'),(137,0,'aiosp_home_keywords','photography, eric, taylor, weddings, Grand View, blog, pictures, Sr. Pictures, event photography, wedding photography, travel photography, canon, camera, pictures, photos, Professional','yes'),(138,0,'aiosp_max_words_excerpt','','yes'),(139,0,'aiosp_debug_info','','yes'),(210,0,'exclude_pages','','yes'),(161,0,'flickrID','51404603@N00','yes'),(162,0,'photolimit','9','yes'),(163,0,'setID','recent','yes'),(164,0,'apiKey','247c7e08d3bc9540e1852e20bd986ca2','yes'),(165,0,'p_lightbox','0','yes'),(166,0,'img_margin','4','yes'),(167,0,'border_size','1','yes'),(168,0,'border_color','000000','yes'),(169,0,'country_form_field','7','yes'),(170,0,'email_form_field','','yes'),(171,0,'show_thumbnails','1','yes'),(172,0,'product_image_width','','yes'),(173,0,'product_image_height','','yes'),(174,0,'category_image_width','','yes'),(175,0,'category_image_height','','yes'),(176,0,'product_list_url','http://grandviewphotographyaz.com/?page_id=15','yes'),(177,0,'shopping_cart_url','http://grandviewphotographyaz.com/?page_id=16','yes'),(178,0,'checkout_url','http://grandviewphotographyaz.com/?page_id=17','yes'),(179,0,'transact_url','http://grandviewphotographyaz.com/?page_id=18','yes'),(180,0,'payment_gateway','','yes'),(181,0,'cart_location','1','yes'),(182,0,'currency_type','156','yes'),(183,0,'currency_sign_location','3','yes'),(184,0,'gst_rate','1','yes'),(185,0,'max_downloads','1','yes'),(186,0,'display_pnp','1','yes'),(187,0,'display_specials','1','yes'),(188,0,'postage_and_packaging','0','yes'),(189,0,'purch_log_email','','yes'),(190,0,'return_email','','yes'),(191,0,'terms_and_conditions','','yes'),(192,0,'default_brand','none','yes'),(193,0,'product_view','default','yes'),(194,0,'nzshpcrt_first_load','0','yes'),(195,0,'show_categorybrands','2','yes'),(196,0,'paypal_business','','yes'),(197,0,'paypal_url','','yes'),(198,0,'paypal_multiple_business','','yes'),(199,0,'paypal_multiple_url','https://www.paypal.com/cgi-bin/webscr','yes'),(200,0,'product_ratings','0','yes'),(212,0,'wpcf7','a:1:{s:13:\"contact_forms\";a:1:{i:1;a:5:{s:5:\"title\";s:14:\"Contact form 1\";s:4:\"form\";s:229:\"<p>Your Name: [text* your-name 30/] (required)</p>\r\n<p>Your Email: [email* your-email 30/] (required)</p>\r\n<p>Subject: [text your-subject 30/] </p>\r\n<p>Your Message<br />\r\n [textarea your-message] <br />\r\n[submit \\\"Send\\\"]</p>\";s:4:\"mail\";a:4:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:14:\"[your-message]\";s:9:\"recipient\";s:13:\"eric@eden.org\";}s:6:\"mail_2\";a:5:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:14:\"[your-message]\";s:9:\"recipient\";s:12:\"[your-email]\";}s:7:\"options\";a:1:{s:9:\"recipient\";s:13:\"eric@eden.org\";}}}}','yes'),(330,0,'page_uris','a:7:{s:5:\"links\";i:14;s:8:\"archives\";i:13;s:7:\"contact\";i:39;s:7:\"clients\";i:24;s:9:\"portfolio\";i:20;s:8:\"packages\";i:12;s:5:\"about\";i:2;}','yes'),(263,0,'akismet_spam_count','30','yes'),(275,0,'stats_options','a:6:{s:4:\"host\";s:8:\"eden.org\";s:4:\"path\";s:5:\"/eric\";s:7:\"blog_id\";i:3263148;s:7:\"version\";s:1:\"1\";s:5:\"error\";b:0;s:7:\"api_key\";s:12:\"04226df0606f\";}','yes'),(308,0,'wp_simpleviewer_width','100%','no'),(309,0,'wp_simpleviewer_height','650','no'),(310,0,'wp_simpleviewer_textcolor','F8F8F8','no'),(307,0,'category_children','a:0:{}','yes'),(331,0,'rewrite_rules','a:125:{s:11:\"robots.txt$\";s:18:\"index.php?robots=1\";s:12:\"wp-atom.php$\";s:19:\"index.php?feed=atom\";s:11:\"wp-rdf.php$\";s:18:\"index.php?feed=rdf\";s:11:\"wp-rss.php$\";s:18:\"index.php?feed=rss\";s:12:\"wp-rss2.php$\";s:19:\"index.php?feed=rss2\";s:12:\"wp-feed.php$\";s:19:\"index.php?feed=feed\";s:20:\"wp-commentsrss2.php$\";s:34:\"index.php?feed=rss2&withcomments=1\";s:20:\"(links)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(links)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(links)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(links)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:20:\"(links)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"links/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"links/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"links/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"links/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:23:\"(archives)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:43:\"(archives)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"(archives)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:31:\"(archives)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:23:\"(archives)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:30:\"archives/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"archives/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"archives/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"archives/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:22:\"(contact)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:42:\"(contact)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:37:\"(contact)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:30:\"(contact)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:22:\"(contact)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:29:\"contact/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"contact/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"contact/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"contact/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:22:\"(clients)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:42:\"(clients)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:37:\"(clients)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:30:\"(clients)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:22:\"(clients)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:29:\"clients/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"clients/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"clients/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"clients/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:24:\"(portfolio)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:44:\"(portfolio)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:39:\"(portfolio)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:32:\"(portfolio)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:24:\"(portfolio)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:31:\"portfolio/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"portfolio/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"portfolio/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:23:\"(packages)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:43:\"(packages)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"(packages)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:31:\"(packages)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:23:\"(packages)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:30:\"packages/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"packages/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"packages/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"packages/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:20:\"(about)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(about)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(about)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(about)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:20:\"(about)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"about/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"about/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"about/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"about/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:29:\"comments/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:42:\"tag/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:37:\"tag/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:30:\"tag/(.+?)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:12:\"tag/(.+?)/?$\";s:25:\"index.php?tag=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:37:\"(.+?)/([0-9]{4})/([^/]+)/trackback/?$\";s:74:\"index.php?category_name=$matches[1]&year=$matches[2]&name=$matches[3]&tb=1\";s:57:\"(.+?)/([0-9]{4})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:86:\"index.php?category_name=$matches[1]&year=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:52:\"(.+?)/([0-9]{4})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:86:\"index.php?category_name=$matches[1]&year=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:45:\"(.+?)/([0-9]{4})/([^/]+)/page/?([0-9]{1,})/?$\";s:87:\"index.php?category_name=$matches[1]&year=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:37:\"(.+?)/([0-9]{4})/([^/]+)(/[0-9]+)?/?$\";s:86:\"index.php?category_name=$matches[1]&year=$matches[2]&name=$matches[3]&page=$matches[4]\";s:29:\".+?/[0-9]{4}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\".+?/[0-9]{4}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\".+?/[0-9]{4}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\".+?/[0-9]{4}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:40:\".+?/[0-9]{4}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\".+?/[0-9]{4}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\".+?/[0-9]{4}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\".+?/[0-9]{4}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"(.+?)/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&year=$matches[2]&feed=$matches[3]\";s:44:\"(.+?)/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&year=$matches[2]&feed=$matches[3]\";s:37:\"(.+?)/([0-9]{4})/page/?([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&year=$matches[2]&paged=$matches[3]\";s:19:\"(.+?)/([0-9]{4})/?$\";s:52:\"index.php?category_name=$matches[1]&year=$matches[2]\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:8:\"(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";}','yes'),(311,0,'wp_simpleviewer_framecolor','F8F8F8','no'),(312,0,'wp_simpleviewer_bgcolor','343434','no'),(313,0,'wp_simpleviewer_framewidth','15','no'),(314,0,'wp_simpleviewer_stagepadding','20','no'),(315,0,'wp_simpleviewer_thumbnailcolumns','4','no'),(316,0,'wp_simpleviewer_thumbnailrows','2','no'),(317,0,'wp_simpleviewer_navposition','bottom','no'),(318,0,'wp_simpleviewer_right_click_menu','true','no'),(319,0,'wp_simpleviewer_standard_title','','no'),(320,0,'wp_simpleviewer_images_basedir','wp-content/photos/','no'),(321,0,'wp_simpleviewer_folder_regular','reg','no'),(322,0,'wp_simpleviewer_folder_thumbnails','thm','no'),(323,0,'wp_simpleviewer_max_image_size','300','no'),(324,0,'wp_simpleviewer_resizequality','85','no'),(325,0,'wp_simpleviewer_show_download_link','true','no'),(326,0,'wp_simpleviewer_default_download_link_text','Show photo in full size','no'),(327,0,'wp_simpleviewer_version_installed','1.1','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) NOT NULL auto_increment,
`post_id` bigint(20) NOT NULL default '0',
`meta_key` varchar(255) default NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=226 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(4,4,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/03/tucker.jpg'),(5,4,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:575;s:6:\"height\";i:444;s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'124\'\";s:4:\"file\";s:69:\"/home/eric/public_html/wp-content/uploads/2008/03/tucker.jpg\";}'),(6,5,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/03/tucker-tm.jpg'),(7,5,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:126;s:6:\"height\";i:98;s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'123\'\";s:4:\"file\";s:72:\"/home/eric/public_html/wp-content/uploads/2008/03/tucker-tm.jpg\";}'),(90,31,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_MG_4643-thm.jpg'),(89,31,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_MG_4643.jpg'),(81,29,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/Lotus.jpg'),(74,28,'pullquote','Kissy Kiss'),(73,28,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_MG_4683-thm.jpg'),(72,28,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_MG_4683.jpg'),(18,7,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/03/bmx_sunset_575_385.jpg'),(19,7,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:575;s:6:\"height\";i:385;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:81:\"/home/eric/public_html/wp-content/uploads/2008/03/bmx_sunset_575_385.jpg\";}'),(86,30,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_MG_3507_Edit-thm.jpg'),(85,30,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_MG_3507-Edit.jpg'),(82,29,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_MG_3537-thm.jpg'),(31,9,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/03/_mg_6405_1.jpg'),(32,9,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:575;s:6:\"height\";i:383;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:73:\"/home/eric/public_html/wp-content/uploads/2008/03/_mg_6405_1.jpg\";}'),(33,10,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_mg_6405_1.jpg'),(34,11,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/03/_mg_6405-thm.jpg'),(35,11,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:85;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:75:\"/home/eric/public_html/wp-content/uploads/2008/03/_mg_6405-thm.jpg\";}'),(36,10,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_mg_6405-thm.jpg'),(37,10,'pullquote','sitting in a field of green grass'),(46,12,'_wp_page_template','widepage.php'),(47,13,'_wp_page_template','archives.php'),(48,14,'_wp_page_template','links.php'),(53,20,'_wp_page_template','widepage.php'),(59,24,'_wp_page_template','default'),(60,24,'links_to','http://grandviewphotographyaz.com/images/clients/'),(61,25,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/03/img_1723.jpg'),(62,25,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:575;s:6:\"height\";i:421;s:14:\"hwstring_small\";s:23:\"height=\'93\' width=\'128\'\";s:4:\"file\";s:71:\"/home/eric/public_html/wp-content/uploads/2008/03/img_1723.jpg\";}'),(63,26,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/img_1723.jpg'),(64,27,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/03/img_1723-thm.jpg'),(65,27,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:93;s:14:\"hwstring_small\";s:23:\"height=\'93\' width=\'128\'\";s:4:\"file\";s:75:\"/home/eric/public_html/wp-content/uploads/2008/03/img_1723-thm.jpg\";}'),(66,26,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/img_1723-thm.jpg'),(67,26,'pullquote','A view from the behind the taj'),(95,32,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_1984.jpg'),(96,32,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_1984-thm.jpg'),(105,33,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/jaime-ferris-wheel.jpg'),(106,33,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/jaime-ferris-wheel-thm.jpg'),(107,34,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_2842.jpg'),(108,34,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_2842-thm.jpg'),(109,35,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_1138-2.jpg'),(110,35,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_1138-2-thm.jpg'),(113,36,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_9814.jpg'),(114,36,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_9814-thm.jpg'),(115,37,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_6094.jpg'),(116,37,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_6094-thm.jpg'),(145,38,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_5946.jpg'),(121,33,'_wp_old_slug','fading'),(140,31,'_wp_old_slug','test-post-2'),(146,38,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/03/IMG_5946-thm.jpg'),(153,39,'_wp_page_template','default'),(160,40,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/img-4600.jpg'),(161,40,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:575;s:6:\"height\";i:383;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:71:\"/home/eric/public_html/wp-content/uploads/2008/04/img-4600.jpg\";}'),(162,41,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/img-4600-tm.jpg'),(163,41,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:85;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:74:\"/home/eric/public_html/wp-content/uploads/2008/04/img-4600-tm.jpg\";}'),(164,43,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/img-4073.jpg'),(165,43,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:575;s:6:\"height\";i:383;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:71:\"/home/eric/public_html/wp-content/uploads/2008/04/img-4073.jpg\";}'),(166,44,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/img-4073-tm.jpg'),(167,44,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:85;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:74:\"/home/eric/public_html/wp-content/uploads/2008/04/img-4073-tm.jpg\";}'),(168,42,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-4600.jpg'),(169,42,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-4600-tm.jpg'),(170,45,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-4073-tm.jpg'),(171,45,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-4073.jpg'),(172,46,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/ahser013-1.jpg'),(173,46,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:573;s:6:\"height\";i:365;s:14:\"hwstring_small\";s:23:\"height=\'81\' width=\'128\'\";s:4:\"file\";s:73:\"/home/eric/public_html/wp-content/uploads/2008/04/ahser013-1.jpg\";}'),(174,47,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/ahser013-1-tm.jpg'),(175,47,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:81;s:14:\"hwstring_small\";s:23:\"height=\'81\' width=\'128\'\";s:4:\"file\";s:76:\"/home/eric/public_html/wp-content/uploads/2008/04/ahser013-1-tm.jpg\";}'),(176,49,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/file2375.jpg'),(177,49,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:573;s:6:\"height\";i:381;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:71:\"/home/eric/public_html/wp-content/uploads/2008/04/file2375.jpg\";}'),(178,50,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/file2375-tm.jpg'),(179,50,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:85;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:74:\"/home/eric/public_html/wp-content/uploads/2008/04/file2375-tm.jpg\";}'),(180,52,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/mg-4313.jpg'),(181,52,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:266;s:6:\"height\";i:400;s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:70:\"/home/eric/public_html/wp-content/uploads/2008/04/mg-4313.jpg\";}'),(182,53,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/mg-4313-tm.jpg'),(183,53,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:192;s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'64\'\";s:4:\"file\";s:73:\"/home/eric/public_html/wp-content/uploads/2008/04/mg-4313-tm.jpg\";}'),(184,48,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/ahser013-1.jpg'),(185,48,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/ahser013-1-tm.jpg'),(186,51,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/file2375.jpg'),(187,51,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/file2375-tm.jpg'),(188,54,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/mg-4313.jpg'),(189,54,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/mg-4313-tm.jpg'),(200,55,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/img-2665.jpg'),(201,55,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:575;s:6:\"height\";i:383;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:71:\"/home/eric/public_html/wp-content/uploads/2008/04/img-2665.jpg\";}'),(202,56,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/img-2665-tm.jpg'),(203,56,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:85;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:74:\"/home/eric/public_html/wp-content/uploads/2008/04/img-2665-tm.jpg\";}'),(204,57,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-2665.jpg'),(205,57,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-2665-tm.jpg'),(206,58,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/mexico-trip072.jpg'),(207,58,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:573;s:6:\"height\";i:345;s:14:\"hwstring_small\";s:23:\"height=\'77\' width=\'128\'\";s:4:\"file\";s:77:\"/home/eric/public_html/wp-content/uploads/2008/04/mexico-trip072.jpg\";}'),(208,59,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/mexico-trip072-tm.jpg'),(209,59,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:77;s:14:\"hwstring_small\";s:23:\"height=\'77\' width=\'128\'\";s:4:\"file\";s:80:\"/home/eric/public_html/wp-content/uploads/2008/04/mexico-trip072-tm.jpg\";}'),(210,60,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/mexico-trip072-tm.jpg'),(211,60,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/mexico-trip072.jpg'),(212,61,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/img-9791-1.jpg'),(213,61,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:575;s:6:\"height\";i:383;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:73:\"/home/eric/public_html/wp-content/uploads/2008/04/img-9791-1.jpg\";}'),(214,62,'_wp_attached_file','/home/eric/public_html/wp-content/uploads/2008/04/img-9791-1-tm.jpg'),(215,62,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:128;s:6:\"height\";i:85;s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:76:\"/home/eric/public_html/wp-content/uploads/2008/04/img-9791-1-tm.jpg\";}'),(216,63,'photo','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-9791-1.jpg'),(217,63,'thumbnail','http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-9791-1-tm.jpg');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL auto_increment,
`post_author` bigint(20) NOT NULL default '0',
`post_date` datetime NOT NULL default '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_category` int(4) NOT NULL default '0',
`post_excerpt` text NOT NULL,
`post_status` enum('publish','draft','private','static','object','attachment','inherit','future','pending') NOT NULL default 'publish',
`comment_status` enum('open','closed','registered_only') NOT NULL default 'open',
`ping_status` enum('open','closed') NOT NULL default 'open',
`post_password` varchar(20) NOT NULL default '',
`post_name` varchar(200) NOT NULL default '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL default '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
`post_content_filtered` text NOT NULL,
`post_parent` bigint(20) NOT NULL default '0',
`guid` varchar(255) NOT NULL default '',
`menu_order` int(11) NOT NULL default '0',
`post_type` varchar(20) NOT NULL default 'post',
`post_mime_type` varchar(100) NOT NULL default '',
`comment_count` bigint(20) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (28,2,'2008-03-17 18:13:33','2008-03-18 01:13:33','Portrait shot just after the ceremony at Carley and Brian Spears Wedding in June 07','Starting a new life',0,'','draft','open','open','','starting-a-new-life','','','2008-03-19 22:28:03','2008-03-20 05:28:03','',0,'http://grandviewphotographyaz.com/?p=28',0,'post','',0),(2,1,'2008-03-14 19:10:15','2008-03-15 02:10:15','<p> Grand View is a small photography business owned and operated by <a href=\"http://www.grandviewphotographyaz.com/blog/?page_id=3\">Eric Taylor</a>, in Gilbert Arizona. Some of the photographic services offered are; Wedding Photography, Engagement Photos, Sr. Pictures, Family Pictures/Portraits and any Event Photography. </p>\r\n\r\n<p>Grand View is unique because instead of withholding the digital photos from the customer and only offering print services, the digital photos are included in the packages. That way you can freely print your own prints, post them on your website, blog or e-mail them to your family and friends. In this digital age I believe people should be able to use their digital photos how they want. Plus we offer beautifully created DVD Slide shows and wealth of print services including hard cover albums and coffee table books.</p>\r\n </p>\r\n\r\n<blockquote>\r\nPhotography is a way of feeling, of touching, of loving. What you have\r\ncaught on film is captured forever... it remembers little things, long after you\r\nhave forgotten everything.\r\n</blockquote>','About',0,'','publish','open','open','','about','','','2008-03-14 19:43:26','2008-03-15 02:43:26','',0,'',1,'page','',0),(4,2,'2008-03-14 20:20:24','2008-03-15 03:20:24','','tucker.jpg',0,'','inherit','open','open','','tuckerjpg','','','2008-03-14 20:20:24','2008-03-15 03:20:24','',0,'http://grandviewphotographyaz.com/wp-content/uploads/2008/03/tucker.jpg',0,'attachment','image/jpeg',0),(5,2,'2008-03-14 20:20:25','2008-03-15 03:20:25','','tucker-tm.jpg',0,'','inherit','open','open','','tucker-tmjpg','','','2008-03-14 20:20:25','2008-03-15 03:20:25','',0,'http://grandviewphotographyaz.com/wp-content/uploads/2008/03/tucker-tm.jpg',0,'attachment','image/jpeg',0),(30,2,'2008-03-17 18:20:43','2008-03-18 01:20:43','Camping in the Himalayas ','Sleeping Under the Stars',0,'','publish','open','open','','sleeping-under-the-stars','','','2008-03-19 20:08:34','2008-03-20 03:08:34','',0,'http://grandviewphotographyaz.com/?p=30',0,'post','',0),(9,1,'2008-03-16 13:08:02','2008-03-16 20:08:02','','',0,'','inherit','open','open','','9','','','2008-03-16 13:08:02','2008-03-16 20:08:02','',-1205698048,'http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_mg_6405_1.jpg',0,'attachment','image/jpeg',0),(10,2,'2008-03-16 13:09:38','2008-03-16 20:09:38','My last photoshoot of Mark and J\'Anne Shaman','Laying in a Field of Green',0,'','publish','open','open','','field-of-green','','','2008-03-17 18:14:09','2008-03-18 01:14:09','',0,'http://grandviewphotographyaz.com/?p=10',0,'post','',0),(11,1,'2008-03-16 13:08:33','2008-03-16 20:08:33','','',0,'','inherit','open','open','','11','','','2008-03-16 13:08:33','2008-03-16 20:08:33','',-1205698048,'http://grandviewphotographyaz.com/wp-content/uploads/2008/03/_mg_6405-thm.jpg',0,'attachment','image/jpeg',0),(7,1,'2008-03-16 12:49:41','2008-03-16 19:49:41','','BMX Sunset',0,'','inherit','open','open','','bmx-sunset','','','2008-03-16 12:49:41','2008-03-16 19:49:41','',-1205696962,'http://grandviewphotographyaz.com/wp-content/uploads/2008/03/bmx_sunset_575_385.jpg',0,'attachment','image/jpeg',0),(29,2,'2008-03-17 18:18:12','2008-03-18 01:18:12','Taken on Dal Lake in Kashmir India','Lotus',0,'','publish','open','open','','lotus','','','2008-03-19 20:11:48','2008-03-20 03:11:48','',0,'http://grandviewphotographyaz.com/?p=29',0,'post','',0),(12,2,'2008-03-16 13:24:41','2008-03-16 20:24:41','<div align=\"center\"><table width=\"750\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\">\r\n <tr>\r\n <td><span style=\" font-size:18px; font-weight:bold;\">Wedding Package</span><br />\r\n6 Hours of wedding coverage<br />\r\nDVD Slideshow, All original digital photos with printing rights <br />\r\nTwo 8x10 and Ten 4x6 Prints<br />\r\n<font size=\"+1\">$899.00</font><br /></td>\r\n <td><span style=\" font-size:18px; font-weight:bold;\">Portraits Package</span><br />\r\nUnlimited creative poses<br />\r\nEngagement Photos, Family, Kids, Sr. Pictures<br />\r\nCD with All original digital photos with printing rights<br />\r\n<font size=\"+1\">$150.00</font></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td colspan=\"2\"><p><span style=\" font-size:18px; font-weight:bold;\">Package Upgrades</span><br />\r\n\r\n\r\n <img src=\"images/package_upgrades.jpg\" alt=\"Package Upgrades\" width=\"748\" height=\"169\" /></p>\r\n <p> <i>Please Call for full pricing on upgrades. </i></p></td>\r\n </tr>\r\n</table></div>','Packages',0,'','publish','open','open','','packages','','','2008-03-17 18:28:52','2008-03-18 01:28:52','',0,'http://grandviewphotographyaz.com/?page_id=12',2,'page','',0),(13,2,'2008-03-16 13:36:42','2008-03-16 20:36:42','','Archives',0,'','draft','open','open','','archives','','','2008-04-02 08:19:27','2008-04-02 15:19:27','',0,'http://grandviewphotographyaz.com/?page_id=13',5,'page','',0),(14,2,'2008-03-16 14:25:17','2008-03-16 21:25:17','','Links',0,'','draft','open','open','','links','','','2008-03-24 20:03:10','2008-03-25 03:03:10','',0,'http://grandviewphotographyaz.com/?page_id=14',7,'page','',0),(26,2,'2008-03-17 18:00:17','2008-03-18 01:00:17','From my India 07 Trip. It not very often that you see photos from the back of the Taj-Ma Hall.<!--more-->','Welcome to the Taj',0,'','draft','open','open','','welcome-to-the-taj','','','2008-03-19 22:27:42','2008-03-20 05:27:42','',0,'http://grandviewphotographyaz.com/?p=26',0,'post','',0),(25,2,'2008-03-17 17:58:59','2008-03-18 00:58:59','','Welcome to the Taj',0,'','inherit','open','open','','welcome-to-the-taj','','','2008-03-17 17:58:59','2008-03-18 00:58:59','',26,'http://grandviewphotographyaz.com/wp-content/uploads/2008/03/img_1723.jpg',0,'attachment','image/jpeg',0),(20,2,'2008-03-16 22:31:47','2008-03-17 05:31:47','<div align=\"center\"><a href=\"images/weddings/index.html\"><img src=\"images/folio-weddings.jpg\" alt=\"Click to View Gallery\" border=\"0\" /></a><a href=\"images/portraits/index.html\"><img src=\"images/folio-portraits.jpg\" alt=\"Click to View Gallery\" border=\"0\" /></a><a href=\"images/nature and landscape/index.html\"><img src=\"images/folio-nature.jpg\" alt=\"Click to View Gallery\" border=\"0\" /></a><a href=\"images/world and travel/index.html\"><img src=\"images/folio-world.jpg\" alt=\"Click to View Gallery\" border=\"0\" /></a><a href=\"images/motorsports/index.html\"><img src=\"images/folio-motorsports.jpg\" alt=\"Click to View Gallery\" border=\"0\" /></a></div>','Portfolio',0,'','publish','open','open','','portfolio','','','2008-03-19 17:26:19','2008-03-20 00:26:19','',0,'http://grandviewphotographyaz.com/?page_id=20',3,'page','',0),(24,2,'2008-03-16 22:46:04','2008-03-17 05:46:04','Temp clients Page','Clients',0,'','publish','open','open','','clients','','','2008-03-16 22:47:29','2008-03-17 05:47:29','',0,'http://grandviewphotographyaz.com/?page_id=24',4,'page','',0),(27,2,'2008-03-17 17:59:35','2008-03-18 00:59:35','','Welcome to the Taj Thumb',0,'','inherit','open','open','','welcome-to-the-taj-thumb','','','2008-03-17 17:59:35','2008-03-18 00:59:35','',26,'http://grandviewphotographyaz.com/wp-content/uploads/2008/03/img_1723-thm.jpg',0,'attachment','image/jpeg',0),(31,2,'2008-03-19 19:50:41','2008-03-20 02:50:41','Carley and Bryan\'s wedding in June 07','Carley + Bryan Wedding 1',0,'','publish','open','open','','carleybryan-wedding1','','','2008-03-24 11:18:58','2008-03-24 18:18:58','',0,'http://grandviewphotographyaz.com/uncategorized/2008/test-post-2',0,'post','',0),(32,2,'2008-03-19 20:03:42','2008-03-20 03:03:42','A Grungy old bike taken in the back alleys of Old Deli India','Old Bike',0,'','publish','open','open','','old-bike','','','2008-03-27 12:44:55','2008-03-27 19:44:55','',0,'http://grandviewphotographyaz.com/world/2008/old-bike',0,'post','',0),(33,2,'2008-03-20 09:26:26','2008-03-20 16:26:26','My wife Jaime looking out over the fair on the top of a ferris wheel. ','Glowing',0,'My wife Jaime looking out over the fair on the top of a ferris wheel. \r\n\r\n','publish','open','open','','glowing','','','2008-03-24 08:35:35','2008-03-24 15:35:35','',0,'http://grandviewphotographyaz.com/portraits/2008/fading',0,'post','',0),(34,2,'2008-03-21 08:00:23','2008-03-21 15:00:23','Ritual hand washing before a Muslim goes to pray, taken in India.','Wudhu',0,'Ritual hand washing before a Muslim goes to pray, taken in India.\r\n','publish','open','open','','wudhu','','','2008-03-24 08:35:12','2008-03-24 15:35:12','',0,'http://grandviewphotographyaz.com/world/2008/wudhu',0,'post','',0),(35,2,'2008-03-25 08:00:02','2008-03-25 15:00:02','Sr. Picture taken behind Joes BBQ in downtown Gilbert, AZ','Sarah Sr. Pictures 1',0,'','publish','open','open','','sarah-sr-pictures-1','','','2008-03-25 08:10:02','2008-03-25 15:10:02','',0,'http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1',0,'post','',0),(36,2,'2008-04-01 08:00:59','2008-04-01 15:00:59','Taken at Small backyard wedding.','Snow White',0,'','publish','open','open','','snow-white','','','2008-04-01 08:58:53','2008-04-01 15:58:53','',0,'http://grandviewphotographyaz.com/weddings/2008/snow-white',0,'post','',0),(37,2,'2008-03-28 08:00:43','2008-03-28 15:00:43','Taken just after we left Yellowstone national park on a Camping trip / Photography Trip','Grand Tetons',0,'','publish','open','open','','grand-tetons','','','2008-03-28 10:21:27','2008-03-28 17:21:27','',0,'http://grandviewphotographyaz.com/nature/2008/grand-tetons',0,'post','',0),(38,2,'2008-04-01 07:00:09','2008-04-01 14:00:09','Taken in Yellowstone just as the sun was setting. ','The Hills are Alive',0,'','publish','open','open','','the-hills-are-alive','','','2008-03-25 15:46:40','2008-03-25 22:46:40','',0,'http://grandviewphotographyaz.com/nature/2008/the-hills-are-alive',0,'post','',0),(39,2,'2008-03-30 17:16:49','2008-03-31 00:16:49','<span style=\"color: #333333; font-family: Verdana; font-size: 13px; line-height: normal; white-space: pre\" class=\"Apple-style-span\">[contact-form 1 \"Contact form 1\"]</span>','Contact',0,'','publish','open','open','','contact','','','2008-03-30 17:16:49','2008-03-31 00:16:49','',0,'http://grandviewphotographyaz.com/contact',6,'page','',0),(40,2,'2008-04-01 16:07:44','2008-04-01 23:07:44','','img-4600.jpg',0,'','inherit','open','open','','img-4600jpg','','','2008-04-01 16:07:44','2008-04-01 23:07:44','',42,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-4600.jpg',0,'attachment','image/jpeg',0),(41,2,'2008-04-01 16:07:47','2008-04-01 23:07:47','','img-4600-tm.jpg',0,'','inherit','open','open','','img-4600-tmjpg','','','2008-04-01 16:07:47','2008-04-01 23:07:47','',42,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-4600-tm.jpg',0,'attachment','image/jpeg',0),(42,2,'2008-04-03 08:00:00','2008-04-03 15:00:00','I a few years back I was the official press photographer for a the Desert Storm rally that holds a rallying event every year. This is one of my favorite photos from the event. ','Desert Storm Rally',0,'','publish','open','open','','desert-storm-rally','','','2008-04-01 16:14:21','2008-04-01 23:14:21','',0,'http://grandviewphotographyaz.com/adventure/2008/desert-storm-rally',0,'post','',0),(47,2,'2008-04-01 16:27:08','2008-04-01 23:27:08','','ahser013-1-tm.jpg',0,'','inherit','open','open','','ahser013-1-tmjpg','','','2008-04-01 16:27:08','2008-04-01 23:27:08','',48,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/ahser013-1-tm.jpg',0,'attachment','image/jpeg',0),(43,2,'2008-04-01 16:12:51','2008-04-01 23:12:51','','img-4073.jpg',0,'','inherit','open','open','','img-4073jpg','','','2008-04-01 16:12:51','2008-04-01 23:12:51','',45,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-4073.jpg',0,'attachment','image/jpeg',0),(44,2,'2008-04-01 16:12:54','2008-04-01 23:12:54','','img-4073-tm.jpg',0,'','inherit','open','open','','img-4073-tmjpg','','','2008-04-01 16:12:54','2008-04-01 23:12:54','',45,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-4073-tm.jpg',0,'attachment','image/jpeg',0),(45,2,'2008-04-05 08:00:00','2008-04-05 15:00:00','Taken at the Out of Africa wildlife preserve in Arizona. I really like photographing animals there because they keep the walkways above where the fences so you can photograph the animals with out the fences in the picture.','White Tiger',0,'','publish','open','open','','white-tiger','','','2008-04-05 23:04:22','2008-04-06 06:04:22','',0,'http://grandviewphotographyaz.com/nature/2008/white-tiger',0,'post','',0),(46,2,'2008-04-01 16:27:06','2008-04-01 23:27:06','','ahser013-1.jpg',0,'','inherit','open','open','','ahser013-1jpg','','','2008-04-01 16:27:06','2008-04-01 23:27:06','',48,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/ahser013-1.jpg',0,'attachment','image/jpeg',0),(48,2,'2008-04-07 08:00:00','2008-04-07 15:00:00','Photo-shoot with the band Asher taken by some train tracks at Tempe town lake. We almost got arrested for taking these photos by the train tracks.','Asher',0,'','publish','open','open','','asher','','','2008-04-07 11:10:34','2008-04-07 18:10:34','',0,'http://grandviewphotographyaz.com/portraits/2008/asher',0,'post','',2),(49,2,'2008-04-01 16:30:29','2008-04-01 23:30:29','','file2375.jpg',0,'','inherit','open','open','','file2375jpg','','','2008-04-01 16:30:29','2008-04-01 23:30:29','',51,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/file2375.jpg',0,'attachment','image/jpeg',0),(50,2,'2008-04-01 16:30:31','2008-04-01 23:30:31','','file2375-tm.jpg',0,'','inherit','open','open','','file2375-tmjpg','','','2008-04-01 16:30:31','2008-04-01 23:30:31','',51,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/file2375-tm.jpg',0,'attachment','image/jpeg',0),(51,2,'2008-04-09 08:00:00','2008-04-09 15:00:00','Surfers making use of the last bit of sunlight on this Hawaiian beach.','Blue Cove',0,'','publish','open','open','','blue-cove','','','2008-04-01 16:37:23','2008-04-01 23:37:23','',0,'http://grandviewphotographyaz.com/world/2008/blue-cove',0,'post','',0),(56,2,'2008-04-07 16:45:03','2008-04-07 23:45:03','','img-2665-tm.jpg',0,'','inherit','open','open','','img-2665-tmjpg','','','2008-04-07 16:45:03','2008-04-07 23:45:03','',57,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-2665-tm.jpg',0,'attachment','image/jpeg',0),(57,2,'2008-04-13 07:00:00','2008-04-13 14:00:00','This boat is called a \"Shikara Walla\" . Photo taken on my trip to India in June \'07 In Kashmir on Dal Lake. We rode on these boats to get from our house boat that we were staying in to the main street. It\'s really neat how half the houses in the city are floating on the lake and they use these boats like water taxis to get all over. ','Shikara Walla 1',0,'','publish','open','open','','shikara-walla-1','','','2008-04-07 16:46:42','2008-04-07 23:46:42','',0,'http://grandviewphotographyaz.com/world/2008/shikara-walla-1',0,'post','',0),(52,2,'2008-04-01 16:34:54','2008-04-01 23:34:54','','mg-4313.jpg',0,'','inherit','open','open','','mg-4313jpg','','','2008-04-01 16:34:54','2008-04-01 23:34:54','',54,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/mg-4313.jpg',0,'attachment','image/jpeg',0),(53,2,'2008-04-01 16:34:56','2008-04-01 23:34:56','','mg-4313-tm.jpg',0,'','inherit','open','open','','mg-4313-tmjpg','','','2008-04-01 16:34:56','2008-04-01 23:34:56','',54,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/mg-4313-tm.jpg',0,'attachment','image/jpeg',0),(54,2,'2008-04-11 08:00:00','2008-04-11 15:00:00','A candid shot of this bride looking down and talking to the wedding coordinator.','Bridal Gaze',0,'','publish','open','open','','bridal-gaze','','','2008-04-01 16:38:26','2008-04-01 23:38:26','',0,'http://grandviewphotographyaz.com/weddings/2008/bridal-gaze',0,'post','',0),(55,2,'2008-04-07 16:44:58','2008-04-07 23:44:58','','img-2665.jpg',0,'','inherit','open','open','','img-2665jpg','','','2008-04-07 16:44:58','2008-04-07 23:44:58','',57,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-2665.jpg',0,'attachment','image/jpeg',0),(58,2,'2008-04-07 16:54:18','2008-04-07 23:54:18','','mexico-trip072.jpg',0,'','inherit','open','open','','mexico-trip072jpg','','','2008-04-07 16:54:18','2008-04-07 23:54:18','',60,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/mexico-trip072.jpg',0,'attachment','image/jpeg',0),(59,2,'2008-04-07 16:54:19','2008-04-07 23:54:19','','mexico-trip072-tm.jpg',0,'','inherit','open','open','','mexico-trip072-tmjpg','','','2008-04-07 16:54:19','2008-04-07 23:54:19','',60,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/mexico-trip072-tm.jpg',0,'attachment','image/jpeg',0),(60,2,'2008-04-15 07:00:25','2008-04-15 14:00:25','Taken in Mexico with macro <a href=\"http://en.wikipedia.org/wiki/Image:Automatik-Balgengeraet_mit_Kamera%2C_Objektiv_und_Umkehrring.jpg\">lens and bellows</a> on my old Canon AE 1 with 400 speed film.','Cracked Earth',0,'','publish','open','open','','cracked-earth','','','2008-04-07 16:56:17','2008-04-07 23:56:17','',0,'http://grandviewphotographyaz.com/nature/2008/cracked-earth',0,'post','',0),(61,2,'2008-04-08 08:58:48','2008-04-08 15:58:48','','img-9791-1.jpg',0,'','inherit','open','open','','img-9791-1jpg','','','2008-04-08 08:58:48','2008-04-08 15:58:48','',63,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-9791-1.jpg',0,'attachment','image/jpeg',0),(62,2,'2008-04-08 08:58:49','2008-04-08 15:58:49','','img-9791-1-tm.jpg',0,'','inherit','open','open','','img-9791-1-tmjpg','','','2008-04-08 08:58:49','2008-04-08 15:58:49','',63,'http://grandviewphotographyaz.com/wp-content/uploads/2008/04/img-9791-1-tm.jpg',0,'attachment','image/jpeg',0),(63,2,'2008-04-17 07:00:00','2008-04-17 14:00:00','A Detail shot of a mother putting on her sons boutonniere a few hours before he got married.','Boutonniere',0,'','future','open','open','','boutonniere','','','2008-04-08 08:59:58','2008-04-08 15:59:58','',0,'http://grandviewphotographyaz.com/weddings/2008/boutonniere',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_product_brands`
--
DROP TABLE IF EXISTS `wp_product_brands`;
CREATE TABLE `wp_product_brands` (
`id` bigint(20) NOT NULL auto_increment,
`name` text NOT NULL,
`description` text NOT NULL,
`active` char(1) NOT NULL default '1',
`order` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_product_brands`
--
LOCK TABLES `wp_product_brands` WRITE;
/*!40000 ALTER TABLE `wp_product_brands` DISABLE KEYS */;
INSERT INTO `wp_product_brands` VALUES (1,'Example Brand','Example details','1',0);
/*!40000 ALTER TABLE `wp_product_brands` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_product_categories`
--
DROP TABLE IF EXISTS `wp_product_categories`;
CREATE TABLE `wp_product_categories` (
`id` bigint(20) NOT NULL auto_increment,
`name` text NOT NULL,
`description` text NOT NULL,
`image` text NOT NULL,
`fee` char(1) NOT NULL default '0',
`active` char(1) NOT NULL default '1',
`category_parent` bigint(20) unsigned NOT NULL default '0',
`order` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `category_parent` (`category_parent`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_product_categories`
--
LOCK TABLES `wp_product_categories` WRITE;
/*!40000 ALTER TABLE `wp_product_categories` DISABLE KEYS */;
INSERT INTO `wp_product_categories` VALUES (1,'Example category','Example details','','0','1',0,0);
/*!40000 ALTER TABLE `wp_product_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_product_files`
--
DROP TABLE IF EXISTS `wp_product_files`;
CREATE TABLE `wp_product_files` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`filename` varchar(255) NOT NULL default '',
`mimetype` varchar(128) NOT NULL default '',
`idhash` varchar(45) NOT NULL default '',
`date` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_product_files`
--
LOCK TABLES `wp_product_files` WRITE;
/*!40000 ALTER TABLE `wp_product_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_product_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_product_list`
--
DROP TABLE IF EXISTS `wp_product_list`;
CREATE TABLE `wp_product_list` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`name` text NOT NULL,
`description` longtext NOT NULL,
`additional_description` longtext NOT NULL,
`price` varchar(20) NOT NULL default '',
`pnp` varchar(20) NOT NULL default '',
`international_pnp` varchar(20) NOT NULL default '',
`file` bigint(20) unsigned NOT NULL default '0',
`image` text NOT NULL,
`category` bigint(20) unsigned NOT NULL default '0',
`brand` bigint(20) unsigned NOT NULL default '0',
`quantity_limited` char(1) NOT NULL default '',
`quantity` int(10) unsigned NOT NULL default '0',
`special` char(1) NOT NULL default '',
`special_price` varchar(20) NOT NULL default '',
`display_frontpage` char(1) NOT NULL default '',
`notax` char(1) NOT NULL default '0',
`active` char(1) NOT NULL default '1',
`thumbnail_image` text,
`thumbnail_state` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_product_list`
--
LOCK TABLES `wp_product_list` WRITE;
/*!40000 ALTER TABLE `wp_product_list` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_product_list` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_product_order`
--
DROP TABLE IF EXISTS `wp_product_order`;
CREATE TABLE `wp_product_order` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`category_id` bigint(20) unsigned NOT NULL default '0',
`product_id` bigint(20) unsigned NOT NULL default '0',
`order` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `category_id` (`category_id`,`product_id`),
KEY `order` (`order`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_product_order`
--
LOCK TABLES `wp_product_order` WRITE;
/*!40000 ALTER TABLE `wp_product_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_product_order` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_product_rating`
--
DROP TABLE IF EXISTS `wp_product_rating`;
CREATE TABLE `wp_product_rating` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`ipnum` varchar(30) NOT NULL default '',
`productid` bigint(20) unsigned NOT NULL default '0',
`rated` tinyint(1) NOT NULL default '0',
`time` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_product_rating`
--
LOCK TABLES `wp_product_rating` WRITE;
/*!40000 ALTER TABLE `wp_product_rating` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_product_rating` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_product_variations`
--
DROP TABLE IF EXISTS `wp_product_variations`;
CREATE TABLE `wp_product_variations` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`name` varchar(128) NOT NULL default '',
`variation_association` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `variation_association` (`variation_association`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_product_variations`
--
LOCK TABLES `wp_product_variations` WRITE;
/*!40000 ALTER TABLE `wp_product_variations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_product_variations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_purchase_logs`
--
DROP TABLE IF EXISTS `wp_purchase_logs`;
CREATE TABLE `wp_purchase_logs` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`totalprice` mediumint(9) NOT NULL default '0',
`statusno` smallint(6) NOT NULL default '0',
`sessionid` varchar(255) NOT NULL default '',
`transactid` varchar(255) NOT NULL default '',
`authcode` varchar(255) NOT NULL default '',
`firstname` text NOT NULL,
`lastname` text NOT NULL,
`email` varchar(90) NOT NULL default '',
`address` text NOT NULL,
`phone` varchar(90) NOT NULL default '',
`downloadid` bigint(20) unsigned NOT NULL default '0',
`processed` bigint(20) unsigned NOT NULL default '1',
`date` varchar(255) NOT NULL default '',
`gateway` varchar(64) NOT NULL default '',
`shipping_country` varchar(6) NOT NULL default '',
`shipping_region` varchar(6) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE KEY `sessionid` (`sessionid`),
KEY `gateway` (`gateway`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_purchase_logs`
--
LOCK TABLES `wp_purchase_logs` WRITE;
/*!40000 ALTER TABLE `wp_purchase_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_purchase_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_purchase_statuses`
--
DROP TABLE IF EXISTS `wp_purchase_statuses`;
CREATE TABLE `wp_purchase_statuses` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`name` varchar(128) NOT NULL default '',
`active` char(1) NOT NULL default '',
`colour` varchar(6) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_purchase_statuses`
--
LOCK TABLES `wp_purchase_statuses` WRITE;
/*!40000 ALTER TABLE `wp_purchase_statuses` DISABLE KEYS */;
INSERT INTO `wp_purchase_statuses` VALUES (1,'Order Received','1',''),(2,'Accepted Payment','1',''),(3,'Job Dispatched','1',''),(4,'Closed Order','1','');
/*!40000 ALTER TABLE `wp_purchase_statuses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_region_tax`
--
DROP TABLE IF EXISTS `wp_region_tax`;
CREATE TABLE `wp_region_tax` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`country_id` bigint(20) unsigned NOT NULL default '0',
`name` varchar(64) NOT NULL default '',
`tax` float NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `country_id` (`country_id`)
) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_region_tax`
--
LOCK TABLES `wp_region_tax` WRITE;
/*!40000 ALTER TABLE `wp_region_tax` DISABLE KEYS */;
INSERT INTO `wp_region_tax` VALUES (1,100,'Alberta',0),(2,100,'British Columbia',0),(3,100,'Manitoba',0),(4,100,'New Brunswick',0),(5,100,'Newfoundland',0),(6,100,'Northwest Territories',0),(7,100,'Nova Scotia',0),(8,100,'Nunavut',0),(9,100,'Ontario',0),(10,100,'Prince Edward Island',0),(11,100,'Quebec',0),(12,100,'Saskatchewan',0),(13,100,'Yukon',0),(14,136,'Alabama',0),(15,136,'Alaska',0),(16,136,'Arizona',0),(17,136,'Arkansas',0),(18,136,'California',0),(19,136,'Colorado',0),(20,136,'Connecticut',0),(21,136,'Delaware',0),(22,136,'Florida',0),(23,136,'Georgia',0),(24,136,'Hawaii',0),(25,136,'Idaho',0),(26,136,'Illinois',0),(27,136,'Indiana',0),(28,136,'Iowa',0),(29,136,'Kansas',0),(30,136,'Kentucky',0),(31,136,'Louisiana',0),(32,136,'Maine',0),(33,136,'Maryland',0),(34,136,'Massachusetts',0),(35,136,'Michigan',0),(36,136,'Minnesota',0),(37,136,'Mississippi',0),(38,136,'Missouri',0),(39,136,'Montana',0),(40,136,'Nebraska',0),(41,136,'Nevada',0),(42,136,'New Hampshire',0),(43,136,'New Jersey',0),(44,136,'New Mexico',0),(45,136,'New York',0),(46,136,'North Carolina',0),(47,136,'North Dakota',0),(48,136,'Ohio',0),(49,136,'Oklahoma',0),(50,136,'Oregon',0),(51,136,'Pennsylvania',0),(52,136,'Rhode Island',0),(53,136,'South Carolina',0),(54,136,'South Dakota',0),(55,136,'Tennessee',0),(56,136,'Texas',0),(57,136,'Utah',0),(58,136,'Vermont',0),(59,136,'Virginia',0),(60,136,'Washington',0),(61,136,'Washington DC',0),(62,136,'West Virginia',0),(63,136,'Wisconsin',0),(64,136,'Wyoming',0);
/*!40000 ALTER TABLE `wp_region_tax` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ss_search`
--
DROP TABLE IF EXISTS `wp_ss_search`;
CREATE TABLE `wp_ss_search` (
`id` int(11) unsigned NOT NULL auto_increment,
`searchterms` varchar(255) NOT NULL default '',
`count` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_ss_search`
--
LOCK TABLES `wp_ss_search` WRITE;
/*!40000 ALTER TABLE `wp_ss_search` DISABLE KEYS */;
INSERT INTO `wp_ss_search` VALUES (1,'grand view photography',7),(2,'grandviewphotographyaz.com',2),(3,'grandview photography',25),(4,'grandviewphotographyaz.com',6),(5,'grandviewphotographyaz',4),(6,'socialthing invites',1),(7,'sr. picture packages',1),(8,'photography',2),(9,'cove',1);
/*!40000 ALTER TABLE `wp_ss_search` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ss_stats`
--
DROP TABLE IF EXISTS `wp_ss_stats`;
CREATE TABLE `wp_ss_stats` (
`id` int(11) unsigned NOT NULL auto_increment,
`remote_ip` varchar(15) NOT NULL default '',
`country` varchar(50) NOT NULL default '',
`language` varchar(5) NOT NULL default '',
`domain` varchar(255) NOT NULL default '',
`referer` varchar(255) NOT NULL default '',
`resource` varchar(255) NOT NULL default '',
`platform` varchar(50) NOT NULL default '',
`browser` varchar(50) NOT NULL default '',
`version` varchar(15) NOT NULL default '',
`dt` int(10) unsigned NOT NULL default '0',
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6407 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_ss_stats`
--
LOCK TABLES `wp_ss_stats` WRITE;
/*!40000 ALTER TABLE `wp_ss_stats` DISABLE KEYS */;
INSERT INTO `wp_ss_stats` VALUES (1,'67.202.34.117','','empty','','','/eric/','','','',1205732502),(2,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205732733),(3,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1205732743),(4,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1205732803),(5,'208.66.64.4','','empty','','','/eric/?feed=rss2','','Technoratibot','0.7',1205732803),(6,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1205732811),(7,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1205732812),(8,'64.40.118.234','','empty','','','/eric/?feed=rss2','','','',1205733197),(9,'64.40.118.234','','empty','','','/eric/','','','',1205733198),(10,'64.40.118.234','','empty','','','/eric/','','','',1205733198),(11,'64.41.145.193','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1205733955),(12,'64.13.138.6','','empty','','','/eric/','','Mozilla','',1205733972),(13,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1205735734),(14,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205770944),(15,'66.150.166.115','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.8',1205774505),(16,'66.150.166.115','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.8',1205774515),(17,'66.150.166.115','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?page_id=20','Windows XP','Firefox','2.0.0.8',1205774555),(18,'66.150.166.115','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.8',1205774560),(19,'121.114.190.191','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205775680),(20,'121.114.190.191','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205775750),(21,'121.114.190.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?page_id=12','Mac OS X','Safari','523.15',1205775754),(22,'121.114.190.191','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=12','/eric/?page_id=20','Mac OS X','Safari','523.15',1205775773),(23,'121.114.190.191','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=20','/eric/?page_id=2','Mac OS X','Safari','523.15',1205775779),(24,'121.114.190.191','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=2','/eric/?page_id=12','Mac OS X','Safari','523.15',1205775802),(25,'121.114.190.191','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=12','/eric/?page_id=14','Mac OS X','Safari','523.15',1205775808),(26,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205777394),(27,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205777395),(28,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205780849),(29,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205781573),(30,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205781573),(31,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=10','Mac OS X','Safari','523.15',1205781576),(32,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/?p=10','/eric/?cat=4','Mac OS X','Safari','523.15',1205781584),(33,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/?cat=4','/eric/','Mac OS X','Safari','523.15',1205781592),(34,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?page_id=14','Mac OS X','Safari','523.15',1205781597),(35,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=14','/eric/?page_id=2','Mac OS X','Safari','523.15',1205781599),(36,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205784242),(37,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205799183),(38,'72.208.227.154','','en-us','','','/eric/?feed=rss2','','','',1205799357),(39,'72.208.227.154','','en-us','','','/eric/','','','',1205799358),(40,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205801030),(41,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205801748),(42,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205802040),(43,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1205802051),(44,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1205802052),(45,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1205802067),(46,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1205802111),(47,'208.66.64.4','','empty','','','/eric/?feed=rss2','','Technoratibot','0.7',1205802112),(48,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205802199),(49,'65.54.165.76','','empty','','','/eric/','','msnbot','',1205802355),(50,'65.54.165.76','','empty','','','/eric/?feed=rss2','','msnbot','',1205802358),(51,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1205802460),(52,'65.54.165.76','','empty','','','/eric/?p=26','','msnbot','',1205802619),(53,'67.202.34.117','','empty','','','/eric/','','','',1205802745),(54,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205802837),(55,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1205802850),(56,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205802873),(57,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1205802880),(58,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1205802880),(59,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205802923),(60,'72.208.227.154','','en-us','','','/eric/?feed=rss2','','','',1205802969),(61,'72.208.227.154','','en-us','','','/eric/','','','',1205802970),(62,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205803116),(63,'74.41.93.26','','en-us','','','/eric/','Windows 2003','Firefox','2.0.0.1',1205803171),(64,'74.41.93.26','','en-us','','','/eric/?feed=rss2','Windows 2003','Firefox','2.0.0.1',1205803174),(65,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205803266),(66,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1205803280),(67,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1205803309),(68,'208.66.64.4','','empty','','','/eric/?feed=rss2','','Technoratibot','0.7',1205803310),(69,'85.25.150.156','','empty','','','/eric/?p=29','','Mozilla','',1205803898),(70,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1205803925),(71,'64.41.145.129','','en-us','','','/eric/?p=10','Windows XP','Internet Explorer','6.0',1205803925),(72,'64.41.145.129','','en-us','','','/eric/?p=26','Windows XP','Internet Explorer','6.0',1205803926),(73,'64.41.145.129','','en-us','','','/eric/?p=28','Windows XP','Internet Explorer','6.0',1205803926),(74,'64.41.145.129','','en-us','','','/eric/?p=29','Windows XP','Internet Explorer','6.0',1205803927),(75,'64.41.145.129','','en-us','','','/eric/?p=30','Windows XP','Internet Explorer','6.0',1205803927),(76,'64.40.118.221','','empty','','','/eric/?feed=rss2','','','',1205804010),(77,'64.40.118.221','','empty','','','/eric/','','','',1205804016),(78,'64.40.118.221','','empty','','','/eric/','','','',1205804016),(79,'64.40.118.221','','empty','','','/eric/?p=30','','','',1205804021),(80,'64.40.118.221','','empty','','','/eric/?p=30','','','',1205804021),(81,'64.40.118.221','','empty','','','/eric/?p=29','','','',1205804024),(82,'64.40.118.221','','empty','','','/eric/?p=29','','','',1205804024),(83,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1205805180),(84,'62.141.48.83','','empty','','','/eric/?p=29','','Mozilla','',1205805383),(85,'61.69.27.143','','en-us','','','/eric/','Windows Vista','Internet Explorer','7.0',1205806978),(86,'61.69.27.143','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1205807001),(87,'61.69.27.143','','en-us','','','/eric/','Windows Vista','Internet Explorer','7.0',1205807024),(88,'61.69.27.143','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1205807026),(89,'61.69.27.143','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=10','Windows Vista','Internet Explorer','7.0',1205807037),(90,'61.69.27.143','','en-us','','','/eric/','Windows Vista','Internet Explorer','7.0',1205807043),(91,'61.69.27.143','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1205807044),(92,'68.146.143.189','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.12',1205810914),(93,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.12',1205810921),(94,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=10','Windows Vista','Firefox','2.0.0.12',1205810950),(95,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=10','Windows Vista','Firefox','2.0.0.12',1205810975),(96,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=10','Windows Vista','Firefox','2.0.0.12',1205810990),(97,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/?p=10','/eric/?page_id=20','Windows Vista','Firefox','2.0.0.12',1205810993),(98,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=20','/eric/?page_id=12','Windows Vista','Firefox','2.0.0.12',1205810995),(99,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=20','/eric/?page_id=12','Windows Vista','Firefox','2.0.0.12',1205811049),(100,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=12','/eric/?page_id=20','Windows Vista','Firefox','2.0.0.12',1205811052),(101,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=12','/eric/?page_id=20','Windows Vista','Firefox','2.0.0.12',1205811067),(102,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=12','/eric/?page_id=20','Windows Vista','Firefox','2.0.0.12',1205811078),(103,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=12','/eric/?page_id=20','Windows Vista','Firefox','2.0.0.12',1205811086),(104,'68.146.143.189','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=20','/eric/?page_id=14','Windows Vista','Firefox','2.0.0.12',1205811101),(105,'66.249.66.132','','empty','','','/eric/?p=10','','Googlebot','2.1',1205827129),(106,'66.249.66.132','','empty','','','/eric/?p=26','','Googlebot','2.1',1205827289),(107,'66.249.66.132','','empty','','','/eric/?p=28','','Googlebot','2.1',1205828148),(108,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1205833222),(109,'66.249.66.132','','empty','','','/eric/?page_id=14','','Googlebot','2.1',1205836067),(110,'66.249.66.132','','empty','','','/eric/?page_id=12','','Googlebot','2.1',1205836512),(111,'66.249.66.132','','empty','','','/eric/?page_id=13','','Googlebot','2.1',1205836817),(112,'66.249.66.132','','empty','','','/eric/?cat=8','','Googlebot','2.1',1205836845),(113,'66.249.66.132','','empty','','','/eric/?page_id=20','','Googlebot','2.1',1205837571),(114,'66.249.66.132','','empty','','','/eric/?m=200803','','Googlebot','2.1',1205843084),(115,'66.249.66.132','','empty','','','/eric/?p=29','','Googlebot','2.1',1205843090),(116,'66.249.66.132','','empty','','','/eric/?p=30','','Googlebot','2.1',1205849197),(117,'65.55.208.234','','empty','','','/eric/','','msnbot','1.0',1205853334),(118,'65.55.165.47','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows 2003','Internet Explorer','7.0',1205853516),(119,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1205859679),(120,'140.198.135.124','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1205859881),(121,'140.198.135.124','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1205859894),(122,'140.198.135.124','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=10','Windows XP','Internet Explorer','6.0',1205860159),(123,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205872556),(124,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205872557),(125,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?feed=rss2','Mac OS X','Safari','523.15',1205872590),(126,'130.13.174.168','','en-us','','','/eric/?feed=rss2','','','',1205872591),(127,'130.13.174.168','','en-us','','','/eric/','','','',1205872592),(128,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205872598),(129,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=26','Mac OS X','Safari','523.15',1205872605),(130,'74.6.24.123','','empty','','','/eric/','','Yahoo! Slurp','',1205873007),(131,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205874917),(132,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','523.15',1205874918),(133,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.15',1205879199),(134,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?page_id=20','Mac OS X','Safari','523.15',1205879714),(135,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=20','/eric/','Mac OS X','Safari','523.15',1205879718),(136,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.15',1205879720),(137,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=28','Mac OS X','Safari','523.15',1205879725),(138,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/?p=28','/eric/?p=28','Mac OS X','Safari','523.15',1205879730),(139,'124.64.247.82','','zh-cn','utombox.com','http://utombox.com/wp-admin/moderation.php','/eric/','Windows XP','Firefox','2.0.0.12',1205886852),(140,'124.64.247.82','','zh-cn','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205886874),(141,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1205887573),(142,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1205887576),(143,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1205888080),(144,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1205888081),(145,'68.227.227.149','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.10.6',1205892520),(146,'68.227.227.149','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?p=10','Mac OS X','Safari','523.10.6',1205892531),(147,'99.234.83.57','','en-us','','','/eric/','Windows Vista','Flock','1.1',1205898862),(148,'99.234.83.57','','en-us','','','/eric/?feed=rss2','Windows Vista','Flock','1.1',1205898864),(149,'99.234.83.57','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Flock','1.1',1205898866),(150,'68.2.98.231','','en-us','google.com','http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=HPIA,HPIA:2005-40,HPIA:en&q=grand+view+photography','/eric/','Windows XP','Internet Explorer','7.0',1205900835),(151,'68.2.98.231','','en-us','google.com','http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=HPIA,HPIA:2005-40,HPIA:en&q=grand+view+photography','/eric/','Windows XP','Internet Explorer','7.0',1205900836),(152,'68.2.98.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1205900839),(153,'68.2.98.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?page_id=12','Windows XP','Internet Explorer','7.0',1205900846),(154,'71.181.211.181','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205907334),(155,'71.181.211.181','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205907338),(156,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','1.0.7',1205944469),(157,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','1.0.7',1205944471),(158,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','1.0.7',1205944488),(159,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?page_id=20','Windows XP','Firefox','1.0.7',1205944561),(160,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=20','/eric/?page_id=12','Windows XP','Firefox','1.0.7',1205944565),(161,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=12','/eric/?page_id=13','Windows XP','Firefox','1.0.7',1205944569),(162,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205951392),(163,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205951393),(164,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','1.0.7',1205961302),(165,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','1.0.7',1205961303),(166,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','1.0.7',1205961316),(167,'193.252.149.15','','fr','','','/eric/','Windows XP','Crawler/Search Engine','1.8.1',1205962850),(168,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205967854),(169,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205967854),(170,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?page_id=12','Mac OS X','Safari','525.13',1205967862),(171,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/?page_id=12','/eric/','Mac OS X','Safari','525.13',1205968013),(172,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205972736),(173,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205972736),(174,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?page_id=20','Mac OS X','Safari','525.13',1205972739),(175,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Mozilla','',1205973062),(176,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Mozilla','',1205973147),(177,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205973297),(178,'130.13.174.168','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1205973496),(179,'130.13.174.168','','en','google.com','http://www.google.com/search?client=safari&rls=en&q=grandviewphotographyaz.com&ie=UTF-8&oe=UTF-8','/eric/','Mac OS X','Safari','523.12.2',1205973498),(180,'130.13.174.168','','en','google.com','http://www.google.com/search?client=safari&rls=en&q=grandviewphotographyaz.com&ie=UTF-8&oe=UTF-8','/eric/','Mac OS X','Safari','523.12.2',1205973498),(181,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205973508),(182,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/feed','Windows XP','Firefox','2.0.0.12',1205973574),(183,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1205973594),(184,'130.13.174.168','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1205973601),(185,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205973605),(186,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/lotus','Windows XP','Firefox','2.0.0.12',1205973611),(187,'130.13.174.168','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1205973629),(188,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205973630),(189,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/lotus','Windows XP','Firefox','2.0.0.12',1205973635),(190,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/category/nature','Windows XP','Firefox','2.0.0.12',1205973641),(191,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/category/adventure','Windows XP','Firefox','2.0.0.12',1205973647),(192,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/packages','Windows XP','Firefox','2.0.0.12',1205973652),(193,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1205973655),(194,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205973800),(195,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1205973810),(196,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1205973902),(197,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1205973926),(198,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205973965),(199,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205973970),(200,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Firefox','2.0.0.12',1205973982),(201,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205973995),(202,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205973996),(203,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Firefox','2.0.0.12',1205974008),(204,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205974030),(205,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205974030),(206,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205974050),(207,'130.13.174.168','','en-us','','','/eric/feed','','','',1205974148),(208,'130.13.174.168','','en-us','','','/eric/','','','',1205974149),(209,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205981465),(210,'216.39.58.78','','empty','','','/eric/','','Internet Explorer','5.5',1205981468),(211,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1205981473),(212,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1205981474),(213,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1205981512),(214,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1205981512),(215,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205981581),(216,'66.249.66.132','','empty','','','/eric/world/2008/welcome-to-the-taj','','Googlebot','2.1',1205981627),(217,'65.54.165.76','','empty','','','/eric/','','msnbot','',1205981774),(218,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1205981778),(219,'64.40.118.218','','empty','','','/eric/?feed=rss2','','','',1205981843),(220,'64.40.118.218','','empty','','','/eric/','','','',1205981845),(221,'64.40.118.218','','empty','','','/eric/','','','',1205981845),(222,'64.40.118.218','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','','',1205981850),(223,'64.40.118.218','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','','',1205981851),(224,'64.40.118.218','','empty','','','/eric/weddings/2008/test-post-2','','','',1205981858),(225,'64.40.118.218','','empty','','','/eric/weddings/2008/test-post-2','','','',1205981859),(226,'64.40.118.218','','empty','','','/eric/world/2008/welcome-to-the-taj','','','',1205981861),(227,'64.40.118.218','','empty','','','/eric/world/2008/welcome-to-the-taj','','','',1205981861),(228,'64.40.118.218','','empty','','','/eric/nature/2008/lotus','','','',1205981864),(229,'64.40.118.218','','empty','','','/eric/nature/2008/lotus','','','',1205981864),(230,'64.40.118.218','','empty','','','/eric/weddings/2008/starting-a-new-life','','','',1205981867),(231,'64.40.118.218','','empty','','','/eric/weddings/2008/starting-a-new-life','','','',1205981867),(232,'66.249.66.132','','empty','','','/eric/weddings/2008/starting-a-new-life','','Googlebot','2.1',1205981868),(233,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1205981886),(234,'66.249.66.132','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','Googlebot','2.1',1205981896),(235,'66.249.66.132','','empty','','','/eric/nature/2008/lotus','','Googlebot','2.1',1205981927),(236,'66.249.66.132','','empty','','','/eric/weddings/2008/test-post-2','','Googlebot','2.1',1205981968),(237,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205982101),(238,'67.202.34.117','','empty','','','/eric/','','','',1205982131),(239,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205982246),(240,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1205982300),(241,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1205982314),(242,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1205982315),(243,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205982324),(244,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1205982334),(245,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1205982334),(246,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1205982375),(247,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205982538),(248,'66.249.66.132','','empty','','','/eric/world/2008/old-bike','','Googlebot','2.1',1205982540),(249,'66.249.66.132','','empty','','','/eric/weddings/2008/test-post-2','','Googlebot','2.1',1205982611),(250,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205982731),(251,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1205982775),(252,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1205983003),(253,'64.41.145.129','','en-us','','','/eric/weddings/2008/starting-a-new-life','Windows XP','Internet Explorer','6.0',1205983004),(254,'64.41.145.129','','en-us','','','/eric/nature/2008/lotus','Windows XP','Internet Explorer','6.0',1205983006),(255,'64.41.145.129','','en-us','','','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Internet Explorer','6.0',1205983008),(256,'64.41.145.129','','en-us','','','/eric/weddings/2008/test-post-2','Windows XP','Internet Explorer','6.0',1205983009),(257,'64.41.145.129','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1205983012),(258,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205983327),(259,'24.211.37.166','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1205983905),(260,'24.211.37.166','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205983909),(261,'24.211.37.166','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1205983945),(262,'24.211.37.166','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?s=salkdfj','Windows XP','Firefox','2.0.0.12',1205984178),(263,'24.211.37.166','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1205984181),(264,'24.211.37.166','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1205984182),(265,'213.239.214.231','','empty','','','/eric/world/2008/old-bike','','Mozilla','',1205986403),(266,'66.249.66.132','','empty','','','/eric/packages','','Googlebot','2.1',1205986580),(267,'66.249.66.132','','empty','','','/eric/about','','Googlebot','2.1',1205986581),(268,'66.249.66.132','','empty','','','/eric/links','','Googlebot','2.1',1205986583),(269,'66.249.66.132','','empty','','','/eric/archives','','Googlebot','2.1',1205986583),(270,'66.249.66.132','','empty','','','/eric/category/world','','Googlebot','2.1',1205986585),(271,'66.249.66.132','','empty','','','/eric/category/adventure','','Googlebot','2.1',1205986590),(272,'66.249.66.132','','empty','','','/eric/feed','','Googlebot','2.1',1205986596),(273,'66.249.66.132','','empty','','','/eric/portfolio','','Googlebot','2.1',1205986602),(274,'66.249.66.132','','empty','','','/eric/category/nature','','Googlebot','2.1',1205986607),(275,'66.249.66.132','','empty','','','/eric/category/portraits','','Googlebot','2.1',1205986613),(276,'66.249.66.132','','empty','','','/eric/category/weddings','','Googlebot','2.1',1205986618),(277,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205989022),(278,'64.21.98.196','','empty','','','/eric/','','','',1205989309),(279,'64.21.98.196','','empty','','','/eric/feed','','','',1205989311),(280,'64.21.98.196','','empty','','','/eric/feed','','','',1205989338),(281,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1205990360),(282,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1205990365),(283,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1205990370),(284,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1205990371),(285,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1205990387),(286,'67.111.14.202','','empty','','','/eric/','','Technoratibot','0.7',1205990400),(287,'67.111.14.202','','empty','','','/eric/feed','','Technoratibot','0.7',1205990401),(288,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1205990778),(289,'65.54.165.76','','empty','','','/eric/','','msnbot','',1205990948),(290,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1205990952),(291,'64.41.145.66','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1205991971),(292,'64.41.145.66','','en-us','','','/eric/portraits/2008/field-of-green','Windows XP','Internet Explorer','6.0',1205991976),(293,'64.41.145.66','','en-us','','','/eric/nature/2008/lotus','Windows XP','Internet Explorer','6.0',1205991978),(294,'64.41.145.66','','en-us','','','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Internet Explorer','6.0',1205991979),(295,'64.41.145.66','','en-us','','','/eric/weddings/2008/test-post-2','Windows XP','Internet Explorer','6.0',1205991980),(296,'64.41.145.66','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1205991981),(297,'64.40.118.235','','empty','','','/eric/?feed=rss2','','','',1205992097),(298,'64.40.118.235','','empty','','','/eric/','','','',1205992097),(299,'64.40.118.235','','empty','','','/eric/','','','',1205992098),(300,'64.40.118.235','','empty','','','/eric/world/2008/old-bike','','','',1205992099),(301,'64.40.118.235','','empty','','','/eric/world/2008/old-bike','','','',1205992099),(302,'64.40.118.235','','empty','','','/eric/portraits/2008/field-of-green','','','',1205992101),(303,'64.40.118.235','','empty','','','/eric/portraits/2008/field-of-green','','','',1205992102),(304,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1205992961),(305,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205993049),(306,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1205993127),(307,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1205993309),(308,'72.48.107.3','','empty','','','/eric/world/2008/old-bike','','Googlebot','2.1',1206004223),(309,'72.48.107.3','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/old-bike','/eric/wp-comments-post.php','','Googlebot','2.1',1206004228),(310,'87.86.13.4','','empty','','','/eric/world/2008/old-bike','Windows','Internet Explorer','5.0',1206004234),(311,'87.86.13.4','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/old-bike','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1206004240),(312,'66.228.130.188','','empty','','','/eric/world/2008/old-bike','','Googlebot','2.1',1206004242),(313,'66.228.130.188','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/old-bike','/eric/wp-comments-post.php','','Googlebot','2.1',1206004248),(314,'72.44.38.185','','empty','','','/eric/world/2008/old-bike','Windows XP','Opera','7.54',1206004250),(315,'72.44.38.185','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/old-bike','/eric/wp-comments-post.php','Windows XP','Opera','7.54',1206004253),(316,'69.217.73.52','','empty','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1206004259),(317,'69.217.73.52','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/old-bike','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1206004272),(318,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206012336),(319,'66.249.66.132','','empty','','','/eric/2008/03','','Googlebot','2.1',1206015130),(320,'66.249.66.132','','empty','','','/eric/portraits/2008/field-of-green','','Googlebot','2.1',1206015665),(321,'65.214.45.121','','empty','','','/eric/','','Ask Jeeves/Teoma','',1206017179),(322,'65.54.165.76','','empty','','','/eric/world/2008/old-bike','','msnbot','',1206026257),(323,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1206027166),(324,'66.231.189.159','','en','','','/eric/','','Gigabot','3.0',1206029075),(325,'66.231.189.159','','en','','','/eric/','','Gigabot','3.0',1206029076),(326,'66.231.189.159','','en','','','/eric/xmlrpc.php?rsd','','Gigabot','3.0',1206029423),(327,'66.231.189.159','','en','','','/eric/feed','','Gigabot','3.0',1206029502),(328,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206029525),(329,'66.231.189.159','','en','','','/eric/packages','','Gigabot','3.0',1206029544),(330,'66.231.189.159','','en','','','/eric/category/nature','','Gigabot','3.0',1206029574),(331,'66.231.189.159','','en','','','/eric/world/2008/old-bike','','Gigabot','3.0',1206029580),(332,'66.231.189.159','','en','','','/eric/','','Gigabot','3.0',1206029595),(333,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206029621),(334,'66.231.189.159','','en','','','/eric/portraits/2008/field-of-green','','Gigabot','3.0',1206029679),(335,'66.231.189.159','','en','','','/eric/links','','Gigabot','3.0',1206029704),(336,'66.231.189.159','','en','','','/eric/category/portraits','','Gigabot','3.0',1206029744),(337,'66.231.189.159','','en','','','/eric/xmlrpc.php','','Gigabot','3.0',1206029754),(338,'66.231.189.159','','en','','','/eric/portfolio','','Gigabot','3.0',1206029788),(339,'66.231.189.159','','en','','','/eric/archives','','Gigabot','3.0',1206029798),(340,'66.231.189.159','','en','','','/eric/category/adventure','','Gigabot','3.0',1206029808),(341,'66.231.189.159','','en','','','/eric/category/world','','Gigabot','3.0',1206029813),(342,'66.231.189.159','','en','','','/eric/nature/2008/lotus','','Gigabot','3.0',1206029823),(343,'66.231.189.159','','en','','','/eric/weddings/2008/test-post-2','','Gigabot','3.0',1206029898),(344,'66.231.189.159','','en','','','/eric/about','','Gigabot','3.0',1206029905),(345,'66.231.189.159','','en','','','/eric/category/weddings','','Gigabot','3.0',1206030213),(346,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206031849),(347,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206031849),(348,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206031849),(349,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206031860),(350,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206031861),(351,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1206031862),(352,'72.208.227.154','','en-us','','','/eric/feed','','','',1206031881),(353,'72.208.227.154','','en-us','','','/eric/','','','',1206031883),(354,'66.231.189.159','','en','','','/eric/adventure/2008/sleeping-under-the-stars','','Gigabot','3.0',1206032193),(355,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206032256),(356,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206032279),(357,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206032280),(358,'65.54.165.76','','empty','','','/eric/','','msnbot','',1206032289),(359,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1206032294),(360,'66.249.66.132','','empty','','','/eric/portraits/2008/fading','','Googlebot','2.1',1206032379),(361,'67.202.34.117','','empty','','','/eric/','','','',1206032557),(362,'64.40.118.210','','empty','','','/eric/?feed=rss2','','','',1206032978),(363,'64.40.118.210','','empty','','','/eric/','','','',1206032979),(364,'64.40.118.210','','empty','','','/eric/','','','',1206032980),(365,'64.40.118.210','','empty','','','/eric/portraits/2008/fading','','','',1206032985),(366,'64.40.118.210','','empty','','','/eric/portraits/2008/fading','','','',1206032986),(367,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1206035080),(368,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206035910),(369,'64.41.145.129','','en-us','','','/eric/nature/2008/lotus','Windows XP','Internet Explorer','6.0',1206035911),(370,'64.41.145.129','','en-us','','','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Internet Explorer','6.0',1206035912),(371,'64.41.145.129','','en-us','','','/eric/weddings/2008/test-post-2','Windows XP','Internet Explorer','6.0',1206035913),(372,'64.41.145.129','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1206035915),(373,'64.41.145.129','','en-us','','','/eric/portraits/2008/fading','Windows XP','Internet Explorer','6.0',1206035915),(374,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206036061),(375,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206038631),(376,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206040946),(377,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1206042301),(378,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206044668),(379,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206046899),(380,'130.13.174.168','','en-us','google.com','http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=HPIA,HPIA:2005-40,HPIA:en&q=grand+view+photography','/eric/','Mac OS X','Safari','525.13',1206047140),(381,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206048145),(382,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206049537),(383,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206052695),(384,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206057083),(385,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206061664),(386,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206061701),(387,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1206061716),(388,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206061742),(389,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206061743),(390,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1206061769),(391,'67.111.14.204','','empty','','','/eric/','','Technoratibot','0.7',1206061821),(392,'67.111.14.204','','empty','','','/eric/feed','','Technoratibot','0.7',1206061822),(393,'66.249.66.132','','empty','','','/eric/portraits/2008/glowing','','Googlebot','2.1',1206062190),(394,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206062216),(395,'65.54.165.81','','empty','','','/eric/','','msnbot','',1206062280),(396,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1206062285),(397,'65.54.165.81','','empty','','','/eric/portraits/2008/glowing','','msnbot','',1206062469),(398,'64.40.118.227','','empty','','','/eric/?feed=rss2','','','',1206062922),(399,'64.40.118.227','','empty','','','/eric/','','','',1206062922),(400,'64.40.118.227','','empty','','','/eric/','','','',1206062923),(401,'64.40.118.227','','empty','','','/eric/portraits/2008/glowing','','','',1206062926),(402,'64.40.118.227','','empty','','','/eric/portraits/2008/glowing','','','',1206062927),(403,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206063409),(404,'64.41.145.193','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206066182),(405,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206067024),(406,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206068160),(407,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206068342),(408,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206068457),(409,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206069813),(410,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206070639),(411,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206074254),(412,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206074666),(413,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206077870),(414,'74.6.23.35','','empty','','','/eric/portfolio/','','Yahoo! Slurp','',1206079716),(415,'74.6.23.35','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1206079725),(416,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206081485),(417,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206085100),(418,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206088715),(419,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206092331),(420,'64.13.138.6','','empty','','','/eric/?feed=rss2','','Mozilla','',1206093266),(421,'64.13.138.6','','empty','','','/eric/?cat=4','','Mozilla','',1206093338),(422,'64.13.138.6','','empty','','','/eric/?p=1','','Mozilla','',1206093402),(423,'64.13.138.6','','empty','','','/eric/?cat=7','','Mozilla','',1206093474),(424,'64.13.138.6','','empty','','','/eric/?page_id=2','','Mozilla','',1206093538),(425,'64.13.138.6','','empty','','','/eric/?p=12a','','Mozilla','',1206093644),(426,'64.13.138.6','','empty','','','/eric/?p=10','','Mozilla','',1206093707),(427,'64.13.138.6','','empty','','','/eric/?page_id=20','','Mozilla','',1206093774),(428,'64.13.138.6','','empty','','','/eric/?cat=3','','Mozilla','',1206093833),(429,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206095946),(430,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1206096445),(431,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206099561),(432,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206101675),(433,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206103176),(434,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206106791),(435,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206110407),(436,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206114022),(437,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206114022),(438,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206114655),(439,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206114665),(440,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206114666),(441,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1206114687),(442,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206114844),(443,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206114845),(444,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206115044),(445,'66.249.66.132','','empty','','','/eric/world/2008/wudhu','','Googlebot','2.1',1206115050),(446,'74.41.93.26','','en-us','','','/eric/','Windows 2003','Firefox','2.0.0.1',1206115081),(447,'74.41.93.26','','en-us','','','/eric/feed','Windows 2003','Firefox','2.0.0.1',1206115083),(448,'65.54.165.76','','empty','','','/eric/','','msnbot','',1206115135),(449,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1206115140),(450,'67.202.34.117','','empty','','','/eric/','','','',1206115369),(451,'64.41.145.193','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206116581),(452,'64.41.145.193','','en-us','','','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Internet Explorer','6.0',1206116591),(453,'64.41.145.193','','en-us','','','/eric/weddings/2008/test-post-2','Windows XP','Internet Explorer','6.0',1206116595),(454,'64.41.145.193','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1206116597),(455,'64.41.145.193','','en-us','','','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','6.0',1206116598),(456,'64.41.145.193','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','6.0',1206116599),(457,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206117637),(458,'65.55.232.22','','empty','','','/eric/','','msnbot','1.1',1206117960),(459,'65.54.165.76','','empty','','','/eric/world/2008/wudhu','','msnbot','',1206118523),(460,'65.54.165.76','','empty','','','/eric/portraits/2008/glowing','','msnbot','',1206118523),(461,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1206119178),(462,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206120927),(463,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206124541),(464,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206127555),(465,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206127556),(466,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/world/2008/wudhu','Mac OS X','Safari','525.13',1206127591),(467,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/world/2008/wudhu','/eric/','Mac OS X','Safari','525.13',1206127598),(468,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206127766),(469,'130.13.174.168','','en-us','','','/eric/weddings/2008/test-post-2','Mac OS X','Safari','525.13',1206128555),(470,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/test-post-2','/eric/portfolio','Mac OS X','Safari','525.13',1206128561),(471,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/','Mac OS X','Safari','525.13',1206128564),(472,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206130482),(473,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206130482),(474,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206130519),(475,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206131368),(476,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206134971),(477,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206138575),(478,'64.40.118.237','','empty','','','/eric/?feed=rss2','','','',1206141194),(479,'64.40.118.237','','empty','','','/eric/','','','',1206141195),(480,'64.40.118.237','','empty','','','/eric/','','','',1206141195),(481,'64.40.118.237','','empty','','','/eric/world/2008/wudhu','','','',1206141197),(482,'64.40.118.237','','empty','','','/eric/world/2008/wudhu','','','',1206141197),(483,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206142179),(484,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206145782),(485,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206147766),(486,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1206148074),(487,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206148651),(488,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206149389),(489,'61.247.217.33','','ja','','','/eric/','','Crawler/Search Engine','',1206149999),(490,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206153005),(491,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206156609),(492,'61.247.217.35','','ja','','','/eric/','','Crawler/Search Engine','',1206156712),(493,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206160212),(494,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206163816),(495,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206167419),(496,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206171023),(497,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206174641),(498,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206178244),(499,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206181849),(500,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206185453),(501,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206189057),(502,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206192660),(503,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206193536),(504,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206196264),(505,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206197303),(506,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206197303),(507,'65.55.209.82','','empty','','','/eric/?cat=7','','msnbot','1.1',1206199081),(508,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206199867),(509,'74.6.7.152','','empty','','','/eric/','','Yahoo! Slurp','',1206200973),(510,'74.6.21.122','','empty','','','/eric/world/2008/old-bike','','Yahoo! Slurp','',1206201128),(511,'74.6.17.218','','empty','','','/eric/category/nature','','Yahoo! Slurp','',1206201253),(512,'65.55.104.164','','empty','','','/eric/','','msnbot','1.1',1206202667),(513,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206203471),(514,'65.55.104.164','','empty','','','/eric/','','msnbot','1.1',1206204519),(515,'65.55.232.36','','en-us','search.live.com','http://search.live.com/results.aspx?q=carley&mrt=en-us&FORM=LIVSOP','/eric/','Windows 2003','Internet Explorer','7.0',1206204633),(516,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206207075),(517,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206210678),(518,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1206212077),(519,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1206212086),(520,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206214282),(521,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206217886),(522,'65.55.209.81','','empty','','','/eric/?p=30','','msnbot','1.1',1206219307),(523,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206221490),(524,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206225093),(525,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1206228578),(526,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206228697),(527,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1206229915),(528,'74.6.24.53','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','Yahoo! Slurp','',1206229978),(529,'74.6.23.178','','empty','','','/eric/archives','','Yahoo! Slurp','',1206229979),(530,'74.6.25.88','','empty','','','/eric/world/2008/wudhu','','Yahoo! Slurp','',1206229985),(531,'74.6.16.177','','empty','','','/eric/category/portraits','','Yahoo! Slurp','',1206229996),(532,'74.6.28.159','','empty','','','/eric/about','','Yahoo! Slurp','',1206230029),(533,'74.6.27.57','','empty','','','/eric/category/world','','Yahoo! Slurp','',1206230067),(534,'74.6.19.32','','empty','','','/eric/2008/03','','Yahoo! Slurp','',1206230083),(535,'74.6.18.54','','empty','','','/eric/adventure/2008/','','Yahoo! Slurp','',1206230096),(536,'74.6.18.54','','empty','','','/eric/adventure/2008','','Yahoo! Slurp','',1206230102),(537,'74.6.21.62','','empty','','','/eric/portraits/2008/glowing','','Yahoo! Slurp','',1206230164),(538,'74.6.8.38','','empty','','','/eric/adventure/','','Yahoo! Slurp','',1206230234),(539,'74.6.8.38','','empty','','','/eric/adventure','','Yahoo! Slurp','',1206230242),(540,'74.6.9.94','','empty','','','/eric/links','','Yahoo! Slurp','',1206230246),(541,'74.6.9.162','','empty','','','/eric/portraits/2008/','','Yahoo! Slurp','',1206230290),(542,'74.6.9.162','','empty','','','/eric/portraits/2008','','Yahoo! Slurp','',1206230302),(543,'74.6.21.28','','empty','','','/eric/portraits/','','Yahoo! Slurp','',1206230342),(544,'74.6.21.28','','empty','','','/eric/portraits','','Yahoo! Slurp','',1206230345),(545,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206232301),(546,'72.30.179.243','','empty','','','/eric/feed','','Yahoo! Slurp','',1206232479),(547,'74.6.24.216','','empty','','','/eric/category/weddings','','Yahoo! Slurp','',1206234863),(548,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206235904),(549,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206236649),(550,'74.6.25.246','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1206236977),(551,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206239508),(552,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206243112),(553,'74.6.25.37','','empty','','','/eric/portraits/2008/field-of-green','','Yahoo! Slurp','',1206243280),(554,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1206244213),(555,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1206244214),(556,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206244223),(557,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/','Windows Vista','Internet Explorer','7.0',1206244236),(558,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206244237),(559,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/','Windows Vista','Internet Explorer','7.0',1206244265),(560,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206244266),(561,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/test-post-2','Windows Vista','Internet Explorer','7.0',1206244272),(562,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/test-post-2','/eric/category/weddings','Windows Vista','Internet Explorer','7.0',1206244282),(563,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206244312),(564,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206244442),(565,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206244517),(566,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/contact.php','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206245377),(567,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/contact.php','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206245384),(568,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/contact.php','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206245415),(569,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/packages','Windows Vista','Internet Explorer','7.0',1206245418),(570,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/about','Windows Vista','Internet Explorer','7.0',1206245420),(571,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Windows Vista','Internet Explorer','7.0',1206245459),(572,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Windows Vista','Internet Explorer','7.0',1206245534),(573,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/about','Windows Vista','Internet Explorer','7.0',1206245537),(574,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/','Windows Vista','Internet Explorer','7.0',1206245541),(575,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206245542),(576,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows Vista','Internet Explorer','7.0',1206245567),(577,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/test-post-2','Windows Vista','Internet Explorer','7.0',1206245572),(578,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206246715),(579,'210.4.165.171','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.12',1206247525),(580,'210.4.165.171','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.12',1206247535),(581,'74.6.20.170','','empty','','','/eric/category/adventure','','Yahoo! Slurp','',1206247688),(582,'72.204.250.105','','en-us','us.f366.mail.yahoo.com','http://us.f366.mail.yahoo.com/ym/ShowLetter?MsgId=2947_0_324312_1966_115_0_2441_-1_0_oSObkYn4Ur5HQV3r2mDutECc5BCHd7eC1JrnIgXW1IoPUQgDaKESBg9w4iSswlr._0kH7AMe9szLQYIxh40.zNKuo07Tp_pEwFDMG.KYvhzjgEIYJWKGYgaIiZpQOiXJjgn0pEcfwaWHmXj3qre22.5JHiUb5NUPZGc-&Idx=5','/eric/','Windows Vista','Internet Explorer','7.0',1206248533),(583,'72.204.250.105','','en-us','us.f366.mail.yahoo.com','http://us.f366.mail.yahoo.com/ym/ShowLetter?MsgId=2947_0_324312_1966_115_0_2441_-1_0_oSObkYn4Ur5HQV3r2mDutECc5BCHd7eC1JrnIgXW1IoPUQgDaKESBg9w4iSswlr._0kH7AMe9szLQYIxh40.zNKuo07Tp_pEwFDMG.KYvhzjgEIYJWKGYgaIiZpQOiXJjgn0pEcfwaWHmXj3qre22.5JHiUb5NUPZGc-&Idx=5','/eric/','Windows Vista','Internet Explorer','7.0',1206248534),(584,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206248538),(585,'74.6.20.253','','empty','','','/eric/packages','','Yahoo! Slurp','',1206249480),(586,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206250319),(587,'74.6.25.40','','empty','','','/eric/nature/2008/lotus','','Yahoo! Slurp','',1206252905),(588,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206255078),(589,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206255078),(590,'74.6.20.59','','empty','','','/eric/weddings/2008/test-post-2','','Yahoo! Slurp','',1206264598),(591,'74.6.31.122','','empty','','','/eric/weddings/2008/','','Yahoo! Slurp','',1206264687),(592,'74.6.31.122','','empty','','','/eric/weddings/2008','','Yahoo! Slurp','',1206264695),(593,'84.98.237.174','','fr','','','/eric/','Windows XP','Firefox','2.0.0.12',1206270967),(594,'84.98.237.174','','fr','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206270974),(595,'84.98.237.174','','fr','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Firefox','2.0.0.12',1206270990),(596,'84.98.237.174','','fr','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portraits/2008/glowing','Windows XP','Firefox','2.0.0.12',1206270994),(597,'84.98.237.174','','fr','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Firefox','2.0.0.12',1206271207),(598,'84.98.237.174','','fr','','','/eric/','Windows XP','Firefox','2.0.0.12',1206271210),(599,'84.98.237.174','','fr','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206271211),(600,'74.6.17.245','','empty','','','/eric/nature/2008/','','Yahoo! Slurp','',1206274543),(601,'74.6.17.245','','empty','','','/eric/nature/2008','','Yahoo! Slurp','',1206274549),(602,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206280442),(603,'74.6.26.110','','empty','','','/eric/world/','','Yahoo! Slurp','',1206285356),(604,'74.6.26.110','','empty','','','/eric/world','','Yahoo! Slurp','',1206285357),(605,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206294043),(606,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206294043),(607,'72.208.227.154','','en-us','','','/eric/feed','','','',1206294050),(608,'72.208.227.154','','en-us','','','/eric/','','','',1206294050),(609,'204.15.20.225','','empty','','','/eric/feed','','','',1206294061),(610,'204.15.20.231','','empty','','','/eric/feed','','','',1206294062),(611,'204.15.20.228','','empty','','','/eric/feed','','','',1206294079),(612,'204.15.20.231','','empty','','','/eric/feed','','','',1206294080),(613,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206294161),(614,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/world/2008/wudhu','Mac OS X','Safari','525.13',1206294167),(615,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/glowing','Mac OS X','Safari','525.13',1206294170),(616,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/world/2008/old-bike','Mac OS X','Safari','525.13',1206294176),(617,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206294323),(618,'216.39.58.78','','empty','','','/eric/','','Internet Explorer','5.5',1206294328),(619,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206294332),(620,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206294332),(621,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206294343),(622,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206294365),(623,'72.208.227.154','','en-us','','','/eric/feed','','','',1206294398),(624,'72.208.227.154','','en-us','','','/eric/','','','',1206294399),(625,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206294433),(626,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206294434),(627,'65.54.165.76','','empty','','','/eric/','','msnbot','',1206294689),(628,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1206294692),(629,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206294728),(630,'204.15.20.228','','empty','','','/eric/feed','','','',1206294871),(631,'65.54.165.76','','empty','','','/eric/world/2008/wudhu','','msnbot','',1206294901),(632,'67.202.34.117','','empty','','','/eric/','','','',1206295096),(633,'64.41.145.110','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206295440),(634,'64.41.145.110','','en-us','','','/eric/portraits/2008/field-of-green','Windows XP','Internet Explorer','6.0',1206295440),(635,'64.41.145.110','','en-us','','','/eric/nature/2008/lotus','Windows XP','Internet Explorer','6.0',1206295442),(636,'64.40.118.233','','empty','','','/eric/?feed=rss2','','','',1206296855),(637,'64.40.118.233','','empty','','','/eric/','','','',1206296857),(638,'64.40.118.233','','empty','','','/eric/','','','',1206296858),(639,'64.40.118.233','','empty','','','/eric/portfolio','','','',1206296863),(640,'64.40.118.233','','empty','','','/eric/portfolio','','','',1206296863),(641,'64.40.118.233','','empty','','','/eric/about','','','',1206296865),(642,'64.40.118.233','','empty','','','/eric/about','','','',1206296866),(643,'64.40.118.233','','empty','','','/eric/packages','','','',1206296868),(644,'64.40.118.233','','empty','','','/eric/packages','','','',1206296868),(645,'64.40.118.233','','empty','','','/eric/links','','','',1206296870),(646,'64.40.118.233','','empty','','','/eric/links','','','',1206296871),(647,'64.40.118.233','','empty','','','/eric/archives','','','',1206296873),(648,'64.40.118.233','','empty','','','/eric/archives','','','',1206296873),(649,'204.15.20.224','','empty','','','/eric/feed','','','',1206299402),(650,'68.226.97.172','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253319196&ref=nf','/eric/world/2008/wudhu','Mac OS X','Safari','523.15',1206299874),(651,'72.201.7.70','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253334196&ref=mf','/eric/weddings/2008/test-post-2','Windows Vista','Internet Explorer','7.0',1206300164),(652,'72.201.7.70','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/test-post-2','/eric/weddings/2008/test-post-2','Windows Vista','Internet Explorer','7.0',1206300170),(653,'72.201.7.70','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/test-post-2','/eric/weddings/2008/test-post-2','Windows Vista','Internet Explorer','7.0',1206300174),(654,'72.201.7.70','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/test-post-2','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206300179),(655,'72.201.7.70','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/test-post-2','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206300243),(656,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1206301644),(657,'204.15.20.227','','empty','','','/eric/feed','','','',1206303843),(658,'204.15.20.224','','empty','','','/eric/feed','','','',1206308365),(659,'65.55.104.21','','empty','','','/eric/nature/2008/lotus','','msnbot','1.1',1206309080),(660,'68.0.166.128','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253319196&ref=nf','/eric/world/2008/wudhu','Mac OS X','Safari','523.15',1206309145),(661,'68.0.166.128','','en-us','','','/eric/world/2008/wudhu','Mac OS X','Safari','523.15',1206309176),(662,'65.55.104.21','','empty','','','/eric/category/weddings','','msnbot','1.1',1206309183),(663,'65.55.104.21','','empty','','','/eric/about','','msnbot','1.1',1206309184),(664,'65.55.104.21','','empty','','','/eric/links','','msnbot','1.1',1206309185),(665,'65.55.104.21','','empty','','','/eric/category/portraits','','msnbot','1.1',1206309185),(666,'65.55.104.21','','empty','','','/eric/portfolio','','msnbot','1.1',1206309412),(667,'65.55.104.21','','empty','','','/eric/archives','','msnbot','1.1',1206309413),(668,'65.55.104.21','','empty','','','/eric/feed','','msnbot','1.1',1206309415),(669,'65.55.104.21','','empty','','','/eric/world/2008/old-bike','','msnbot','1.1',1206309507),(670,'65.55.104.21','','empty','','','/eric/category/nature','','msnbot','1.1',1206309508),(671,'65.55.104.21','','empty','','','/eric/category/adventure','','msnbot','1.1',1206309508),(672,'65.55.104.21','','empty','','','/eric/packages','','msnbot','1.1',1206309509),(673,'65.55.104.21','','empty','','','/eric/portraits/2008/glowing','','msnbot','1.1',1206309763),(674,'65.55.104.21','','empty','','','/eric/category/world','','msnbot','1.1',1206309764),(675,'65.55.104.21','','empty','','','/eric/weddings/2008/test-post-2','','msnbot','1.1',1206309887),(676,'65.55.104.21','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','msnbot','1.1',1206309888),(677,'65.55.104.21','','empty','','','/eric/world/2008/wudhu','','msnbot','1.1',1206309890),(678,'204.15.20.225','','empty','','','/eric/feed','','','',1206312770),(679,'71.125.140.195','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253319196&ref=nf','/eric/world/2008/wudhu','Windows XP','Firefox','2.0.0.12',1206312977),(680,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1206316483),(681,'162.83.54.18','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253319196&ref=nf','/eric/world/2008/wudhu','Windows Vista','Internet Explorer','7.0',1206316652),(682,'74.6.20.244','','empty','','','/eric/nature/','','Yahoo! Slurp','',1206317039),(683,'74.6.20.244','','empty','','','/eric/nature','','Yahoo! Slurp','',1206317040),(684,'204.15.20.225','','empty','','','/eric/feed','','','',1206317148),(685,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1206317689),(686,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206317768),(687,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206317769),(688,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/sleeping-under-the-stars','Mac OS X','Safari','525.13',1206317773),(689,'74.129.175.62','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206319069),(690,'74.129.175.62','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206319073),(691,'74.129.175.62','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206319132),(692,'74.129.175.62','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206319133),(693,'74.129.175.62','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206319147),(694,'74.129.175.62','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206319332),(695,'74.129.175.62','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206319367),(696,'72.30.179.243','','empty','','','/eric/feed','','Yahoo! Slurp','',1206321416),(697,'204.15.20.225','','empty','','','/eric/feed','','','',1206321699),(698,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/contact.php','/eric/packages','Windows Vista','Internet Explorer','7.0',1206323444),(699,'66.249.66.132','','empty','','','/eric/?page_id=2','','Googlebot','2.1',1206323808),(700,'66.249.66.132','','empty','','','/eric/about','','Googlebot','2.1',1206323809),(701,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206324738),(702,'66.249.66.132','','empty','','','/eric/?cat=3','','Googlebot','2.1',1206325000),(703,'66.249.66.132','','empty','','','/eric/category/world','','Googlebot','2.1',1206325001),(704,'66.249.66.132','','empty','','','/eric/?p=1','','Googlebot','2.1',1206325580),(705,'204.15.20.229','','empty','','','/eric/feed','','','',1206326164),(706,'66.249.66.132','','empty','','','/eric/?cat=1','','Googlebot','2.1',1206327170),(707,'72.208.223.151','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253319196&ref=nf','/eric/world/2008/wudhu','Mac OS X','Firefox','3.0',1206329185),(708,'72.208.223.151','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253319196&ref=nf','/eric/world/2008/wudhu','Mac OS X','Firefox','3.0',1206329201),(709,'72.208.223.151','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253319196&ref=nf','/eric/world/2008/wudhu','Mac OS X','Firefox','3.0',1206329210),(710,'72.208.223.151','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9253319196&ref=nf','/eric/world/2008/wudhu','Mac OS X','Firefox','3.0',1206329216),(711,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206329704),(712,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206329704),(713,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/glowing','Mac OS X','Safari','525.13',1206329726),(714,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/glowing','/eric/portraits/2008/glowing','Mac OS X','Safari','525.13',1206329736),(715,'72.208.227.154','','en-us','','','/eric/portraits/2008/glowing','Mac OS X','Safari','525.13',1206329742),(716,'65.55.209.78','','empty','','','/eric/?feed=rss2','','msnbot','1.1',1206329775),(717,'204.15.20.230','','empty','','','/eric/feed','','','',1206330622),(718,'69.41.14.151','','empty','','','/eric/world/2008/wudhu','','','',1206333804),(719,'69.41.14.151','','empty','','','/eric/world/2008/wudhu','','','',1206333831),(720,'69.41.14.151','','empty','','','/eric/world/2008/wudhu','','','',1206333838),(721,'69.41.14.151','','empty','','','/eric/world/2008/wudhu','','','',1206333844),(722,'204.15.20.231','','empty','','','/eric/feed','','','',1206334919),(723,'204.15.20.224','','empty','','','/eric/feed','','','',1206339303),(724,'204.15.20.229','','empty','','','/eric/feed','','','',1206343764),(725,'74.6.7.94','','empty','','','/eric/world/2008/','','Yahoo! Slurp','',1206346990),(726,'74.6.7.94','','empty','','','/eric/world/2008','','Yahoo! Slurp','',1206346998),(727,'204.15.20.229','','empty','','','/eric/feed','','','',1206347992),(728,'58.60.13.231','','empty','utombox.com','http://utombox.com/contact/','/eric/','','Internet Explorer','6.0',1206349583),(729,'204.15.20.231','','empty','','','/eric/feed','','','',1206352396),(730,'204.15.20.228','','empty','','','/eric/feed','','','',1206356970),(731,'204.15.20.229','','empty','','','/eric/feed','','','',1206361405),(732,'204.15.20.225','','empty','','','/eric/feed','','','',1206366424),(733,'204.15.20.229','','empty','','','/eric/feed','','','',1206371402),(734,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206372653),(735,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206372653),(736,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206372853),(737,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206372864),(738,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206372865),(739,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206372883),(740,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1206372893),(741,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206372935),(742,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1206372956),(743,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206372958),(744,'69.36.158.7','','empty','','','/eric/world/2008/wudhu','','Crawler/Search Engine','',1206372969),(745,'69.36.158.7','','empty','','','/eric/portraits/2008/field-of-green','','Crawler/Search Engine','',1206372975),(746,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206373131),(747,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206373132),(748,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206373286),(749,'66.249.66.132','','empty','','','/eric/portraits/2008/field-of-green','','Googlebot','2.1',1206373335),(750,'65.54.165.76','','empty','','','/eric/','','msnbot','',1206373368),(751,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1206373386),(752,'64.40.118.216','','empty','','','/eric/?feed=rss2','','','',1206373797),(753,'64.40.118.216','','empty','','','/eric/','','','',1206373799),(754,'64.40.118.216','','empty','','','/eric/','','','',1206373800),(755,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','1.0.7',1206374155),(756,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','1.0.7',1206374155),(757,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','1.0.7',1206374161),(758,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','1.0.7',1206374193),(759,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206374540),(760,'64.41.145.111','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206374710),(761,'140.198.137.85','','en-us','google.com','http://www.google.com/search?hl=en&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=grandview+photography&spell=1','/eric/','Windows XP','Internet Explorer','6.0',1206375751),(762,'140.198.137.85','','en-us','google.com','http://www.google.com/search?hl=en&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=grandview+photography&spell=1','/eric/','Windows XP','Internet Explorer','6.0',1206375751),(763,'140.198.137.85','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206375755),(764,'204.15.20.228','','empty','','','/eric/feed','','','',1206376892),(765,'204.15.20.229','','empty','','','/eric/feed','','','',1206382339),(766,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Mozilla','',1206382552),(767,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206382580),(768,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206382762),(769,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206382777),(770,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206382778),(771,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1206382803),(772,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206383195),(773,'65.54.165.76','','empty','','','/eric/','','msnbot','',1206383217),(774,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1206383221),(775,'66.249.66.132','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','Googlebot','2.1',1206383258),(776,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206383392),(777,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206383393),(778,'64.40.118.235','','empty','','','/eric/?feed=rss2','','','',1206383841),(779,'64.40.118.235','','empty','','','/eric/','','','',1206383843),(780,'64.40.118.235','','empty','','','/eric/','','','',1206383843),(781,'64.40.118.235','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','','',1206383845),(782,'64.40.118.235','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','','',1206383846),(783,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1206384043),(784,'64.41.145.84','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206385513),(785,'67.167.246.28','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','7.0',1206385852),(786,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206386181),(787,'204.15.20.231','','empty','','','/eric/feed','','','',1206387964),(788,'204.15.20.231','','empty','','','/eric/feed','','','',1206393296),(789,'204.15.20.224','','empty','','','/eric/feed','','','',1206397968),(790,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206402346),(791,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206402347),(792,'204.15.20.225','','empty','','','/eric/feed','','','',1206402667),(793,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1206403074),(794,'74.6.24.217','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','Yahoo! Slurp','',1206403306),(795,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1206404842),(796,'204.15.20.231','','empty','','','/eric/feed','','','',1206407120),(797,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206409705),(798,'129.250.134.165','','empty','','','/eric/wp-rss2.php','','Crawler/Search Engine','',1206411720),(799,'204.15.20.230','','empty','','','/eric/feed','','','',1206411853),(800,'75.167.30.163','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206412104),(801,'75.167.30.163','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Mac OS X','Safari','525.13',1206412170),(802,'75.167.30.163','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/links','Mac OS X','Safari','525.13',1206412248),(803,'75.167.30.163','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206412274),(804,'75.167.30.163','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1206412292),(805,'75.167.30.163','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/links','Mac OS X','Safari','525.13',1206412299),(806,'75.167.30.163','','en-us','eden.org','http://grandviewphotographyaz.com/links','/eric/portfolio','Mac OS X','Safari','525.13',1206412324),(807,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206413308),(808,'72.208.227.154','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9254259196&ref=mf','/eric/portraits/2008/field-of-green','Mac OS X','Safari','525.13',1206414131),(809,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/field-of-green','/eric/','Mac OS X','Safari','525.13',1206414136),(810,'76.74.248.177','','empty','','','/eric/xmlrpc.php','','','',1206414153),(811,'76.74.248.177','','empty','','','/eric/xmlrpc.php','','','',1206414153),(812,'72.232.131.29','','empty','','','/eric/xmlrpc.php','','','',1206414222),(813,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206414342),(814,'204.15.20.224','','empty','','','/eric/feed','','','',1206416294),(815,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206416912),(816,'129.250.134.165','','empty','','','/eric/wp-rss2.php','','Crawler/Search Engine','',1206419065),(817,'129.250.134.165','','empty','eden.org','http://eden.org','/eric/nature/2008/lotus','','Crawler/Search Engine','',1206419067),(818,'129.250.134.165','','empty','eden.org','http://eden.org','/eric/world/2008/old-bike','','Crawler/Search Engine','',1206419068),(819,'129.250.134.165','','empty','eden.org','http://eden.org','/eric/weddings/2008/carleybryan-wedding1','','Crawler/Search Engine','',1206419069),(820,'129.250.134.165','','empty','eden.org','http://eden.org','/eric/portraits/2008/field-of-green','','Crawler/Search Engine','',1206419070),(821,'129.250.134.165','','empty','eden.org','http://eden.org','/eric/adventure/2008/sleeping-under-the-stars','','Crawler/Search Engine','',1206419071),(822,'129.250.134.165','','empty','eden.org','http://eden.org','/eric/portraits/2008/glowing','','Crawler/Search Engine','',1206419072),(823,'129.250.134.165','','empty','eden.org','http://eden.org','/eric/world/2008/wudhu','','Crawler/Search Engine','',1206419073),(824,'71.212.59.215','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206420065),(825,'71.212.59.215','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206420081),(826,'71.212.59.215','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206420116),(827,'71.212.59.215','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206420117),(828,'71.212.59.215','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206420217),(829,'71.212.59.215','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206420219),(830,'71.212.59.215','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206420230),(831,'71.212.59.215','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206420231),(832,'71.212.59.215','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206420235),(833,'71.212.59.215','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206420244),(834,'71.212.59.215','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206420245),(835,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206420516),(836,'204.15.20.225','','empty','','','/eric/feed','','','',1206420927),(837,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206421830),(838,'65.55.209.84','','empty','','','/eric/?p=26','','msnbot','1.1',1206422384),(839,'65.55.165.96','','en-us','search.live.com','http://search.live.com/results.aspx?q=grand&mrt=en-us&FORM=LIVSOP','/eric/?p=26','Windows 2003','Internet Explorer','7.0',1206422429),(840,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206424119),(841,'204.15.20.229','','empty','','','/eric/feed','','','',1206425108),(842,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206427723),(843,'204.15.20.229','','empty','','','/eric/feed','','','',1206429211),(844,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206431328),(845,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1206431374),(846,'65.55.165.16','','en-us','search.live.com','http://search.live.com/results.aspx?q=carley&mrt=en-us&FORM=LIVSOP','/eric/','Windows 2003','Internet Explorer','7.0',1206432159),(847,'204.15.20.226','','empty','','','/eric/feed','','','',1206433657),(848,'24.186.215.209','','empty','','','/eric/','','Firefox','',1206434021),(849,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206434934),(850,'204.15.20.224','','empty','','','/eric/feed','','','',1206437916),(851,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206438549),(852,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206442153),(853,'204.15.20.226','','empty','','','/eric/feed','','','',1206442447),(854,'65.98.224.4','','empty','','','/eric/','','Crawler/Search Engine','',1206443871),(855,'74.6.23.35','','empty','','','/eric/portfolio/','','Yahoo! Slurp','',1206445459),(856,'74.6.23.35','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1206445460),(857,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206445757),(858,'204.15.20.227','','empty','','','/eric/feed','','','',1206447015),(859,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206449360),(860,'64.211.43.146','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206451282),(861,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206451285),(862,'64.211.43.146','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206451336),(863,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Windows XP','Internet Explorer','7.0',1206451389),(864,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Windows XP','Internet Explorer','7.0',1206451405),(865,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/about','Windows XP','Internet Explorer','7.0',1206451416),(866,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Windows XP','Internet Explorer','7.0',1206451418),(867,'204.15.20.228','','empty','','','/eric/feed','','','',1206451733),(868,'64.211.43.146','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206451738),(869,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206451739),(870,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/archives','Windows XP','Internet Explorer','7.0',1206451750),(871,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/archives','/eric/','Windows XP','Internet Explorer','7.0',1206451800),(872,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206451802),(873,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206451822),(874,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206451823),(875,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Windows XP','Internet Explorer','7.0',1206451829),(876,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/category/adventure','Windows XP','Internet Explorer','7.0',1206451901),(877,'64.211.43.146','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206452249),(878,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206452250),(879,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Windows XP','Internet Explorer','7.0',1206452267),(880,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/?s=email','Windows XP','Internet Explorer','7.0',1206452278),(881,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/?s=email','/eric/?s=contact','Windows XP','Internet Explorer','7.0',1206452285),(882,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/?s=contact','/eric/','Windows XP','Internet Explorer','7.0',1206452288),(883,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206452289),(884,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','7.0',1206452303),(885,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/glowing','/eric/about','Windows XP','Internet Explorer','7.0',1206452332),(886,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/category/world','Windows XP','Internet Explorer','7.0',1206452336),(887,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/world/2008/old-bike','Windows XP','Internet Explorer','7.0',1206452343),(888,'80.206.241.12','','it-it','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206452716),(889,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206452838),(890,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206452964),(891,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206454421),(892,'72.233.44.26','','empty','','','/eric/xmlrpc.php','','','',1206454433),(893,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206456568),(894,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206457002),(895,'204.15.20.229','','empty','','','/eric/feed','','','',1206457094),(896,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206457793),(897,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206457793),(898,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206457793),(899,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206457826),(900,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206457831),(901,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206457832),(902,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1206457838),(903,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1206457959),(904,'66.249.66.132','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Googlebot','2.1',1206458044),(905,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206458135),(906,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206458136),(907,'64.40.117.108','','empty','','','/eric/?feed=rss2','','','',1206458182),(908,'64.40.117.108','','empty','','','/eric/','','','',1206458184),(909,'64.40.117.108','','empty','','','/eric/','','','',1206458184),(910,'64.40.117.108','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','','',1206458187),(911,'64.40.117.108','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','','',1206458188),(912,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206458313),(913,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206458615),(914,'64.41.145.193','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206459155),(915,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206459308),(916,'65.54.165.76','','empty','','','/eric/','','msnbot','',1206459938),(917,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206460171),(918,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1206460210),(919,'67.202.19.103','','empty','','','/eric/','','Crawler/Search Engine','',1206460846),(920,'204.15.20.226','','empty','','','/eric/feed','','','',1206462691),(921,'66.249.66.132','','empty','','','/eric/category/portraits','','Googlebot','2.1',1206462782),(922,'66.249.66.132','','empty','','','/eric/portfolio','','Googlebot','2.1',1206462786),(923,'66.249.66.132','','empty','','','/eric/category/adventure','','Googlebot','2.1',1206462791),(924,'66.249.66.132','','empty','','','/eric/category/nature','','Googlebot','2.1',1206462797),(925,'66.249.66.132','','empty','','','/eric/feed','','Googlebot','2.1',1206462803),(926,'66.249.66.132','','empty','','','/eric/category/weddings','','Googlebot','2.1',1206462808),(927,'66.249.66.132','','empty','','','/eric/archives','','Googlebot','2.1',1206462820),(928,'66.249.66.132','','empty','','','/eric/packages','','Googlebot','2.1',1206462826),(929,'66.249.66.132','','empty','','','/eric/category/world','','Googlebot','2.1',1206462832),(930,'66.249.66.132','','empty','','','/eric/about','','Googlebot','2.1',1206462838),(931,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','1.0.7',1206462902),(932,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','1.0.7',1206462902),(933,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','1.0.7',1206462907),(934,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206463775),(935,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206467379),(936,'204.15.20.225','','empty','','','/eric/feed','','','',1206468497),(937,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206469004),(938,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206470982),(939,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1206471216),(940,'65.54.165.76','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','msnbot','',1206471229),(941,'130.13.174.168','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9374109196&ref=mf','/eric/portraits/2008/sarah-sr-pictures-1','Mac OS X','Safari','525.13',1206473788),(942,'204.15.20.228','','empty','','','/eric/feed','','','',1206474181),(943,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206474586),(944,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206478190),(945,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206478582),(946,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206478582),(947,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1206478777),(948,'204.15.20.230','','empty','','','/eric/feed','','','',1206479841),(949,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206481793),(950,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206484993),(951,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206484994),(952,'204.15.20.227','','empty','','','/eric/feed','','','',1206485183),(953,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206485396),(954,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206489000),(955,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1206489153),(956,'204.15.20.224','','empty','','','/eric/feed','','','',1206489825),(957,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206492603),(958,'204.15.20.229','','empty','','','/eric/feed','','','',1206494197),(959,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206496207),(960,'65.55.104.21','','empty','','','/eric/about','','msnbot','1.1',1206497105),(961,'65.55.104.21','','empty','','','/eric/category/portraits','','msnbot','1.1',1206497106),(962,'65.55.104.21','','empty','','','/eric/category/weddings','','msnbot','1.1',1206497106),(963,'65.55.104.21','','empty','','','/eric/nature/2008/lotus','','msnbot','1.1',1206497263),(964,'204.15.20.230','','empty','','','/eric/feed','','','',1206498885),(965,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206499810),(966,'65.55.104.21','','empty','','','/eric/portfolio','','msnbot','1.1',1206500127),(967,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1206500295),(968,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1206503270),(969,'204.15.20.224','','empty','','','/eric/feed','','','',1206503289),(970,'74.6.26.55','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Yahoo! Slurp','',1206503505),(971,'65.55.104.21','','empty','','','/eric/feed','','msnbot','1.1',1206505665),(972,'65.55.104.21','','empty','','','/eric/archives','','msnbot','1.1',1206505666),(973,'204.15.20.231','','empty','','','/eric/feed','','','',1206507551),(974,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206509002),(975,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206509504),(976,'204.15.20.226','','empty','','','/eric/feed','','','',1206511699),(977,'204.15.20.230','','empty','','','/eric/feed','','','',1206515802),(978,'65.55.104.21','','empty','','','/eric/category/adventure','','msnbot','1.1',1206517177),(979,'65.55.104.21','','empty','','','/eric/world/2008/old-bike','','msnbot','1.1',1206517236),(980,'65.55.104.21','','empty','','','/eric/portraits/2008/field-of-green','','msnbot','1.1',1206517239),(981,'65.55.209.78','','empty','','','/eric/?cat=6','','msnbot','1.1',1206517314),(982,'65.55.104.21','','empty','','','/eric/2008/03','','msnbot','1.1',1206518349),(983,'193.252.149.15','','fr','','','/eric/','Windows XP','Crawler/Search Engine','1.8.1',1206518472),(984,'204.15.20.224','','empty','','','/eric/feed','','','',1206520071),(985,'77.91.224.19','','empty','','','/eric/','Windows XP','Crawler/Search Engine','',1206521990),(986,'66.249.66.132','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','Googlebot','2.1',1206522456),(987,'65.55.104.21','','empty','','','/eric/packages','','msnbot','1.1',1206523588),(988,'204.15.20.225','','empty','','','/eric/feed','','','',1206524356),(989,'204.15.20.227','','empty','','','/eric/feed','','','',1206528814),(990,'204.15.20.228','','empty','','','/eric/feed','','','',1206533280),(991,'65.55.104.21','','empty','','','/eric/category/nature','','msnbot','1.1',1206536242),(992,'204.15.20.228','','empty','','','/eric/feed','','','',1206537649),(993,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206540984),(994,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206540985),(995,'210.22.158.132','','empty','','','/eric/','Windows XP','Internet Explorer','6.0',1206542474),(996,'204.15.20.227','','empty','','','/eric/feed','','','',1206542695),(997,'140.198.137.85','','en-us','google.com','http://www.google.com/search?hl=en&q=grandview+photography','/eric/','Windows XP','Internet Explorer','6.0',1206544400),(998,'140.198.137.85','','en-us','google.com','http://www.google.com/search?hl=en&q=grandview+photography','/eric/','Windows XP','Internet Explorer','6.0',1206544401),(999,'140.198.137.85','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206544406),(1000,'74.6.24.45','','empty','','','/eric/weddings/','','Yahoo! Slurp','',1206545181),(1001,'74.6.24.45','','empty','','','/eric/weddings','','Yahoo! Slurp','',1206545183),(1002,'130.13.174.168','','en-us','','','/eric/feed','','','',1206547129),(1003,'130.13.174.168','','en-us','','','/eric/','','','',1206547130),(1004,'204.15.20.227','','empty','','','/eric/feed','','','',1206547137),(1005,'204.15.20.227','','empty','','','/eric/feed','','','',1206547138),(1006,'72.201.21.85','','en-us','by124w.bay124.mail.live.com','http://by124w.bay124.mail.live.com/mail/ApplicationMain_12.4.0078.0228.aspx?culture=en-US&hash=2039984952','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Firefox','2.0.0.12',1206547359),(1007,'72.201.21.85','','en-us','by124w.bay124.mail.live.com','http://by124w.bay124.mail.live.com/mail/ApplicationMain_12.4.0078.0228.aspx?culture=en-US&hash=2039984952','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Firefox','2.0.0.12',1206547380),(1008,'72.201.21.85','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Firefox','2.0.0.12',1206547576),(1009,'204.15.20.231','','empty','','','/eric/feed','','','',1206547693),(1010,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206548630),(1011,'204.15.20.224','','empty','','','/eric/feed','','','',1206552471),(1012,'24.251.11.71','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206553319),(1013,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206553323),(1014,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Windows Vista','Internet Explorer','7.0',1206553424),(1015,'24.251.11.71','','empty','','','/eric/feed','','Mozilla','',1206553427),(1016,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows Vista','Internet Explorer','7.0',1206553430),(1017,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1206553441),(1018,'24.251.11.71','','empty','','','/eric/feed','','Mozilla','',1206553448),(1019,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206554614),(1020,'65.182.253.20','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206556557),(1021,'65.182.253.20','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206556565),(1022,'204.15.20.226','','empty','','','/eric/feed','','','',1206557552),(1023,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206561948),(1024,'204.15.20.230','','empty','','','/eric/feed','','','',1206562438),(1025,'77.91.224.19','','empty','','','/eric/','Windows XP','Crawler/Search Engine','',1206566576),(1026,'204.15.20.227','','empty','','','/eric/feed','','','',1206567175),(1027,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1206569933),(1028,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1206569933),(1029,'88.110.209.65','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1206571665),(1030,'88.110.209.65','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Firefox','2.0.0.13',1206571677),(1031,'204.15.20.227','','empty','','','/eric/feed','','','',1206572615),(1032,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206572651),(1033,'130.13.174.168','','en-us','','','/eric/feed','','','',1206572666),(1034,'130.13.174.168','','en-us','','','/eric/','','','',1206572667),(1035,'74.205.86.117','','empty','','','/eric/feed','','','',1206572675),(1036,'74.205.86.117','','empty','','','/eric/feed','','','',1206572677),(1037,'74.205.86.117','','empty','','','/eric/feed','','','',1206572678),(1038,'74.205.86.117','','empty','','','/eric/','','','',1206572678),(1039,'74.205.86.117','','empty','','','/eric/feed','','','',1206572679),(1040,'72.32.67.245','','empty','','','/eric/feed','','','',1206572687),(1041,'67.140.163.171','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows 2000','Internet Explorer','6.0',1206574634),(1042,'67.140.163.171','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows 2000','Internet Explorer','6.0',1206574637),(1043,'67.140.163.171','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Windows 2000','Internet Explorer','6.0',1206574649),(1044,'67.140.163.171','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Windows 2000','Internet Explorer','6.0',1206574660),(1045,'67.140.163.171','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows 2000','Internet Explorer','6.0',1206574679),(1046,'67.140.163.171','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/about','Windows 2000','Internet Explorer','6.0',1206574689),(1047,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1206576144),(1048,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206576817),(1049,'204.15.20.226','','empty','','','/eric/feed','','','',1206578222),(1050,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206580432),(1051,'70.176.147.75','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206582749),(1052,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206582754),(1053,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Firefox','2.0.0.13',1206582774),(1054,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Firefox','2.0.0.13',1206582781),(1055,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Firefox','2.0.0.13',1206582790),(1056,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1206582794),(1057,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/world/2008/wudhu','Windows XP','Firefox','2.0.0.13',1206582813),(1058,'70.176.147.75','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206582817),(1059,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206582817),(1060,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Firefox','2.0.0.13',1206582819),(1061,'70.176.147.75','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206582824),(1062,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206582824),(1063,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/lotus','Windows XP','Firefox','2.0.0.13',1206582826),(1064,'70.176.147.75','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206582831),(1065,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/lotus','Windows XP','Firefox','2.0.0.13',1206582836),(1066,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/lotus','Windows XP','Firefox','2.0.0.13',1206582862),(1067,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/lotus','Windows XP','Firefox','2.0.0.13',1206582872),(1068,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206582879),(1069,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206582930),(1070,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206582964),(1071,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206582982),(1072,'70.176.147.75','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206582993),(1073,'204.15.20.226','','empty','','','/eric/feed','','','',1206583718),(1074,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206584034),(1075,'74.129.175.62','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206587322),(1076,'74.129.175.62','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206587326),(1077,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206587636),(1078,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206587887),(1079,'204.15.20.229','','empty','','','/eric/feed','','','',1206589273),(1080,'72.208.227.154','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1206589524),(1081,'71.112.178.172','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','3.0',1206590077),(1082,'71.112.178.172','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','3.0',1206590083),(1083,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206591238),(1084,'204.15.20.226','','empty','','','/eric/feed','','','',1206594446),(1085,'205.143.221.185','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206594812),(1086,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206594834),(1087,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206594841),(1088,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/archives','Windows XP','Firefox','2.0.0.13',1206594844),(1089,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/archives','/eric/category/adventure','Windows XP','Firefox','2.0.0.13',1206594852),(1090,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/category/adventure','Windows XP','Firefox','2.0.0.13',1206594859),(1091,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/category/nature','Windows XP','Firefox','2.0.0.13',1206594871),(1092,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/nature/2008/lotus','Windows XP','Firefox','2.0.0.13',1206594876),(1093,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/category/nature','Windows XP','Firefox','2.0.0.13',1206594895),(1094,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/category/portraits','Windows XP','Firefox','2.0.0.13',1206594900),(1095,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/category/nature','Windows XP','Firefox','2.0.0.13',1206594914),(1096,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1206594918),(1097,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Firefox','2.0.0.13',1206594927),(1098,'205.143.221.185','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206594938),(1099,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206594939),(1100,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/archives','Windows XP','Firefox','2.0.0.13',1206594943),(1101,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/archives','/eric/category/world','Windows XP','Firefox','2.0.0.13',1206594947),(1102,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/world/2008/wudhu','Windows XP','Firefox','2.0.0.13',1206594952),(1103,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/world/2008/wudhu','/eric/world/2008/wudhu','Windows XP','Firefox','2.0.0.13',1206594956),(1104,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/archives','/eric/category/world','Windows XP','Firefox','2.0.0.13',1206594962),(1105,'205.143.221.185','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206594982),(1106,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206598443),(1107,'204.15.20.229','','empty','','','/eric/feed','','','',1206599246),(1108,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206602046),(1109,'204.15.20.229','','empty','','','/eric/feed','','','',1206604074),(1110,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206605649),(1111,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1206608911),(1112,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1206608914),(1113,'204.15.20.231','','empty','','','/eric/feed','','','',1206609262),(1114,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206609266),(1115,'65.55.209.84','','empty','','','/eric/?p=26','','msnbot','1.1',1206612633),(1116,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206612869),(1117,'218.241.222.130','','zh-cn','utombox.com','http://utombox.com/contact/','/eric/','Windows XP','Firefox','2.0.0.13',1206614299),(1118,'204.15.20.224','','empty','','','/eric/feed','','','',1206614337),(1119,'218.241.222.130','','zh-cn','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206614407),(1120,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206616486),(1121,'217.212.224.144','','empty','','','/eric/','','Crawler/Search Engine','',1206617703),(1122,'67.202.28.233','','empty','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','','Heritrix','1.12.1',1206617919),(1123,'67.202.28.233','','empty','grandviewphotographyaz.com','http://grandviewphotographyaz.com/robots.txt','/eric//robots.txt','','Heritrix','1.12.1',1206617930),(1124,'67.202.28.233','','empty','eden.org','http://grandviewphotographyaz.com//robots.txt','/eric//robots.txt/','','Heritrix','1.12.1',1206617943),(1125,'67.202.28.233','','empty','eden.org','http://grandviewphotographyaz.com/','/eric/xmlrpc.php','','Heritrix','1.12.1',1206617966),(1126,'67.202.28.233','','empty','eden.org','http://grandviewphotographyaz.com/','/eric/xmlrpc.php?rsd','','Heritrix','1.12.1',1206617976),(1127,'67.202.28.233','','empty','eden.org','http://grandviewphotographyaz.com/','/eric/feed','','Heritrix','1.12.1',1206617990),(1128,'204.15.20.229','','empty','','','/eric/feed','','','',1206619729),(1129,'77.99.147.120','','en-gb','','','/eric/','Windows XP','Firefox','2.0.0.12',1206619881),(1130,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206619887),(1131,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206619888),(1132,'77.99.147.120','','en-gb','','','/eric/','Windows XP','Firefox','2.0.0.12',1206620011),(1133,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206620012),(1134,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206620013),(1135,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/','/eric/about','Windows XP','Firefox','2.0.0.12',1206620019),(1136,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206620022),(1137,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206620089),(1138,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/about','/eric/','Windows XP','Firefox','2.0.0.12',1206620147),(1139,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206620149),(1140,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206620150),(1141,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Firefox','2.0.0.12',1206621442),(1142,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206621445),(1143,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/about','/eric/','Windows XP','Firefox','2.0.0.12',1206621446),(1144,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206621447),(1145,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206621448),(1146,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Firefox','2.0.0.12',1206621449),(1147,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206621451),(1148,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206621472),(1149,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206621474),(1150,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206621507),(1151,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206621509),(1152,'77.99.147.120','','en-gb','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Firefox','2.0.0.12',1206621509),(1153,'77.99.147.120','','en-gb','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206621510),(1154,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1206621821),(1155,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206623691),(1156,'204.15.20.227','','empty','','','/eric/feed','','','',1206624831),(1157,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206627294),(1158,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&aq=t&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1206629319),(1159,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&aq=t&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1206629319),(1160,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&aq=t&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1206629337),(1161,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206629338),(1162,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206629786),(1163,'204.15.20.230','','empty','','','/eric/feed','','','',1206629819),(1164,'72.208.227.154','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1206629944),(1165,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206630897),(1166,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206634499),(1167,'204.15.20.224','','empty','','','/eric/feed','','','',1206635827),(1168,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.12',1206638102),(1169,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206640351),(1170,'204.15.20.230','','empty','','','/eric/feed','','','',1206641791),(1171,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206643965),(1172,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206646995),(1173,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206646995),(1174,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/world','Mac OS X','Safari','525.13',1206647031),(1175,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/world/2008/old-bike','Mac OS X','Safari','525.13',1206647038),(1176,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206647119),(1177,'130.13.174.168','','en-us','','','/eric/feed','','','',1206647126),(1178,'130.13.174.168','','en-us','','','/eric/','','','',1206647127),(1179,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1206647139),(1180,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1206647144),(1181,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206647166),(1182,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206647167),(1183,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206647172),(1184,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206647173),(1185,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206647509),(1186,'65.54.165.76','','empty','','','/eric/','','msnbot','',1206647516),(1187,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1206647520),(1188,'65.54.165.76','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','msnbot','',1206647576),(1189,'66.167.134.184','','en-us','earthlink-help.com','http://earthlink-help.com/main?AddInType=Bdns&Version=1.3.1el&FailureMode=1&ParticipantID=xj6e3468k634hy3945zg3zkhfn7zfgf6&ClientLocation=us&FailedURI=http%3A%2F%2Feden.oreric%2F','/eric/','Windows XP','Internet Explorer','7.0',1206647741),(1190,'66.167.134.184','','en-us','earthlink-help.com','http://earthlink-help.com/main?AddInType=Bdns&Version=1.3.1el&FailureMode=1&ParticipantID=xj6e3468k634hy3945zg3zkhfn7zfgf6&ClientLocation=us&FailedURI=http%3A%2F%2Feden.oreric%2F','/eric/','Windows XP','Internet Explorer','7.0',1206647773),(1191,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206647775),(1192,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','7.0',1206647779),(1193,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','7.0',1206647787),(1194,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','7.0',1206647799),(1195,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','7.0',1206647800),(1196,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/category/weddings','Windows XP','Internet Explorer','7.0',1206647818),(1197,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','7.0',1206647830),(1198,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','7.0',1206647834),(1199,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/portfolio','Windows XP','Internet Explorer','7.0',1206647845),(1200,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/portfolio','Windows XP','Internet Explorer','7.0',1206647900),(1201,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/','Windows XP','Internet Explorer','7.0',1206647905),(1202,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206647910),(1203,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206647907),(1204,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Internet Explorer','7.0',1206647924),(1205,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Internet Explorer','7.0',1206647953),(1206,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/category/portraits','Windows XP','Internet Explorer','7.0',1206647963),(1207,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/category/world','Windows XP','Internet Explorer','7.0',1206647972),(1208,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/category/adventure','Windows XP','Internet Explorer','7.0',1206647976),(1209,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/category/nature','Windows XP','Internet Explorer','7.0',1206647980),(1210,'204.15.20.228','','empty','','','/eric/feed','','','',1206647981),(1211,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/packages','Windows XP','Internet Explorer','7.0',1206648001),(1212,'64.40.118.216','','empty','','','/eric/?feed=rss2','','','',1206648421),(1213,'64.40.118.216','','empty','','','/eric/','','','',1206648423),(1214,'64.40.118.216','','empty','','','/eric/','','','',1206648423),(1215,'216.39.58.78','','empty','','','/eric/','','Internet Explorer','5.5',1206648705),(1216,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206649295),(1217,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206651525),(1218,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1206654539),(1219,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1206654540),(1220,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206655140),(1221,'204.15.20.225','','empty','','','/eric/feed','','','',1206655730),(1222,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206658755),(1223,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1206661535),(1224,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1206661535),(1225,'72.208.227.154','','en','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Mac OS X','Safari','523.12',1206661549),(1226,'72.208.227.154','','en','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Mac OS X','Safari','523.12',1206661559),(1227,'72.208.227.154','','en','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/category/weddings','Mac OS X','Safari','523.12',1206661564),(1228,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206662371),(1229,'204.15.20.226','','empty','','','/eric/feed','','','',1206662659),(1230,'68.99.242.90','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206663430),(1231,'68.99.242.90','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206663431),(1232,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1206663999),(1233,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206665986),(1234,'204.15.20.225','','empty','','','/eric/feed','','','',1206669534),(1235,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206669601),(1236,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206670464),(1237,'63.229.117.11','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206673132),(1238,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206673144),(1239,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Firefox','2.0.0.12',1206673169),(1240,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206673216),(1241,'204.15.20.225','','empty','','','/eric/feed','','','',1206675972),(1242,'69.41.14.151','','empty','','','/eric/','','','',1206676089),(1243,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1206676804),(1244,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206676831),(1245,'69.41.14.151','','empty','','','/eric/packages','','','',1206680062),(1246,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206680446),(1247,'74.6.26.164','','empty','','','/eric/','','Yahoo! Slurp','',1206680854),(1248,'204.15.20.230','','empty','','','/eric/feed','','','',1206682228),(1249,'68.2.39.147','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/','Mac OS X','Safari','523.15',1206682952),(1250,'68.2.39.147','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Mac OS X','Safari','523.15',1206682966),(1251,'68.2.39.147','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Mac OS X','Safari','523.15',1206682968),(1252,'68.2.39.147','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/','Mac OS X','Safari','523.15',1206682971),(1253,'68.2.39.147','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/lotus','Mac OS X','Safari','523.15',1206682977),(1254,'68.2.39.147','','en-us','','','/eric/','Mac OS X','Safari','523.15',1206683018),(1255,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206684061),(1256,'68.99.242.90','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1206684416),(1257,'68.99.242.90','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206684421),(1258,'68.99.242.90','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206684421),(1259,'68.99.242.90','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Firefox','2.0.0.13',1206684481),(1260,'68.99.242.90','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206684483),(1261,'68.99.242.90','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206684531),(1262,'68.99.242.90','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206684533),(1263,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206687677),(1264,'204.15.20.230','','empty','','','/eric/feed','','','',1206687808),(1265,'72.37.171.52','','empty','','','/eric/','','','',1206688841),(1266,'72.37.171.52','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1206688843),(1267,'72.37.171.52','','empty','','','/eric/feed','','','',1206688846),(1268,'72.37.171.52','','empty','','','/eric/xmlrpc.php?rsd','','','',1206688846),(1269,'72.37.171.52','','empty','','','/eric/xmlrpc.php','','','',1206688846),(1270,'72.37.171.52','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206688851),(1271,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206691291),(1272,'204.15.20.228','','empty','','','/eric/feed','','','',1206692836),(1273,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1206694279),(1274,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206694906),(1275,'67.177.35.238','','empty','eden.org','http://grandviewphotographyaz.com/','/eric/','','Mozilla','',1206695527),(1276,'67.177.35.238','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206695530),(1277,'77.91.224.9','','empty','','','/eric/','Windows XP','Crawler/Search Engine','',1206696812),(1278,'204.15.20.227','','empty','','','/eric/feed','','','',1206697955),(1279,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206698521),(1280,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206702136),(1281,'204.15.20.231','','empty','','','/eric/feed','','','',1206703162),(1282,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206705752),(1283,'204.15.20.231','','empty','','','/eric/feed','','','',1206708254),(1284,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206709131),(1285,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206709367),(1286,'123.234.232.218','','empty','','','/eric/','','','',1206710446),(1287,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206712982),(1288,'204.15.20.231','','empty','','','/eric/feed','','','',1206713558),(1289,'81.149.136.243','','en-us','','','/eric/','Mac OS X','Firefox','2.0.0.13',1206713760),(1290,'81.149.136.243','','en-us','','','/eric/feed','Mac OS X','Firefox','2.0.0.13',1206713768),(1291,'81.149.136.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1206713769),(1292,'81.149.136.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Firefox','2.0.0.13',1206715386),(1293,'81.149.136.243','','en-us','','','/eric/feed','Mac OS X','Firefox','2.0.0.13',1206715389),(1294,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206716597),(1295,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206716597),(1296,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206717080),(1297,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1206717092),(1298,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1206717102),(1299,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206717153),(1300,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206717154),(1301,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206717505),(1302,'65.54.165.76','','empty','','','/eric/','','msnbot','',1206717512),(1303,'65.54.165.76','','empty','','','/eric/feed','','msnbot','',1206717553),(1304,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206717593),(1305,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206717594),(1306,'66.249.66.132','','empty','','','/eric/nature/2008/grand-tetons','','Googlebot','2.1',1206717655),(1307,'67.202.34.117','','empty','','','/eric/','','','',1206717761),(1308,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206718374),(1309,'65.54.165.76','','empty','','','/eric/nature/2008/grand-tetons','','msnbot','',1206718925),(1310,'204.15.20.226','','empty','','','/eric/feed','','','',1206719373),(1311,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206720212),(1312,'64.211.43.146','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206720527),(1313,'64.211.43.146','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206720538),(1314,'143.182.124.3','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206722555),(1315,'143.182.124.3','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206722562),(1316,'143.182.124.3','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206722588),(1317,'143.182.124.3','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','6.0',1206722626),(1318,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206723827),(1319,'204.15.20.224','','empty','','','/eric/feed','','','',1206724725),(1320,'130.13.174.168','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9544294196&ref=mf','/eric/nature/2008/grand-tetons','Mac OS X','Safari','525.13',1206724832),(1321,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/grand-tetons','/eric/','Mac OS X','Safari','525.13',1206724842),(1322,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/nature','Mac OS X','Safari','525.13',1206724855),(1323,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/nature/2008/grand-tetons','Mac OS X','Safari','525.13',1206724861),(1324,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1206724914),(1325,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1206724916),(1326,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1206724916),(1327,'66.249.66.132','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206724991),(1328,'66.249.66.132','','empty','','','/eric/','','Googlebot','2.1',1206724992),(1329,'65.54.165.81','','empty','','','/eric/','','msnbot','',1206725169),(1330,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1206725172),(1331,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1206725189),(1332,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1206725190),(1333,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1206725413),(1334,'67.202.34.117','','empty','','','/eric/','','','',1206725447),(1335,'65.54.165.81','','empty','','','/eric/nature/2008/grand-tetons','','msnbot','',1206725472),(1336,'64.40.117.108','','empty','','','/eric/?feed=rss2','','','',1206726371),(1337,'64.40.117.108','','empty','','','/eric/','','','',1206726372),(1338,'64.40.117.108','','empty','','','/eric/','','','',1206726373),(1339,'64.40.117.108','','empty','','','/eric/nature/2008/grand-tetons','','','',1206726376),(1340,'64.40.117.108','','empty','','','/eric/nature/2008/grand-tetons','','','',1206726376),(1341,'64.21.98.206','','empty','','','/eric/','','','',1206726693),(1342,'64.21.98.206','','empty','','','/eric/feed','','','',1206726694),(1343,'64.21.98.196','','empty','','','/eric/feed','','','',1206726765),(1344,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206727443),(1345,'64.41.145.193','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1206727449),(1346,'58.62.15.241','','zh-cn','utombox.com','http://utombox.com/contact/','/eric/','Windows Vista','Internet Explorer','7.0',1206727553),(1347,'58.62.15.241','','zh-cn','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206727574),(1348,'70.177.12.72','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Flock','1.1',1206729678),(1349,'70.177.12.72','','en-us','','','/eric/feed','Mac OS X','Flock','1.1',1206729681),(1350,'70.177.12.72','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Flock','1.1',1206729685),(1351,'204.15.20.229','','empty','','','/eric/feed','','','',1206730111),(1352,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206731058),(1353,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206731653),(1354,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206734673),(1355,'204.15.20.229','','empty','','','/eric/feed','','','',1206735514),(1356,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206738289),(1357,'204.15.20.227','','empty','','','/eric/feed','','','',1206740768),(1358,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206741890),(1359,'68.108.215.110','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206742761),(1360,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206742765),(1361,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1206742771),(1362,'68.108.215.110','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206742779),(1363,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206742780),(1364,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206742795),(1365,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206742860),(1366,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206742902),(1367,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206742919),(1368,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206742930),(1369,'68.108.215.110','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206743130),(1370,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206743131),(1371,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Firefox','2.0.0.13',1206743143),(1372,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1206743147),(1373,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206743151),(1374,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206743160),(1375,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206745491),(1376,'204.15.20.224','','empty','','','/eric/feed','','','',1206745775),(1377,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206747624),(1378,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206749092),(1379,'204.15.20.224','','empty','','','/eric/feed','','','',1206750721),(1380,'98.198.160.211','','en-us','','','/eric/','Mac OS X','Firefox','2.0.0.8',1206751904),(1381,'98.198.160.211','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.8',1206751911),(1382,'98.198.160.211','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/sleeping-under-the-stars','Mac OS X','Firefox','2.0.0.8',1206751933),(1383,'98.198.160.211','','en-us','','','/eric/','Mac OS X','Firefox','2.0.0.8',1206751942),(1384,'98.198.160.211','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.8',1206751943),(1385,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206752693),(1386,'204.15.20.231','','empty','','','/eric/feed','','','',1206755859),(1387,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206756295),(1388,'204.15.20.224','','empty','','','/eric/feed','','','',1206760664),(1389,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1206764966),(1390,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1206764966),(1391,'204.15.20.228','','empty','','','/eric/feed','','','',1206765669),(1392,'72.208.175.183','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206770062),(1393,'72.208.175.183','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206770068),(1394,'72.208.175.183','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Firefox','2.0.0.13',1206770071),(1395,'72.208.175.183','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1206770113),(1396,'72.208.175.183','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/about','Windows XP','Firefox','2.0.0.13',1206770134),(1397,'72.208.175.183','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206770145),(1398,'72.208.175.183','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/','Windows XP','Firefox','2.0.0.13',1206770149),(1399,'72.208.175.183','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206770151),(1400,'72.208.175.183','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Windows XP','Firefox','2.0.0.13',1206770163),(1401,'204.15.20.231','','empty','','','/eric/feed','','','',1206770637),(1402,'204.15.20.229','','empty','','','/eric/feed','','','',1206775542),(1403,'204.15.20.230','','empty','','','/eric/feed','','','',1206780283),(1404,'204.15.20.231','','empty','','','/eric/feed','','','',1206785219),(1405,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206786734),(1406,'204.15.20.225','','empty','','','/eric/feed','','','',1206790354),(1407,'204.15.20.225','','empty','','','/eric/feed','','','',1206795300),(1408,'204.15.20.228','','empty','','','/eric/feed','','','',1206800450),(1409,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&aq=t&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1206804182),(1410,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&aq=t&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1206804183),(1411,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1206804189),(1412,'204.15.20.231','','empty','','','/eric/feed','','','',1206805411),(1413,'74.6.21.122','','empty','','','/eric/world/2008/old-bike','','Yahoo! Slurp','',1206806134),(1414,'74.6.17.218','','empty','','','/eric/category/nature','','Yahoo! Slurp','',1206806180),(1415,'74.6.31.229','','empty','','','/eric/nature/2008/grand-tetons','','Yahoo! Slurp','',1206806655),(1416,'74.6.23.35','','empty','','','/eric/portfolio/','','Yahoo! Slurp','',1206807937),(1417,'74.6.23.35','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1206807938),(1418,'74.6.26.110','','empty','','','/eric/world/','','Yahoo! Slurp','',1206808071),(1419,'74.6.26.110','','empty','','','/eric/world','','Yahoo! Slurp','',1206808071),(1420,'204.15.20.227','','empty','','','/eric/feed','','','',1206810447),(1421,'91.42.205.169','','empty','eden.org','http://grandviewphotographyaz.com','/eric/','Windows Vista','Internet Explorer','7.0',1206814138),(1422,'204.15.20.227','','empty','','','/eric/feed','','','',1206815758),(1423,'74.6.7.94','','empty','','','/eric/world/2008/','','Yahoo! Slurp','',1206815850),(1424,'74.6.7.94','','empty','','','/eric/world/2008','','Yahoo! Slurp','',1206815850),(1425,'204.15.20.230','','empty','','','/eric/feed','','','',1206820738),(1426,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206824858),(1427,'204.15.20.228','','empty','','','/eric/feed','','','',1206825687),(1428,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1206826397),(1429,'65.55.165.112','','en-us','search.live.com','http://search.live.com/results.aspx?q=taken&mrt=en-us&FORM=LIVSOP','/eric/','Windows 2003','Internet Explorer','7.0',1206826749),(1430,'204.15.20.224','','empty','','','/eric/feed','','','',1206830755),(1431,'74.6.23.178','','empty','','','/eric/archives','','Yahoo! Slurp','',1206834904),(1432,'74.6.16.177','','empty','','','/eric/category/portraits','','Yahoo! Slurp','',1206834944),(1433,'74.6.27.57','','empty','','','/eric/category/world','','Yahoo! Slurp','',1206834970),(1434,'74.6.24.53','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','Yahoo! Slurp','',1206835003),(1435,'74.6.25.88','','empty','','','/eric/world/2008/wudhu','','Yahoo! Slurp','',1206835010),(1436,'74.6.28.159','','empty','','','/eric/about','','Yahoo! Slurp','',1206835011),(1437,'74.6.19.32','','empty','','','/eric/2008/03','','Yahoo! Slurp','',1206835026),(1438,'74.6.21.62','','empty','','','/eric/portraits/2008/glowing','','Yahoo! Slurp','',1206835148),(1439,'74.6.18.54','','empty','','','/eric/adventure/2008/','','Yahoo! Slurp','',1206835160),(1440,'74.6.18.54','','empty','','','/eric/adventure/2008','','Yahoo! Slurp','',1206835161),(1441,'74.6.9.162','','empty','','','/eric/portraits/2008/','','Yahoo! Slurp','',1206835534),(1442,'74.6.9.162','','empty','','','/eric/portraits/2008','','Yahoo! Slurp','',1206835537),(1443,'204.15.20.224','','empty','','','/eric/feed','','','',1206835575),(1444,'74.6.8.38','','empty','','','/eric/adventure/','','Yahoo! Slurp','',1206836571),(1445,'74.6.8.38','','empty','','','/eric/adventure','','Yahoo! Slurp','',1206836571),(1446,'24.0.137.246','','en-us','','','/eric/','Windows Vista','Firefox','2.0.0.13',1206838891),(1447,'24.0.137.246','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206838895),(1448,'24.0.137.246','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Firefox','2.0.0.13',1206838921),(1449,'24.0.137.246','','en-us','','','/eric/','Windows Vista','Firefox','2.0.0.13',1206838929),(1450,'24.0.137.246','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206838930),(1451,'24.0.137.246','','en-us','','','/eric/','Windows Vista','Firefox','2.0.0.13',1206838945),(1452,'24.0.137.246','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206838946),(1453,'74.6.24.216','','empty','','','/eric/category/weddings','','Yahoo! Slurp','',1206839983),(1454,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1206840388),(1455,'204.15.20.231','','empty','','','/eric/feed','','','',1206840542),(1456,'74.6.25.246','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1206842206),(1457,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1206843188),(1458,'204.15.20.227','','empty','','','/eric/feed','','','',1206845522),(1459,'74.6.25.37','','empty','','','/eric/portraits/2008/field-of-green','','Yahoo! Slurp','',1206848240),(1460,'71.209.72.163','','en-us','','','/eric/','Windows XP','Internet Explorer','7.0',1206849874),(1461,'71.209.72.163','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206849881),(1462,'204.15.20.229','','empty','','','/eric/feed','','','',1206850307),(1463,'74.6.20.170','','empty','','','/eric/category/adventure','','Yahoo! Slurp','',1206852622),(1464,'74.6.20.253','','empty','','','/eric/packages','','Yahoo! Slurp','',1206854634),(1465,'204.15.20.228','','empty','','','/eric/feed','','','',1206855417),(1466,'65.54.165.41','','empty','','','/eric/','','msnbot','1.1',1206858133),(1467,'74.6.25.40','','empty','','','/eric/nature/2008/lotus','','Yahoo! Slurp','',1206858245),(1468,'204.15.20.225','','empty','','','/eric/feed','','','',1206860367),(1469,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1206864476),(1470,'204.15.20.229','','empty','','','/eric/feed','','','',1206865393),(1471,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206866237),(1472,'85.124.22.177','','empty','eden.org','http://grandviewphotographyaz.com','/eric/','','Heritrix','1.12.0',1206866447),(1473,'74.6.20.59','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','Yahoo! Slurp','',1206869623),(1474,'204.15.20.229','','empty','','','/eric/feed','','','',1206870332),(1475,'63.229.117.11','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206874842),(1476,'63.229.117.11','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.12',1206874845),(1477,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1206874853),(1478,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206874908),(1479,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206874990),(1480,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206874997),(1481,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206874999),(1482,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1206875099),(1483,'63.229.117.11','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/about','Windows XP','Firefox','2.0.0.12',1206875104),(1484,'204.15.20.229','','empty','','','/eric/feed','','','',1206875496),(1485,'204.15.20.229','','empty','','','/eric/feed','','','',1206880696),(1486,'69.13.112.144','','empty','','','/eric/','','','',1206880917),(1487,'69.13.112.144','','empty','','','/eric/','','','',1206880917),(1488,'69.13.112.144','','empty','','','/eric/portfolio','','','',1206880919),(1489,'69.13.112.144','','empty','','','/eric/portfolio','','','',1206880923),(1490,'69.13.112.144','','empty','','','/eric/portfolio','','','',1206880924),(1491,'69.13.112.144','','empty','','','/eric/portfolio','','','',1206880925),(1492,'69.13.112.144','','empty','','','/eric/about','','','',1206880925),(1493,'74.6.17.245','','empty','','','/eric/nature/2008/','','Yahoo! Slurp','',1206882162),(1494,'74.6.17.245','','empty','','','/eric/nature/2008','','Yahoo! Slurp','',1206882163),(1495,'204.15.20.224','','empty','','','/eric/feed','','','',1206885756),(1496,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206889987),(1497,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206889993),(1498,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?s=frontiers','Windows XP','Internet Explorer','7.0',1206890026),(1499,'204.15.20.229','','empty','','','/eric/feed','','','',1206891032),(1500,'65.55.104.21','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','msnbot','1.1',1206891288),(1501,'65.55.104.21','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','msnbot','1.1',1206891289),(1502,'195.86.22.60','','empty','','','/eric/feed','','','',1206893410),(1503,'195.86.22.60','','empty','','','/eric/xmlrpc.php','','','',1206893411),(1504,'195.86.22.60','','empty','','','/eric/xmlrpc.php?rsd','','','',1206893411),(1505,'195.86.22.60','','empty','','','/eric/feed/','','','',1206893412),(1506,'195.86.22.60','','empty','','','/eric/feed','','','',1206893413),(1507,'195.86.22.60','','empty','','','/eric/feed/','','','',1206893413),(1508,'195.86.22.60','','empty','','','/eric/feed/','','Crawler/Search Engine','',1206893414),(1509,'72.208.227.154','','en-us','dashboard.wordpress.com','http://dashboard.wordpress.com/wp-admin/index.php?page=stats&unit=1&blog=3263148','/eric/portfolio','Mac OS X','Safari','525.13',1206896223),(1510,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/','Mac OS X','Safari','525.13',1206896233),(1511,'204.15.20.227','','empty','','','/eric/feed','','','',1206896246),(1512,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206897301),(1513,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206899273),(1514,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206899279),(1515,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206899304),(1516,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206899304),(1517,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206899343),(1518,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1206899344),(1519,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206899850),(1520,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206899857),(1521,'204.15.20.226','','empty','','','/eric/feed','','','',1206901301),(1522,'66.249.85.132','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206904786),(1523,'66.249.85.132','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206904786),(1524,'66.249.85.132','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/world/2008/wudhu','Windows XP','Internet Explorer','7.0',1206904787),(1525,'66.249.85.132','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206904792),(1526,'69.183.207.133','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1206904838),(1527,'69.183.207.133','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1206904843),(1528,'69.183.207.133','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1206904850),(1529,'69.183.207.133','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206904861),(1530,'69.183.207.133','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1206904869),(1531,'69.183.207.133','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206904885),(1532,'204.15.20.224','','empty','','','/eric/feed','','','',1206906697),(1533,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206908104),(1534,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206908108),(1535,'123.234.244.232','','empty','','','/eric/','','','',1206908134),(1536,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206909216),(1537,'204.15.20.225','','empty','','','/eric/feed','','','',1206911798),(1538,'204.15.20.229','','empty','','','/eric/feed','','','',1206916917),(1539,'71.36.182.120','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919677),(1540,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919689),(1541,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919756),(1542,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919758),(1543,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919776),(1544,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919778),(1545,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206919788),(1546,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206919791),(1547,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919805),(1548,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919806),(1549,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1206919810),(1550,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919815),(1551,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206919816),(1552,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206919844),(1553,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206919845),(1554,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206919914),(1555,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206919915),(1556,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1206919917),(1557,'204.15.20.228','','empty','','','/eric/feed','','','',1206921767),(1558,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206921846),(1559,'74.6.20.244','','empty','','','/eric/nature/','','Yahoo! Slurp','',1206922127),(1560,'74.6.20.244','','empty','','','/eric/nature','','Yahoo! Slurp','',1206922127),(1561,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206924755),(1562,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206925627),(1563,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206925631),(1564,'69.41.14.150','','empty','','','/eric/','','','',1206925639),(1565,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','7.0',1206925643),(1566,'69.41.14.150','','empty','','','/eric/category/weddings','','','',1206925644),(1567,'72.30.179.243','','empty','','','/eric/feed','','Yahoo! Slurp','',1206926438),(1568,'204.15.20.224','','empty','','','/eric/feed','','','',1206926883),(1569,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1206927000),(1570,'68.228.59.201','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.15',1206927016),(1571,'68.228.59.201','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Mac OS X','Safari','523.15',1206927026),(1572,'68.228.59.201','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Mac OS X','Safari','523.15',1206927085),(1573,'68.228.59.201','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Mac OS X','Safari','523.15',1206927134),(1574,'74.6.17.232','','empty','','','/eric/contact','','Yahoo! Slurp','',1206927193),(1575,'68.228.59.201','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.15',1206927202),(1576,'68.228.59.201','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.15',1206927300),(1577,'68.228.59.201','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.15',1206927378),(1578,'68.228.59.201','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.15',1206927388),(1579,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206929235),(1580,'71.36.182.120','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206930454),(1581,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206930457),(1582,'71.36.182.120','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206930614),(1583,'71.36.182.120','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206930617),(1584,'24.33.83.37','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206930696),(1585,'24.33.83.37','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206930698),(1586,'74.6.21.28','','empty','','','/eric/portraits/','','Yahoo! Slurp','',1206931716),(1587,'74.6.21.28','','empty','','','/eric/portraits','','Yahoo! Slurp','',1206931717),(1588,'204.15.20.224','','empty','','','/eric/feed','','','',1206931876),(1589,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206934523),(1590,'204.15.20.227','','empty','','','/eric/feed','','','',1206936898),(1591,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206938138),(1592,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206941018),(1593,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206941020),(1594,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','7.0',1206941031),(1595,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/category/world','Windows XP','Internet Explorer','7.0',1206941047),(1596,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/world/2008/old-bike','Windows XP','Internet Explorer','7.0',1206941055),(1597,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206941754),(1598,'204.15.20.229','','empty','','','/eric/feed','','','',1206941928),(1599,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206945369),(1600,'204.15.20.226','','empty','','','/eric/feed','','','',1206946808),(1601,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206948984),(1602,'204.15.20.231','','empty','','','/eric/feed','','','',1206951870),(1603,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206952128),(1604,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206952598),(1605,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206956213),(1606,'65.55.209.78','','empty','','','/eric/?cat=3','','msnbot','1.1',1206956406),(1607,'204.15.20.228','','empty','','','/eric/feed','','','',1206956681),(1608,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206959828),(1609,'204.15.20.228','','empty','','','/eric/feed','','','',1206962331),(1610,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206963443),(1611,'70.249.248.143','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206966902),(1612,'70.249.248.143','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206966945),(1613,'70.249.248.143','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/sleeping-under-the-stars','Mac OS X','Safari','525.13',1206966960),(1614,'70.249.248.143','','en-us','eden.org','http://grandviewphotographyaz.com/adventure/2008/sleeping-under-the-stars','/eric/category/adventure','Mac OS X','Safari','525.13',1206966970),(1615,'70.249.248.143','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/adventure/2008/sleeping-under-the-stars','Mac OS X','Safari','525.13',1206966980),(1616,'70.249.248.143','','en-us','eden.org','http://grandviewphotographyaz.com/adventure/2008/sleeping-under-the-stars','/eric/category/adventure','Mac OS X','Safari','525.13',1206966991),(1617,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206967058),(1618,'70.249.248.143','','en-us','','','/eric/category/adventure','Mac OS X','Safari','525.13',1206967059),(1619,'70.249.248.143','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1206967181),(1620,'70.249.248.143','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1206967188),(1621,'70.249.248.143','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Safari','525.13',1206967193),(1622,'70.249.248.143','','en-us','','','/eric/portfolio','Mac OS X','Safari','525.13',1206967238),(1623,'204.15.20.224','','empty','','','/eric/feed','','','',1206967491),(1624,'69.41.14.150','','empty','','','/eric/','','','',1206969841),(1625,'69.41.14.150','','empty','','','/eric/','','','',1206969842),(1626,'69.41.14.150','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','','',1206969981),(1627,'69.41.14.150','','empty','','','/eric/category/adventure','','','',1206969982),(1628,'69.41.14.150','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','','',1206969988),(1629,'69.41.14.150','','empty','','','/eric/category/adventure','','','',1206969989),(1630,'69.41.14.150','','empty','','','/eric/category/adventure','','','',1206969997),(1631,'69.41.14.150','','empty','','','/eric/portfolio','','','',1206970024),(1632,'69.41.14.150','','empty','','','/eric/portfolio','','','',1206970025),(1633,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206970674),(1634,'68.3.71.67','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206971405),(1635,'68.3.71.67','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1206971426),(1636,'204.15.20.228','','empty','','','/eric/feed','','','',1206972616),(1637,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206974289),(1638,'68.98.118.205','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.15',1206974920),(1639,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206976043),(1640,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1206976446),(1641,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1206976446),(1642,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206976466),(1643,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206976486),(1644,'72.204.245.224','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1206976490),(1645,'72.204.245.224','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206976492),(1646,'72.232.153.33','','empty','','','/eric/xmlrpc.php','','','',1206977381),(1647,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206977904),(1648,'129.219.242.179','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206978056),(1649,'129.219.242.179','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206978061),(1650,'204.15.20.228','','empty','','','/eric/feed','','','',1206978237),(1651,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206981519),(1652,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206982257),(1653,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206982262),(1654,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206982293),(1655,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206982294),(1656,'204.15.20.229','','empty','','','/eric/feed','','','',1206984351),(1657,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206985135),(1658,'130.13.174.168','','en','eden.org','http://www.grandviewphotographyaz.com/blog/?page_id=15','/eric/','Mac OS X','Safari','523.12.2',1206985549),(1659,'130.13.174.168','','en','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.12.2',1206985570),(1660,'130.13.174.168','','en','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Safari','523.12.2',1206985586),(1661,'130.13.174.168','','en','','','/eric/','Mac OS X','Safari','523.12.2',1206985676),(1662,'130.13.174.168','','en','eden.org','http://grandviewphotographyaz.com/','/eric/category/world','Mac OS X','Safari','523.12.2',1206985711),(1663,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206986545),(1664,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1206986549),(1665,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1206986565),(1666,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/?s=frontiers+banquet','Windows XP','Firefox','2.0.0.13',1206986577),(1667,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206988923),(1668,'204.15.20.225','','empty','','','/eric/feed','','','',1206990035),(1669,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206991395),(1670,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206991833),(1671,'72.208.227.154','','en-us','','','/eric/feed','','','',1206992002),(1672,'72.208.227.154','','en-us','','','/eric/','','','',1206992004),(1673,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1206992143),(1674,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206992539),(1675,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1206993769),(1676,'204.15.20.229','','empty','','','/eric/feed','','','',1206995849),(1677,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206996155),(1678,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206999490),(1679,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206999495),(1680,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','7.0',1206999506),(1681,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206999539),(1682,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1206999541),(1683,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Windows XP','Internet Explorer','7.0',1206999612),(1684,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1206999755),(1685,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207000519),(1686,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207000520),(1687,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207000691),(1688,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207000693),(1689,'204.15.20.229','','empty','','','/eric/feed','','','',1207001310),(1690,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207001420),(1691,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207001422),(1692,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207001492),(1693,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207001493),(1694,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207001556),(1695,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207001557),(1696,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207001565),(1697,'69.41.14.150','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','','',1207002354),(1698,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207003238),(1699,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207003239),(1700,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207003370),(1701,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207004093),(1702,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207004109),(1703,'204.15.20.227','','empty','','','/eric/feed','','','',1207006729),(1704,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207006985),(1705,'74.6.24.217','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','Yahoo! Slurp','',1207008625),(1706,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207010050),(1707,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207010053),(1708,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207010081),(1709,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207010082),(1710,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207010179),(1711,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207010180),(1712,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207010187),(1713,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207010189),(1714,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207010227),(1715,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207010228),(1716,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows Vista','Firefox','2.0.0.13',1207010230),(1717,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/category/world','Windows Vista','Firefox','2.0.0.13',1207010234),(1718,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/category/portraits','Windows Vista','Firefox','2.0.0.13',1207010240),(1719,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portraits/2008/field-of-green','Windows Vista','Firefox','2.0.0.13',1207010255),(1720,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207010388),(1721,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207010389),(1722,'71.36.182.120','','en-us','','','/eric/packages','Windows XP','Firefox','2.0.0.13',1207010395),(1723,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207010417),(1724,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207010483),(1725,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207010484),(1726,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Windows Vista','Firefox','2.0.0.13',1207010501),(1727,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows Vista','Firefox','2.0.0.13',1207010508),(1728,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/packages','Windows Vista','Firefox','2.0.0.13',1207010518),(1729,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207010601),(1730,'204.15.20.226','','empty','','','/eric/feed','','','',1207011597),(1731,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207011653),(1732,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207011655),(1733,'24.251.36.173','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207012754),(1734,'24.251.36.173','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207012758),(1735,'24.251.36.173','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207012796),(1736,'24.251.36.173','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207012797),(1737,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1207013587),(1738,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207014216),(1739,'204.15.20.231','','empty','','','/eric/feed','','','',1207016950),(1740,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207017163),(1741,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207017169),(1742,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207017194),(1743,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207017194),(1744,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1207017880),(1745,'65.55.165.42','','en-us','search.live.com','http://search.live.com/results.aspx?q=taken&mrt=en-us&FORM=LIVSOP','/eric/','Windows 2003','Internet Explorer','7.0',1207017991),(1746,'168.103.59.158','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207021675),(1747,'168.103.59.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207021735),(1748,'168.103.59.158','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207021948),(1749,'168.103.59.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207021949),(1750,'168.103.59.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/archives','Windows XP','Internet Explorer','7.0',1207022013),(1751,'168.103.59.158','','en-us','eden.org','http://grandviewphotographyaz.com/archives','/eric/2008/03','Windows XP','Internet Explorer','7.0',1207022022),(1752,'204.15.20.227','','empty','','','/eric/feed','','','',1207022221),(1753,'66.249.72.203','','empty','','','/eric/feed','','Googlebot','2.1',1207023122),(1754,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207024044),(1755,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207024047),(1756,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207024064),(1757,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207024158),(1758,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/packages','Windows XP','Internet Explorer','7.0',1207024162),(1759,'68.2.39.147','','en-us','','','/eric/','Mac OS X','Safari','523.15',1207026884),(1760,'68.2.39.147','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Mac OS X','Safari','523.15',1207026896),(1761,'68.2.39.147','','en-us','','','/eric/','Mac OS X','Safari','523.15',1207026926),(1762,'68.2.39.147','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/carleybryan-wedding1','Mac OS X','Safari','523.15',1207026931),(1763,'204.15.20.225','','empty','','','/eric/feed','','','',1207027183),(1764,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207029042),(1765,'71.37.206.167','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207029184),(1766,'71.37.206.167','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207029192),(1767,'67.195.51.189','','empty','','','/eric/','','Yahoo! Slurp','',1207029265),(1768,'71.37.206.167','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207029279),(1769,'71.37.206.167','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207029280),(1770,'71.37.206.167','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207029284),(1771,'66.249.72.203','','empty','','','/eric/archives','','Googlebot','2.1',1207031260),(1772,'204.15.20.227','','empty','','','/eric/feed','','','',1207032249),(1773,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207033599),(1774,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207033603),(1775,'66.249.72.203','','empty','','','/eric/category/world','','Googlebot','2.1',1207034005),(1776,'66.249.72.203','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','Googlebot','2.1',1207034536),(1777,'204.15.20.230','','empty','','','/eric/feed','','','',1207037131),(1778,'66.249.72.203','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','Googlebot','2.1',1207037424),(1779,'66.249.72.203','','empty','','','/eric/contact','','Googlebot','2.1',1207037997),(1780,'66.249.72.203','','empty','','','/eric/portraits/2008/glowing','','Googlebot','2.1',1207038270),(1781,'66.249.72.203','','empty','','','/eric/portraits/2008/field-of-green','','Googlebot','2.1',1207039897),(1782,'204.15.20.227','','empty','','','/eric/feed','','','',1207042744),(1783,'204.15.20.229','','empty','','','/eric/feed','','','',1207048027),(1784,'65.54.165.41','','empty','','','/eric/','','msnbot','1.1',1207050921),(1785,'204.15.20.231','','empty','','','/eric/feed','','','',1207053347),(1786,'65.55.209.78','','empty','','','/eric/?page_id=20','','msnbot','1.1',1207054478),(1787,'65.54.165.41','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','msnbot','1.1',1207056413),(1788,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1207057097),(1789,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1207057098),(1790,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1207058101),(1791,'204.15.20.230','','empty','','','/eric/feed','','','',1207058700),(1792,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207058700),(1793,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207060166),(1794,'65.46.48.194','','empty','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','','','',1207060166),(1795,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1207060183),(1796,'66.196.99.197','','empty','','','/eric/','','Internet Explorer','5.5',1207060203),(1797,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207060228),(1798,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207060229),(1799,'66.249.72.203','','empty','','','/eric/nature/2008/the-hills-are-alive','','Googlebot','2.1',1207060484),(1800,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207060565),(1801,'65.54.165.41','','empty','','','/eric/about','','msnbot','1.1',1207060584),(1802,'65.54.165.41','','empty','','','/eric/category/weddings','','msnbot','1.1',1207060586),(1803,'65.54.165.41','','empty','','','/eric/world/2008/old-bike','','msnbot','1.1',1207060586),(1804,'65.54.165.41','','empty','','','/eric/category/world','','msnbot','1.1',1207060588),(1805,'65.54.165.41','','empty','','','/eric/world/2008/wudhu','','msnbot','1.1',1207060589),(1806,'65.54.165.41','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','msnbot','1.1',1207060591),(1807,'65.54.165.41','','empty','','','/eric/portraits/2008/glowing','','msnbot','1.1',1207060623),(1808,'65.54.165.41','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','msnbot','1.1',1207060624),(1809,'65.54.165.41','','empty','','','/eric/category/nature','','msnbot','1.1',1207060627),(1810,'66.249.72.203','','empty','','','/eric/nature/2008/the-hills-are-alive','','Googlebot','2.1',1207060627),(1811,'65.54.165.41','','empty','','','/eric/packages','','msnbot','1.1',1207060630),(1812,'65.54.165.41','','empty','','','/eric/nature/2008/grand-tetons','','msnbot','1.1',1207060631),(1813,'65.54.165.41','','empty','','','/eric/feed','','msnbot','1.1',1207060633),(1814,'65.54.165.41','','empty','','','/eric/category/adventure','','msnbot','1.1',1207060633),(1815,'65.54.165.41','','empty','','','/eric/archives','','msnbot','1.1',1207060636),(1816,'65.54.165.41','','empty','','','/eric/category/portraits','','msnbot','1.1',1207060637),(1817,'65.54.165.41','','empty','','','/eric/portfolio','','msnbot','1.1',1207060639),(1818,'64.40.118.220','','empty','','','/eric/?feed=rss2','','','',1207060694),(1819,'64.40.118.220','','empty','','','/eric/','','','',1207060695),(1820,'64.40.118.220','','empty','','','/eric/','','','',1207060696),(1821,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207060698),(1822,'64.40.118.220','','empty','','','/eric/nature/2008/the-hills-are-alive','','','',1207060698),(1823,'64.40.118.220','','empty','','','/eric/nature/2008/the-hills-are-alive','','','',1207060698),(1824,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207060699),(1825,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207060797),(1826,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207060802),(1827,'67.111.14.204','','empty','','','/eric/','','Technoratibot','0.7',1207060804),(1828,'67.111.14.204','','empty','','','/eric/feed','','Technoratibot','0.7',1207060805),(1829,'65.54.165.81','','empty','','','/eric/nature/2008/the-hills-are-alive','','msnbot','',1207061158),(1830,'67.129.219.136','','empty','','','/eric/nature/2008/the-hills-are-alive','','Internet Explorer','5.5',1207061166),(1831,'64.41.145.66','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207061424),(1832,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207063160),(1833,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207063161),(1834,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1207063163),(1835,'129.219.169.135','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207063219),(1836,'66.196.99.196','','empty','','','/eric/','','Internet Explorer','5.5',1207063219),(1837,'129.219.169.135','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207063223),(1838,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207063244),(1839,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207063244),(1840,'129.219.169.135','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207063249),(1841,'129.219.169.135','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207063250),(1842,'66.249.72.203','','empty','','','/eric/weddings/2008/snow-white','','Googlebot','2.1',1207063488),(1843,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207063562),(1844,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207063600),(1845,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207063606),(1846,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1207063631),(1847,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1207063632),(1848,'65.54.165.81','','empty','','','/eric/weddings/2008/snow-white','','msnbot','',1207063903),(1849,'204.15.20.229','','empty','','','/eric/feed','','','',1207064276),(1850,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207065354),(1851,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207065557),(1852,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1207065559),(1853,'66.196.99.197','','empty','','','/eric/','','Internet Explorer','5.5',1207065599),(1854,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207065635),(1855,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207065636),(1856,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1207065811),(1857,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1207065812),(1858,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207065873),(1859,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207065956),(1860,'64.41.145.111','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207065988),(1861,'64.41.145.111','','en-us','','','/eric/nature/2008/lotus','Windows XP','Internet Explorer','6.0',1207065989),(1862,'64.41.145.111','','en-us','','','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Internet Explorer','6.0',1207065989),(1863,'64.41.145.111','','en-us','','','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','6.0',1207065990),(1864,'64.41.145.111','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1207065991),(1865,'64.41.145.111','','en-us','','','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','6.0',1207065992),(1866,'64.41.145.111','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','6.0',1207065992),(1867,'64.41.145.111','','en-us','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1207065993),(1868,'64.41.145.111','','en-us','','','/eric/nature/2008/grand-tetons','Windows XP','Internet Explorer','6.0',1207065994),(1869,'64.41.145.111','','en-us','','','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207065995),(1870,'64.41.145.111','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207065996),(1871,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207066007),(1872,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207066012),(1873,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207066433),(1874,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207066437),(1875,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/the-hills-are-alive','Windows XP','Firefox','2.0.0.13',1207066443),(1876,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/the-hills-are-alive','/eric/packages','Windows XP','Firefox','2.0.0.13',1207066450),(1877,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207066473),(1878,'24.251.50.102','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207066693),(1879,'24.251.50.102','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207066705),(1880,'24.251.50.102','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Internet Explorer','7.0',1207066767),(1881,'24.251.50.102','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/about','Windows XP','Internet Explorer','7.0',1207066801),(1882,'142.166.3.122','','empty','','','/eric/nature/2008/the-hills-are-alive','','Crawler/Search Engine','',1207066977),(1883,'142.166.3.124','','empty','','','/eric/feed','','Crawler/Search Engine','',1207066978),(1884,'142.166.3.125','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207066979),(1885,'142.166.3.122','','empty','','','/eric/weddings/2008/snow-white','','Crawler/Search Engine','',1207067015),(1886,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1207067167),(1887,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207067472),(1888,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207067507),(1889,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207067875),(1890,'67.129.219.136','','empty','','','/eric/weddings/2008/snow-white','','Internet Explorer','5.5',1207068006),(1891,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207069735),(1892,'64.41.145.129','','en-us','','','/eric/nature/2008/lotus','Windows XP','Internet Explorer','6.0',1207069735),(1893,'64.41.145.129','','en-us','','','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Internet Explorer','6.0',1207069736),(1894,'64.41.145.129','','en-us','','','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','6.0',1207069737),(1895,'64.41.145.129','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1207069738),(1896,'64.41.145.129','','en-us','','','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','6.0',1207069739),(1897,'64.41.145.129','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','6.0',1207069739),(1898,'64.41.145.129','','en-us','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1207069740),(1899,'64.41.145.129','','en-us','','','/eric/nature/2008/grand-tetons','Windows XP','Internet Explorer','6.0',1207069741),(1900,'64.41.145.129','','en-us','','','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207069742),(1901,'64.41.145.129','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207069743),(1902,'204.15.20.230','','empty','','','/eric/feed','','','',1207069994),(1903,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207070608),(1904,'65.55.104.21','','empty','','','/eric/nature/2008/grand-tetons','','msnbot','1.1',1207071067),(1905,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207071122),(1906,'66.167.134.184','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207072104),(1907,'66.167.134.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207072118),(1908,'207.200.116.74','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207073549),(1909,'207.200.116.74','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207073558),(1910,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207074739),(1911,'204.15.20.224','','empty','','','/eric/feed','','','',1207075626),(1912,'142.166.3.125','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207077810),(1913,'142.166.3.125','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207077811),(1914,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207078353),(1915,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207079933),(1916,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207079934),(1917,'67.128.119.4','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207080142),(1918,'67.128.119.4','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207080153),(1919,'67.128.119.4','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','7.0',1207080213),(1920,'204.15.20.224','','empty','','','/eric/feed','','','',1207081246),(1921,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207081968),(1922,'66.249.72.203','','empty','','','/eric/world/2008/wudhu','','Googlebot','2.1',1207082517),(1923,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207085584),(1924,'129.219.211.26','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207086327),(1925,'129.219.211.26','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207086332),(1926,'204.15.20.228','','empty','','','/eric/feed','','','',1207086799),(1927,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207087268),(1928,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207087273),(1929,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/archives','Windows XP','Internet Explorer','7.0',1207087281),(1930,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/archives','/eric/2008/03','Windows XP','Internet Explorer','7.0',1207087292),(1931,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/2008/03','/eric/world/2008/wudhu','Windows XP','Internet Explorer','7.0',1207087319),(1932,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207087673),(1933,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207087674),(1934,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207087705),(1935,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207087706),(1936,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207087717),(1937,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207087784),(1938,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207087848),(1939,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207087956),(1940,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207088041),(1941,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207088096),(1942,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207088101),(1943,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207088102),(1944,'129.219.211.26','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207088976),(1945,'129.219.211.26','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207088977),(1946,'129.219.211.26','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/?s=frontiers','Windows XP','Internet Explorer','7.0',1207088987),(1947,'129.219.211.26','','en-us','eden.org','http://grandviewphotographyaz.com/?s=frontiers','/eric/category/world','Windows XP','Internet Explorer','7.0',1207088997),(1948,'129.219.211.26','','en-us','eden.org','http://grandviewphotographyaz.com/?s=frontiers','/eric/category/world','Windows XP','Internet Explorer','7.0',1207089044),(1949,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207089200),(1950,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207090683),(1951,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207091068),(1952,'204.15.20.231','','empty','','','/eric/feed','','','',1207091976),(1953,'69.13.112.144','','empty','','','/eric/','','','',1207092034),(1954,'69.13.112.144','','empty','','','/eric/','','','',1207092062),(1955,'69.13.112.144','','empty','','','/eric/archives','','','',1207092066),(1956,'69.13.112.144','','empty','','','/eric/2008/03','','','',1207092067),(1957,'69.13.112.144','','empty','','','/eric/world/2008/wudhu','','','',1207092068),(1958,'69.13.112.144','','empty','','','/eric/portfolio','','','',1207092175),(1959,'69.13.112.144','','empty','','','/eric/portfolio','','','',1207092178),(1960,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207092814),(1961,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207096429),(1962,'204.15.20.229','','empty','','','/eric/feed','','','',1207097293),(1963,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1207098012),(1964,'142.166.3.124','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207099422),(1965,'142.166.3.123','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207099423),(1966,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207100044),(1967,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207100347),(1968,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207100354),(1969,'71.36.182.120','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Firefox','2.0.0.13',1207100372),(1970,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207101344),(1971,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207101347),(1972,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Firefox','2.0.0.13',1207101355),(1973,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207101942),(1974,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207101955),(1975,'75.127.197.235','','en-us','facebook.com','http://www.facebook.com/notes.php?ref=sb','/eric/weddings/2008/snow-white','Windows Vista','Internet Explorer','7.0',1207102089),(1976,'204.15.20.225','','empty','','','/eric/feed','','','',1207102719),(1977,'24.251.36.173','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207103643),(1978,'24.251.36.173','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207103648),(1979,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207103660),(1980,'24.251.36.173','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Firefox','2.0.0.13',1207103661),(1981,'24.251.36.173','','en-us','eden.org','http://grandviewphotographyaz.com/adventure/2008/sleeping-under-the-stars','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Firefox','2.0.0.13',1207103698),(1982,'71.38.121.248','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207105072),(1983,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207105081),(1984,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','7.0',1207105099),(1985,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207105111),(1986,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207105146),(1987,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207105258),(1988,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207105373),(1989,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207105424),(1990,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207105512),(1991,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/','Windows XP','Internet Explorer','7.0',1207105532),(1992,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207105534),(1993,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Internet Explorer','7.0',1207105553),(1994,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207107275),(1995,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207107480),(1996,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/adventure/2008/sleeping-under-the-stars','/eric/','Windows XP','Internet Explorer','7.0',1207107806),(1997,'71.38.121.248','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207107811),(1998,'204.15.20.227','','empty','','','/eric/feed','','','',1207108107),(1999,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1207108284),(2000,'74.6.19.190','','empty','','','/eric/nature/2008/the-hills-are-alive','','Yahoo! Slurp','',1207108441),(2001,'74.6.26.55','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Yahoo! Slurp','',1207108677),(2002,'74.6.28.167','','empty','','','/eric/weddings/2008/snow-white','','Yahoo! Slurp','',1207109523),(2003,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207110890),(2004,'72.204.225.218','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.10.6',1207111803),(2005,'72.204.225.218','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Safari','523.10.6',1207111815),(2006,'72.204.225.218','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.10.6',1207111846),(2007,'72.204.225.218','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.10.6',1207111874),(2008,'72.204.225.218','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/about','Mac OS X','Safari','523.10.6',1207111886),(2009,'72.204.225.218','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.10.6',1207111903),(2010,'72.204.225.218','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.10.6',1207111909),(2011,'72.204.225.218','','en-us','','','/eric/portfolio','Mac OS X','Safari','523.10.6',1207111925),(2012,'72.204.225.218','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/category/portraits','Mac OS X','Safari','523.10.6',1207111928),(2013,'72.204.225.218','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/?s=eric+taylor','Mac OS X','Safari','523.10.6',1207111956),(2014,'72.204.225.218','','en-us','eden.org','http://grandviewphotographyaz.com/?s=eric+taylor','/eric/packages','Mac OS X','Safari','523.10.6',1207111965),(2015,'72.204.225.218','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/archives','Mac OS X','Safari','523.10.6',1207111976),(2016,'72.204.225.218','','en-us','eden.org','http://grandviewphotographyaz.com/archives','/eric/2008/03','Mac OS X','Safari','523.10.6',1207111982),(2017,'204.15.20.226','','empty','','','/eric/feed','','','',1207113129),(2018,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207114505),(2019,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&aq=t&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1207114850),(2020,'72.204.250.105','','en-us','google.com','http://www.google.com/search?sourceid=navclient&aq=t&ie=UTF-8&rlz=1T4GZHY_enUS241US241&q=grandview+photography','/eric/','Windows Vista','Internet Explorer','7.0',1207114850),(2021,'72.204.250.105','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207114859),(2022,'65.54.165.41','','empty','','','/eric/contact','','msnbot','1.1',1207116351),(2023,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207117254),(2024,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207117259),(2025,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207118121),(2026,'204.15.20.231','','empty','','','/eric/feed','','','',1207118352),(2027,'142.166.3.123','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207121053),(2028,'142.166.3.124','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207121056),(2029,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207121736),(2030,'65.54.165.41','','empty','','','/eric/about','','msnbot','1.1',1207122655),(2031,'204.15.20.224','','empty','','','/eric/feed','','','',1207123307),(2032,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207125351),(2033,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207128967),(2034,'204.15.20.229','','empty','','','/eric/feed','','','',1207129303),(2035,'74.6.23.35','','empty','','','/eric/portfolio/','','Yahoo! Slurp','',1207132366),(2036,'74.6.23.35','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1207132370),(2037,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207132582),(2038,'65.54.165.41','','empty','','','/eric/category/portraits','','msnbot','1.1',1207133184),(2039,'204.15.20.225','','empty','','','/eric/feed','','','',1207135650),(2040,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207136197),(2041,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207139813),(2042,'142.166.3.123','','empty','','','/eric/feed','','Crawler/Search Engine','',1207141192),(2043,'204.15.20.229','','empty','','','/eric/feed','','','',1207141199),(2044,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207143428),(2045,'68.230.120.140','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207144374),(2046,'68.230.120.140','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207144380),(2047,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207144746),(2048,'204.15.20.227','','empty','','','/eric/feed','','','',1207146942),(2049,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207147043),(2050,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207148688),(2051,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207148691),(2052,'72.208.227.154','','en-us','','','/eric/feed','','','',1207149625),(2053,'72.208.227.154','','en-us','','','/eric/','','','',1207149627),(2054,'72.208.227.154','','en-us','','','/eric/feed','','','',1207149671),(2055,'72.208.227.154','','en-us','','','/eric/','','','',1207149671),(2056,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207150659),(2057,'123.234.233.46','','empty','','','/eric/','','','',1207150934),(2058,'204.15.20.227','','empty','','','/eric/feed','','','',1207152747),(2059,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207153691),(2060,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207154274),(2061,'129.219.242.179','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207154662),(2062,'129.219.242.179','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207154666),(2063,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207155060),(2064,'204.15.20.224','','empty','','','/eric/packages','','','',1207155087),(2065,'204.15.20.229','','empty','','','/eric/packages','','','',1207155087),(2066,'71.62.76.100','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207155378),(2067,'71.62.76.100','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207155384),(2068,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207156504),(2069,'65.54.165.41','','empty','','','/eric/portraits/2008/field-of-green','','msnbot','1.1',1207156928),(2070,'71.62.76.100','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207157339),(2071,'71.62.76.100','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207157348),(2072,'76.212.82.55','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207157471),(2073,'76.212.82.55','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207157474),(2074,'66.249.85.132','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207157887),(2075,'66.249.85.132','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207157887),(2076,'66.249.85.132','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/world/2008/wudhu','Windows XP','Internet Explorer','7.0',1207157888),(2077,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207157889),(2078,'66.249.85.132','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207157890),(2079,'66.249.85.132','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207157918),(2080,'66.249.85.132','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207157922),(2081,'71.62.76.100','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207157968),(2082,'71.62.76.100','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207157969),(2083,'71.62.76.100','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207158333),(2084,'71.62.76.100','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207158334),(2085,'204.15.20.227','','empty','','','/eric/feed','','','',1207158421),(2086,'71.97.184.137','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207158577),(2087,'71.97.184.137','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207158583),(2088,'71.97.184.137','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1207158602),(2089,'71.62.76.100','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207159681),(2090,'71.62.76.100','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207159682),(2091,'149.169.89.87','','en','facebook.com','http://www.facebook.com/note.php?note_id=9774314196','/eric/weddings/2008/snow-white','Mac OS X','Safari','523.12.2',1207159944),(2092,'69.245.180.8','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207160851),(2093,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207161504),(2094,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207162064),(2095,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207162066),(2096,'204.15.20.225','','empty','','','/eric/feed','','','',1207164187),(2097,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207165120),(2098,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207168735),(2099,'204.15.20.227','','empty','','','/eric/feed','','','',1207169425),(2100,'68.106.241.231','','en-us','google.com','http://www.google.com/hws/dell-usuk/afe?channel=us&hl=en&ibd=&q=grandviewphotographyaz.com','/eric/','Windows Vista','Internet Explorer','7.0',1207170088),(2101,'68.106.241.231','','en-us','google.com','http://www.google.com/hws/dell-usuk/afe?channel=us&hl=en&ibd=&q=grandviewphotographyaz.com','/eric/','Windows Vista','Internet Explorer','7.0',1207170089),(2102,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207170094),(2103,'68.106.241.231','','en-us','google.com','http://www.google.com/hws/dell-usuk/afe?channel=us&hl=en&ibd=&q=grandviewphotographyaz.com','/eric/','Windows Vista','Internet Explorer','7.0',1207170152),(2104,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207170152),(2105,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207170155),(2106,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207170198),(2107,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207170269),(2108,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207170371),(2109,'68.106.241.231','','en-us','google.com','http://www.google.com/hws/dell-usuk/afe?channel=us&hl=en&ibd=&q=grandviewphotographyaz.com','/eric/','Windows Vista','Internet Explorer','7.0',1207170372),(2110,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207170372),(2111,'68.106.241.231','','en-us','google.com','http://www.google.com/hws/dell-usuk/afe?channel=us&hl=en&ibd=&q=grandviewphotographyaz.com','/eric/','Windows Vista','Internet Explorer','7.0',1207170387),(2112,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207170388),(2113,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207170392),(2114,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207170421),(2115,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207171147),(2116,'68.106.241.231','','en-us','google.com','http://www.google.com/hws/dell-usuk/afe?channel=us&hl=en&ibd=&q=grandviewphotographyaz.com','/eric/','Windows Vista','Internet Explorer','7.0',1207171147),(2117,'68.106.241.231','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207171148),(2118,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207172350),(2119,'99.166.69.138','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207172858),(2120,'99.166.69.138','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207172863),(2121,'69.245.180.8','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207174676),(2122,'69.245.180.8','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Safari','525.13',1207174699),(2123,'204.15.20.228','','empty','','','/eric/feed','','','',1207175225),(2124,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207175965),(2125,'72.208.184.184','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207178224),(2126,'72.208.184.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207178228),(2127,'72.208.184.184','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207178303),(2128,'72.208.184.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207178304),(2129,'72.208.184.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','6.0',1207178318),(2130,'24.251.220.16','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207178426),(2131,'24.251.220.16','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207178430),(2132,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207178500),(2133,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207179581),(2134,'195.189.143.54','','en','','','/eric/','','Opera','9.50',1207180188),(2135,'195.189.143.54','','en','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','','Opera','9.50',1207180277),(2136,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207180325),(2137,'195.189.143.54','','en','','','/eric/nature/2008/the-hills-are-alive','','Opera','9.50',1207180378),(2138,'204.15.20.230','','empty','','','/eric/feed','','','',1207180514),(2139,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207181076),(2140,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207183196),(2141,'130.13.232.77','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207183840),(2142,'130.13.232.77','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207183846),(2143,'130.13.232.77','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','7.0',1207184249),(2144,'193.252.149.15','','fr','','','/eric/','Windows XP','Crawler/Search Engine','1.8.1',1207184375),(2145,'130.13.232.77','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','7.0',1207184407),(2146,'130.13.232.77','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','7.0',1207184419),(2147,'142.166.3.123','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207185898),(2148,'142.166.3.123','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207185898),(2149,'204.15.20.229','','empty','','','/eric/feed','','','',1207185899),(2150,'130.13.232.77','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207185978),(2151,'130.13.232.77','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207185979),(2152,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1207186765),(2153,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207186811),(2154,'76.99.36.194','','en-us','eden.org','http://www.grandviewphotographyaz.com/blog/?p=90','/eric/','Mac OS X','Firefox','2.0.0.13',1207187809),(2155,'76.99.36.194','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207187811),(2156,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207189244),(2157,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207189245),(2158,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207190427),(2159,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Safari','525.13',1207190518),(2160,'75.172.156.176','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Mac OS X','Safari','525.13',1207191043),(2161,'75.172.156.176','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/world/2008/wudhu','Mac OS X','Safari','525.13',1207191062),(2162,'75.172.156.176','','en-us','','','/eric/world/2008/wudhu','Mac OS X','Safari','525.13',1207191079),(2163,'75.172.156.176','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207191081),(2164,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/','Mac OS X','Safari','525.13',1207191200),(2165,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207191213),(2166,'204.15.20.229','','empty','','','/eric/feed','','','',1207191216),(2167,'71.96.76.121','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Windows Vista','Firefox','2.0.0.12',1207192356),(2168,'71.96.76.121','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.12',1207192368),(2169,'71.96.76.121','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows Vista','Firefox','2.0.0.12',1207192416),(2170,'71.96.76.121','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows Vista','Firefox','2.0.0.12',1207192467),(2171,'71.96.76.121','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/packages','Windows Vista','Firefox','2.0.0.12',1207192492),(2172,'71.96.76.121','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/category/world','Windows Vista','Firefox','2.0.0.12',1207192520),(2173,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207192601),(2174,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207192601),(2175,'72.208.227.154','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196','/eric/','Mac OS X','Safari','525.13',1207192621),(2176,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Mac OS X','Safari','525.13',1207192622),(2177,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207192627),(2178,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207192628),(2179,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207192852),(2180,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207193583),(2181,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207193587),(2182,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207194042),(2183,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194053),(2184,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194121),(2185,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194339),(2186,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194613),(2187,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194646),(2188,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194675),(2189,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194800),(2190,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194873),(2191,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194965),(2192,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207194987),(2193,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195370),(2194,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195375),(2195,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195455),(2196,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195458),(2197,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195672),(2198,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195694),(2199,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195696),(2200,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195806),(2201,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195807),(2202,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207195809),(2203,'68.104.226.166','','en','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=mf','/eric/','Mac OS X','Safari','523.12.2',1207196127),(2204,'68.104.226.166','','en','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=mf','/eric/','Mac OS X','Safari','523.12.2',1207196133),(2205,'68.104.226.166','','en','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=mf','/eric/','Mac OS X','Safari','523.12.2',1207196141),(2206,'68.104.226.166','','en','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=mf','/eric/','Mac OS X','Safari','523.12.2',1207196154),(2207,'68.226.97.172','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Mac OS X','Safari','523.15',1207196244),(2208,'204.15.20.228','','empty','','','/eric/feed','','','',1207196899),(2209,'68.108.215.110','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Windows Vista','Firefox','2.0.0.12',1207197496),(2210,'68.108.215.110','','empty','','','/eric/','','','',1207197497),(2211,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.12',1207197503),(2212,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows Vista','Firefox','2.0.0.12',1207197507),(2213,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207197657),(2214,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207197796),(2215,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Mozilla','',1207197824),(2216,'64.53.230.90','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Windows XP','Firefox','2.0.0.13',1207199101),(2217,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1207199709),(2218,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1207199710),(2219,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207199849),(2220,'70.190.160.176','','en','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=mf','/eric/','Mac OS X','Safari','1.3',1207199912),(2221,'70.190.160.176','','en','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Mac OS X','Safari','1.3',1207199970),(2222,'70.190.160.176','','en','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/snow-white','Mac OS X','Safari','1.3',1207199980),(2223,'70.190.160.176','','en','','','/eric/category/weddings','Mac OS X','Safari','1.3',1207199993),(2224,'70.190.160.176','','en','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/carleybryan-wedding1','Mac OS X','Safari','1.3',1207200004),(2225,'70.190.160.176','','en','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/category/portraits','Mac OS X','Safari','1.3',1207200023),(2226,'70.190.160.176','','en','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/category/world','Mac OS X','Safari','1.3',1207200039),(2227,'70.190.160.176','','en','','','/eric/category/world','Mac OS X','Safari','1.3',1207200080),(2228,'70.190.160.176','','en','eden.org','http://grandviewphotographyaz.com/category/world','/eric/packages','Mac OS X','Safari','1.3',1207200086),(2229,'70.190.160.176','','en','eden.org','http://grandviewphotographyaz.com/packages','/eric/about','Mac OS X','Safari','1.3',1207200111),(2230,'70.190.160.176','','en','eden.org','http://grandviewphotographyaz.com/about','/eric/','Mac OS X','Safari','1.3',1207200147),(2231,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207201087),(2232,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207201272),(2233,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207201697),(2234,'134.114.159.218','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Windows Vista','Internet Explorer','7.0',1207201953),(2235,'134.114.159.218','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207201956),(2236,'134.114.159.218','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/sleeping-under-the-stars','Windows Vista','Internet Explorer','7.0',1207201969),(2237,'134.114.159.218','','en-us','eden.org','http://grandviewphotographyaz.com/adventure/2008/sleeping-under-the-stars','/eric/packages','Windows Vista','Internet Explorer','7.0',1207201974),(2238,'134.114.159.218','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/category/weddings','Windows Vista','Internet Explorer','7.0',1207202036),(2239,'134.114.159.218','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/packages','Windows Vista','Internet Explorer','7.0',1207202048),(2240,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207202307),(2241,'204.15.20.224','','empty','','','/eric/feed','','','',1207202785),(2242,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207202888),(2243,'68.104.226.166','','en','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Mac OS X','Safari','523.12.2',1207203291),(2244,'68.104.226.166','','en','eden.org','http://grandviewphotographyaz.com/','/eric/about','Mac OS X','Safari','523.12.2',1207203303),(2245,'68.104.226.166','','en','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Mac OS X','Safari','523.12.2',1207203306),(2246,'68.104.226.166','','en','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Mac OS X','Safari','523.12.2',1207203314),(2247,'195.86.22.60','','empty','','','/eric/feed','','','',1207203367),(2248,'195.86.22.60','','empty','','','/eric/xmlrpc.php','','','',1207203368),(2249,'195.86.22.60','','empty','','','/eric/xmlrpc.php?rsd','','','',1207203368),(2250,'195.86.22.60','','empty','','','/eric/feed/','','','',1207203369),(2251,'195.86.22.60','','empty','','','/eric/feed','','','',1207203370),(2252,'195.86.22.60','','empty','','','/eric/feed/','','','',1207203370),(2253,'195.86.22.60','','empty','','','/eric/feed/','','Crawler/Search Engine','',1207203371),(2254,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207203506),(2255,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207204115),(2256,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207204718),(2257,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207204887),(2258,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207205333),(2259,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1207205894),(2260,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207205942),(2261,'65.55.165.119','','en-us','search.live.com','http://search.live.com/results.aspx?q=taken&mrt=en-us&FORM=LIVSOP','/eric/','Windows 2003','Internet Explorer','7.0',1207206171),(2262,'204.15.20.230','','empty','','','/eric/feed','','','',1207207997),(2263,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207208363),(2264,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207208503),(2265,'198.54.202.130','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207208736),(2266,'198.54.202.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207208754),(2267,'198.54.202.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Firefox','2.0.0.13',1207209181),(2268,'198.54.202.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Firefox','2.0.0.13',1207209252),(2269,'198.54.202.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Firefox','2.0.0.13',1207209363),(2270,'198.54.202.130','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/category/weddings','Mac OS X','Firefox','2.0.0.13',1207209367),(2271,'198.54.202.130','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/snow-white','Mac OS X','Firefox','2.0.0.13',1207209375),(2272,'198.54.202.130','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/category/weddings','Mac OS X','Firefox','2.0.0.13',1207209390),(2273,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207209548),(2274,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207210184),(2275,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207212010),(2276,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207212117),(2277,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207212614),(2278,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207213208),(2279,'204.15.20.231','','empty','','','/eric/feed','','','',1207213268),(2280,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207213804),(2281,'65.55.209.83','','empty','','','/eric/?p=10','','msnbot','1.1',1207214740),(2282,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207215640),(2283,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207215732),(2284,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207216213),(2285,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207216666),(2286,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207218655),(2287,'204.15.20.228','','empty','','','/eric/feed','','','',1207218905),(2288,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207219269),(2289,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207219347),(2290,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207220482),(2291,'216.162.51.88','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Mac OS X','Firefox','2.0.0.13',1207221165),(2292,'216.162.51.88','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207221169),(2293,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207221680),(2294,'216.162.51.88','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Mac OS X','Firefox','2.0.0.13',1207221751),(2295,'216.162.51.88','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207221752),(2296,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207222963),(2297,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207223516),(2298,'204.15.20.228','','empty','','','/eric/feed','','','',1207224376),(2299,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207225916),(2300,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207226578),(2301,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207227133),(2302,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207227740),(2303,'204.15.20.225','','empty','','','/eric/feed','','','',1207229689),(2304,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207230174),(2305,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207230193),(2306,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207230774),(2307,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207231380),(2308,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207231980),(2309,'66.249.72.203','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Googlebot','2.1',1207233617),(2310,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207233808),(2311,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207234412),(2312,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207235024),(2313,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207235024),(2314,'204.15.20.225','','empty','','','/eric/feed','','','',1207235461),(2315,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207235461),(2316,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1207235500),(2317,'209.131.41.48','','empty','','','/eric/','','Internet Explorer','5.5',1207235500),(2318,'67.111.14.202','','empty','','','/eric/','','Technoratibot','0.7',1207235540),(2319,'67.111.14.202','','empty','','','/eric/feed','','Technoratibot','0.7',1207235541),(2320,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207235630),(2321,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207235692),(2322,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207235693),(2323,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207235895),(2324,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207235925),(2325,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207235930),(2326,'65.54.165.81','','empty','','','/eric/adventure/2008/desert-storm-rally','','msnbot','',1207235990),(2327,'66.249.72.203','','empty','','','/eric/adventure/2008/desert-storm-rally','','Googlebot','2.1',1207236062),(2328,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207236821),(2329,'64.41.145.129','','en-us','','','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Internet Explorer','6.0',1207236822),(2330,'64.41.145.129','','en-us','','','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','6.0',1207236823),(2331,'64.41.145.129','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1207236825),(2332,'64.41.145.129','','en-us','','','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','6.0',1207236827),(2333,'64.41.145.129','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','6.0',1207236828),(2334,'64.41.145.129','','en-us','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1207236829),(2335,'64.41.145.129','','en-us','','','/eric/nature/2008/grand-tetons','Windows XP','Internet Explorer','6.0',1207236829),(2336,'64.41.145.129','','en-us','','','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207236831),(2337,'64.41.145.129','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207236832),(2338,'64.41.145.129','','en-us','','','/eric/adventure/2008/desert-storm-rally','Windows XP','Internet Explorer','6.0',1207236832),(2339,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207237423),(2340,'142.166.170.29','','empty','','','/eric/adventure/2008/desert-storm-rally','','Crawler/Search Engine','',1207237480),(2341,'68.3.197.82','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207237884),(2342,'68.3.197.82','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Mac OS X','Safari','525.13',1207237908),(2343,'68.3.197.82','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Mac OS X','Safari','525.13',1207237950),(2344,'68.3.197.82','','en-us','','','/eric/portfolio','Mac OS X','Safari','525.13',1207238012),(2345,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207238063),(2346,'68.3.197.82','','en-us','','','/eric/portfolio','Mac OS X','Safari','525.13',1207238077),(2347,'68.3.197.82','','en-us','','','/eric/portfolio','Mac OS X','Safari','525.13',1207238093),(2348,'68.3.197.82','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207238198),(2349,'142.166.3.123','','empty','','','/eric/feed','','Crawler/Search Engine','',1207239536),(2350,'69.41.14.151','','empty','','','/eric/','','','',1207239999),(2351,'69.41.14.151','','empty','','','/eric/','','','',1207240000),(2352,'69.41.14.151','','empty','','','/eric/packages','','','',1207240003),(2353,'69.41.14.151','','empty','','','/eric/portfolio','','','',1207240004),(2354,'69.41.14.151','','empty','','','/eric/portfolio','','','',1207240007),(2355,'69.41.14.151','','empty','','','/eric/portfolio','','','',1207240010),(2356,'69.41.14.151','','empty','','','/eric/portfolio','','','',1207240012),(2357,'69.41.14.151','','empty','','','/eric/','','','',1207240030),(2358,'24.251.11.71','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Windows Vista','Internet Explorer','7.0',1207240603),(2359,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207240606),(2360,'24.251.11.71','','empty','','','/eric/feed','','Mozilla','',1207240609),(2361,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207240648),(2362,'204.15.20.226','','empty','','','/eric/feed','','','',1207240952),(2363,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207241039),(2364,'140.198.135.34','','en-us','google.com','http://www.google.com/search?hl=en&q=grandview+photography','/eric/','Windows XP','Internet Explorer','6.0',1207242240),(2365,'140.198.135.34','','en-us','google.com','http://www.google.com/search?hl=en&q=grandview+photography','/eric/','Windows XP','Internet Explorer','6.0',1207242241),(2366,'140.198.135.34','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207242246),(2367,'140.198.135.34','','en-us','google.com','http://www.google.com/search?hl=en&q=grandview+photography','/eric/','Windows XP','Internet Explorer','6.0',1207242254),(2368,'140.198.135.34','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207242257),(2369,'140.198.135.34','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207242263),(2370,'140.198.135.34','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207242271),(2371,'140.198.135.34','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/contact','Windows XP','Internet Explorer','6.0',1207242281),(2372,'140.198.135.34','','en-us','eden.org','http://grandviewphotographyaz.com/contact','/eric/packages','Windows XP','Internet Explorer','6.0',1207242292),(2373,'140.198.135.34','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Internet Explorer','6.0',1207242355),(2374,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207242524),(2375,'129.219.242.179','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207242831),(2376,'129.219.242.179','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207242837),(2377,'129.219.242.179','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207242845),(2378,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207244102),(2379,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207244107),(2380,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207244640),(2381,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207245673),(2382,'194.164.69.11','','empty','','','/eric/weddings/2008/snow-white','Windows','Internet Explorer','5.0',1207246099),(2383,'194.164.69.11','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1207246101),(2384,'85.214.115.162','','empty','','','/eric/weddings/2008/snow-white','Windows XP','Opera','8.50',1207246103),(2385,'85.214.115.162','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/wp-comments-post.php','Windows XP','Opera','8.50',1207246104),(2386,'82.160.198.49','','empty','','','/eric/weddings/2008/snow-white','Windows 2000','Internet Explorer','6.0',1207246105),(2387,'82.160.198.49','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/wp-comments-post.php','Windows 2000','Internet Explorer','6.0',1207246107),(2388,'212.89.11.117','','empty','','','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207246109),(2389,'212.89.11.117','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1207246111),(2390,'66.246.82.114','','empty','','','/eric/weddings/2008/snow-white','Windows','Internet Explorer','5.0',1207246112),(2391,'66.246.82.114','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1207246113),(2392,'204.15.20.230','','empty','','','/eric/feed','','','',1207246602),(2393,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207246877),(2394,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207247271),(2395,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207247276),(2396,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/packages','Windows XP','Internet Explorer','7.0',1207247314),(2397,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/','Windows XP','Internet Explorer','7.0',1207247325),(2398,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207247328),(2399,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','7.0',1207247336),(2400,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','7.0',1207247356),(2401,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207248101),(2402,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207248256),(2403,'64.13.142.66','','empty','','','/eric/','','Crawler/Search Engine','',1207248683),(2404,'64.13.142.66','','empty','','','/eric/feed','','Crawler/Search Engine','',1207248684),(2405,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207248702),(2406,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207249916),(2407,'149.169.17.117','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207249940),(2408,'149.169.17.117','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207249944),(2409,'149.169.17.117','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','6.0',1207249995),(2410,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207250038),(2411,'69.41.14.151','','empty','','','/eric/','','','',1207250072),(2412,'69.41.14.151','','empty','','','/eric/weddings/2008/snow-white','','','',1207250075),(2413,'69.41.14.151','','empty','','','/eric/weddings/2008/snow-white','','','',1207250078),(2414,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207250512),(2415,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207251116),(2416,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207251146),(2417,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207251721),(2418,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207251871),(2419,'204.15.20.231','','empty','','','/eric/feed','','','',1207251972),(2420,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207252187),(2421,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207252320),(2422,'149.169.65.209','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207252599),(2423,'149.169.65.209','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207252603),(2424,'149.169.65.209','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','6.0',1207252704),(2425,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207252791),(2426,'149.169.17.11','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207252903),(2427,'149.169.17.11','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207252907),(2428,'149.169.17.11','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207252972),(2429,'149.169.17.11','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207252973),(2430,'149.169.17.11','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','7.0',1207253024),(2431,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207253245),(2432,'149.169.65.209','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','6.0',1207253433),(2433,'149.169.65.209','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','6.0',1207253599),(2434,'149.169.65.209','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207253600),(2435,'149.169.65.209','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207253601),(2436,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207254355),(2437,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207254733),(2438,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1207254914),(2439,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207255108),(2440,'75.171.104.54','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207255114),(2441,'75.171.104.54','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207255123),(2442,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207255346),(2443,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207255487),(2444,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207255956),(2445,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207256171),(2446,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207256552),(2447,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207257243),(2448,'204.15.20.225','','empty','','','/eric/feed','','','',1207257482),(2449,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207257762),(2450,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207258312),(2451,'72.208.28.221','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Windows XP','Firefox','2.0.0.13',1207258335),(2452,'72.208.28.221','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207258344),(2453,'72.208.28.221','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Firefox','2.0.0.13',1207258417),(2454,'72.208.28.221','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207258454),(2455,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207258964),(2456,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207259025),(2457,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207259101),(2458,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207259376),(2459,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207259558),(2460,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207260174),(2461,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207260434),(2462,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207261382),(2463,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207261513),(2464,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207261973),(2465,'70.162.153.116','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207262030),(2466,'70.162.153.116','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207262034),(2467,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207262571),(2468,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207262717),(2469,'65.55.104.21','','empty','','','/eric/contact','','msnbot','1.1',1207262765),(2470,'204.15.20.224','','empty','','','/eric/feed','','','',1207262997),(2471,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207263592),(2472,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207263790),(2473,'68.108.215.110','','en-US','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Mac OS X','Safari','525.13',1207263854),(2474,'68.108.215.110','','en-US','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/desert-storm-rally','Mac OS X','Safari','525.13',1207263878),(2475,'68.108.215.110','','en-US','eden.org','http://grandviewphotographyaz.com/adventure/2008/desert-storm-rally','/eric/packages','Mac OS X','Safari','525.13',1207263888),(2476,'68.108.215.110','','en-US','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Mac OS X','Safari','525.13',1207263910),(2477,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207263914),(2478,'68.108.215.110','','en-US','facebook.com','http://www.facebook.com/note.php?note_id=9856244196&ref=nf','/eric/','Mac OS X','Safari','525.13',1207263958),(2479,'68.108.215.110','','en-US','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Safari','525.13',1207263963),(2480,'68.108.215.110','','en-US','','','/eric/portfolio','Mac OS X','Safari','525.13',1207264019),(2481,'68.108.215.110','','en-US','','','/eric/','Mac OS X','Safari','525.13',1207264020),(2482,'68.108.215.110','','en-US','','','/eric/portfolio','Mac OS X','Safari','525.13',1207264020),(2483,'68.108.215.110','','en-US','','','/eric/portfolio','Mac OS X','Safari','525.13',1207264027),(2484,'68.108.215.110','','en-US','','','/eric/portfolio','Mac OS X','Safari','525.13',1207264086),(2485,'68.108.215.110','','en-US','','','/eric/portfolio','Mac OS X','Safari','525.13',1207264109),(2486,'68.108.215.110','','en-US','','','/eric/portfolio','Mac OS X','Safari','525.13',1207264222),(2487,'68.108.215.110','','en-US','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/about','Mac OS X','Safari','525.13',1207264225),(2488,'68.108.215.110','','en-US','eden.org','http://grandviewphotographyaz.com/about','/eric/','Mac OS X','Safari','525.13',1207264278),(2489,'68.108.215.110','','en-US','eden.org','http://grandviewphotographyaz.com/about','/eric/contact','Mac OS X','Safari','525.13',1207264279),(2490,'66.231.189.159','','en','','','/eric/','','Gigabot','3.0',1207264324),(2491,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207264604),(2492,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207264990),(2493,'66.231.189.159','','en','','','/eric/xmlrpc.php?rsd','','Gigabot','3.0',1207265696),(2494,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207265720),(2495,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207266101),(2496,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207266206),(2497,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207266334),(2498,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207266514),(2499,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207266518),(2500,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1207266543),(2501,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Firefox','2.0.0.13',1207266550),(2502,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1207266561),(2503,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207266689),(2504,'65.54.165.41','','empty','','','/eric/category/weddings','','msnbot','1.1',1207267521),(2505,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207267770),(2506,'204.15.20.231','','empty','','','/eric/feed','','','',1207268182),(2507,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207268810),(2508,'24.251.11.71','','empty','','','/eric/feed','','Mozilla','',1207269366),(2509,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207269589),(2510,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207269591),(2511,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207269596),(2512,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207269914),(2513,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207269947),(2514,'72.208.144.243','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1207270323),(2515,'72.208.144.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1207270330),(2516,'72.208.144.243','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1207270380),(2517,'72.208.144.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1207270381),(2518,'72.208.144.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1207270387),(2519,'72.208.144.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1207270495),(2520,'72.208.144.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1207270539),(2521,'72.208.144.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.12',1207270604),(2522,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207270936),(2523,'66.231.189.159','','en','','','/eric/portfolio','','Gigabot','3.0',1207271243),(2524,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207272003),(2525,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207272840),(2526,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207273055),(2527,'204.15.20.226','','empty','','','/eric/feed','','','',1207273310),(2528,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1207273428),(2529,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207273438),(2530,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207273562),(2531,'74.6.24.119','','empty','','','/eric/nature/2008/the-hills-are-alive','','Yahoo! Slurp','',1207273568),(2532,'74.6.24.89','','empty','','','/eric/adventure/2008/desert-storm-rally','','Yahoo! Slurp','',1207273785),(2533,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1207273928),(2534,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207274042),(2535,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207274120),(2536,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207274638),(2537,'66.231.189.159','','en','','','/eric/nature/2008/lotus','','Gigabot','3.0',1207274876),(2538,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207275140),(2539,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207275250),(2540,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207276193),(2541,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207276451),(2542,'205.56.129.195','','en-us','google.com','http://www.google.com/search?hl=en&q=grandviewphotographyaz','/eric/','Windows XP','Internet Explorer','6.0',1207276943),(2543,'205.56.129.195','','en-us','google.com','http://www.google.com/search?hl=en&q=grandviewphotographyaz','/eric/','Windows XP','Internet Explorer','6.0',1207276943),(2544,'205.56.129.195','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207276954),(2545,'205.56.129.195','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Internet Explorer','6.0',1207276962),(2546,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207277177),(2547,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207277219),(2548,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207278284),(2549,'204.15.20.230','','empty','','','/eric/feed','','','',1207278560),(2550,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207278874),(2551,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207279350),(2552,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207280436),(2553,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207280793),(2554,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207281481),(2555,'66.231.189.159','','en','','','/eric/portraits/2008/field-of-green','','Gigabot','3.0',1207282090),(2556,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207282516),(2557,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207283553),(2558,'204.15.20.230','','empty','','','/eric/feed','','','',1207283806),(2559,'64.40.118.221','','empty','','','/eric/?feed=rss2','','','',1207284030),(2560,'64.40.118.221','','empty','','','/eric/','','','',1207284032),(2561,'64.40.118.221','','empty','','','/eric/','','','',1207284033),(2562,'64.40.118.221','','empty','','','/eric/adventure/2008/desert-storm-rally','','','',1207284039),(2563,'64.40.118.221','','empty','','','/eric/adventure/2008/desert-storm-rally','','','',1207284040),(2564,'64.40.118.221','','empty','','','/eric/weddings/2008/snow-white','','','',1207284042),(2565,'64.40.118.221','','empty','','','/eric/weddings/2008/snow-white','','','',1207284043),(2566,'66.231.189.159','','en','','','/eric/weddings/2008/carleybryan-wedding1','','Gigabot','3.0',1207284404),(2567,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207284408),(2568,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207284574),(2569,'67.195.37.112','','en-us','','','/eric/','','Yahoo! Slurp','',1207284618),(2570,'67.195.37.116','','en-us','','','/eric/','','Yahoo! Slurp','',1207284630),(2571,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207285624),(2572,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207286008),(2573,'202.160.178.114','','empty','','','/eric/','','Yahoo! Slurp','',1207286061),(2574,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207286634),(2575,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207287665),(2576,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207288023),(2577,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207288419),(2578,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207288685),(2579,'204.15.20.226','','empty','','','/eric/feed','','','',1207288784),(2580,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207289028),(2581,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207289627),(2582,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207289726),(2583,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207290238),(2584,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207290420),(2585,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207290504),(2586,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207290504),(2587,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207291450),(2588,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207291457),(2589,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207291638),(2590,'66.231.189.159','','en','','','/eric/xmlrpc.php','','Gigabot','3.0',1207292014),(2591,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207292041),(2592,'24.251.11.71','','empty','','','/eric/feed','','Mozilla','',1207292168),(2593,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207292230),(2594,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/packages','Windows Vista','Internet Explorer','7.0',1207292236),(2595,'24.251.11.71','','en-us','','','/eric/','Windows Vista','Internet Explorer','7.0',1207292382),(2596,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207292382),(2597,'24.251.11.71','','en-us','','','/eric/','Windows Vista','Internet Explorer','7.0',1207292403),(2598,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207292405),(2599,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/contact','Windows Vista','Internet Explorer','7.0',1207292407),(2600,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/contact','/eric/about','Windows Vista','Internet Explorer','7.0',1207292420),(2601,'24.251.11.71','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/packages','Windows Vista','Internet Explorer','7.0',1207292433),(2602,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207292491),(2603,'67.195.37.116','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','','Yahoo! Slurp','',1207292670),(2604,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207293260),(2605,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207293525),(2606,'204.15.20.229','','empty','','','/eric/feed','','','',1207293802),(2607,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207294456),(2608,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207294556),(2609,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207295063),(2610,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207295252),(2611,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207295577),(2612,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207295665),(2613,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207296600),(2614,'213.60.46.46','','es-es','google.es','http://www.google.es/search?q=Socialthing+invites&sourceid=navclient-ff&ie=UTF-8&rlz=1B3GGGL_esES265ES265','/eric/','Windows XP','Firefox','2.0.0.4',1207297145),(2615,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207297642),(2616,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207298087),(2617,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207298718),(2618,'204.15.20.231','','empty','','','/eric/feed','','','',1207298906),(2619,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207299734),(2620,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207300490),(2621,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207300804),(2622,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207301110),(2623,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207301816),(2624,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207302309),(2625,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207302857),(2626,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207303926),(2627,'204.15.20.224','','empty','','','/eric/feed','','','',1207304813),(2628,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207304943),(2629,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207305798),(2630,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207305975),(2631,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207306537),(2632,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207307030),(2633,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207307137),(2634,'68.3.71.67','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207307403),(2635,'68.3.71.67','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207307414),(2636,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207308064),(2637,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207308353),(2638,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207309158),(2639,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207309413),(2640,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207309564),(2641,'204.15.20.229','','empty','','','/eric/feed','','','',1207310051),(2642,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207310127),(2643,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207310156),(2644,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207311209),(2645,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207311365),(2646,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207311975),(2647,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207312240),(2648,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207313028),(2649,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207313191),(2650,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207313288),(2651,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207314362),(2652,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207315389),(2653,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1207315418),(2654,'204.15.20.229','','empty','','','/eric/feed','','','',1207315564),(2655,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207316241),(2656,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207316480),(2657,'67.195.52.56','','empty','','','/eric/','','Yahoo! Slurp','',1207316606),(2658,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207316643),(2659,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207316800),(2660,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207317485),(2661,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207318011),(2662,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207318620),(2663,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207318639),(2664,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207319745),(2665,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207319829),(2666,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207320259),(2667,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207320832),(2668,'204.15.20.227','','empty','','','/eric/feed','','','',1207321155),(2669,'216.130.131.66','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207321164),(2670,'216.130.131.66','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207321169),(2671,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207321905),(2672,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207322249),(2673,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207323040),(2674,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207323874),(2675,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207324094),(2676,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207324666),(2677,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207325206),(2678,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207326328),(2679,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207327072),(2680,'204.15.20.224','','empty','','','/eric/feed','','','',1207327145),(2681,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207327395),(2682,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207327489),(2683,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207327574),(2684,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207327685),(2685,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207328469),(2686,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207328887),(2687,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207329490),(2688,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207329612),(2689,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207330728),(2690,'130.13.174.168','','en','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207330969),(2691,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207331105),(2692,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207331505),(2693,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207331505),(2694,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207331859),(2695,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207331893),(2696,'204.15.20.229','','empty','','','/eric/feed','','','',1207332714),(2697,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207332931),(2698,'65.55.208.234','','empty','','','/eric/','','msnbot','1.0',1207333235),(2699,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207333727),(2700,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207334007),(2701,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207334720),(2702,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207335085),(2703,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207335522),(2704,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207336127),(2705,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207336224),(2706,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207336726),(2707,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207336952),(2708,'142.166.3.123','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207337163),(2709,'142.166.3.125','','empty','','','/eric/nature/2008/grand-tetons','','Crawler/Search Engine','',1207337166),(2710,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207337334),(2711,'99.246.197.90','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207337650),(2712,'99.246.197.90','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207337653),(2713,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207338335),(2714,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207338353),(2715,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207338555),(2716,'204.15.20.231','','empty','','','/eric/feed','','','',1207338767),(2717,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207339093),(2718,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207339756),(2719,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207340201),(2720,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207340350),(2721,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207340966),(2722,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207341240),(2723,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207341565),(2724,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207341951),(2725,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207342171),(2726,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207342322),(2727,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207343379),(2728,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207343412),(2729,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207344310),(2730,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207344311),(2731,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207344518),(2732,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207344583),(2733,'204.15.20.225','','empty','','','/eric/feed','','','',1207344773),(2734,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207345191),(2735,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207345537),(2736,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207345566),(2737,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207345782),(2738,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207346396),(2739,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207346598),(2740,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207347646),(2741,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207348740),(2742,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207349033),(2743,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207349040),(2744,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207349181),(2745,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207349771),(2746,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207350617),(2747,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207350871),(2748,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207351220),(2749,'204.15.20.229','','empty','','','/eric/feed','','','',1207351237),(2750,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207351831),(2751,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207351856),(2752,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207352766),(2753,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207352771),(2754,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207352782),(2755,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207352963),(2756,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207353137),(2757,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207353142),(2758,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207353641),(2759,'72.208.184.184','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207353802),(2760,'72.208.184.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207353805),(2761,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207353828),(2762,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207353832),(2763,'72.208.184.184','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207353939),(2764,'72.208.184.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/category/weddings','Windows XP','Internet Explorer','6.0',1207353952),(2765,'72.208.184.184','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','6.0',1207353959),(2766,'72.208.184.184','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/carleybryan-wedding1','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','6.0',1207353968),(2767,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207354014),(2768,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207354241),(2769,'75.167.53.229','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207354799),(2770,'75.167.53.229','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207354818),(2771,'75.167.53.229','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows Vista','Internet Explorer','7.0',1207354819),(2772,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207355321),(2773,'76.204.79.25','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1207355449),(2774,'76.204.79.25','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207355463),(2775,'76.204.79.25','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1207355679),(2776,'76.204.79.25','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207355680),(2777,'76.204.79.25','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207355693),(2778,'76.204.79.25','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/the-hills-are-alive','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207355711),(2779,'76.204.79.25','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1207355719),(2780,'76.204.79.25','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207355720),(2781,'76.204.79.25','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207355775),(2782,'76.204.79.25','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1207355783),(2783,'76.204.79.25','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207355784),(2784,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207356654),(2785,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207356843),(2786,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207357253),(2787,'204.15.20.230','','empty','','','/eric/feed','','','',1207357311),(2788,'216.32.90.58','','empty','','','/eric/','Windows XP','Internet Explorer','6.0',1207357328),(2789,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207357915),(2790,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207358936),(2791,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207358974),(2792,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207359674),(2793,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207360004),(2794,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207360272),(2795,'61.247.217.41','','\\\"ja','','','/eric/','','Crawler/Search Engine','',1207360696),(2796,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207360883),(2797,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207361090),(2798,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207362085),(2799,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207362126),(2800,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207362537),(2801,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207362691),(2802,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207363045),(2803,'204.15.20.230','','empty','','','/eric/feed','','','',1207363072),(2804,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207363898),(2805,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207363964),(2806,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207364502),(2807,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207364830),(2808,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207365519),(2809,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207365710),(2810,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207366138),(2811,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207366603),(2812,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207367512),(2813,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207368381),(2814,'204.15.20.225','','empty','','','/eric/feed','','','',1207368927),(2815,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207369247),(2816,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207370151),(2817,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207371026),(2818,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207371874),(2819,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207372520),(2820,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207372773),(2821,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207373140),(2822,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207373608),(2823,'204.15.20.231','','empty','','','/eric/feed','','','',1207374259),(2824,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207374338),(2825,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207374515),(2826,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207374956),(2827,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207375396),(2828,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207375552),(2829,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207376147),(2830,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207376279),(2831,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207376759),(2832,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207377141),(2833,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207377971),(2834,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207378011),(2835,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207378573),(2836,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207378887),(2837,'204.15.20.229','','empty','','','/eric/feed','','','',1207379240),(2838,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207379771),(2839,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207380371),(2840,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207380389),(2841,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1207380766),(2842,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1207380771),(2843,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207381270),(2844,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207382195),(2845,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207382411),(2846,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207382802),(2847,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207383024),(2848,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207383393),(2849,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207383887),(2850,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207384013),(2851,'204.15.20.229','','empty','','','/eric/feed','','','',1207384499),(2852,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207384772),(2853,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207385213),(2854,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207385654),(2855,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207385820),(2856,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1207386235),(2857,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207386425),(2858,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207386534),(2859,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207387027),(2860,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207387427),(2861,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207387699),(2862,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207387704),(2863,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207388302),(2864,'67.195.37.92','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','','Yahoo! Slurp','',1207389009),(2865,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207389219),(2866,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207389451),(2867,'204.15.20.226','','empty','','','/eric/feed','','','',1207389975),(2868,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207390055),(2869,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207390146),(2870,'216.162.49.9','','en-us','','','/eric/','Mac OS X','Firefox','2.0.0.13',1207390519),(2871,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207391021),(2872,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207391868),(2873,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207391947),(2874,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1207391953),(2875,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207392470),(2876,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207392856),(2877,'216.162.49.9','','en-us','','','/eric/','Mac OS X','Firefox','2.0.0.13',1207393224),(2878,'216.162.49.9','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207393233),(2879,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207393681),(2880,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207393717),(2881,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207394280),(2882,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207394601),(2883,'204.15.20.227','','empty','','','/eric/feed','','','',1207395158),(2884,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207395458),(2885,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207395495),(2886,'66.231.189.159','','en','','','/eric/world/2008/old-bike','','Gigabot','3.0',1207396013),(2887,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207396105),(2888,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207396353),(2889,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207397225),(2890,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207398160),(2891,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207398995),(2892,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207399738),(2893,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207399913),(2894,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207400334),(2895,'204.15.20.227','','empty','','','/eric/feed','','','',1207400468),(2896,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207400788),(2897,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207400828),(2898,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207400936),(2899,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207401659),(2900,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207402555),(2901,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207402755),(2902,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207403499),(2903,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207403962),(2904,'68.159.97.156','','en-us','guide2games.org','http://guide2games.org/faq/','/eric/','Windows XP','Firefox','2.0.0.13',1207404140),(2905,'68.159.97.156','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207404150),(2906,'68.159.97.156','','en-us','guide2games.org','http://guide2games.org/faq/','/eric/','Windows XP','Firefox','2.0.0.13',1207404313),(2907,'68.159.97.156','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207404314),(2908,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207404338),(2909,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207404571),(2910,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207405156),(2911,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207405238),(2912,'204.15.20.228','','empty','','','/eric/feed','','','',1207405709),(2913,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207406113),(2914,'66.231.189.159','','en','','','/eric/adventure/2008/sleeping-under-the-stars','','Gigabot','3.0',1207406617),(2915,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207407049),(2916,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207407936),(2917,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207407936),(2918,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207407948),(2919,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1207407968),(2920,'209.131.41.48','','empty','','','/eric/','','Internet Explorer','5.5',1207408036),(2921,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207408044),(2922,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207408045),(2923,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207408184),(2924,'67.111.14.202','','empty','','','/eric/','','Technoratibot','0.7',1207408257),(2925,'67.111.14.202','','empty','','','/eric/feed','','Technoratibot','0.7',1207408258),(2926,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207408295),(2927,'66.249.72.203','','empty','','','/eric/nature/2008/white-tiger','','Googlebot','2.1',1207408317),(2928,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207408406),(2929,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207408407),(2930,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207408408),(2931,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207408475),(2932,'67.202.34.117','','empty','','','/eric/','','','',1207408566),(2933,'65.54.165.81','','empty','','','/eric/nature/2008/white-tiger','','msnbot','',1207408578),(2934,'142.166.3.122','','empty','','','/eric/nature/2008/white-tiger','','Crawler/Search Engine','',1207409239),(2935,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207409744),(2936,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207410009),(2937,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207410597),(2938,'64.41.145.129','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207410639),(2939,'64.41.145.129','','en-us','','','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Internet Explorer','6.0',1207410640),(2940,'64.41.145.129','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1207410641),(2941,'64.41.145.129','','en-us','','','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','6.0',1207410642),(2942,'64.41.145.129','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','6.0',1207410642),(2943,'64.41.145.129','','en-us','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1207410643),(2944,'64.41.145.129','','en-us','','','/eric/nature/2008/grand-tetons','Windows XP','Internet Explorer','6.0',1207410644),(2945,'64.41.145.129','','en-us','','','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207410645),(2946,'64.41.145.129','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207410646),(2947,'64.41.145.129','','en-us','','','/eric/adventure/2008/desert-storm-rally','Windows XP','Internet Explorer','6.0',1207410646),(2948,'64.41.145.129','','en-us','','','/eric/nature/2008/white-tiger','Windows XP','Internet Explorer','6.0',1207410647),(2949,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207410704),(2950,'64.21.98.196','','empty','','','/eric/','','','',1207410883),(2951,'64.21.98.196','','empty','','','/eric/feed','','','',1207410884),(2952,'64.21.98.196','','empty','','','/eric/feed','','','',1207410907),(2953,'74.6.21.122','','empty','','','/eric/world/2008/old-bike','','Yahoo! Slurp','',1207411101),(2954,'74.6.17.218','','empty','','','/eric/category/nature','','Yahoo! Slurp','',1207411117),(2955,'87.118.122.164','','empty','','','/eric/nature/2008/white-tiger','','Mozilla','',1207411274),(2956,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207411621),(2957,'74.6.31.229','','empty','','','/eric/nature/2008/grand-tetons','','Yahoo! Slurp','',1207411657),(2958,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207411821),(2959,'130.13.234.164','','en-us','google.com','http://www.google.com/search?client=safari&rls=en-us&q=grandview+photography&ie=UTF-8&oe=UTF-8','/eric/','Mac OS X','Safari','525.13',1207412496),(2960,'130.13.234.164','','en-us','google.com','http://www.google.com/search?client=safari&rls=en-us&q=grandview+photography&ie=UTF-8&oe=UTF-8','/eric/','Mac OS X','Safari','525.13',1207412497),(2961,'130.13.234.164','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Mac OS X','Safari','525.13',1207412520),(2962,'130.13.234.164','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207412528),(2963,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207412595),(2964,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207413515),(2965,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207413650),(2966,'204.15.20.226','','empty','','','/eric/feed','','','',1207413680),(2967,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207414462),(2968,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207415369),(2969,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207415442),(2970,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207416313),(2971,'69.13.112.144','','empty','','','/eric/','','','',1207416392),(2972,'69.13.112.144','','empty','','','/eric/','','','',1207416393),(2973,'69.13.112.144','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','','',1207416404),(2974,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207417219),(2975,'74.6.22.24','','empty','','','/eric/nature/2008/white-tiger','','Yahoo! Slurp','',1207417237),(2976,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207418123),(2977,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207419062),(2978,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207419068),(2979,'204.15.20.226','','empty','','','/eric/feed','','','',1207419700),(2980,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207419930),(2981,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207420273),(2982,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207420885),(2983,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207421499),(2984,'61.247.217.41','','\\\"ja','','','/eric/','','Crawler/Search Engine','',1207421693),(2985,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207421743),(2986,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207421763),(2987,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207421810),(2988,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207422103),(2989,'24.217.154.253','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207422278),(2990,'24.217.154.253','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207422283),(2991,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207422694),(2992,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207422699),(2993,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207423577),(2994,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207424512),(2995,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207424519),(2996,'65.55.212.211','','empty','','','/eric/','','msnbot','',1207424605),(2997,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207425266),(2998,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207425267),(2999,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207425389),(3000,'65.55.104.164','','empty','','','/eric/','','msnbot','1.1',1207425523),(3001,'204.15.20.230','','empty','','','/eric/feed','','','',1207425845),(3002,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207426318),(3003,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207426324),(3004,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207426937),(3005,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207427218),(3006,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207427531),(3007,'142.166.170.101','','empty','','','/eric/feed','','Crawler/Search Engine','',1207427588),(3008,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207428121),(3009,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207428151),(3010,'74.6.7.94','','empty','','','/eric/world/2008/','','Yahoo! Slurp','',1207428169),(3011,'74.6.7.94','','empty','','','/eric/world/2008','','Yahoo! Slurp','',1207428171),(3012,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207428743),(3013,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207429013),(3014,'65.55.104.164','','empty','','','/eric/portfolio','','msnbot','1.1',1207429709),(3015,'65.55.104.164','','empty','','','/eric/about','','msnbot','1.1',1207429709),(3016,'65.55.104.164','','empty','','','/eric/category/portraits','','msnbot','1.1',1207429713),(3017,'65.55.232.49','','en-us','search.live.com','http://search.live.com/results.aspx?q=portfolio&mrt=en-us&FORM=LIVSOP','/eric/portfolio','Windows 2003','Internet Explorer','7.0',1207429781),(3018,'65.55.104.164','','empty','','','/eric/feed','','msnbot','1.1',1207429905),(3019,'65.55.104.164','','empty','','','/eric/category/weddings','','msnbot','1.1',1207429906),(3020,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207429961),(3021,'65.55.232.39','','en-us','search.live.com','http://search.live.com/results.aspx?q=weddings&mrt=en-us&FORM=LIVSOP','/eric/category/weddings','Windows 2003','Internet Explorer','7.0',1207430001),(3022,'65.55.104.164','','empty','','','/eric/category/adventure','','msnbot','1.1',1207430250),(3023,'65.55.104.164','','empty','','','/eric/category/nature','','msnbot','1.1',1207430250),(3024,'65.55.104.164','','empty','','','/eric/packages','','msnbot','1.1',1207430453),(3025,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207430717),(3026,'65.55.104.164','','empty','','','/eric/category/world','','msnbot','1.1',1207430938),(3027,'65.55.232.44','','en-us','search.live.com','http://search.live.com/results.aspx?q=taken&mrt=en-us&FORM=LIVSOP','/eric/category/world','Windows 2003','Internet Explorer','7.0',1207431014),(3028,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207431176),(3029,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207431573),(3030,'204.15.20.231','','empty','','','/eric/feed','','','',1207431705),(3031,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207431789),(3032,'65.55.104.164','','empty','','','/eric/world/2008/wudhu','','msnbot','1.1',1207431872),(3033,'74.6.26.110','','empty','','','/eric/world/','','Yahoo! Slurp','',1207432185),(3034,'74.6.26.110','','empty','','','/eric/world','','Yahoo! Slurp','',1207432187),(3035,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207432374),(3036,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207432531),(3037,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207432997),(3038,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207433417),(3039,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207434191),(3040,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207434318),(3041,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207434797),(3042,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1207434916),(3043,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207435261),(3044,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207435399),(3045,'65.55.104.164','','empty','','','/eric/nature/2008/lotus','','msnbot','1.1',1207435798),(3046,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207435800),(3047,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207436007),(3048,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207436143),(3049,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207436616),(3050,'65.55.104.164','','empty','','','/eric/world/2008/old-bike','','msnbot','1.1',1207436773),(3051,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207437049),(3052,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207437202),(3053,'65.55.104.164','','empty','','','/eric/portraits/2008/glowing','','msnbot','1.1',1207437442),(3054,'65.55.104.164','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','msnbot','1.1',1207437442),(3055,'204.15.20.229','','empty','','','/eric/feed','','','',1207437771),(3056,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207437946),(3057,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207438851),(3058,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207439031),(3059,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1207439602),(3060,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207439618),(3061,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207439729),(3062,'74.6.25.88','','empty','','','/eric/world/2008/wudhu','','Yahoo! Slurp','',1207439946),(3063,'74.6.27.57','','empty','','','/eric/category/world','','Yahoo! Slurp','',1207439950),(3064,'74.6.16.177','','empty','','','/eric/category/portraits','','Yahoo! Slurp','',1207439966),(3065,'74.6.28.159','','empty','','','/eric/about','','Yahoo! Slurp','',1207440262),(3066,'74.6.24.53','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','Yahoo! Slurp','',1207440329),(3067,'74.6.21.62','','empty','','','/eric/portraits/2008/glowing','','Yahoo! Slurp','',1207440330),(3068,'74.6.18.54','','empty','','','/eric/adventure/2008/','','Yahoo! Slurp','',1207440463),(3069,'74.6.18.54','','empty','','','/eric/adventure/2008','','Yahoo! Slurp','',1207440464),(3070,'74.6.9.162','','empty','','','/eric/portraits/2008/','','Yahoo! Slurp','',1207440636),(3071,'74.6.9.162','','empty','','','/eric/portraits/2008','','Yahoo! Slurp','',1207440637),(3072,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207440641),(3073,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207440835),(3074,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207441442),(3075,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207441550),(3076,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207442031),(3077,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207442439),(3078,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207442635),(3079,'74.6.8.38','','empty','','','/eric/adventure/','','Yahoo! Slurp','',1207443185),(3080,'74.6.8.38','','empty','','','/eric/adventure','','Yahoo! Slurp','',1207443195),(3081,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207443382),(3082,'204.15.20.230','','empty','','','/eric/feed','','','',1207443763),(3083,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207443807),(3084,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207443807),(3085,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207443812),(3086,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207444324),(3087,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207444456),(3088,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207444506),(3089,'74.6.24.216','','empty','','','/eric/category/weddings','','Yahoo! Slurp','',1207445183),(3090,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207445276),(3091,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207446259),(3092,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207447149),(3093,'74.6.25.246','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1207447218),(3094,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207447464),(3095,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207447683),(3096,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207447700),(3097,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207447713),(3098,'71.36.182.120','','en-us','','','/eric/nature/2008/white-tiger','Windows XP','Firefox','2.0.0.13',1207447715),(3099,'71.36.182.120','','en-us','','','/eric/nature/2008/white-tiger','Windows XP','Firefox','2.0.0.13',1207447718),(3100,'71.36.182.120','','en-us','','','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1207447734),(3101,'71.36.182.120','','en-us','','','/eric/category/portraits','Windows XP','Firefox','2.0.0.13',1207447772),(3102,'71.36.182.120','','en-us','','','/eric/portraits/2008/glowing','Windows XP','Firefox','2.0.0.13',1207447801),(3103,'71.36.182.120','','en-us','','','/eric/category/portraits','Windows XP','Firefox','2.0.0.13',1207447820),(3104,'71.36.182.120','','en-us','','','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207447826),(3105,'71.36.182.120','','en-us','','','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207447857),(3106,'71.36.182.120','','en-us','','','/eric/category/portraits','Windows XP','Firefox','2.0.0.13',1207447858),(3107,'71.36.182.120','','en-us','','','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207447860),(3108,'71.36.182.120','','en-us','','','/eric/category/portraits','Windows XP','Firefox','2.0.0.13',1207447866),(3109,'71.36.182.120','','en-us','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Firefox','2.0.0.13',1207447869),(3110,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207448137),(3111,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207448137),(3112,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207448140),(3113,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207448250),(3114,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207448252),(3115,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207448674),(3116,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207449004),(3117,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207449275),(3118,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207449870),(3119,'204.15.20.231','','empty','','','/eric/feed','','','',1207449888),(3120,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207449907),(3121,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207450829),(3122,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207451697),(3123,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207451726),(3124,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207452685),(3125,'98.207.11.191','','en-us','','','/eric/','Mac OS X','Firefox','2.0.0.13',1207452769),(3126,'98.207.11.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207452774),(3127,'98.207.11.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207452775),(3128,'98.207.11.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Firefox','2.0.0.13',1207452794),(3129,'98.207.11.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Firefox','2.0.0.13',1207452804),(3130,'98.207.11.191','','en-us','','','/eric/','Mac OS X','Firefox','2.0.0.13',1207452806),(3131,'98.207.11.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1207452807),(3132,'74.6.25.37','','empty','','','/eric/portraits/2008/field-of-green','','Yahoo! Slurp','',1207453323),(3133,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207453529),(3134,'72.201.83.32','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207453577),(3135,'72.201.83.32','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207453581),(3136,'72.201.83.32','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207453652),(3137,'72.201.83.32','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207453653),(3138,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207454442),(3139,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207455344),(3140,'204.15.20.231','','empty','','','/eric/feed','','','',1207455861),(3141,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1207455992),(3142,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207456237),(3143,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207457120),(3144,'74.6.20.170','','empty','','','/eric/category/adventure','','Yahoo! Slurp','',1207457591),(3145,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207457999),(3146,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207458806),(3147,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207458947),(3148,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207459418),(3149,'74.6.20.253','','empty','','','/eric/packages','','Yahoo! Slurp','',1207459730),(3150,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207460089),(3151,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207460626),(3152,'204.15.20.229','','empty','','','/eric/feed','','','',1207461066),(3153,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207461273),(3154,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207461886),(3155,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1207461890),(3156,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1207461920),(3157,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207461967),(3158,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207461968),(3159,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207462260),(3160,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207462272),(3161,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207462326),(3162,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207462327),(3163,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1207462403),(3164,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1207462404),(3165,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207462428),(3166,'64.40.118.238','','empty','','','/eric/?feed=rss2','','','',1207462540),(3167,'64.40.118.238','','empty','','','/eric/','','','',1207462541),(3168,'64.40.118.238','','empty','','','/eric/','','','',1207462542),(3169,'64.40.118.238','','empty','','','/eric/nature/2008/white-tiger','','','',1207462543),(3170,'64.40.118.238','','empty','','','/eric/nature/2008/white-tiger','','','',1207462543),(3171,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207462560),(3172,'67.202.34.117','','empty','','','/eric/','','','',1207462667),(3173,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207463046),(3174,'65.55.104.21','','empty','','','/eric/category/world','','msnbot','1.1',1207463334),(3175,'74.6.25.40','','empty','','','/eric/nature/2008/lotus','','Yahoo! Slurp','',1207463549),(3176,'64.41.145.111','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207463587),(3177,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207463645),(3178,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207464249),(3179,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207464854),(3180,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207465296),(3181,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207466067),(3182,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207466845),(3183,'204.15.20.224','','empty','','','/eric/feed','','','',1207466848),(3184,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207467266),(3185,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207468216),(3186,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207468485),(3187,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207469061),(3188,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207469072),(3189,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207469683),(3190,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207470152),(3191,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207470156),(3192,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207470890),(3193,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207471502),(3194,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207471682),(3195,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207472094),(3196,'204.15.20.229','','empty','','','/eric/feed','','','',1207473092),(3197,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207473238),(3198,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207473313),(3199,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207473912),(3200,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207474130),(3201,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207474526),(3202,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207475035),(3203,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207475940),(3204,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207476940),(3205,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207477009),(3206,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207477544),(3207,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207477950),(3208,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207478134),(3209,'204.15.20.230','','empty','','','/eric/feed','','','',1207478500),(3210,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207478749),(3211,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207478871),(3212,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207479343),(3213,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207479774),(3214,'66.249.72.203','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Googlebot','2.1',1207480049),(3215,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207480554),(3216,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207480644),(3217,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207481530),(3218,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207482421),(3219,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207483344),(3220,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1207483470),(3221,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207483583),(3222,'142.166.170.80','','empty','','','/eric/feed','','Crawler/Search Engine','',1207483591),(3223,'204.15.20.227','','empty','','','/eric/feed','','','',1207483829),(3224,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207484192),(3225,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207484239),(3226,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207485114),(3227,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207485398),(3228,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207486017),(3229,'91.48.134.247','','de-de','','','/eric/','Mac OS X','Safari','525.13',1207486338),(3230,'91.48.134.247','','de-de','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Mac OS X','Safari','525.13',1207486361),(3231,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207486914),(3232,'74.6.17.245','','empty','','','/eric/nature/2008/','','Yahoo! Slurp','',1207487711),(3233,'74.6.17.245','','empty','','','/eric/nature/2008','','Yahoo! Slurp','',1207487712),(3234,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207487844),(3235,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207488418),(3236,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207488741),(3237,'204.15.20.226','','empty','','','/eric/feed','','','',1207488856),(3238,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207489654),(3239,'66.231.189.159','','en','','','/eric/feed','','Gigabot','3.0',1207490355),(3240,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207490559),(3241,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207491443),(3242,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207491467),(3243,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207492024),(3244,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207492358),(3245,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207492649),(3246,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207493302),(3247,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207494197),(3248,'204.15.20.231','','empty','','','/eric/feed','','','',1207494221),(3249,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207494462),(3250,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207495073),(3251,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207495136),(3252,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207495675),(3253,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207496047),(3254,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207496285),(3255,'202.176.218.45','','empty','eden.org','http://www.grandviewphotographyaz.com','/eric/','','Crawler/Search Engine','',1207496932),(3256,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207496979),(3257,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207497479),(3258,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207497909),(3259,'74.6.23.35','','empty','','','/eric/portfolio/','','Yahoo! Slurp','',1207497967),(3260,'74.6.23.35','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1207497968),(3261,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207498886),(3262,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207499807),(3263,'204.15.20.228','','empty','','','/eric/feed','','','',1207499855),(3264,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207500377),(3265,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207500384),(3266,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Firefox','2.0.0.13',1207500406),(3267,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/category/world','Windows XP','Firefox','2.0.0.13',1207500425),(3268,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/category/adventure','Windows XP','Firefox','2.0.0.13',1207500446),(3269,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/category/world','Windows XP','Firefox','2.0.0.13',1207500451),(3270,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1207500456),(3271,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/weddings/2008/carleybryan-wedding1','Windows XP','Firefox','2.0.0.13',1207500470),(3272,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207500522),(3273,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207500716),(3274,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207501124),(3275,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207501357),(3276,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207501732),(3277,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207502310),(3278,'202.160.180.197','','empty','','','/eric/','','Yahoo! Slurp','',1207502366),(3279,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207502960),(3280,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207503239),(3281,'69.41.14.150','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','','',1207503323),(3282,'69.41.14.150','','empty','','','/eric/category/world','','','',1207503324),(3283,'69.41.14.150','','empty','','','/eric/category/world','','','',1207503411),(3284,'69.41.14.150','','empty','','','/eric/category/weddings','','','',1207503411),(3285,'69.41.14.150','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','','',1207503414),(3286,'68.3.97.34','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207503986),(3287,'68.3.97.34','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207503997),(3288,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207504139),(3289,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207504201),(3290,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207505171),(3291,'204.15.20.225','','empty','','','/eric/feed','','','',1207505556),(3292,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207506082),(3293,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207506568),(3294,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207507033),(3295,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207507215),(3296,'70.230.196.210','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','3.0',1207507708),(3297,'70.230.196.210','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','3.0',1207507713),(3298,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207507982),(3299,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207508368),(3300,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207508921),(3301,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207509853),(3302,'65.55.212.211','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','msnbot','',1207510340),(3303,'65.55.212.211','','empty','','','/eric/about','','msnbot','',1207510505),(3304,'65.55.212.211','','empty','','','/eric/category/portraits','','msnbot','',1207510509),(3305,'65.55.212.211','','empty','','','/eric/category/weddings','','msnbot','',1207510513),(3306,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207510785),(3307,'204.15.20.230','','empty','','','/eric/feed','','','',1207511190),(3308,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207511706),(3309,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207511997),(3310,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207512701),(3311,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207513624),(3312,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207514407),(3313,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207514573),(3314,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207515505),(3315,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207515627),(3316,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207516442),(3317,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207516816),(3318,'204.15.20.229','','empty','','','/eric/feed','','','',1207517028),(3319,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207517441),(3320,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207517441),(3321,'68.2.161.177','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1207517908),(3322,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207517913),(3323,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','6.0',1207517979),(3324,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portraits/2008/field-of-green','Windows XP','Internet Explorer','6.0',1207517993),(3325,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/field-of-green','/eric/portraits/2008/field-of-green','Windows XP','Internet Explorer','6.0',1207517999),(3326,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/field-of-green','/eric/category/portraits','Windows XP','Internet Explorer','6.0',1207518002),(3327,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portraits/2008/field-of-green','Windows XP','Internet Explorer','6.0',1207518012),(3328,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/field-of-green','/eric/portfolio','Windows XP','Internet Explorer','6.0',1207518024),(3329,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207518024),(3330,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/field-of-green','/eric/portfolio','Windows XP','Internet Explorer','6.0',1207518103),(3331,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/packages','Windows XP','Internet Explorer','6.0',1207518109),(3332,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207518403),(3333,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207518646),(3334,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/packages','Windows XP','Internet Explorer','6.0',1207518897),(3335,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/category/adventure','Windows XP','Internet Explorer','6.0',1207518903),(3336,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/adventure/2008/desert-storm-rally','Windows XP','Internet Explorer','6.0',1207518922),(3337,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/adventure/2008/desert-storm-rally','/eric/adventure/2008/desert-storm-rally','Windows XP','Internet Explorer','6.0',1207518925),(3338,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/adventure/2008/desert-storm-rally','/eric/category/world','Windows XP','Internet Explorer','6.0',1207518928),(3339,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/category/weddings','Windows XP','Internet Explorer','6.0',1207518934),(3340,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','6.0',1207518950),(3341,'68.2.161.177','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1207518952),(3342,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207518953),(3343,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207519236),(3344,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207519327),(3345,'85.110.7.70','','tr','eden.org','http://www.grandviewphotographyaz.com/blog/?m=200711','/eric/','Windows XP','Internet Explorer','7.0',1207519715),(3346,'85.110.7.70','','tr','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207519750),(3347,'85.110.7.70','','tr','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207519774),(3348,'85.110.7.70','','tr','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207519776),(3349,'65.55.212.211','','empty','','','/eric/adventure/2008/desert-storm-rally','','msnbot','',1207519798),(3350,'65.55.212.211','','empty','','','/eric/world/2008/wudhu','','msnbot','',1207519801),(3351,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207519843),(3352,'66.231.189.159','','en','','','/eric/packages','','Gigabot','3.0',1207520044),(3353,'65.118.209.226','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207520047),(3354,'65.118.209.226','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207520055),(3355,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207520265),(3356,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207521054),(3357,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207521198),(3358,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207521662),(3359,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207522120),(3360,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207522249),(3361,'204.15.20.224','','empty','','','/eric/feed','','','',1207522415),(3362,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207523065),(3363,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207523472),(3364,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207523954),(3365,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207524913),(3366,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207525784),(3367,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207526727),(3368,'74.6.20.244','','empty','','','/eric/nature/','','Yahoo! Slurp','',1207527264),(3369,'74.6.20.244','','empty','','','/eric/nature','','Yahoo! Slurp','',1207527265),(3370,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207527626),(3371,'204.15.20.230','','empty','','','/eric/feed','','','',1207527906),(3372,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207528541),(3373,'68.108.215.110','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207529426),(3374,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207529431),(3375,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207529448),(3376,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207529514),(3377,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207530110),(3378,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207530365),(3379,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207530713),(3380,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207531287),(3381,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207531317),(3382,'72.30.179.243','','empty','','','/eric/feed','','Yahoo! Slurp','',1207531750),(3383,'74.6.17.232','','empty','','','/eric/contact','','Yahoo! Slurp','',1207532136),(3384,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207532199),(3385,'74.6.29.232','','empty','','','/eric/xmlrpc.php','','Yahoo! Slurp','',1207532296),(3386,'74.6.29.37','','empty','','','/eric/xmlrpc.php?rsd','','Yahoo! Slurp','',1207532842),(3387,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207533110),(3388,'68.108.215.110','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207533137),(3389,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207533142),(3390,'68.108.215.110','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Firefox','2.0.0.13',1207533152),(3391,'204.15.20.231','','empty','','','/eric/feed','','','',1207533662),(3392,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207533736),(3393,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207534030),(3394,'68.104.170.81','','empty','','','/eric/feed','','Mozilla','',1207534510),(3395,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207534931),(3396,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207535873),(3397,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207536138),(3398,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207536173),(3399,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207536296),(3400,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207536766),(3401,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207536794),(3402,'74.6.21.28','','empty','','','/eric/portraits/','','Yahoo! Slurp','',1207536884),(3403,'74.6.21.28','','empty','','','/eric/portraits','','Yahoo! Slurp','',1207536885),(3404,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207537062),(3405,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207537066),(3406,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207537751),(3407,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207537964),(3408,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207538693),(3409,'204.15.20.228','','empty','','','/eric/feed','','','',1207539290),(3410,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207539587),(3411,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207540534),(3412,'142.166.170.82','','empty','','','/eric/feed','','Crawler/Search Engine','',1207540903),(3413,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207541453),(3414,'207.224.168.141','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207542315),(3415,'207.224.168.141','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207542315),(3416,'207.224.168.141','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207542331),(3417,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207542382),(3418,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207543316),(3419,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207543935),(3420,'204.15.20.226','','empty','','','/eric/feed','','','',1207544422),(3421,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207544854),(3422,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207544984),(3423,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207545306),(3424,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207545767),(3425,'69.13.112.144','','empty','','','/eric/','','','',1207546208),(3426,'69.13.112.144','','empty','','','/eric/','','','',1207546208),(3427,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207546527),(3428,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207546692),(3429,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207547189),(3430,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207547659),(3431,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207548323),(3432,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207548748),(3433,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207548934),(3434,'130.13.174.168','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207549314),(3435,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207549320),(3436,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549323),(3437,'130.13.174.168','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207549367),(3438,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207549367),(3439,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549368),(3440,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207549396),(3441,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549398),(3442,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207549428),(3443,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549429),(3444,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/packages','Windows XP','Firefox','2.0.0.13',1207549432),(3445,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549434),(3446,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/about','Windows XP','Firefox','2.0.0.13',1207549440),(3447,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549442),(3448,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207549467),(3449,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549469),(3450,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549472),(3451,'130.13.174.168','','empty','','','/eric/feed','Windows','','',1207549486),(3452,'216.241.182.150','','empty','','','/eric/feed','','','',1207549496),(3453,'64.78.155.100','','empty','','','/eric/feed','','','',1207549497),(3454,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207549500),(3455,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549501),(3456,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/about','Windows XP','Firefox','2.0.0.13',1207549506),(3457,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549507),(3458,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/packages','Windows XP','Firefox','2.0.0.13',1207549510),(3459,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549511),(3460,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/about','Windows XP','Firefox','2.0.0.13',1207549519),(3461,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549521),(3462,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/','Windows XP','Firefox','2.0.0.13',1207549531),(3463,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207549532),(3464,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549533),(3465,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207549537),(3466,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/','Windows XP','Firefox','2.0.0.13',1207549563),(3467,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207549564),(3468,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549564),(3469,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/contact','Windows XP','Firefox','2.0.0.13',1207549573),(3470,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549575),(3471,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/','Windows XP','Firefox','2.0.0.13',1207549577),(3472,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207549578),(3473,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207549579),(3474,'204.15.20.224','','empty','','','/eric/feed','','','',1207549629),(3475,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207549794),(3476,'64.78.155.100','','empty','','','/eric/feed','','','',1207550362),(3477,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207550741),(3478,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207550872),(3479,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207551920),(3480,'130.13.174.168','','en-us','','','/eric/adventure/2008/desert-storm-rally','Windows XP','Firefox','2.0.0.13',1207552162),(3481,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207552176),(3482,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1207552363),(3483,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207552557),(3484,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207552979),(3485,'66.231.189.159','','en','','','/eric/about','','Gigabot','3.0',1207553489),(3486,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207553763),(3487,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207554042),(3488,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207554364),(3489,'204.15.20.224','','empty','','','/eric/feed','','','',1207554795),(3490,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207554960),(3491,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207555116),(3492,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207555581),(3493,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207556146),(3494,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207556162),(3495,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207556784),(3496,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207557272),(3497,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207557396),(3498,'64.78.155.100','','empty','','','/eric/feed','','','',1207557680),(3499,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207557985),(3500,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207558330),(3501,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207559202),(3502,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207559404),(3503,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207559792),(3504,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1207560017),(3505,'204.15.20.224','','empty','','','/eric/feed','','','',1207560069),(3506,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207560473),(3507,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207561545),(3508,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207561616),(3509,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207562625),(3510,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207562820),(3511,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207563706),(3512,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207564043),(3513,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207564784),(3514,'64.78.155.100','','empty','','','/eric/feed','','','',1207565018),(3515,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207565830),(3516,'204.15.20.224','','empty','','','/eric/feed','','','',1207565928),(3517,'66.249.72.203','','empty','','','/eric/nature/2008/grand-tetons','','Googlebot','2.1',1207565933),(3518,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207566963),(3519,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207567045),(3520,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207568094),(3521,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207568249),(3522,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207568846),(3523,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207569140),(3524,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207570274),(3525,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207570666),(3526,'204.15.20.226','','empty','','','/eric/feed','','','',1207571308),(3527,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207571384),(3528,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207571880),(3529,'64.78.155.100','','empty','','','/eric/feed','','','',1207572347),(3530,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207572472),(3531,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207572485),(3532,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207573096),(3533,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207573591),(3534,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207573696),(3535,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207574652),(3536,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207575514),(3537,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207575818),(3538,'77.204.37.11','','fr-fr','','','/eric/','Mac OS X','Safari','525.13',1207575853),(3539,'77.204.37.11','','fr-fr','eden.org','http://grandviewphotographyaz.com/','/eric/adventure/2008/desert-storm-rally','Mac OS X','Safari','525.13',1207575882),(3540,'77.204.37.11','','fr-fr','eden.org','http://grandviewphotographyaz.com/adventure/2008/desert-storm-rally','/eric/adventure/2008/desert-storm-rally','Mac OS X','Safari','525.13',1207575890),(3541,'77.204.37.11','','fr-fr','eden.org','http://grandviewphotographyaz.com/adventure/2008/desert-storm-rally','/eric/portfolio','Mac OS X','Safari','525.13',1207575895),(3542,'77.204.37.11','','fr-fr','','','/eric/portfolio','Mac OS X','Safari','525.13',1207575921),(3543,'77.204.37.11','','fr-fr','','','/eric/adventure/2008/desert-storm-rally','Mac OS X','Safari','525.13',1207575923),(3544,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207576117),(3545,'67.195.37.92','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','','Yahoo! Slurp','',1207576565),(3546,'204.15.20.228','','empty','','','/eric/feed','','','',1207576883),(3547,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207576913),(3548,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207577313),(3549,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207578090),(3550,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207578528),(3551,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207579216),(3552,'64.78.155.100','','empty','','','/eric/feed','','','',1207579668),(3553,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207579741),(3554,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1207579772),(3555,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207580370),(3556,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207580423),(3557,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207581502),(3558,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207581503),(3559,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1207581551),(3560,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207581593),(3561,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207581594),(3562,'66.249.72.203','','empty','','','/eric/portraits/2008/asher','','Googlebot','2.1',1207581998),(3563,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1207582016),(3564,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1207582017),(3565,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207582158),(3566,'64.152.34.228','','empty','','','/eric/','Windows XP','Firefox','2.0.0.12',1207582658),(3567,'204.15.20.231','','empty','','','/eric/feed','','','',1207582682),(3568,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207582758),(3569,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207583368),(3570,'67.129.219.136','','empty','','','/eric/portraits/2008/asher','','Internet Explorer','5.5',1207583726),(3571,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207583914),(3572,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207583972),(3573,'64.41.145.193','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207584432),(3574,'64.41.145.193','','en-us','','','/eric/world/2008/old-bike','Windows XP','Internet Explorer','6.0',1207584433),(3575,'64.41.145.193','','en-us','','','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','6.0',1207584434),(3576,'64.41.145.193','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','6.0',1207584438),(3577,'64.41.145.193','','en-us','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1207584439),(3578,'64.41.145.193','','en-us','','','/eric/nature/2008/grand-tetons','Windows XP','Internet Explorer','6.0',1207584440),(3579,'64.41.145.193','','en-us','','','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207584441),(3580,'64.41.145.193','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207584442),(3581,'64.41.145.193','','en-us','','','/eric/adventure/2008/desert-storm-rally','Windows XP','Internet Explorer','6.0',1207584443),(3582,'64.41.145.193','','en-us','','','/eric/nature/2008/white-tiger','Windows XP','Internet Explorer','6.0',1207584443),(3583,'64.41.145.193','','en-us','','','/eric/portraits/2008/asher','Windows XP','Internet Explorer','6.0',1207584444),(3584,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207585111),(3585,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207585453),(3586,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207585567),(3587,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207586203),(3588,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207586391),(3589,'64.78.155.100','','empty','','','/eric/feed','','','',1207586998),(3590,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207587237),(3591,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207588382),(3592,'204.15.20.231','','empty','','','/eric/feed','','','',1207588652),(3593,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207589559),(3594,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207590745),(3595,'72.232.153.33','','empty','','','/eric/xmlrpc.php','','','',1207591536),(3596,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207591858),(3597,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207591868),(3598,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1207591903),(3599,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207591914),(3600,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207591914),(3601,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1207592006),(3602,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207592131),(3603,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207592137),(3604,'67.111.14.202','','empty','','','/eric/','','Technoratibot','0.7',1207592147),(3605,'67.111.14.202','','empty','','','/eric/feed','','Technoratibot','0.7',1207592148),(3606,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207592221),(3607,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207592322),(3608,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207592345),(3609,'65.54.165.81','','empty','','','/eric/portraits/2008/asher','','msnbot','',1207592423),(3610,'67.202.34.117','','empty','','','/eric/','','','',1207592487),(3611,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207593067),(3612,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207593270),(3613,'64.40.118.222','','empty','','','/eric/?feed=rss2','','','',1207593516),(3614,'64.40.118.222','','empty','','','/eric/','','','',1207593518),(3615,'64.40.118.222','','empty','','','/eric/','','','',1207593518),(3616,'64.40.118.222','','empty','','','/eric/portraits/2008/asher','','','',1207593521),(3617,'64.40.118.222','','empty','','','/eric/portraits/2008/asher','','','',1207593522),(3618,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207593795),(3619,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207594234),(3620,'64.41.145.110','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207594272),(3621,'64.78.155.100','','empty','','','/eric/feed','','','',1207594303),(3622,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207594324),(3623,'204.15.20.230','','empty','','','/eric/feed','','','',1207594688),(3624,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207594735),(3625,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207594828),(3626,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207595278),(3627,'67.195.51.246','','empty','','','/eric/','','Yahoo! Slurp','',1207595295),(3628,'67.195.51.246','','empty','','','/eric/','','Yahoo! Slurp','',1207595305),(3629,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207595436),(3630,'142.166.170.83','','empty','','','/eric/feed','','Crawler/Search Engine','',1207595951),(3631,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207596182),(3632,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207596674),(3633,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207597264),(3634,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207597515),(3635,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207597869),(3636,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207598430),(3637,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207598443),(3638,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207599079),(3639,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207599605),(3640,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207599670),(3641,'204.15.20.225','','empty','','','/eric/feed','','','',1207600425),(3642,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207600749),(3643,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207600893),(3644,'75.127.197.235','','en-us','facebook.com','http://www.facebook.com/notes.php?ref=sb','/eric/portraits/2008/asher','Windows Vista','Internet Explorer','7.0',1207601343),(3645,'75.127.197.235','','en-us','facebook.com','http://www.facebook.com/notes.php?id=776798153','/eric/nature/2008/white-tiger','Windows Vista','Internet Explorer','7.0',1207601384),(3646,'75.127.197.235','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/white-tiger','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207601400),(3647,'75.127.197.235','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/packages','Windows Vista','Internet Explorer','7.0',1207601404),(3648,'64.78.155.100','','empty','','','/eric/feed','','','',1207601639),(3649,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207601874),(3650,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207602059),(3651,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207602106),(3652,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207603029),(3653,'24.248.36.14','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207603075),(3654,'24.248.36.14','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207603079),(3655,'24.248.36.14','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207603079),(3656,'24.248.36.14','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207603080),(3657,'24.248.36.14','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','6.0',1207603081),(3658,'24.248.36.14','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207603081),(3659,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207604221),(3660,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207605119),(3661,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207605345),(3662,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207605645),(3663,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207606318),(3664,'204.15.20.230','','empty','','','/eric/feed','','','',1207606339),(3665,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207606513),(3666,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207606916),(3667,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207607608),(3668,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207608125),(3669,'72.204.250.105','','en','google.com','http://www.google.com/search?client=safari&rls=en&q=grandview+photography&ie=UTF-8&oe=UTF-8','/eric/','Mac OS X','Safari','1.3',1207608159),(3670,'72.204.250.105','','en','google.com','http://www.google.com/search?client=safari&rls=en&q=grandview+photography&ie=UTF-8&oe=UTF-8','/eric/','Mac OS X','Safari','1.3',1207608160),(3671,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207608671),(3672,'70.166.96.84','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207609132),(3673,'70.166.96.84','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207609142),(3674,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207609246),(3675,'64.78.155.100','','empty','','','/eric/feed','','','',1207609668),(3676,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207609941),(3677,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207610136),(3678,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207611257),(3679,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207611613),(3680,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207612037),(3681,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207612350),(3682,'204.15.20.229','','empty','','','/eric/feed','','','',1207612410),(3683,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207612480),(3684,'65.55.209.81','','empty','','','/eric/?cat=8','','msnbot','1.1',1207612757),(3685,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207612848),(3686,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207613182),(3687,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207613563),(3688,'74.6.24.217','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','Yahoo! Slurp','',1207613676),(3689,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207613741),(3690,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207613747),(3691,'74.6.31.122','','empty','','','/eric/weddings/2008/','','Yahoo! Slurp','',1207613865),(3692,'74.6.31.122','','empty','','','/eric/weddings/2008','','Yahoo! Slurp','',1207613866),(3693,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207613976),(3694,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207614273),(3695,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207614766),(3696,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207615440),(3697,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207616449),(3698,'64.78.155.100','','empty','','','/eric/feed','','','',1207616992),(3699,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207617187),(3700,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207617514),(3701,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207618389),(3702,'204.15.20.225','','empty','','','/eric/feed','','','',1207618393),(3703,'67.195.37.92','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','','Yahoo! Slurp','',1207618821),(3704,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207618864),(3705,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207619856),(3706,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207620196),(3707,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207620797),(3708,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207620807),(3709,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207621393),(3710,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207621772),(3711,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207622685),(3712,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207623014),(3713,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207623620),(3714,'64.78.155.100','','empty','','','/eric/feed','','','',1207624311),(3715,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207624388),(3716,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207624402),(3717,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207624428),(3718,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207624525),(3719,'204.15.20.228','','empty','','','/eric/feed','','','',1207624677),(3720,'76.235.83.71','','en-us','google.com','http://www.google.com/search?hl=en&q=sr.+picture+packages&btnG=Google+Search','/eric/portraits/2008/sarah-sr-pictures-1','Mac OS X','Safari','523.15',1207625220),(3721,'76.235.83.71','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/packages','Mac OS X','Safari','523.15',1207625238),(3722,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207625258),(3723,'76.235.83.71','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/','Mac OS X','Safari','523.15',1207625303),(3724,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207625387),(3725,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207625392),(3726,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/category/world','Windows XP','Internet Explorer','7.0',1207625422),(3727,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207625496),(3728,'72.204.241.130','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207625734),(3729,'72.204.241.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207625738),(3730,'72.204.241.130','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207625788),(3731,'72.204.241.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207625789),(3732,'72.204.241.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Internet Explorer','7.0',1207625814),(3733,'72.204.241.130','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Internet Explorer','7.0',1207625833),(3734,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207626382),(3735,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207627286),(3736,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207628236),(3737,'72.204.241.130','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207628743),(3738,'72.204.241.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207628746),(3739,'72.204.241.130','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207628814),(3740,'72.204.241.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207628815),(3741,'72.204.241.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Internet Explorer','7.0',1207628819),(3742,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207629108),(3743,'72.208.144.243','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1207629631),(3744,'72.208.144.243','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.12',1207629635),(3745,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207629828),(3746,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207629831),(3747,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207630099),(3748,'204.15.20.228','','empty','','','/eric/feed','','','',1207630262),(3749,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207630870),(3750,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207630990),(3751,'64.78.155.100','','empty','','','/eric/feed','','','',1207631625),(3752,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207631759),(3753,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207631946),(3754,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207632857),(3755,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207632964),(3756,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207633565),(3757,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207633764),(3758,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207634167),(3759,'67.195.51.189','','empty','','','/eric/','','Yahoo! Slurp','',1207634182),(3760,'67.195.51.222','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Yahoo! Slurp','',1207634304),(3761,'67.195.51.187','','empty','','','/eric/feed','','Yahoo! Slurp','',1207634324),(3762,'67.195.51.240','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1207634345),(3763,'67.195.51.95','','empty','','','/eric/portraits/2008/asher','','Yahoo! Slurp','',1207634390),(3764,'67.195.51.125','','empty','','','/eric/nature/2008/the-hills-are-alive','','Yahoo! Slurp','',1207634496),(3765,'67.195.54.33','','empty','','','/eric/category/adventure','','Yahoo! Slurp','',1207634505),(3766,'67.195.52.58','','empty','','','/eric/nature/2008/grand-tetons','','Yahoo! Slurp','',1207634515),(3767,'67.195.51.126','','empty','','','/eric/contact','','Yahoo! Slurp','',1207634527),(3768,'67.195.51.175','','empty','','','/eric/category/portraits','','Yahoo! Slurp','',1207634538),(3769,'67.195.51.181','','empty','','','/eric/category/weddings','','Yahoo! Slurp','',1207634547),(3770,'67.195.52.33','','empty','','','/eric/nature/2008/white-tiger','','Yahoo! Slurp','',1207634567),(3771,'67.195.54.24','','empty','','','/eric/packages','','Yahoo! Slurp','',1207634576),(3772,'67.195.52.52','','empty','','','/eric/adventure/2008/desert-storm-rally','','Yahoo! Slurp','',1207634586),(3773,'67.195.54.51','','empty','','','/eric/category/world','','Yahoo! Slurp','',1207634606),(3774,'67.195.52.95','','empty','','','/eric/weddings/2008/snow-white','','Yahoo! Slurp','',1207634616),(3775,'67.195.52.39','','empty','','','/eric/world/2008/wudhu','','Yahoo! Slurp','',1207634645),(3776,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207634694),(3777,'67.195.51.96','','empty','','','/eric/about','','Yahoo! Slurp','',1207634698),(3778,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207634777),(3779,'67.195.52.38','','empty','','','/eric/category/nature','','Yahoo! Slurp','',1207634808),(3780,'204.15.20.224','','empty','','','/eric/feed','','','',1207635346),(3781,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207635378),(3782,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207635622),(3783,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1207636266),(3784,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207636526),(3785,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207636586),(3786,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207637199),(3787,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207637466),(3788,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207637799),(3789,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207638360),(3790,'64.78.155.100','','empty','','','/eric/feed','','','',1207638953),(3791,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207639259),(3792,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207640208),(3793,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207640211),(3794,'204.15.20.225','','empty','','','/eric/feed','','','',1207640622),(3795,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207640821),(3796,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207641100),(3797,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207642000),(3798,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207642906),(3799,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207643242),(3800,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207643844),(3801,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207644794),(3802,'204.15.20.227','','empty','','','/eric/feed','','','',1207645623),(3803,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207645720),(3804,'65.55.104.20','','empty','','','/eric/','','msnbot','1.1',1207646142),(3805,'64.78.155.100','','empty','','','/eric/feed','','','',1207646264),(3806,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207646611),(3807,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1207646623),(3808,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1207646797),(3809,'74.6.29.174','','empty','','','/eric/portraits/2008/asher','','Yahoo! Slurp','',1207646824),(3810,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207647557),(3811,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207648446),(3812,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207649382),(3813,'66.249.72.203','','empty','','','/eric/feed','','Googlebot','2.1',1207649931),(3814,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207650319),(3815,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207651236),(3816,'204.15.20.228','','empty','','','/eric/feed','','','',1207651287),(3817,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207651317),(3818,'66.249.72.203','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','Googlebot','2.1',1207651638),(3819,'66.249.72.203','','empty','','','/eric/category/world','','Googlebot','2.1',1207651802),(3820,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207652169),(3821,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207653087),(3822,'66.249.72.203','','empty','','','/eric/portraits/2008/field-of-green','','Googlebot','2.1',1207653762),(3823,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207653768),(3824,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207654012),(3825,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207654750),(3826,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207654960),(3827,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207655897),(3828,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207655941),(3829,'142.166.170.81','','empty','','','/eric/feed','','Crawler/Search Engine','',1207656373),(3830,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207656886),(3831,'204.15.20.228','','empty','','','/eric/feed','','','',1207657024),(3832,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207657806),(3833,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207658768),(3834,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207659700),(3835,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207660773),(3836,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207660862),(3837,'84.195.228.11','','nl','eden.org','http://www.grandviewphotographyaz.com/blog/?cat=8','/eric/','Windows XP','Firefox','2.0.0.13',1207661475),(3838,'84.195.228.11','','nl','eden.org','http://www.grandviewphotographyaz.com/blog/?cat=8','/eric/','Windows XP','Firefox','2.0.0.13',1207661479),(3839,'84.195.228.11','','nl','eden.org','http://www.grandviewphotographyaz.com/blog/?cat=8','/eric/','Windows XP','Firefox','2.0.0.13',1207661480),(3840,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207661790),(3841,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207662079),(3842,'204.15.20.231','','empty','','','/eric/feed','','','',1207662213),(3843,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207662679),(3844,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207662778),(3845,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207663277),(3846,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207663793),(3847,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207663885),(3848,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207664755),(3849,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207665695),(3850,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207665766),(3851,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207666291),(3852,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207666751),(3853,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207666892),(3854,'207.200.116.74','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207667140),(3855,'207.200.116.74','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207667145),(3856,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207667503),(3857,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207667753),(3858,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207668095),(3859,'204.15.20.229','','empty','','','/eric/feed','','','',1207668219),(3860,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207668700),(3861,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207668774),(3862,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207669304),(3863,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207669787),(3864,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207669903),(3865,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207670354),(3866,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207670514),(3867,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207670777),(3868,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207671119),(3869,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207671706),(3870,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207671712),(3871,'64.78.155.100','','empty','','','/eric/feed','','','',1207671930),(3872,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207672331),(3873,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207672492),(3874,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207672922),(3875,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207673771),(3876,'204.15.20.224','','empty','','','/eric/feed','','','',1207673995),(3877,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207674777),(3878,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207675778),(3879,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207675944),(3880,'67.195.37.92','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','','Yahoo! Slurp','',1207676310),(3881,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207676498),(3882,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207676541),(3883,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207677494),(3884,'208.66.64.4','','empty','','','/eric/','','','',1207678380),(3885,'208.66.64.4','','empty','','','/eric/','','','',1207678381),(3886,'208.66.64.4','','empty','','','/eric/','','','',1207678396),(3887,'208.66.64.4','','empty','','','/eric/xmlrpc.php','','','',1207678397),(3888,'208.66.64.4','','empty','','','/eric/','','','',1207678408),(3889,'208.66.64.4','','empty','','','/eric/xmlrpc.php','','','',1207678409),(3890,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207678412),(3891,'208.66.64.4','','empty','','','/eric/','','','',1207678432),(3892,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207678582),(3893,'38.98.19.68','','en','','','/eric/','','Crawler/Search Engine','',1207678774),(3894,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207678956),(3895,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207679554),(3896,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207679600),(3897,'204.15.20.226','','empty','','','/eric/feed','','','',1207679976),(3898,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207680043),(3899,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207680686),(3900,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207680757),(3901,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207681361),(3902,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207681828),(3903,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207682466),(3904,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207682566),(3905,'65.55.209.82','','empty','','','/eric/?cat=7','','msnbot','1.1',1207682755),(3906,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207682808),(3907,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207683658),(3908,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207683773),(3909,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207683857),(3910,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207684892),(3911,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207685577),(3912,'204.15.20.227','','empty','','','/eric/feed','','','',1207685659),(3913,'65.40.167.72','','en-us','eden.org','http://www.grandviewphotographyaz.com/blog/?cat=8','/eric/','Windows XP','Firefox','2.0.0.13',1207685893),(3914,'65.40.167.72','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207685908),(3915,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207685932),(3916,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207686179),(3917,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207686778),(3918,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207686871),(3919,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207687260),(3920,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207687880),(3921,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207687989),(3922,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207688582),(3923,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207688885),(3924,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207689190),(3925,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207689788),(3926,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207689846),(3927,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207690791),(3928,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207690863),(3929,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207691000),(3930,'204.15.20.224','','empty','','','/eric/feed','','','',1207691134),(3931,'74.6.31.216','','empty','','','/eric/portraits/2008/asher/trackback','','Yahoo! Slurp','',1207691511),(3932,'74.6.31.216','','empty','','','/eric/portraits/2008/asher','','Yahoo! Slurp','',1207691512),(3933,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207691595),(3934,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207691769),(3935,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207692759),(3936,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207692804),(3937,'99.202.102.221','','en-us','facebook.com','http://www.facebook.com/inbox/readmessage.php?t=1011287519337&mbox_pos=0','/eric/packages','Windows Vista','Internet Explorer','7.0',1207693328),(3938,'99.202.102.221','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/','Windows Vista','Internet Explorer','7.0',1207693371),(3939,'99.202.102.221','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207693394),(3940,'99.202.102.221','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207693405),(3941,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207693407),(3942,'99.202.102.221','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207693441),(3943,'99.202.102.221','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207693473),(3944,'99.202.102.221','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207693705),(3945,'99.202.102.221','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1207693716),(3946,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207693767),(3947,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207694011),(3948,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207694606),(3949,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207694740),(3950,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207695042),(3951,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207695047),(3952,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207695214),(3953,'65.55.209.81','','empty','','','/eric/?p=30','','msnbot','1.1',1207695422),(3954,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207696082),(3955,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207697089),(3956,'204.15.20.227','','empty','','','/eric/feed','','','',1207697291),(3957,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207698043),(3958,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207698321),(3959,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207698827),(3960,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207698989),(3961,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207699029),(3962,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207699431),(3963,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207699939),(3964,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207700635),(3965,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207700879),(3966,'64.78.155.100','','empty','','','/eric/feed','','','',1207701104),(3967,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207701839),(3968,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207701861),(3969,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207702844),(3970,'204.15.20.225','','empty','','','/eric/feed','','','',1207703027),(3971,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207703516),(3972,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207704246),(3973,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207704289),(3974,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207705014),(3975,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207706016),(3976,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207706054),(3977,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207706657),(3978,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207706680),(3979,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207707256),(3980,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207707891),(3981,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207707928),(3982,'204.15.20.224','','empty','','','/eric/feed','','','',1207708654),(3983,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207708669),(3984,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207709669),(3985,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207709908),(3986,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207710563),(3987,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207711494),(3988,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207711539),(3989,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207712502),(3990,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207713461),(3991,'74.6.26.55','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Yahoo! Slurp','',1207713763),(3992,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207713909),(3993,'204.15.20.227','','empty','','','/eric/feed','','','',1207714265),(3994,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207714426),(3995,'74.6.28.167','','empty','','','/eric/weddings/2008/snow-white','','Yahoo! Slurp','',1207714670),(3996,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207715175),(3997,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207715336),(3998,'66.249.72.203','','empty','','','/eric/world/2008/wudhu','','Googlebot','2.1',1207716233),(3999,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207716280),(4000,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207716394),(4001,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207716994),(4002,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207717217),(4003,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207718158),(4004,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207718802),(4005,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207719105),(4006,'66.249.72.203','','empty','','','/eric/portraits/2008/glowing','','Googlebot','2.1',1207719372),(4007,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207719402),(4008,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207719565),(4009,'204.15.20.224','','empty','','','/eric/feed','','','',1207719770),(4010,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207720008),(4011,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207720071),(4012,'123.234.110.41','','empty','','','/eric/','','','',1207720168),(4013,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207720925),(4014,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207721214),(4015,'66.249.72.203','','empty','','','/eric/contact','','Googlebot','2.1',1207721664),(4016,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207721791),(4017,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207721915),(4018,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207722411),(4019,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207722868),(4020,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207723616),(4021,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207723811),(4022,'142.166.170.83','','empty','','','/eric/feed','','Crawler/Search Engine','',1207724001),(4023,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207724220),(4024,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207724761),(4025,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207724824),(4026,'204.15.20.224','','empty','','','/eric/feed','','','',1207725189),(4027,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207725702),(4028,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207726023),(4029,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207726649),(4030,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207727233),(4031,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207727589),(4032,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207727836),(4033,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207728566),(4034,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207729026),(4035,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207729494),(4036,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207729621),(4037,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207729996),(4038,'64.78.155.100','','empty','','','/eric/feed','','','',1207730391),(4039,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207730466),(4040,'204.15.20.227','','empty','','','/eric/feed','','','',1207730695),(4041,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207730843),(4042,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207731393),(4043,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207731423),(4044,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207732395),(4045,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207732638),(4046,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1207733224),(4047,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207733363),(4048,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1207733363),(4049,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207734354),(4050,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207734459),(4051,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207735350),(4052,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207735666),(4053,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207736438),(4054,'204.15.20.227','','empty','','','/eric/feed','','','',1207736856),(4055,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207736862),(4056,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207737415),(4057,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207738071),(4058,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207738664),(4059,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207738740),(4060,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207739211),(4061,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207739699),(4062,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207740175),(4063,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207740470),(4064,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207740654),(4065,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207741082),(4066,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207741087),(4067,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207741587),(4068,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207741678),(4069,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207742064),(4070,'204.15.20.227','','empty','','','/eric/feed','','','',1207742188),(4071,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207742548),(4072,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207742899),(4073,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207743026),(4074,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207743482),(4075,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207743969),(4076,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207744100),(4077,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207744447),(4078,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207744709),(4079,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207744918),(4080,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207745295),(4081,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207745384),(4082,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207745886),(4083,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207745914),(4084,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207746374),(4085,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207746914),(4086,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207747495),(4087,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207747952),(4088,'204.15.20.227','','empty','','','/eric/feed','','','',1207748172),(4089,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207748324),(4090,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207748442),(4091,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207748926),(4092,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207748938),(4093,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207749409),(4094,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207749535),(4095,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207749875),(4096,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207750131),(4097,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207750398),(4098,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207750904),(4099,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207751351),(4100,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207751816),(4101,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207751923),(4102,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207752322),(4103,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207752531),(4104,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207752848),(4105,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207753331),(4106,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207753331),(4107,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207753730),(4108,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207753730),(4109,'216.39.58.18','','empty','','','/eric/','','Internet Explorer','5.5',1207753779),(4110,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207753810),(4111,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207753827),(4112,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207753828),(4113,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207753863),(4114,'67.111.14.204','','empty','','','/eric/','','Technoratibot','0.7',1207753925),(4115,'67.111.14.204','','empty','','','/eric/feed','','Technoratibot','0.7',1207753926),(4116,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207753981),(4117,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207754022),(4118,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207754032),(4119,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207754104),(4120,'67.202.34.117','','empty','','','/eric/','','','',1207754121),(4121,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207754134),(4122,'66.249.72.203','','empty','','','/eric/world/2008/blue-cove','','Googlebot','2.1',1207754233),(4123,'204.15.20.226','','empty','','','/eric/feed','','','',1207754258),(4124,'64.40.118.236','','empty','','','/eric/?feed=rss2','','','',1207754315),(4125,'64.40.118.236','','empty','','','/eric/','','','',1207754317),(4126,'64.40.118.236','','empty','','','/eric/','','','',1207754318),(4127,'64.40.118.236','','empty','','','/eric/world/2008/blue-cove','','','',1207754321),(4128,'64.40.118.236','','empty','','','/eric/world/2008/blue-cove','','','',1207754321),(4129,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207754327),(4130,'65.54.165.81','','empty','','','/eric/world/2008/blue-cove','','msnbot','',1207754434),(4131,'204.17.31.126','','empty','','','/eric/','','','',1207754505),(4132,'204.17.31.126','','en-us','goodsearch.com','http://www.goodsearch.com/Search.aspx?Keywords=backyard+weddings+%2b+az','/eric/','Windows XP','Internet Explorer','6.0',1207754515),(4133,'204.17.31.126','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207754523),(4134,'204.17.31.126','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207754525),(4135,'204.17.31.126','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207754525),(4136,'204.17.31.126','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207754525),(4137,'204.17.31.126','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207754526),(4138,'204.17.31.126','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207754526),(4139,'204.17.31.126','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207754526),(4140,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207754784),(4141,'72.223.102.40','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.15',1207755039),(4142,'72.223.102.40','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','523.15',1207755195),(4143,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207755267),(4144,'68.2.161.177','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1207755267),(4145,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207755274),(4146,'68.2.161.177','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/asher','Windows XP','Internet Explorer','6.0',1207755368),(4147,'64.41.145.78','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207755556),(4148,'64.41.145.78','','en-us','','','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','6.0',1207755556),(4149,'64.41.145.78','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','6.0',1207755557),(4150,'64.41.145.78','','en-us','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1207755558),(4151,'64.41.145.78','','en-us','','','/eric/nature/2008/grand-tetons','Windows XP','Internet Explorer','6.0',1207755561),(4152,'64.41.145.78','','en-us','','','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207755561),(4153,'64.41.145.78','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207755562),(4154,'64.41.145.78','','en-us','','','/eric/adventure/2008/desert-storm-rally','Windows XP','Internet Explorer','6.0',1207755564),(4155,'64.41.145.78','','en-us','','','/eric/nature/2008/white-tiger','Windows XP','Internet Explorer','6.0',1207755565),(4156,'64.41.145.78','','en-us','','','/eric/portraits/2008/asher','Windows XP','Internet Explorer','6.0',1207755566),(4157,'64.41.145.78','','en-us','','','/eric/world/2008/blue-cove','Windows XP','Internet Explorer','6.0',1207755567),(4158,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207755756),(4159,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207756152),(4160,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207756205),(4161,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207756490),(4162,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207756692),(4163,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207756754),(4164,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207756968),(4165,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207757128),(4166,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207757357),(4167,'65.55.104.20','','empty','','','/eric/feed','','msnbot','1.1',1207757690),(4168,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207757708),(4169,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207758198),(4170,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207758753),(4171,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1207759093),(4172,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1207759094),(4173,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207759159),(4174,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207759173),(4175,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207759241),(4176,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207759644),(4177,'64.78.155.100','','empty','','','/eric/feed','','','',1207759671),(4178,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207759768),(4179,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207760238),(4180,'204.15.20.229','','empty','','','/eric/feed','','','',1207760440),(4181,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207760719),(4182,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207761229),(4183,'209.124.55.93','','empty','','','/eric/world/2008/blue-cove','Windows 2000','Internet Explorer','5.01',1207761243),(4184,'209.124.55.93','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/blue-cove','/eric/wp-comments-post.php','Windows 2000','Internet Explorer','5.01',1207761248),(4185,'67.159.45.15','','empty','','','/eric/world/2008/blue-cove','','Googlebot','2.1',1207761248),(4186,'67.159.45.15','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/blue-cove','/eric/wp-comments-post.php','','Googlebot','2.1',1207761249),(4187,'69.64.63.172','','empty','','','/eric/world/2008/blue-cove','Windows XP','Internet Explorer','6.0',1207761249),(4188,'69.64.63.172','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/blue-cove','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1207761250),(4189,'199.216.209.253','','empty','','','/eric/world/2008/blue-cove','Windows XP','Internet Explorer','6.0',1207761251),(4190,'199.216.209.253','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/blue-cove','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1207761253),(4191,'88.208.246.183','','empty','','','/eric/world/2008/blue-cove','Windows','Internet Explorer','5.0',1207761254),(4192,'88.208.246.183','','empty','eden.org','http://grandviewphotographyaz.com/world/2008/blue-cove','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1207761256),(4193,'65.55.104.20','','empty','','','/eric/packages','','msnbot','1.1',1207761308),(4194,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207761718),(4195,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207762187),(4196,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207762667),(4197,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207762774),(4198,'76.73.155.177','','en-us','google.com','http://www.google.com/blogsearch?hl=en&q=photography&ie=UTF-8&sa=N&start=80','/eric/world/2008/blue-cove','Windows XP','Internet Explorer','7.0',1207763072),(4199,'76.73.155.177','','en-us','eden.org','http://grandviewphotographyaz.com/world/2008/blue-cove','/eric/about','Windows XP','Internet Explorer','7.0',1207763162),(4200,'76.73.155.177','','en-us','google.com','http://www.google.com/blogsearch?hl=en&q=photography&ie=UTF-8&sa=N&start=80','/eric/world/2008/blue-cove','Windows XP','Internet Explorer','7.0',1207763220),(4201,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207763261),(4202,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207763367),(4203,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207763473),(4204,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207763658),(4205,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207763983),(4206,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Mozilla','',1207764102),(4207,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207764154),(4208,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207764263),(4209,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207764737),(4210,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207765198),(4211,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207765269),(4212,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207765790),(4213,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207765795),(4214,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207766313),(4215,'67.195.58.162','','empty','','','/eric/','','Yahoo! Slurp','',1207766313),(4216,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207766378),(4217,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207766399),(4218,'204.15.20.229','','empty','','','/eric/feed','','','',1207766544),(4219,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207766786),(4220,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207766989),(4221,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207767292),(4222,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207767782),(4223,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207768281),(4224,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207768786),(4225,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207769332),(4226,'207.224.168.141','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207769739),(4227,'207.224.168.141','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207769739),(4228,'207.224.168.141','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207769759),(4229,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207769808),(4230,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207769981),(4231,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207770018),(4232,'207.224.168.141','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows XP','Firefox','2.0.0.13',1207770288),(4233,'207.224.168.141','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/weddings/2008/snow-white','Windows XP','Firefox','2.0.0.13',1207770297),(4234,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207770346),(4235,'207.224.168.141','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/packages','Windows XP','Firefox','2.0.0.13',1207770666),(4236,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207770853),(4237,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207771340),(4238,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207771809),(4239,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207771825),(4240,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1207771974),(4241,'204.15.20.230','','empty','','','/eric/feed','','','',1207772067),(4242,'65.55.165.43','','en-us','search.live.com','http://search.live.com/results.aspx?q=taken&mrt=en-us&FORM=LIVSOP','/eric/','Windows 2003','Internet Explorer','7.0',1207772242),(4243,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207772313),(4244,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207772424),(4245,'142.166.170.81','','empty','','','/eric/feed','','Crawler/Search Engine','',1207772680),(4246,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207772795),(4247,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207773319),(4248,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207773585),(4249,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207773810),(4250,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207774233),(4251,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207774305),(4252,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207774838),(4253,'69.41.14.150','','empty','','','/eric/packages','','','',1207775091),(4254,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207775306),(4255,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207775441),(4256,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207775857),(4257,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207776052),(4258,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207776302),(4259,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207776651),(4260,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207776790),(4261,'209.234.171.41','','empty','','','/eric/','','','',1207777123),(4262,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207777188),(4263,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207777239),(4264,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207777259),(4265,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207777751),(4266,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207777848),(4267,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207778238),(4268,'204.15.20.224','','empty','','','/eric/feed','','','',1207778238),(4269,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207778450),(4270,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207779057),(4271,'209.234.171.41','','empty','','','/eric/portfolio','','','',1207779084),(4272,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779299),(4273,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779303),(4274,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779338),(4275,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779340),(4276,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','7.0',1207779347),(4277,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779372),(4278,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779373),(4279,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/white-tiger','Windows XP','Internet Explorer','7.0',1207779377),(4280,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779385),(4281,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779386),(4282,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779396),(4283,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207779398),(4284,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207779589),(4285,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207780444),(4286,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207780792),(4287,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207780846),(4288,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207781454),(4289,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207782052),(4290,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207782565),(4291,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207783260),(4292,'69.13.112.144','','empty','','','/eric/nature/2008/white-tiger','','','',1207783518),(4293,'38.99.107.138','','empty','','','/eric/feed','','Crawler/Search Engine','',1207783646),(4294,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207783855),(4295,'24.160.150.217','','en-us','blogsearch.google.com','http://blogsearch.google.com/blogsearch?hl=en&q=cove&btnG=Search+Blogs','/eric/world/2008/blue-cove','Windows XP','Internet Explorer','7.0',1207783996),(4296,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207784396),(4297,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207784462),(4298,'204.15.20.224','','empty','','','/eric/feed','','','',1207784915),(4299,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207785216),(4300,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207785671),(4301,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207786024),(4302,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207786277),(4303,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207786777),(4304,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207786881),(4305,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207787470),(4306,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207787607),(4307,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207787999),(4308,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207788081),(4309,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207788431),(4310,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207788672),(4311,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207788761),(4312,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207788770),(4313,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207788772),(4314,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/world','Windows XP','Firefox','2.0.0.13',1207788778),(4315,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207788781),(4316,'150.70.84.43','','en-us','','','/','Windows XP','Internet Explorer','6.0',1207788839),(4317,'150.70.84.43','','en-us','','','/?a3262168','Windows XP','Internet Explorer','6.0',1207788869),(4318,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/world','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207788917),(4319,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207788918),(4320,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/world','Windows XP','Firefox','2.0.0.13',1207788921),(4321,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207788922),(4322,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207788924),(4323,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207788931),(4324,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207788932),(4325,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207789213),(4326,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/about','Mac OS X','Safari','525.13',1207789228),(4327,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/portfolio','Mac OS X','Safari','525.13',1207789234),(4328,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207789286),(4329,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207789314),(4330,'64.78.155.100','','empty','','','/eric/feed','','','',1207789321),(4331,'77.91.224.19','','empty','','','/robots.txt','Windows XP','Crawler/Search Engine','',1207789846),(4332,'77.91.224.19','','empty','','','/','Windows XP','Crawler/Search Engine','',1207789846),(4333,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207789876),(4334,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207790329),(4335,'204.15.20.230','','empty','','','/eric/feed','','','',1207790664),(4336,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207791097),(4337,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207791474),(4338,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207791602),(4339,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207792297),(4340,'24.251.45.78','','en-us','','','/','Windows XP','Internet Explorer','6.0',1207792301),(4341,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207792749),(4342,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207793503),(4343,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207794054),(4344,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207794107),(4345,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207794608),(4346,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207794692),(4347,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207795217),(4348,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207795715),(4349,'72.208.227.154','','en-us','','','/about','Mac OS X','Safari','525.13',1207795802),(4350,'72.208.227.154','','en-us','','','/','Mac OS X','Safari','525.13',1207795808),(4351,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207795820),(4352,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Mac OS X','Safari','525.13',1207795826),(4353,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207795908),(4354,'204.15.20.231','','empty','','','/eric/feed','','','',1207796076),(4355,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207796602),(4356,'70.190.160.156','','en-us','eden.org','http://www.grandviewphotographyaz.com/images/clients/sarah-k/content/index_5.html','/','Windows Vista','Firefox','2.0.0.13',1207796846),(4357,'70.190.160.156','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/','Windows Vista','Firefox','2.0.0.13',1207796933),(4358,'70.190.160.156','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207796934),(4359,'70.190.160.156','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Firefox','2.0.0.13',1207796950),(4360,'70.190.160.156','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Firefox','2.0.0.13',1207796964),(4361,'70.190.160.156','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/','Windows Vista','Firefox','2.0.0.13',1207796965),(4362,'70.190.160.156','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1207796965),(4363,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207797273),(4364,'64.34.162.199','','empty','','','/eric/packages','','','',1207797377),(4365,'64.34.162.199','','empty','','','/eric/xmlrpc.php','','','',1207797377),(4366,'64.34.162.199','','empty','','','/eric/packages','','','',1207797380),(4367,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207797430),(4368,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207797540),(4369,'64.34.162.199','','empty','','','/eric/packages','','','',1207797623),(4370,'64.34.162.199','','empty','','','/eric/xmlrpc.php','','','',1207797623),(4371,'64.34.162.199','','empty','','','/eric/packages','','','',1207797625),(4372,'64.34.162.199','','empty','','','/eric/xmlrpc.php','','','',1207797625),(4373,'64.34.162.199','','empty','','','/eric/packages','','','',1207797625),(4374,'64.34.162.199','','empty','','','/eric/packages','','','',1207797626),(4375,'71.103.255.66','','en-us','bl124w.blu124.mail.live.com','http://bl124w.blu124.mail.live.com/mail/ReadMessageLight.aspx?AllowUnsafe=True&FolderID=00000000-0000-0000-0000-000000000001&InboxSortAscending=False&InboxSortBy=Date&ReadMessageId=1d6002ea-d75d-4784-bc6c-5808668bc309&n=635292671','/eric/packages','Windows XP','Firefox','2.0.0.6',1207797794),(4376,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207797846),(4377,'71.103.255.66','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.6',1207797889),(4378,'71.103.255.66','','en-us','bl124w.blu124.mail.live.com','http://bl124w.blu124.mail.live.com/mail/ReadMessageLight.aspx?AllowUnsafe=True&FolderID=00000000-0000-0000-0000-000000000001&InboxSortAscending=False&InboxSortBy=Date&ReadMessageId=1d6002ea-d75d-4784-bc6c-5808668bc309&n=635292671','/eric/packages','Windows XP','Firefox','2.0.0.6',1207797959),(4379,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207797998),(4380,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207798100),(4381,'72.208.227.154','','en-us','','','/eric/packages','Mac OS X','Safari','525.13',1207798232),(4382,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207798250),(4383,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207798377),(4384,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207798832),(4385,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207798980),(4386,'72.208.227.154','','en-us','','','/eric/feed','','','',1207799014),(4387,'72.208.227.154','','en-us','','','/eric/','','','',1207799015),(4388,'68.180.194.243','','empty','','','/eric/feed','','','',1207799022),(4389,'71.103.255.66','','en-us','bl124w.blu124.mail.live.com','http://bl124w.blu124.mail.live.com/mail/ReadMessageLight.aspx?Action=DeleteMessage&FolderID=00000000-0000-0000-0000-000000000001&InboxSortAscending=False&InboxSortBy=Date&ReadMessageId=b63fdaba-49aa-4f92-8c3c-53f844361b38&n=1834301860','/eric/packages','Windows XP','Firefox','2.0.0.6',1207799023),(4390,'71.103.255.66','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.6',1207799028),(4391,'68.180.194.242','','empty','','','/eric/feed','','','',1207799047),(4392,'68.180.194.242','','empty','','','/eric/feed','','','',1207799066),(4393,'68.180.194.243','','empty','','','/eric/feed','','','',1207799068),(4394,'68.180.194.243','','empty','','','/eric/feed','','','',1207799093),(4395,'68.180.194.242','','empty','','','/eric/feed','','','',1207799123),(4396,'68.180.194.243','','empty','','','/eric/feed','','','',1207799132),(4397,'68.180.194.243','','empty','','','/eric/feed','','','',1207799182),(4398,'91.121.69.5','','empty','','','/eric/feed','','','',1207799256),(4399,'91.121.69.5','','empty','','','/eric/feed','','','',1207799256),(4400,'91.121.69.5','','empty','','','/eric/feed','','','',1207799273),(4401,'91.121.69.5','','empty','','','/eric/feed','','','',1207799273),(4402,'91.121.69.5','','empty','','','/eric/feed','','','',1207799274),(4403,'91.121.69.5','','empty','','','/eric/feed/','','','',1207799274),(4404,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207799633),(4405,'91.121.69.5','','empty','','','/eric/feed/','','','',1207800404),(4406,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207800544),(4407,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207800840),(4408,'204.15.20.227','','empty','','','/eric/feed','','','',1207801588),(4409,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207801751),(4410,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207802069),(4411,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207802353),(4412,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207802448),(4413,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207803295),(4414,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207804507),(4415,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207804766),(4416,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207805687),(4417,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207806063),(4418,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207806572),(4419,'204.15.20.226','','empty','','','/eric/feed','','','',1207806614),(4420,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207806795),(4421,'70.190.160.156','','en-us','','','/','Windows XP','Firefox','2.0.0.13',1207807072),(4422,'70.190.160.156','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207807097),(4423,'70.190.160.156','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207807097),(4424,'72.208.46.24','','en-us','google.com','http://www.google.com/search?q=grand+view+photography&rls=com.microsoft:*&ie=UTF-8&oe=UTF-8&startIndex=&startPage=1','/eric/','Windows Vista','Internet Explorer','7.0',1207807100),(4425,'72.208.46.24','','en-us','google.com','http://www.google.com/search?q=grand+view+photography&rls=com.microsoft:*&ie=UTF-8&oe=UTF-8&startIndex=&startPage=1','/eric/','Windows Vista','Internet Explorer','7.0',1207807101),(4426,'70.190.160.156','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207807108),(4427,'72.208.46.24','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1207807111),(4428,'70.190.160.156','','en-us','','','/','Windows XP','Firefox','2.0.0.13',1207807140),(4429,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207807171),(4430,'91.121.69.5','','empty','','','/eric/feed/','','','',1207807612),(4431,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207807781),(4432,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207807947),(4433,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207808375),(4434,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207808979),(4435,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207809045),(4436,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207809678),(4437,'85.120.78.130','','empty','','','/','','','',1207809817),(4438,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207810170),(4439,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207810184),(4440,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207811391),(4441,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207811401),(4442,'72.208.227.154','','en-us','instapaper.com','http://www.instapaper.com/u','/eric/?cat=8','Mac OS X','Safari','525.13',1207811813),(4443,'72.208.227.154','','en-us','instapaper.com','http://www.instapaper.com/u','/eric/category/nature','Mac OS X','Safari','525.13',1207811815),(4444,'72.208.227.154','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/','Mac OS X','Safari','525.13',1207811831),(4445,'204.15.20.228','','empty','','','/eric/feed','','','',1207811869),(4446,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207812593),(4447,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207813203),(4448,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207813293),(4449,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207813775),(4450,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207814397),(4451,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207814975),(4452,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207815009),(4453,'91.121.69.5','','empty','','','/eric/feed/','','','',1207815094),(4454,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207815602),(4455,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207816154),(4456,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207816219),(4457,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207816809),(4458,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207816908),(4459,'204.15.20.226','','empty','','','/eric/feed','','','',1207817213),(4460,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207817250),(4461,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207818012),(4462,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207818390),(4463,'64.78.155.100','','empty','','','/eric/feed','','','',1207818596),(4464,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207819225),(4465,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207819559),(4466,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207819831),(4467,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207820423),(4468,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207820523),(4469,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207820701),(4470,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207821185),(4471,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1207821668),(4472,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207821897),(4473,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207822152),(4474,'91.121.69.5','','empty','','','/eric/feed/','','','',1207822418),(4475,'204.15.20.230','','empty','','','/eric/feed','','','',1207823032),(4476,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207823319),(4477,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207823434),(4478,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207824037),(4479,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207824139),(4480,'83.206.35.201','','empty','','','/','','','',1207824634),(4481,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207824652),(4482,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207825246),(4483,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207825846),(4484,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207825948),(4485,'66.231.188.85','','en','','','/robots.txt','','Gigabot','3.0',1207826784),(4486,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207827050),(4487,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207827259),(4488,'74.6.26.225','','empty','','','/eric/','','Yahoo! Slurp','',1207827599),(4489,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207827754),(4490,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207828449),(4491,'204.15.20.224','','empty','','','/eric/feed','','','',1207828574),(4492,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207828861),(4493,'91.121.69.5','','empty','','','/eric/feed/','','','',1207829503),(4494,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207829797),(4495,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207830062),(4496,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207831192),(4497,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207831272),(4498,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207831369),(4499,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207832473),(4500,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207832565),(4501,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1207832624),(4502,'65.55.104.21','','empty','','','/eric/category/adventure','','msnbot','1.1',1207832746),(4503,'65.55.104.21','','empty','','','/eric/portfolio','','msnbot','1.1',1207832753),(4504,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207833073),(4505,'65.55.104.21','','empty','','','/eric/world/2008/old-bike','','msnbot','1.1',1207833440),(4506,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207833677),(4507,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207833896),(4508,'204.15.20.230','','empty','','','/eric/feed','','','',1207834224),(4509,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207834283),(4510,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207834891),(4511,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207834984),(4512,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207835364),(4513,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207835489),(4514,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207836090),(4515,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207836660),(4516,'91.121.69.5','','empty','','','/eric/feed/','','','',1207836795),(4517,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207836814),(4518,'193.252.149.15','','fr','','','/eric/','Windows XP','Crawler/Search Engine','1.8.1',1207838243),(4519,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207838271),(4520,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207838599),(4521,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207839107),(4522,'65.55.104.21','','empty','','','/eric/nature/2008/the-hills-are-alive','','msnbot','1.1',1207839404),(4523,'65.55.104.21','','empty','','','/eric/adventure/2008/desert-storm-rally','','msnbot','1.1',1207839405),(4524,'65.55.104.21','','empty','','','/eric/nature/2008/white-tiger','','msnbot','1.1',1207839405),(4525,'65.55.104.21','','empty','','','/eric/weddings/2008/snow-white','','msnbot','1.1',1207839406),(4526,'65.55.104.21','','empty','','','/eric/portraits/2008/asher','','msnbot','1.1',1207839406),(4527,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207839710),(4528,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207839804),(4529,'204.15.20.228','','empty','','','/eric/feed','','','',1207840210),(4530,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207840303),(4531,'216.48.136.60','','empty','','','/','','','',1207840376),(4532,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207840904),(4533,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207841352),(4534,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207841511),(4535,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207842110),(4536,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207842214),(4537,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207842723),(4538,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207842949),(4539,'142.166.170.81','','empty','','','/eric/feed','','Crawler/Search Engine','',1207843130),(4540,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207843324),(4541,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207843923),(4542,'91.121.69.5','','empty','','','/eric/feed/','','','',1207843952),(4543,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207844595),(4544,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207845135),(4545,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207845830),(4546,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207846114),(4547,'72.223.44.186','','en-us','','','/','Windows XP','Internet Explorer','7.0',1207846263),(4548,'72.223.44.186','','en-us','','','/','Windows XP','Internet Explorer','7.0',1207846295),(4549,'72.223.44.186','','en-us','','','/','Windows XP','Internet Explorer','7.0',1207846324),(4550,'204.15.20.226','','empty','','','/eric/feed','','','',1207846354),(4551,'72.223.44.186','','en-us','','','/','Windows XP','Internet Explorer','7.0',1207846361),(4552,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/images/clients/sunday-moring-at-faith/content/_MG_5422_large.html','/','Windows XP','Internet Explorer','7.0',1207846529),(4553,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207846940),(4554,'62.163.70.106','','empty','','','/','','','',1207847029),(4555,'74.6.24.45','','empty','','','/eric/weddings/','','Yahoo! Slurp','',1207847163),(4556,'74.6.24.45','','empty','','','/eric/weddings','','Yahoo! Slurp','',1207847164),(4557,'209.234.171.41','','empty','','','/eric/about','','','',1207847579),(4558,'209.234.171.41','','empty','','','/eric/adventure/2008/desert-storm-rally','','','',1207847584),(4559,'209.234.171.41','','empty','','','/eric/category/adventure','','','',1207847589),(4560,'209.234.171.41','','empty','','','/eric/category/nature','','','',1207847594),(4561,'209.234.171.41','','empty','','','/eric/category/portraits','','','',1207847600),(4562,'209.234.171.41','','empty','','','/eric/category/weddings','','','',1207847605),(4563,'209.234.171.41','','empty','','','/eric/category/world','','','',1207847610),(4564,'209.234.171.41','','empty','','','/eric/contact','','','',1207847615),(4565,'209.234.171.41','','empty','','','/eric/feed','','','',1207847620),(4566,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207847621),(4567,'209.234.171.41','','empty','','','/eric/nature/2008/white-tiger','','','',1207847630),(4568,'209.234.171.41','','empty','','','/eric/packages','','','',1207847635),(4569,'209.234.171.41','','empty','','','/eric/portraits/2008/asher','','','',1207847640),(4570,'209.234.171.41','','empty','','','/eric/weddings/2008/snow-white','','','',1207847646),(4571,'209.234.171.41','','empty','','','/eric/world/2008/blue-cove','','','',1207847651),(4572,'209.234.171.41','','empty','','','/eric/xmlrpc.php','','','',1207847661),(4573,'209.234.171.41','','empty','','','/eric/xmlrpc.php?rsd','','','',1207847666),(4574,'194.100.43.25','','empty','','','/','','','',1207848115),(4575,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207848143),(4576,'72.204.247.38','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207848294),(4577,'72.204.247.38','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207848295),(4578,'72.204.247.38','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207848305),(4579,'72.204.247.38','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/snow-white','Windows XP','Firefox','2.0.0.13',1207848331),(4580,'72.204.247.38','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207848342),(4581,'72.204.247.38','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/snow-white','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207848350),(4582,'72.204.247.38','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/contact','Windows XP','Firefox','2.0.0.13',1207848353),(4583,'72.204.247.38','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/contact','Windows XP','Firefox','2.0.0.13',1207848371),(4584,'72.204.247.38','','en-us','eden.org','http://grandviewphotographyaz.com/contact','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1207848374),(4585,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207848748),(4586,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207849083),(4587,'64.78.155.100','','empty','','','/eric/feed','','','',1207849337),(4588,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207849341),(4589,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207849445),(4590,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207850021),(4591,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207850021),(4592,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207850546),(4593,'130.13.174.168','','en-us','','','/','Windows XP','Firefox','2.0.0.13',1207850603),(4594,'130.13.174.168','','en-us','','','/','Windows XP','Firefox','2.0.0.13',1207850626),(4595,'150.70.84.43','','en-us','','','/','Windows XP','Internet Explorer','6.0',1207850747),(4596,'150.70.84.43','','en-us','','','/','Windows XP','Internet Explorer','6.0',1207850759),(4597,'130.13.174.168','','en-us','','','/','Windows XP','Firefox','2.0.0.13',1207850768),(4598,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207850798),(4599,'130.13.174.168','','en-us','','','/','Windows XP','Firefox','2.0.0.13',1207850839),(4600,'130.13.174.168','','en-us','','','/','Mac OS X','Safari','525.13',1207850845),(4601,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Mozilla','',1207850953),(4602,'130.13.174.168','','en-us','','','/eric2/index.php','Windows XP','Firefox','2.0.0.13',1207854165),(4603,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207857939),(4604,'204.15.20.224','','empty','','','/eric/feed','','','',1207858192),(4605,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207858233),(4606,'91.121.69.5','','empty','','','/eric/feed/','','','',1207858281),(4607,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207858975),(4608,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207859795),(4609,'130.13.174.168','','en-us','','','/','Windows XP','Internet Explorer','7.0',1207859984),(4610,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207860251),(4611,'130.13.174.168','','en-us','','','/eric/','Windows XP','Internet Explorer','7.0',1207860578),(4612,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207860596),(4613,'130.13.174.168','','en-us','','','/eric/','Windows XP','Internet Explorer','7.0',1207860609),(4614,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207860611),(4615,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207860787),(4616,'67.195.54.54','','empty','','','/eric/world/2008/old-bike','','Yahoo! Slurp','',1207861015),(4617,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207861307),(4618,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207861398),(4619,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207861995),(4620,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207862598),(4621,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207862712),(4622,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207863866),(4623,'204.15.20.229','','empty','','','/eric/feed','','','',1207863911),(4624,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207864102),(4625,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207864407),(4626,'91.121.69.5','','empty','','','/eric/feed/','','','',1207864912),(4627,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207865380),(4628,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207865429),(4629,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Mac OS X','Safari','525.13',1207865434),(4630,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/category/nature','Mac OS X','Safari','525.13',1207865436),(4631,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/category/adventure','Mac OS X','Safari','525.13',1207865437),(4632,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/','Mac OS X','Safari','525.13',1207865518),(4633,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207866114),(4634,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207866217),(4635,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207866753),(4636,'74.6.23.35','','empty','','','/eric/portfolio/','','Yahoo! Slurp','',1207867077),(4637,'74.6.23.35','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1207867078),(4638,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207867423),(4639,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207867487),(4640,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207868011),(4641,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Safari','525.13',1207868078),(4642,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207869220),(4643,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207869421),(4644,'204.15.20.224','','empty','','','/eric/feed','','','',1207869457),(4645,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207870427),(4646,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207870685),(4647,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207871097),(4648,'66.249.72.203','','empty','','','/eric/nature/2008/the-hills-are-alive','','Googlebot','2.1',1207871715),(4649,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207871983),(4650,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207872234),(4651,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207872840),(4652,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207873298),(4653,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207873298),(4654,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207873439),(4655,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207874046),(4656,'76.23.3.204','','en','','','/eric/blog/?feed=rss2','','','',1207874189),(4657,'66.249.72.203','','empty','','','/eric/weddings/2008/snow-white','','Googlebot','2.1',1207874300),(4658,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207874577),(4659,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207874577),(4660,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207874639),(4661,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207874712),(4662,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207874825),(4663,'204.15.20.225','','empty','','','/eric/feed','','','',1207874980),(4664,'89.122.29.124','','empty','guide2games.org','http://guide2games.org/faq/','/eric/','Windows XP','Internet Explorer','6.0',1207875460),(4665,'89.122.29.124','','empty','guide2games.org','http://guide2games.org/faq/','/eric/','Windows XP','Internet Explorer','6.0',1207875465),(4666,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207875561),(4667,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207875570),(4668,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207875847),(4669,'76.23.3.204','','en','','','/eric/blog/?feed=rss2','','','',1207875995),(4670,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207876121),(4671,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207876121),(4672,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207876459),(4673,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207877363),(4674,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207877421),(4675,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207877421),(4676,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207877509),(4677,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207877653),(4678,'76.23.3.204','','en','','','/eric/blog/?feed=rss2','','','',1207877804),(4679,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207878264),(4680,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207878328),(4681,'64.78.155.100','','empty','','','/eric/feed','','','',1207878585),(4682,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/blog/index.html','/eric/','Windows XP','Firefox','2.0.0.13',1207878722),(4683,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207878728),(4684,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207878731),(4685,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207878746),(4686,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207878746),(4687,'74.6.24.89','','empty','','','/eric/adventure/2008/desert-storm-rally','','Yahoo! Slurp','',1207878786),(4688,'74.6.24.119','','empty','','','/eric/nature/2008/the-hills-are-alive','','Yahoo! Slurp','',1207878912),(4689,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207879164),(4690,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207879468),(4691,'91.121.69.5','','empty','','','/eric/feed/','','','',1207879503),(4692,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207879549),(4693,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207879550),(4694,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207879551),(4695,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207879559),(4696,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207879560),(4697,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207879561),(4698,'76.23.3.204','','en','','','/eric/blog/?feed=rss2','','','',1207879584),(4699,'207.162.58.3','','empty','','','/eric/nature/2008/lotus','Windows XP','Internet Explorer','6.0',1207879932),(4700,'207.162.58.3','','empty','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1207879932),(4701,'65.19.150.236','','empty','','','/eric/nature/2008/lotus','Windows','Internet Explorer','5.0',1207879934),(4702,'65.19.150.237','','empty','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1207879934),(4703,'194.181.133.165','','empty','','','/eric/nature/2008/lotus','Windows','Internet Explorer','5.0',1207879936),(4704,'194.181.133.165','','empty','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1207879938),(4705,'62.2.156.130','','empty','','','/eric/nature/2008/lotus','Windows XP','Internet Explorer','6.0',1207879939),(4706,'62.2.156.130','','empty','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1207879941),(4707,'206.123.88.219','','empty','','','/eric/nature/2008/lotus','Windows','Internet Explorer','5.0',1207879943),(4708,'206.123.88.219','','empty','eden.org','http://grandviewphotographyaz.com/nature/2008/lotus','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1207879944),(4709,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207880080),(4710,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207880080),(4711,'204.15.20.228','','empty','','','/eric/feed','','','',1207880505),(4712,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207880673),(4713,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207880966),(4714,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207881324),(4715,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207881324),(4716,'76.23.3.204','','en','','','/eric/blog/?feed=rss2','','','',1207881389),(4717,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207881409),(4718,'130.13.174.168','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207881417),(4719,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207881418),(4720,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207881419),(4721,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207881943),(4722,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207882483),(4723,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207882566),(4724,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207882566),(4725,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207882768),(4726,'66.249.72.203','','empty','','','/eric/world/2008/blue-cove','','Googlebot','2.1',1207882948),(4727,'76.23.3.204','','en','','','/eric/blog/?feed=rss2','','','',1207883189),(4728,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207883753),(4729,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207883753),(4730,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207884945),(4731,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207884946),(4732,'76.23.3.204','','en','','','/eric/blog/?feed=rss2','','','',1207884984),(4733,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207885559),(4734,'204.15.20.224','','empty','','','/eric/feed','','','',1207885899),(4735,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207886067),(4736,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207886067),(4737,'91.121.69.5','','empty','','','/eric/feed/','','','',1207886362),(4738,'76.23.3.204','','en','','','/eric/blog/?feed=rss2','','','',1207886789),(4739,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207886970),(4740,'207.200.116.74','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207887301),(4741,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207887340),(4742,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207887340),(4743,'207.200.116.74','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207887362),(4744,'207.200.116.74','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','AOL','9.0',1207887371),(4745,'207.200.116.72','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/nature/2008/white-tiger','Windows Vista','AOL','9.0',1207887433),(4746,'207.200.116.72','','en-us','eden.org','http://grandviewphotographyaz.com/nature/2008/white-tiger','/eric/nature/2008/white-tiger','Windows Vista','AOL','9.0',1207887446),(4747,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207888173),(4748,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207888453),(4749,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207888453),(4750,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207888773),(4751,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207889171),(4752,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207889376),(4753,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207889669),(4754,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207890582),(4755,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207890740),(4756,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207890792),(4757,'207.224.168.141','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207890876),(4758,'207.224.168.141','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1207890877),(4759,'207.224.168.141','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1207890884),(4760,'204.15.20.228','','empty','','','/eric/feed','','','',1207891064),(4761,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207891939),(4762,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207891939),(4763,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207892786),(4764,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207892989),(4765,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207893135),(4766,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207893135),(4767,'91.121.69.5','','empty','','','/eric/feed/','','','',1207893572),(4768,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207893611),(4769,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207893611),(4770,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1207893758),(4771,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207894321),(4772,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207894321),(4773,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207895409),(4774,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207895472),(4775,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207895472),(4776,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207896008),(4777,'204.15.20.231','','empty','','','/eric/feed','','','',1207896060),(4778,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207896402),(4779,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207896615),(4780,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207896621),(4781,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207896621),(4782,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207897221),(4783,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207897819),(4784,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207897841),(4785,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207897841),(4786,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207898420),(4787,'216.200.40.144','','empty','','','/eric/blog/?feed=rss2','','','',1207898928),(4788,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207899025),(4789,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207899025),(4790,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207899027),(4791,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207900017),(4792,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207900219),(4793,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207900289),(4794,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207900289),(4795,'91.121.69.5','','empty','','','/eric/feed/','','','',1207900791),(4796,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207901434),(4797,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207901559),(4798,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207901559),(4799,'204.15.20.229','','empty','','','/eric/feed','','','',1207901840),(4800,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207902038),(4801,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207902784),(4802,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207902784),(4803,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207903632),(4804,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207903847),(4805,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207903999),(4806,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207903999),(4807,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207904448),(4808,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207905049),(4809,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207905149),(4810,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207905149),(4811,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207905650),(4812,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207906245),(4813,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207906367),(4814,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207906367),(4815,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1207906563),(4816,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1207906579),(4817,'74.6.25.158','','empty','','','/eric/world/2008/blue-cove','','Yahoo! Slurp','',1207906688),(4818,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207906849),(4819,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207907247),(4820,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207907502),(4821,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207907502),(4822,'204.15.20.230','','empty','','','/eric/feed','','','',1207907650),(4823,'64.78.155.100','','empty','','','/eric/feed','','','',1207907874),(4824,'91.121.69.5','','empty','','','/eric/feed/','','','',1207908049),(4825,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207908711),(4826,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207908711),(4827,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207909266),(4828,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207909857),(4829,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207909857),(4830,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207909860),(4831,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207910470),(4832,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207910949),(4833,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207910949),(4834,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207912112),(4835,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207912112),(4836,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207912880),(4837,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207913324),(4838,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207913324),(4839,'204.15.20.225','','empty','','','/eric/feed','','','',1207913361),(4840,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207913479),(4841,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207914568),(4842,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207914568),(4843,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207914682),(4844,'91.121.69.5','','empty','','','/eric/feed/','','','',1207915200),(4845,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207915280),(4846,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207915765),(4847,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207915765),(4848,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207915882),(4849,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207916476),(4850,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207917001),(4851,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207917001),(4852,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207917088),(4853,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207918279),(4854,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207918279),(4855,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207918894),(4856,'204.15.20.231','','empty','','','/eric/feed','','','',1207918989),(4857,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207919054),(4858,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207919551),(4859,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207919551),(4860,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207920893),(4861,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207920893),(4862,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207921302),(4863,'67.195.52.56','','empty','','','/eric/','','Yahoo! Slurp','',1207921894),(4864,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207921914),(4865,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207922375),(4866,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207922376),(4867,'91.121.69.5','','empty','','','/eric/feed/','','','',1207922504),(4868,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207922511),(4869,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207923729),(4870,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207923900),(4871,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207923900),(4872,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207924317),(4873,'204.15.20.224','','empty','','','/eric/feed','','','',1207924659),(4874,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207924920),(4875,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207925328),(4876,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207925328),(4877,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207925518),(4878,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207926059),(4879,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207926059),(4880,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1207926236),(4881,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1207926304),(4882,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1207926305),(4883,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1207926339),(4884,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1207926340),(4885,'66.249.72.203','','empty','','','/eric/weddings/2008/bridal-gaze','','Googlebot','2.1',1207926523),(4886,'65.54.165.81','','empty','','','/eric/','','msnbot','',1207926647),(4887,'65.54.165.81','','empty','','','/eric/feed','','msnbot','',1207926651),(4888,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207926653),(4889,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207926724),(4890,'64.40.118.230','','empty','','','/eric/?feed=rss2','','','',1207926765),(4891,'64.40.118.230','','empty','','','/eric/','','','',1207926767),(4892,'64.40.118.230','','empty','','','/eric/','','','',1207926767),(4893,'64.40.118.230','','empty','','','/eric/weddings/2008/bridal-gaze','','','',1207926771),(4894,'64.40.118.230','','empty','','','/eric/weddings/2008/bridal-gaze','','','',1207926771),(4895,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207926772),(4896,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207926772),(4897,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1207926793),(4898,'66.249.72.203','','empty','','','/eric/weddings/2008/bridal-gaze','','Googlebot','2.1',1207926821),(4899,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207926931),(4900,'65.54.165.81','','empty','','','/eric/weddings/2008/bridal-gaze','','msnbot','',1207926945),(4901,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207927038),(4902,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207927038),(4903,'67.202.34.117','','empty','','','/eric/','','','',1207927074),(4904,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207927142),(4905,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207927142),(4906,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207927327),(4907,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207927931),(4908,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207928532),(4909,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207929642),(4910,'91.121.69.5','','empty','','','/eric/feed/','','','',1207929646),(4911,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207929660),(4912,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207929660),(4913,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207929744),(4914,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207930357),(4915,'204.15.20.231','','empty','','','/eric/feed','','','',1207930662),(4916,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207930949),(4917,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207931217),(4918,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207931217),(4919,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207931442),(4920,'64.41.145.110','','en-us','','','/eric/?feed=rss2','Windows XP','Internet Explorer','6.0',1207931649),(4921,'64.41.145.110','','en-us','','','/eric/world/2008/wudhu','Windows XP','Internet Explorer','6.0',1207931649),(4922,'64.41.145.110','','en-us','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1207931651),(4923,'64.41.145.110','','en-us','','','/eric/nature/2008/grand-tetons','Windows XP','Internet Explorer','6.0',1207931652),(4924,'64.41.145.110','','en-us','','','/eric/nature/2008/the-hills-are-alive','Windows XP','Internet Explorer','6.0',1207931653),(4925,'64.41.145.110','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Internet Explorer','6.0',1207931655),(4926,'64.41.145.110','','en-us','','','/eric/adventure/2008/desert-storm-rally','Windows XP','Internet Explorer','6.0',1207931662),(4927,'64.41.145.110','','en-us','','','/eric/nature/2008/white-tiger','Windows XP','Internet Explorer','6.0',1207931664),(4928,'64.41.145.110','','en-us','','','/eric/portraits/2008/asher','Windows XP','Internet Explorer','6.0',1207931664),(4929,'64.41.145.110','','en-us','','','/eric/world/2008/blue-cove','Windows XP','Internet Explorer','6.0',1207931665),(4930,'64.41.145.110','','en-us','','','/eric/weddings/2008/bridal-gaze','Windows XP','Internet Explorer','6.0',1207931666),(4931,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207932716),(4932,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207932716),(4933,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207932757),(4934,'64.202.161.130','','empty','','','/eric/weddings/2008/bridal-gaze','','','',1207932785),(4935,'64.202.161.130','','empty','','','/eric/xmlrpc.php','','','',1207932786),(4936,'64.202.161.130','','empty','','','/eric/weddings/2008/bridal-gaze','','','',1207932793),(4937,'64.202.161.130','','empty','','','/eric/xmlrpc.php','','','',1207932794),(4938,'64.202.161.130','','empty','','','/eric/weddings/2008/bridal-gaze','','','',1207932821),(4939,'64.202.161.130','','empty','','','/eric/weddings/2008/bridal-gaze','','','',1207932822),(4940,'64.21.98.196','','empty','','','/eric/','','','',1207933181),(4941,'64.21.98.196','','empty','','','/eric/feed','','','',1207933186),(4942,'64.21.98.196','','empty','','','/eric/feed','','','',1207933309),(4943,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207933361),(4944,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207933954),(4945,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207934222),(4946,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207934222),(4947,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207934563),(4948,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207935159),(4949,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207935232),(4950,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207935573),(4951,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207935573),(4952,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207936371),(4953,'204.15.20.230','','empty','','','/eric/feed','','','',1207936477),(4954,'91.121.69.5','','empty','','','/eric/feed/','','','',1207936900),(4955,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207937033),(4956,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207937124),(4957,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207937569),(4958,'72.208.27.10','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207937754),(4959,'72.208.27.10','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207937763),(4960,'72.208.27.10','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207937795),(4961,'72.208.27.10','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1207937796),(4962,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207938595),(4963,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207938595),(4964,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207938762),(4965,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207938834),(4966,'130.13.174.168','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=10416929196&ref=mf','/eric/weddings/2008/bridal-gaze','Mac OS X','Safari','525.13',1207939212),(4967,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/bridal-gaze','/eric/','Mac OS X','Safari','525.13',1207939228),(4968,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Mac OS X','Safari','525.13',1207939236),(4969,'67.195.58.162','','empty','','','/eric/','','Yahoo! Slurp','',1207939237),(4970,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/','Mac OS X','Safari','525.13',1207939248),(4971,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207939983),(4972,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207940000),(4973,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207940000),(4974,'142.166.170.81','','empty','','','/eric/feed','','Crawler/Search Engine','',1207940022),(4975,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207940636),(4976,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207941186),(4977,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207941405),(4978,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207941405),(4979,'204.15.20.231','','empty','','','/eric/feed','','','',1207942177),(4980,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207942393),(4981,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207942400),(4982,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207942437),(4983,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207942483),(4984,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207942762),(4985,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207942762),(4986,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207942842),(4987,'64.78.155.100','','empty','','','/eric/feed','','','',1207942929),(4988,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207943596),(4989,'91.121.69.5','','empty','','','/eric/feed/','','','',1207944025),(4990,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207944085),(4991,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207944085),(4992,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207944195),(4993,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207944805),(4994,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207945404),(4995,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207945490),(4996,'75.127.197.235','','en-us','facebook.com','http://www.facebook.com/notes.php?ref=sb','/eric/weddings/2008/bridal-gaze','Windows Vista','Internet Explorer','7.0',1207945801),(4997,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207946008),(4998,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207946457),(4999,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207946611),(5000,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207946889),(5001,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207946889),(5002,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207947210),(5003,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207947812),(5004,'204.15.20.224','','empty','','','/eric/feed','','','',1207947894),(5005,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207948260),(5006,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207948260),(5007,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207948415),(5008,'130.13.174.168','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/blog/','/eric/packages','Mac OS X','Safari','525.13',1207948688),(5009,'130.13.174.168','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/','Mac OS X','Safari','525.13',1207948693),(5010,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207949014),(5011,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207949615),(5012,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207949657),(5013,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207949657),(5014,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207950216),(5015,'207.154.85.2','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.6',1207950406),(5016,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.6',1207950409),(5017,'207.154.85.2','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.6',1207950431),(5018,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.6',1207950433),(5019,'207.154.85.2','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.6',1207950595),(5020,'207.154.85.2','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.6',1207950865),(5021,'207.154.85.2','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.6',1207950884),(5022,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portraits/2008/asher','Windows XP','Firefox','2.0.0.6',1207950911),(5023,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207950930),(5024,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207950930),(5025,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/asher','/eric/wp-comments-post.php','Windows XP','Firefox','2.0.0.6',1207950968),(5026,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/asher','/eric/portraits/2008/asher','Windows XP','Firefox','2.0.0.6',1207950968),(5027,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/asher','/eric/about','Windows XP','Firefox','2.0.0.6',1207950979),(5028,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/about','/eric/category/nature','Windows XP','Firefox','2.0.0.6',1207951030),(5029,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/category/nature','/eric/category/adventure','Windows XP','Firefox','2.0.0.6',1207951051),(5030,'207.154.85.2','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Firefox','2.0.0.6',1207951060),(5031,'91.121.69.5','','empty','','','/eric/feed/','','','',1207951214),(5032,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207952030),(5033,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207952072),(5034,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207952148),(5035,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207952148),(5036,'67.195.37.92','','en-us','','','/eric/category/weddings','','Yahoo! Slurp','',1207952533),(5037,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1207952978),(5038,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1207953192),(5039,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207953235),(5040,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207953330),(5041,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207953330),(5042,'204.15.20.224','','empty','','','/eric/feed','','','',1207953575),(5043,'67.195.37.92','','en-us','','','/eric/category/world','','Yahoo! Slurp','',1207953695),(5044,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207954438),(5045,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207954563),(5046,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207954563),(5047,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207955019),(5048,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207955780),(5049,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207955780),(5050,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207956809),(5051,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207956847),(5052,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207956961),(5053,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207956961),(5054,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207957450),(5055,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207958054),(5056,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207958090),(5057,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207958091),(5058,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1207958610),(5059,'67.195.37.92','','en-us','','','/eric/packages','','Yahoo! Slurp','',1207958710),(5060,'204.15.20.227','','empty','','','/eric/feed','','','',1207958982),(5061,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207959104),(5062,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1207959104),(5063,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207959259),(5064,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207959271),(5065,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207959315),(5066,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207959315),(5067,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207959821),(5068,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207960390),(5069,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207960390),(5070,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207960484),(5071,'67.195.37.92','','en-us','','','/eric/adventure/2008/desert-storm-rally','','Yahoo! Slurp','',1207961086),(5072,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207961512),(5073,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207961512),(5074,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207962639),(5075,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1207963423),(5076,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207963469),(5077,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207963776),(5078,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207963776),(5079,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207964074),(5080,'67.195.37.92','','en-us','','','/eric/nature/2008/the-hills-are-alive','','Yahoo! Slurp','',1207964379),(5081,'204.15.20.224','','empty','','','/eric/feed','','','',1207964471),(5082,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207964877),(5083,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207964877),(5084,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207965270),(5085,'91.121.69.5','','empty','','','/eric/feed/','','','',1207965619),(5086,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207966077),(5087,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207966077),(5088,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207966479),(5089,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207967084),(5090,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207967283),(5091,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207967283),(5092,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1207967573),(5093,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207967678),(5094,'68.251.189.115','','en-us','guide2games.org','http://guide2games.org/faq/','/eric/','Windows XP','Internet Explorer','7.0',1207967932),(5095,'68.251.189.115','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207967935),(5096,'68.251.189.115','','en-us','guide2games.org','http://guide2games.org/faq/','/eric/','Windows XP','Internet Explorer','7.0',1207967956),(5097,'68.251.189.115','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207967957),(5098,'68.251.189.115','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/contact','Windows XP','Internet Explorer','7.0',1207967965),(5099,'68.251.189.115','','en-us','eden.org','http://grandviewphotographyaz.com/contact','/eric/contact%23wpcf7-f1-p39-o1','Windows XP','Internet Explorer','7.0',1207968047),(5100,'72.30.226.156','','empty','','','/eric/','','Yahoo! Slurp','',1207968074),(5101,'67.195.37.92','','en-us','','','/eric/category/nature','','Yahoo! Slurp','',1207968229),(5102,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207968285),(5103,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207968419),(5104,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207968419),(5105,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207968898),(5106,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207969491),(5107,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207969524),(5108,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207969525),(5109,'204.15.20.230','','empty','','','/eric/feed','','','',1207969701),(5110,'67.195.37.92','','en-us','','','/eric/world/2008/blue-cove','','Yahoo! Slurp','',1207969708),(5111,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207970629),(5112,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207970629),(5113,'65.55.165.29','','en-us','search.live.com','http://search.live.com/results.aspx?q=taken&mrt=en-us&FORM=LIVSOP','/eric/','Windows 2003','Internet Explorer','7.0',1207971233),(5114,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207971826),(5115,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207971826),(5116,'64.78.155.100','','empty','','','/eric/feed','','','',1207972198),(5117,'91.121.69.5','','empty','','','/eric/feed/','','','',1207972808),(5118,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207972930),(5119,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207972930),(5120,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207974053),(5121,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207974053),(5122,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207974380),(5123,'204.15.20.227','','empty','','','/eric/feed','','','',1207974864),(5124,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207974983),(5125,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207975198),(5126,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207975198),(5127,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207975596),(5128,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207975836),(5129,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1207975840),(5130,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207976190),(5131,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207976276),(5132,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207976276),(5133,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207977395),(5134,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207977395),(5135,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207977404),(5136,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207977994),(5137,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207978493),(5138,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207978493),(5139,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1207978549),(5140,'72.208.227.154','','en','','','/eric/','Mac OS X','Safari','523.12',1207978550),(5141,'67.195.37.92','','en-us','','','/eric/about','','Yahoo! Slurp','',1207978864),(5142,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207979209),(5143,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207979567),(5144,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207979567),(5145,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207979792),(5146,'67.195.54.53','','empty','','','/eric/world/2008/blue-cove','','Yahoo! Slurp','',1207979950),(5147,'91.121.69.5','','empty','','','/eric/feed/','','','',1207980024),(5148,'204.15.20.224','','empty','','','/eric/feed','','','',1207980196),(5149,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207980414),(5150,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207980643),(5151,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207980644),(5152,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207980998),(5153,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207981619),(5154,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207981733),(5155,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207981733),(5156,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207982205),(5157,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207982826),(5158,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207982825),(5159,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207983935),(5160,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207983935),(5161,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207985058),(5162,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207985058),(5163,'204.15.20.225','','empty','','','/eric/feed','','','',1207985226),(5164,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207986225),(5165,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207986225),(5166,'67.195.37.92','','en-us','','','/eric/portfolio','','Yahoo! Slurp','',1207986957),(5167,'91.121.69.5','','empty','','','/eric/feed/','','','',1207987157),(5168,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207987353),(5169,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207987353),(5170,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207988243),(5171,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207988831),(5172,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207989444),(5173,'67.195.37.92','','en-us','','','/eric/weddings/2008/bridal-gaze','','Yahoo! Slurp','',1207989729),(5174,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207990032),(5175,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207990032),(5176,'204.15.20.231','','empty','','','/eric/feed','','','',1207990705),(5177,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207991371),(5178,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207991371),(5179,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207992465),(5180,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207992689),(5181,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1207992689),(5182,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207993051),(5183,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1207993116),(5184,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207994096),(5185,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207994096),(5186,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207994274),(5187,'91.121.69.5','','empty','','','/eric/feed/','','','',1207994364),(5188,'66.249.72.203','','empty','','','/eric/?p=1','','Googlebot','2.1',1207994492),(5189,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207994879),(5190,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207995445),(5191,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207995445),(5192,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207995462),(5193,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207996082),(5194,'204.15.20.229','','empty','','','/eric/feed','','','',1207996594),(5195,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207996679),(5196,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1207996680),(5197,'142.166.170.83','','empty','','','/eric/feed','','Crawler/Search Engine','',1207997625),(5198,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207997878),(5199,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1207997912),(5200,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207997912),(5201,'67.195.37.92','','en-us','','','/eric/weddings/2008/bridal-gaze','','Yahoo! Slurp','',1207998178),(5202,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207998485),(5203,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207999083),(5204,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1207999104),(5205,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1207999104),(5206,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1207999693),(5207,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208000264),(5208,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208000264),(5209,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208000288),(5210,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1208000451),(5211,'67.195.37.92','','en-us','','','/eric/contact','','Yahoo! Slurp','',1208000722),(5212,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208001373),(5213,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208001373),(5214,'64.78.155.100','','empty','','','/eric/feed','','','',1208001466),(5215,'91.121.69.5','','empty','','','/eric/feed/','','','',1208001594),(5216,'204.15.20.224','','empty','','','/eric/feed','','','',1208002152),(5217,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208002196),(5218,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208002494),(5219,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208002494),(5220,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208003307),(5221,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208003581),(5222,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208003582),(5223,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208004725),(5224,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208004725),(5225,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208005723),(5226,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208005864),(5227,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208005864),(5228,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208007024),(5229,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208007024),(5230,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208007526),(5231,'204.15.20.224','','empty','','','/eric/feed','','','',1208007742),(5232,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208008306),(5233,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208008306),(5234,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208008732),(5235,'72.34.230.108','','empty','','','/eric/','','Crawler/Search Engine','',1208008778),(5236,'91.121.69.5','','empty','','','/eric/feed/','','','',1208008803),(5237,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208009517),(5238,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208009517),(5239,'74.6.21.25','','empty','','','/eric/weddings/2008/bridal-gaze','','Yahoo! Slurp','',1208009591),(5240,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208009938),(5241,'67.195.37.92','','en-us','','','/eric/category/portraits','','Yahoo! Slurp','',1208010292),(5242,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208010672),(5243,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208010672),(5244,'67.195.37.92','','en-us','','','/eric/xmlrpc.php?rsd','','Yahoo! Slurp','',1208011618),(5245,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208011878),(5246,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208011878),(5247,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1208012880),(5248,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208012949),(5249,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208013073),(5250,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208013073),(5251,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208013537),(5252,'204.15.20.224','','empty','','','/eric/feed','','','',1208013614),(5253,'72.204.241.130','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208014018),(5254,'72.204.241.130','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208014024),(5255,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208014275),(5256,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208014275),(5257,'71.41.200.78','','empty','','','/eric/','','Crawler/Search Engine','',1208014297),(5258,'67.195.37.92','','en-us','','','/eric/portraits/2008/asher','','Yahoo! Slurp','',1208014544),(5259,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208014742),(5260,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208015509),(5261,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208015509),(5262,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208015946),(5263,'74.6.17.218','','empty','','','/eric/category/nature','','Yahoo! Slurp','',1208016043),(5264,'91.121.69.5','','empty','','','/eric/feed/','','','',1208016095),(5265,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208016549),(5266,'74.6.31.229','','empty','','','/eric/nature/2008/grand-tetons','','Yahoo! Slurp','',1208016592),(5267,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208016806),(5268,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208016806),(5269,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208017753),(5270,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208018013),(5271,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208019272),(5272,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208019272),(5273,'204.15.20.224','','empty','','','/eric/feed','','','',1208019378),(5274,'65.55.104.21','','empty','','','/eric/world/2008/blue-cove','','msnbot','1.1',1208020372),(5275,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208020530),(5276,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208020530),(5277,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208021893),(5278,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208021893),(5279,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208021979),(5280,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208022582),(5281,'72.223.12.142','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208023093),(5282,'72.223.12.142','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208023098),(5283,'91.121.69.5','','empty','','','/eric/feed/','','','',1208023233),(5284,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208023242),(5285,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208023242),(5286,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208023766),(5287,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208024393),(5288,'70.162.80.185','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208024455),(5289,'70.162.80.185','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208024462),(5290,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208024537),(5291,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208024537),(5292,'130.13.103.12','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208024557),(5293,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208024564),(5294,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/bridal-gaze','Windows XP','Internet Explorer','7.0',1208024599),(5295,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/weddings/2008/bridal-gaze','/eric/category/weddings','Windows XP','Internet Explorer','7.0',1208024608),(5296,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/portfolio','Windows XP','Internet Explorer','7.0',1208024614),(5297,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/portfolio','Windows XP','Internet Explorer','7.0',1208024636),(5298,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/','Windows XP','Internet Explorer','7.0',1208024642),(5299,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208024643),(5300,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Internet Explorer','7.0',1208024650),(5301,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/category/portraits','Windows XP','Internet Explorer','7.0',1208024662),(5302,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portraits/2008/glowing','Windows XP','Internet Explorer','7.0',1208024670),(5303,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/category/portraits','Windows XP','Internet Explorer','7.0',1208024676),(5304,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/category/portraits','/eric/portraits/2008/field-of-green','Windows XP','Internet Explorer','7.0',1208024682),(5305,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/portraits/2008/field-of-green','/eric/portraits/2008/field-of-green','Windows XP','Internet Explorer','7.0',1208024694),(5306,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/category/portraits','Windows XP','Internet Explorer','7.0',1208024701),(5307,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Internet Explorer','7.0',1208024703),(5308,'130.13.103.12','','en-us','eden.org','http://grandviewphotographyaz.com/category/weddings','/eric/packages','Windows XP','Internet Explorer','7.0',1208024734),(5309,'204.15.20.228','','empty','','','/eric/feed','','','',1208024833),(5310,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208024983),(5311,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208025596),(5312,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208025724),(5313,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208025724),(5314,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208026979),(5315,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208026979),(5316,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208028012),(5317,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208028253),(5318,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208028253),(5319,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208028618),(5320,'70.146.202.46','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208029044),(5321,'70.146.202.46','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208029051),(5322,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208029647),(5323,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208029647),(5324,'204.15.20.229','','empty','','','/eric/feed','','','',1208030357),(5325,'91.121.69.5','','empty','','','/eric/feed/','','','',1208030457),(5326,'64.78.155.100','','empty','','','/eric/feed','','','',1208030741),(5327,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208030789),(5328,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208030789),(5329,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208032017),(5330,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208032017),(5331,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1208032351),(5332,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1208032364),(5333,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208032736),(5334,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208032753),(5335,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208032763),(5336,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/bridal-gaze','Windows XP','Firefox','2.0.0.13',1208032775),(5337,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208032785),(5338,'68.104.227.220','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208032786),(5339,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208032812),(5340,'74.6.7.94','','empty','','','/eric/world/2008/','','Yahoo! Slurp','',1208033139),(5341,'74.6.7.94','','empty','','','/eric/world/2008','','Yahoo! Slurp','',1208033139),(5342,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208033210),(5343,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208033210),(5344,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208033227),(5345,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208033228),(5346,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208033228),(5347,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208033228),(5348,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208033229),(5349,'68.104.227.220','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208033229),(5350,'217.212.224.179','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','Crawler/Search Engine','',1208033408),(5351,'217.212.224.181','','empty','','','/eric/weddings/2008/carleybryan-wedding1','','Crawler/Search Engine','',1208033731),(5352,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1208034165),(5353,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208034386),(5354,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208034386),(5355,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208035243),(5356,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208035562),(5357,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208035562),(5358,'204.15.20.227','','empty','','','/eric/feed','','','',1208035660),(5359,'209.17.191.74','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1208035715),(5360,'209.17.191.74','','empty','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1208035716),(5361,'162.114.40.31','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows','Internet Explorer','5.0',1208035717),(5362,'162.114.40.31','','empty','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1208035718),(5363,'198.69.35.203','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Googlebot','2.1',1208035719),(5364,'198.69.35.203','','empty','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/wp-comments-post.php','','Googlebot','2.1',1208035720),(5365,'121.119.180.189','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows','Internet Explorer','5.0',1208035721),(5366,'121.119.180.189','','empty','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/wp-comments-post.php','Windows','Internet Explorer','5.0',1208035722),(5367,'121.119.180.189','','empty','eden.org','http://grandviewphotographyaz.com/wp-comments-post.php','/eric/portraits/2008/sarah-sr-pictures-1','Windows','Internet Explorer','5.0',1208035723),(5368,'71.230.193.252','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1208035726),(5369,'65.198.140.246','','empty','eden.org','http://grandviewphotographyaz.com/portraits/2008/sarah-sr-pictures-1','/eric/portraits/2008/sarah-sr-pictures-1','Windows XP','Internet Explorer','6.0',1208035733),(5370,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208035842),(5371,'72.223.116.158','','en-us','grandviewphotographyaz.com','http://www.grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1208035902),(5372,'72.223.116.158','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Firefox','2.0.0.13',1208035903),(5373,'69.13.112.144','','empty','','','/eric/weddings/2008/bridal-gaze','','','',1208036208),(5374,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208036437),(5375,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208036748),(5376,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208036748),(5377,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208037047),(5378,'74.6.26.110','','empty','','','/eric/world/','','Yahoo! Slurp','',1208037279),(5379,'74.6.26.110','','empty','','','/eric/world','','Yahoo! Slurp','',1208037280),(5380,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208037474),(5381,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208037478),(5382,'91.121.69.5','','empty','','','/eric/feed/','','','',1208037598),(5383,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208037648),(5384,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208037902),(5385,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208037902),(5386,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208038854),(5387,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208039045),(5388,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208039045),(5389,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208039456),(5390,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208040060),(5391,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208040242),(5392,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208040242),(5393,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1208040842),(5394,'204.15.20.228','','empty','','','/eric/feed','','','',1208041133),(5395,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208041263),(5396,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208041372),(5397,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208041372),(5398,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208041859),(5399,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208042468),(5400,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208042482),(5401,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208042482),(5402,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208043614),(5403,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208043614),(5404,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208044286),(5405,'91.121.69.5','','empty','','','/eric/feed/','','','',1208044705),(5406,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208044771),(5407,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208044771),(5408,'74.6.27.57','','empty','','','/eric/category/world','','Yahoo! Slurp','',1208044952),(5409,'74.6.16.177','','empty','','','/eric/category/portraits','','Yahoo! Slurp','',1208044961),(5410,'74.6.25.88','','empty','','','/eric/world/2008/wudhu','','Yahoo! Slurp','',1208044989),(5411,'74.6.28.159','','empty','','','/eric/about','','Yahoo! Slurp','',1208045194),(5412,'74.6.24.53','','empty','','','/eric/adventure/2008/sleeping-under-the-stars','','Yahoo! Slurp','',1208045278),(5413,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208045475),(5414,'74.6.21.62','','empty','','','/eric/portraits/2008/glowing','','Yahoo! Slurp','',1208045497),(5415,'74.6.9.162','','empty','','','/eric/portraits/2008/','','Yahoo! Slurp','',1208045695),(5416,'74.6.9.162','','empty','','','/eric/portraits/2008','','Yahoo! Slurp','',1208045696),(5417,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208045917),(5418,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208045917),(5419,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208046078),(5420,'65.55.209.77','','empty','','','/eric/?feed=rss2','','msnbot','1.1',1208046229),(5421,'204.15.20.229','','empty','','','/eric/feed','','','',1208046311),(5422,'65.55.209.77','','empty','','','/eric/?cat=6','','msnbot','1.1',1208046350),(5423,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208047054),(5424,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208047054),(5425,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208047279),(5426,'142.166.170.82','','empty','','','/eric/feed','','Crawler/Search Engine','',1208047378),(5427,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208048158),(5428,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208048158),(5429,'74.6.8.38','','empty','','','/eric/adventure/','','Yahoo! Slurp','',1208048244),(5430,'74.6.8.38','','empty','','','/eric/adventure','','Yahoo! Slurp','',1208048245),(5431,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208049335),(5432,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208049335),(5433,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208050292),(5434,'74.6.24.216','','empty','','','/eric/category/weddings','','Yahoo! Slurp','',1208050412),(5435,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208050479),(5436,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208050479),(5437,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208051499),(5438,'204.15.20.231','','empty','','','/eric/feed','','','',1208051504),(5439,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208051618),(5440,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208051618),(5441,'91.121.69.5','','empty','','','/eric/feed/','','','',1208051955),(5442,'74.6.25.246','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1208052184),(5443,'74.6.22.24','','empty','','','/eric/nature/2008/white-tiger','','Yahoo! Slurp','',1208052477),(5444,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208052780),(5445,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208052780),(5446,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208053302),(5447,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208053906),(5448,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208053980),(5449,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208053980),(5450,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208054511),(5451,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208055074),(5452,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208055109),(5453,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208055110),(5454,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208055110),(5455,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208055732),(5456,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208056328),(5457,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208056328),(5458,'64.78.155.100','','empty','','','/eric/feed','','','',1208056428),(5459,'204.15.20.227','','empty','','','/eric/feed','','','',1208056791),(5460,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208056848),(5461,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208057681),(5462,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208057681),(5463,'74.6.25.37','','empty','','','/eric/portraits/2008/field-of-green','','Yahoo! Slurp','',1208058365),(5464,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208059000),(5465,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208059000),(5466,'91.121.69.5','','empty','','','/eric/feed/','','','',1208059174),(5467,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208059506),(5468,'216.200.40.144','','empty','','','/eric/blog/?feed=rss2','','','',1208059788),(5469,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208060115),(5470,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208060417),(5471,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208060709),(5472,'74.6.21.122','','empty','','','/eric/world/2008/old-bike','','Yahoo! Slurp','',1208061058),(5473,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208061320),(5474,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208061599),(5475,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208061599),(5476,'204.15.20.225','','empty','','','/eric/feed','','','',1208061729),(5477,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208061917),(5478,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208062515),(5479,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208062755),(5480,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208062755),(5481,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208063117),(5482,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208063716),(5483,'64.78.155.100','','empty','','','/eric/feed','','','',1208063737),(5484,'72.30.226.156','','empty','','','/eric/','','Yahoo! Slurp','',1208063839),(5485,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208064029),(5486,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208064029),(5487,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208064334),(5488,'74.6.20.253','','empty','','','/eric/packages','','Yahoo! Slurp','',1208064720),(5489,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208064931),(5490,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208065209),(5491,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208065209),(5492,'130.13.174.168','','en-us','','','/eric/weddings/2008/bridal-gaze','Windows XP','Firefox','2.0.0.13',1208065429),(5493,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208065436),(5494,'130.13.174.168','','en-us','','','/eric/nature/2008/white-tiger','Windows XP','Firefox','2.0.0.13',1208065476),(5495,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208065478),(5496,'130.13.174.168','','en-us','','','/eric/weddings/2008/snow-white','Windows XP','Firefox','2.0.0.13',1208065542),(5497,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208065549),(5498,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208066329),(5499,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208066329),(5500,'91.121.69.5','','empty','','','/eric/feed/','','','',1208066388),(5501,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208066740),(5502,'96.245.11.51','','en-us','us.mg1.mail.yahoo.com','http://us.mg1.mail.yahoo.com/dc/launch?.rand=54su21b050tsl','/eric/weddings/2008/bridal-gaze','Windows XP','Internet Explorer','7.0',1208066868),(5503,'204.15.20.227','','empty','','','/eric/feed','','','',1208067080),(5504,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208067342),(5505,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208067454),(5506,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208067454),(5507,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208067948),(5508,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208068539),(5509,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208068605),(5510,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208068605),(5511,'74.6.25.40','','empty','','','/eric/nature/2008/lotus','','Yahoo! Slurp','',1208069062),(5512,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208069156),(5513,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208069656),(5514,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208069656),(5515,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208070347),(5516,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208070798),(5517,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208070798),(5518,'64.78.155.100','','empty','','','/eric/feed','','','',1208071059),(5519,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208071554),(5520,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208071954),(5521,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208071954),(5522,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208072148),(5523,'204.15.20.229','','empty','','','/eric/feed','','','',1208072415),(5524,'200.122.88.37','','es-ar','','','/eric/','Windows XP','Internet Explorer','7.0',1208072551),(5525,'200.122.88.37','','es-ar','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208072565),(5526,'200.122.88.37','','es-ar','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows XP','Internet Explorer','7.0',1208072608),(5527,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208073126),(5528,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208073126),(5529,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208073352),(5530,'91.121.69.5','','empty','','','/eric/feed/','','','',1208073597),(5531,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208073953),(5532,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208074259),(5533,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208074259),(5534,'74.6.20.170','','empty','','','/eric/category/adventure','','Yahoo! Slurp','',1208074304),(5535,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208074565),(5536,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208075150),(5537,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208075416),(5538,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208075416),(5539,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208075769),(5540,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208076354),(5541,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208076587),(5542,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208076587),(5543,'204.15.20.227','','empty','','','/eric/feed','','','',1208077427),(5544,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208077575),(5545,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208077721),(5546,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208077721),(5547,'64.78.155.100','','empty','','','/eric/feed','','','',1208078359),(5548,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208078784),(5549,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208078883),(5550,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208078883),(5551,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1208079821),(5552,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208079986),(5553,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208080036),(5554,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208080036),(5555,'91.121.69.5','','empty','','','/eric/feed/','','','',1208080795),(5556,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208081287),(5557,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208081287),(5558,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208082418),(5559,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208082418),(5560,'204.15.20.224','','empty','','','/eric/feed','','','',1208083406),(5561,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208083537),(5562,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208083599),(5563,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1208083669),(5564,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208084701),(5565,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208084701),(5566,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208085394),(5567,'64.78.155.100','','empty','','','/eric/feed','','','',1208085701),(5568,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208085902),(5569,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208085902),(5570,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208086010),(5571,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208086600),(5572,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208087128),(5573,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208087128),(5574,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208087216),(5575,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208087813),(5576,'91.121.69.5','','empty','','','/eric/feed/','','','',1208088022),(5577,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208088188),(5578,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208088188),(5579,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208088417),(5580,'204.15.20.226','','empty','','','/eric/feed','','','',1208088621),(5581,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208089020),(5582,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208089415),(5583,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208089415),(5584,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208089606),(5585,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208090230),(5586,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208090729),(5587,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208090729),(5588,'74.6.18.54','','empty','','','/eric/adventure/2008/','','Yahoo! Slurp','',1208091026),(5589,'74.6.18.54','','empty','','','/eric/adventure/2008','','Yahoo! Slurp','',1208091027),(5590,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208091937),(5591,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208091937),(5592,'64.78.155.100','','empty','','','/eric/feed','','','',1208093026),(5593,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208093163),(5594,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208093164),(5595,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208093843),(5596,'204.15.20.224','','empty','','','/eric/feed','','','',1208094213),(5597,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208094413),(5598,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208094413),(5599,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1208095234),(5600,'91.121.69.5','','empty','','','/eric/feed/','','','',1208095234),(5601,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1208095235),(5602,'216.39.58.78','','empty','','','/eric/','','Internet Explorer','5.5',1208095293),(5603,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1208095297),(5604,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1208095298),(5605,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1208095313),(5606,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1208095314),(5607,'66.249.72.203','','empty','','','/eric/world/2008/shikara-walla-1','','Googlebot','2.1',1208095596),(5608,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1208095606),(5609,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208095638),(5610,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208095656),(5611,'66.249.72.203','','empty','','','/eric/world/2008/shikara-walla-1','','Googlebot','2.1',1208095665),(5612,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208095718),(5613,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208095718),(5614,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208095875),(5615,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208095875),(5616,'67.202.34.117','','empty','','','/eric/','','','',1208096013),(5617,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208096859),(5618,'142.166.170.80','','empty','','','/eric/feed','','Crawler/Search Engine','',1208097296),(5619,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208097458),(5620,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208098065),(5621,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208098207),(5622,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208098207),(5623,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208098655),(5624,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208099268),(5625,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208099416),(5626,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208099416),(5627,'204.15.20.230','','empty','','','/eric/feed','','','',1208099626),(5628,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208099856),(5629,'64.78.155.100','','empty','','','/eric/feed','','','',1208100337),(5630,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208100469),(5631,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208100629),(5632,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208100629),(5633,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208101062),(5634,'65.55.209.83','','empty','','','/eric/?p=26','','msnbot','1.1',1208101448),(5635,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208101675),(5636,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208101934),(5637,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208101934),(5638,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208102265),(5639,'91.121.69.5','','empty','','','/eric/feed/','','','',1208102472),(5640,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208102878),(5641,'71.229.138.191','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=10291174196&ref=nf','/eric/packages','Windows Vista','Internet Explorer','7.0',1208103043),(5642,'71.229.138.191','','en-us','','','/eric/','Windows Vista','Internet Explorer','7.0',1208103059),(5643,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/bridal-gaze','Windows Vista','Internet Explorer','7.0',1208103095),(5644,'74.6.17.245','','empty','','','/eric/nature/2008/','','Yahoo! Slurp','',1208103105),(5645,'71.229.138.191','','en-us','','','/eric/','Windows Vista','Internet Explorer','7.0',1208103105),(5646,'74.6.17.245','','empty','','','/eric/nature/2008','','Yahoo! Slurp','',1208103105),(5647,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208103111),(5648,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208103116),(5649,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208103118),(5650,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208103134),(5651,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208103137),(5652,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Windows Vista','Internet Explorer','7.0',1208103141),(5653,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208103146),(5654,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows Vista','Internet Explorer','7.0',1208103147),(5655,'71.229.138.191','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows Vista','Internet Explorer','7.0',1208103150),(5656,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208103218),(5657,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208103218),(5658,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208104612),(5659,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208104612),(5660,'204.15.20.227','','empty','','','/eric/feed','','','',1208105442),(5661,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208105921),(5662,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208105921),(5663,'76.204.79.25','','en-us','','','/eric/','Windows XP','Internet Explorer','6.0',1208106654),(5664,'76.204.79.25','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1208106662),(5665,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208107096),(5666,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208107199),(5667,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208107199),(5668,'64.78.155.100','','empty','','','/eric/feed','','','',1208107650),(5669,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208108299),(5670,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208108491),(5671,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208108491),(5672,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208108898),(5673,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208109494),(5674,'91.121.69.5','','empty','','','/eric/feed/','','','',1208109694),(5675,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208109761),(5676,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208109761),(5677,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208110696),(5678,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208110949),(5679,'204.15.20.224','','empty','','','/eric/feed','','','',1208111037),(5680,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208111073),(5681,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208111074),(5682,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208111300),(5683,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208111916),(5684,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208112345),(5685,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208112345),(5686,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208113702),(5687,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208113773),(5688,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208113773),(5689,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208114324),(5690,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208114916),(5691,'64.78.155.100','','empty','','','/eric/feed','','','',1208114975),(5692,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208115027),(5693,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208115027),(5694,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208116134),(5695,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208116201),(5696,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208116201),(5697,'91.121.69.5','','empty','','','/eric/feed/','','','',1208116836),(5698,'204.15.20.230','','empty','','','/eric/feed','','','',1208116853),(5699,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208117505),(5700,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208117505),(5701,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208118716),(5702,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208118716),(5703,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208119752),(5704,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208119982),(5705,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208119982),(5706,'72.204.247.38','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1208120112),(5707,'72.204.247.38','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1208120112),(5708,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1208121037),(5709,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208121266),(5710,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208121266),(5711,'74.6.17.24','','empty','','','/eric/world/2008/shikara-walla-1','','Yahoo! Slurp','',1208121299),(5712,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208121541),(5713,'64.78.155.100','','empty','','','/eric/feed','','','',1208122290),(5714,'204.15.20.231','','empty','','','/eric/feed','','','',1208122438),(5715,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208122590),(5716,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208122591),(5717,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208122745),(5718,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208123959),(5719,'91.121.69.5','','empty','','','/eric/feed/','','','',1208124050),(5720,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208124245),(5721,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208124245),(5722,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208124558),(5723,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208125154),(5724,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208125605),(5725,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208125605),(5726,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208125767),(5727,'70.190.123.189','','en-us','google.com','http://www.google.com/search?hl=en&q=grandview+photography&btnG=Google+Search','/eric/','Windows XP','Firefox','2.0.0.13',1208125778),(5728,'70.190.123.189','','en-us','google.com','http://www.google.com/search?hl=en&q=grandview+photography&btnG=Google+Search','/eric/','Windows XP','Firefox','2.0.0.13',1208125778),(5729,'70.190.123.189','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208125784),(5730,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1208126041),(5731,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208126358),(5732,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208126859),(5733,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208126864),(5734,'68.104.240.162','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208127045),(5735,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208127049),(5736,'68.104.240.162','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/portraits','Windows XP','Internet Explorer','7.0',1208127097),(5737,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208127568),(5738,'204.15.20.229','','empty','','','/eric/feed','','','',1208127756),(5739,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208128098),(5740,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208128098),(5741,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208128769),(5742,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208129336),(5743,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208129337),(5744,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208129375),(5745,'64.78.155.100','','empty','','','/eric/feed','','','',1208129612),(5746,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208129970),(5747,'71.106.183.57','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1208130294),(5748,'71.106.183.57','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208130299),(5749,'71.106.183.57','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208130305),(5750,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208130571),(5751,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208130611),(5752,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208130612),(5753,'91.121.69.5','','empty','','','/eric/feed/','','','',1208131133),(5754,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208131181),(5755,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208131825),(5756,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208131825),(5757,'130.13.174.168','','en-us','','','/eric/world/2008/shikara-walla-1','Windows XP','Firefox','2.0.0.13',1208132187),(5758,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208132194),(5759,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208132391),(5760,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208133027),(5761,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208133027),(5762,'204.15.20.226','','empty','','','/eric/feed','','','',1208133360),(5763,'74.6.20.244','','empty','','','/eric/nature/','','Yahoo! Slurp','',1208133431),(5764,'74.6.20.244','','empty','','','/eric/nature','','Yahoo! Slurp','',1208133432),(5765,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208133596),(5766,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208134204),(5767,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208134204),(5768,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208135515),(5769,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208135515),(5770,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208136008),(5771,'72.30.179.243','','empty','','','/eric/feed','','Yahoo! Slurp','',1208136726),(5772,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208136793),(5773,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208136793),(5774,'74.6.17.232','','empty','','','/eric/contact','','Yahoo! Slurp','',1208137175),(5775,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208137209),(5776,'74.6.29.37','','empty','','','/eric/xmlrpc.php?rsd','','Yahoo! Slurp','',1208137779),(5777,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208138055),(5778,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208138055),(5779,'91.121.69.5','','empty','','','/eric/feed/','','','',1208138351),(5780,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208138404),(5781,'204.15.20.228','','empty','','','/eric/feed','','','',1208138547),(5782,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208138603),(5783,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208138609),(5784,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208139003),(5785,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208139330),(5786,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208139330),(5787,'66.249.72.203','','empty','','','/eric/category/portraits','','Googlebot','2.1',1208139778),(5788,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208140605),(5789,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208140605),(5790,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208141842),(5791,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208141843),(5792,'129.219.6.143','','en-us','facebook.com','http://www.facebook.com/note.php?note_id=10416929196&ref=mf','/eric/weddings/2008/bridal-gaze','Windows XP','Internet Explorer','7.0',1208142043),(5793,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208142615),(5794,'74.6.21.28','','empty','','','/eric/portraits/','','Yahoo! Slurp','',1208142919),(5795,'74.6.21.28','','empty','','','/eric/portraits','','Yahoo! Slurp','',1208142920),(5796,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208142983),(5797,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208143090),(5798,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208143090),(5799,'204.15.20.226','','empty','','','/eric/feed','','','',1208143826),(5800,'207.224.168.141','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1208143935),(5801,'207.224.168.141','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1208143936),(5802,'207.224.168.141','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208143956),(5803,'64.78.155.100','','empty','','','/eric/feed','','','',1208144259),(5804,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208144361),(5805,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208144361),(5806,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208144785),(5807,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208145553),(5808,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208145553),(5809,'91.121.69.5','','empty','','','/eric/feed/','','','',1208145597),(5810,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208145925),(5811,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208146529),(5812,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1208146704),(5813,'74.6.31.117','','empty','','','/eric/','','Yahoo! Slurp','',1208146704),(5814,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208146816),(5815,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208146816),(5816,'142.166.170.82','','empty','','','/eric/feed','','Crawler/Search Engine','',1208147642),(5817,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208147729),(5818,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208148096),(5819,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208148097),(5820,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208148344),(5821,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208148934),(5822,'204.15.20.225','','empty','','','/eric/feed','','','',1208149279),(5823,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208149431),(5824,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208149431),(5825,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208150143),(5826,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208151075),(5827,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208151075),(5828,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208151344),(5829,'64.78.155.100','','empty','','','/eric/feed','','','',1208151581),(5830,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208151945),(5831,'91.121.69.5','','empty','','','/eric/feed/','','','',1208152832),(5832,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208152930),(5833,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208152930),(5834,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208153150),(5835,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208153759),(5836,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208154227),(5837,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208154227),(5838,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208154354),(5839,'204.15.20.231','','empty','','','/eric/feed','','','',1208154495),(5840,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208155546),(5841,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208155546),(5842,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208155569),(5843,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208156171),(5844,'65.55.209.78','','empty','','','/eric/','','msnbot','1.1',1208156726),(5845,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208156761),(5846,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208156805),(5847,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208156805),(5848,'66.249.72.203','','empty','','','/eric/world/2008/old-bike','','Googlebot','2.1',1208157096),(5849,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208157980),(5850,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208158328),(5851,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208158328),(5852,'64.78.155.100','','empty','','','/eric/feed','','','',1208158893),(5853,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208159178),(5854,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208159620),(5855,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208159620),(5856,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208159786),(5857,'204.15.20.230','','empty','','','/eric/feed','','','',1208159787),(5858,'91.121.69.5','','empty','','','/eric/feed/','','','',1208160018),(5859,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208160915),(5860,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208160915),(5861,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208161596),(5862,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208162193),(5863,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208162193),(5864,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208162197),(5865,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208162797),(5866,'72.30.226.156','','empty','','','/eric/','','Yahoo! Slurp','',1208163070),(5867,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208163396),(5868,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208163436),(5869,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208163437),(5870,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208164691),(5871,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208164691),(5872,'204.15.20.228','','empty','','','/eric/feed','','','',1208165232),(5873,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208165817),(5874,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208165915),(5875,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208165915),(5876,'64.78.155.100','','empty','','','/eric/feed','','','',1208166209),(5877,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208167141),(5878,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208167141),(5879,'91.121.69.5','','empty','','','/eric/feed/','','','',1208167235),(5880,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208167622),(5881,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208168367),(5882,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208168367),(5883,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208168824),(5884,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208169588),(5885,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208169588),(5886,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1208169903),(5887,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208170826),(5888,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208170826),(5889,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208171220),(5890,'204.15.20.225','','empty','','','/eric/feed','','','',1208171617),(5891,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208172138),(5892,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208172138),(5893,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208172436),(5894,'66.249.72.203','','empty','','','/eric/category/adventure','','Googlebot','2.1',1208172551),(5895,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208173431),(5896,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208173431),(5897,'64.78.155.100','','empty','','','/eric/feed','','','',1208173533),(5898,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208173639),(5899,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208174237),(5900,'91.121.69.5','','empty','','','/eric/feed/','','','',1208174557),(5901,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208174681),(5902,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208174681),(5903,'66.249.72.203','','empty','','','/eric/category/weddings','','Googlebot','2.1',1208174786),(5904,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208174848),(5905,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208175442),(5906,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208175895),(5907,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208175895),(5908,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208176659),(5909,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208177185),(5910,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208177185),(5911,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208177258),(5912,'204.15.20.230','','empty','','','/eric/feed','','','',1208177324),(5913,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208178422),(5914,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208178422),(5915,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208179656),(5916,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208179875),(5917,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208179875),(5918,'66.249.72.203','','empty','','','/eric/nature/2008/lotus','','Googlebot','2.1',1208180744),(5919,'64.78.155.100','','empty','','','/eric/feed','','','',1208180848),(5920,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208180855),(5921,'87.233.132.90','','empty','','','/eric/weddings/2008/bridal-gaze','Windows XP','Internet Explorer','6.0',1208180933),(5922,'87.233.132.90','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/bridal-gaze','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1208180934),(5923,'156.34.228.90','','empty','','','/eric/weddings/2008/bridal-gaze','Windows XP','Opera','8.50',1208180935),(5924,'156.34.228.90','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/bridal-gaze','/eric/wp-comments-post.php','Windows XP','Opera','8.50',1208180936),(5925,'207.114.83.130','','empty','','','/eric/weddings/2008/bridal-gaze','Windows XP','Internet Explorer','6.0',1208180937),(5926,'207.114.83.130','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/bridal-gaze','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1208180938),(5927,'210.178.101.42','','empty','','','/eric/weddings/2008/bridal-gaze','Windows XP','Internet Explorer','6.0',1208180959),(5928,'210.178.101.42','','empty','eden.org','http://grandviewphotographyaz.com/weddings/2008/bridal-gaze','/eric/wp-comments-post.php','Windows XP','Internet Explorer','6.0',1208180961),(5929,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208181459),(5930,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208181483),(5931,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208181483),(5932,'91.121.69.5','','empty','','','/eric/feed/','','','',1208181723),(5933,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208182070),(5934,'204.15.20.228','','empty','','','/eric/feed','','','',1208183109),(5935,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208183145),(5936,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208183146),(5937,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208184476),(5938,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208184558),(5939,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208184558),(5940,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208185689),(5941,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208186327),(5942,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208186327),(5943,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208187494),(5944,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208187846),(5945,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208187846),(5946,'64.78.155.100','','empty','','','/eric/feed','','','',1208188166),(5947,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208188701),(5948,'91.121.69.5','','empty','','','/eric/feed/','','','',1208188952),(5949,'204.15.20.224','','empty','','','/eric/feed','','','',1208189186),(5950,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208189303),(5951,'74.6.29.232','','empty','','','/eric/xmlrpc.php','','Yahoo! Slurp','',1208189371),(5952,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208189578),(5953,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208189578),(5954,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208189895),(5955,'72.204.247.38','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1208190276),(5956,'72.204.247.38','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1208190276),(5957,'63.78.101.75','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1208190824),(5958,'63.78.101.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1208190828),(5959,'63.78.101.75','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/category/weddings','Windows XP','Internet Explorer','6.0',1208190843),(5960,'63.78.101.75','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1208190851),(5961,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208191112),(5962,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208191552),(5963,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208191552),(5964,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208191707),(5965,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208192314),(5966,'67.195.58.162','','empty','','','/eric/','','Yahoo! Slurp','',1208192853),(5967,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208192908),(5968,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208193322),(5969,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208193322),(5970,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208193524),(5971,'65.55.104.21','','empty','','','/eric/','','msnbot','1.1',1208194420),(5972,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208194729),(5973,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208194947),(5974,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208194947),(5975,'204.15.20.224','','empty','','','/eric/feed','','','',1208195232),(5976,'24.251.233.233','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1208195266),(5977,'24.251.233.233','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Mac OS X','Firefox','2.0.0.13',1208195273),(5978,'24.251.233.233','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/portfolio','Mac OS X','Firefox','2.0.0.13',1208195300),(5979,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208195322),(5980,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208195757),(5981,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208195933),(5982,'91.121.69.5','','empty','','','/eric/feed/','','','',1208196086),(5983,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208196093),(5984,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208196569),(5985,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208196570),(5986,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208197130),(5987,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208197569),(5988,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208197732),(5989,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208198113),(5990,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208198113),(5991,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208198343),(5992,'66.249.85.132','','en-us','google.com','http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=GGLF,GGLF:2005-49,GGLF:en&q=grandviewphotographyaz','/eric/','Windows XP','Internet Explorer','7.0',1208198825),(5993,'66.249.85.132','','en-us','google.com','http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=GGLF,GGLF:2005-49,GGLF:en&q=grandviewphotographyaz','/eric/','Windows XP','Internet Explorer','7.0',1208198825),(5994,'66.249.85.132','','en-us','eden.org','http://www.grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208198825),(5995,'66.249.85.132','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208198829),(5996,'66.249.85.132','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/world/2008/shikara-walla-1','Windows XP','Internet Explorer','7.0',1208198847),(5997,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208198939),(5998,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208199358),(5999,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208199546),(6000,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208199699),(6001,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208200073),(6002,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208200073),(6003,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208200140),(6004,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208200755),(6005,'65.55.104.21','','empty','','','/eric/weddings/2008/bridal-gaze','','msnbot','1.1',1208200931),(6006,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208201162),(6007,'204.15.20.230','','empty','','','/eric/feed','','','',1208201268),(6008,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208201346),(6009,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208201961),(6010,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208202100),(6011,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208202100),(6012,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208202556),(6013,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208202963),(6014,'91.121.69.5','','empty','','','/eric/feed/','','','',1208203295),(6015,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208203302),(6016,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208203885),(6017,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208203885),(6018,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208204364),(6019,'74.6.23.35','','empty','','','/eric/portfolio/','','Yahoo! Slurp','',1208204403),(6020,'74.6.23.35','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1208204405),(6021,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208204761),(6022,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208204979),(6023,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208205581),(6024,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208205619),(6025,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208205619),(6026,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208206184),(6027,'64.78.155.100','','empty','','','/eric/feed','','','',1208206482),(6028,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208206567),(6029,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208206774),(6030,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208207025),(6031,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208207068),(6032,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208207068),(6033,'204.15.20.231','','empty','','','/eric/feed','','','',1208207497),(6034,'74.6.24.47','','empty','','','/eric/','','Yahoo! Slurp','',1208208088),(6035,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208208369),(6036,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208208567),(6037,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208208567),(6038,'66.249.72.203','','empty','','','/eric/category/nature','','Googlebot','2.1',1208209113),(6039,'24.209.243.50','','en-us','guide2games.org','http://guide2games.org/faq/','/eric/','Windows Vista','Internet Explorer','7.0',1208209200),(6040,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208209798),(6041,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208209956),(6042,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208209956),(6043,'64.78.155.100','','empty','','','/eric/feed','','','',1208210132),(6044,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208210170),(6045,'91.121.69.5','','empty','','','/eric/feed/','','','',1208210514),(6046,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208210626),(6047,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208210995),(6048,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1208211339),(6049,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208211404),(6050,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208211404),(6051,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208211966),(6052,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208212151),(6053,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208212156),(6054,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208212176),(6055,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208212177),(6056,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208212194),(6057,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208212802),(6058,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208212914),(6059,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208212914),(6060,'204.15.20.230','','empty','','','/eric/feed','','','',1208213170),(6061,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208213752),(6062,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208214005),(6063,'67.195.37.92','','en-us','','','/eric/','','Yahoo! Slurp','',1208214117),(6064,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208214229),(6065,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208214459),(6066,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208214459),(6067,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208214611),(6068,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208214655),(6069,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208215213),(6070,'71.36.182.120','','en-us','','','/eric/','Windows XP','Firefox','2.0.0.13',1208215470),(6071,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208215557),(6072,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208215797),(6073,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208215797),(6074,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208216403),(6075,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1208216494),(6076,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208216667),(6077,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208217149),(6078,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208217150),(6079,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208217359),(6080,'64.78.155.100','','empty','','','/eric/feed','','','',1208217443),(6081,'91.121.69.5','','empty','','','/eric/feed/','','','',1208217522),(6082,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208218456),(6083,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208218456),(6084,'204.15.20.230','','empty','','','/eric/feed','','','',1208218803),(6085,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208218820),(6086,'74.6.31.122','','empty','','','/eric/weddings/2008/','','Yahoo! Slurp','',1208218875),(6087,'74.6.31.122','','empty','','','/eric/weddings/2008','','Yahoo! Slurp','',1208218876),(6088,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208219162),(6089,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208219796),(6090,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208219796),(6091,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208220613),(6092,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208221183),(6093,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208221183),(6094,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208221820),(6095,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208221950),(6096,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208222420),(6097,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208222522),(6098,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208222522),(6099,'142.166.170.81','','empty','','','/eric/feed','','Crawler/Search Engine','',1208223234),(6100,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208223638),(6101,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208223750),(6102,'204.15.20.225','','empty','','','/eric/feed','','','',1208223912),(6103,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208223975),(6104,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208223975),(6105,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208224240),(6106,'64.78.155.100','','empty','','','/eric/feed','','','',1208224761),(6107,'91.121.69.5','','empty','','','/eric/feed/','','','',1208224772),(6108,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208224831),(6109,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208225233),(6110,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208225468),(6111,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208225468),(6112,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208225552),(6113,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208226766),(6114,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208226766),(6115,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208227334),(6116,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208228437),(6117,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208228437),(6118,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208228472),(6119,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208229045),(6120,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208229124),(6121,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208229729),(6122,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208229730),(6123,'204.15.20.228','','empty','','','/eric/feed','','','',1208229779),(6124,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208230926),(6125,'91.121.69.5','','empty','','','/eric/feed/','','','',1208231999),(6126,'64.78.155.100','','empty','','','/eric/feed','','','',1208232092),(6127,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208232370),(6128,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208232729),(6129,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208233470),(6130,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208233470),(6131,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208233572),(6132,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208234179),(6133,'72.208.227.154','','en-us','','','/eric/','Mac OS X','Safari','525.13',1208234331),(6134,'204.15.20.231','','empty','','','/eric/feed','','','',1208235222),(6135,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208235378),(6136,'66.249.72.203','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Googlebot','2.1',1208235667),(6137,'72.223.101.19','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1208237366),(6138,'72.223.101.19','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1208237725),(6139,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208237808),(6140,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208237808),(6141,'72.223.101.19','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1208237883),(6142,'66.249.72.203','','empty','','','/eric/adventure/2008/desert-storm-rally','','Googlebot','2.1',1208237965),(6143,'72.223.101.19','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1208237981),(6144,'72.223.101.19','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1208238111),(6145,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1208238272),(6146,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208238394),(6147,'72.223.101.19','','en-us','eden.org','http://grandviewphotographyaz.com/grandview.html','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1208238406),(6148,'72.223.101.19','','en-us','eden.org','http://grandviewphotographyaz.com/portfolio','/eric/category/adventure','Windows XP','Firefox','2.0.0.13',1208238428),(6149,'72.223.101.19','','en-us','eden.org','http://grandviewphotographyaz.com/category/adventure','/eric/adventure/2008/sleeping-under-the-stars','Windows XP','Firefox','2.0.0.13',1208238445),(6150,'216.200.40.144','','empty','','','/eric/blog/?feed=rss2','','','',1208238886),(6151,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208238994),(6152,'67.195.51.189','','empty','','','/eric/','','Yahoo! Slurp','',1208239101),(6153,'67.195.51.190','','empty','','','/eric/weddings/2008/bridal-gaze','','Yahoo! Slurp','',1208239235),(6154,'91.121.69.5','','empty','','','/eric/feed/','','','',1208239236),(6155,'67.195.51.187','','empty','','','/eric/feed','','Yahoo! Slurp','',1208239245),(6156,'67.195.52.117','','empty','','','/eric/world/2008/shikara-walla-1','','Yahoo! Slurp','',1208239265),(6157,'67.195.51.240','','empty','','','/eric/portfolio','','Yahoo! Slurp','',1208239275),(6158,'67.195.51.126','','empty','','','/eric/contact','','Yahoo! Slurp','',1208239450),(6159,'67.195.54.33','','empty','','','/eric/category/adventure','','Yahoo! Slurp','',1208239546),(6160,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208240103),(6161,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208240103),(6162,'204.15.20.225','','empty','','','/eric/feed','','','',1208240501),(6163,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208240591),(6164,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208240801),(6165,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208241290),(6166,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208241290),(6167,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208242008),(6168,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208242479),(6169,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208242479),(6170,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208242614),(6171,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208243214),(6172,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208243631),(6173,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208243631),(6174,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208243816),(6175,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208244207),(6176,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208244756),(6177,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208244756),(6178,'204.15.20.225','','empty','','','/eric/feed','','','',1208245759),(6179,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208245879),(6180,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208245879),(6181,'91.121.69.5','','empty','','','/eric/feed/','','','',1208246479),(6182,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208246822),(6183,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208246998),(6184,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208246998),(6185,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208248139),(6186,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208248139),(6187,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208248641),(6188,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208249286),(6189,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208249286),(6190,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208249842),(6191,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208250566),(6192,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208250566),(6193,'204.15.20.229','','empty','','','/eric/feed','','','',1208251524),(6194,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208251615),(6195,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208251615),(6196,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1208251906),(6197,'74.6.29.174','','empty','','','/eric/portraits/2008/asher','','Yahoo! Slurp','',1208251914),(6198,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208252752),(6199,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208252752),(6200,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208252862),(6201,'193.47.80.43','','empty','','','/eric/','','Crawler/Search Engine','',1208252980),(6202,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208253455),(6203,'91.121.69.5','','empty','','','/eric/feed/','','','',1208253688),(6204,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208253944),(6205,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208253945),(6206,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208254067),(6207,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208255108),(6208,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208255108),(6209,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208255255),(6210,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208255862),(6211,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208256201),(6212,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208256201),(6213,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208257075),(6214,'204.15.20.224','','empty','','','/eric/feed','','','',1208257255),(6215,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208257343),(6216,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208257343),(6217,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208257676),(6218,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208258518),(6219,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208258518),(6220,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208259484),(6221,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208259765),(6222,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208259765),(6223,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208260088),(6224,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208260689),(6225,'212.175.171.2','','tr','eden.org','http://www.grandviewphotographyaz.com/blog/?p=117','/eric/','Windows XP','Internet Explorer','7.0',1208260819),(6226,'212.175.171.2','','tr','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208260821),(6227,'212.175.171.2','','tr','eden.org','http://grandviewphotographyaz.com/blog/?p=117','/eric/','Windows XP','Internet Explorer','7.0',1208260825),(6228,'91.121.69.5','','empty','','','/eric/feed/','','','',1208260896),(6229,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208261002),(6230,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208261002),(6231,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208261287),(6232,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208262308),(6233,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208262308),(6234,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208262498),(6235,'204.15.20.229','','empty','','','/eric/feed','','','',1208263007),(6236,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208263099),(6237,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208263558),(6238,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208263558),(6239,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208263693),(6240,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208264306),(6241,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208264845),(6242,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208264846),(6243,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208264914),(6244,'64.78.155.100','','empty','','','/eric/feed','','','',1208264996),(6245,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208265517),(6246,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208266283),(6247,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208266283),(6248,'142.166.170.82','','empty','','','/eric/feed','','Crawler/Search Engine','',1208266904),(6249,'67.195.51.222','','empty','','','/eric/portraits/2008/sarah-sr-pictures-1','','Yahoo! Slurp','',1208267076),(6250,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208267668),(6251,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208267668),(6252,'91.121.69.5','','empty','','','/eric/feed/','','','',1208268089),(6253,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1208268089),(6254,'64.34.162.199','','empty','','','/eric/wp-cron.php?check=63bbd9fc3e83e34168a11b4ef70b578c','','','',1208268090),(6255,'69.36.158.7','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1208268107),(6256,'216.39.58.17','','empty','','','/eric/','','Internet Explorer','5.5',1208268128),(6257,'66.249.72.203','','empty','','','/eric/?feed=rss2','','Googlebot','2.1',1208268135),(6258,'66.249.72.203','','empty','','','/eric/','','Googlebot','2.1',1208268136),(6259,'66.249.72.203','','empty','','','/eric/nature/2008/cracked-earth','','Googlebot','2.1',1208268408),(6260,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208268500),(6261,'64.158.138.84','','empty','','','/eric/?feed=rss2','','','',1208268507),(6262,'208.66.64.4','','empty','','','/eric/','','Technoratibot','0.7',1208268559),(6263,'208.66.64.4','','empty','','','/eric/feed','','Technoratibot','0.7',1208268560),(6264,'204.15.20.228','','empty','','','/eric/feed','','','',1208268826),(6265,'67.202.34.117','','empty','','','/eric/','','','',1208268839),(6266,'64.40.118.237','','empty','','','/eric/?feed=rss2','','','',1208269012),(6267,'64.40.118.237','','empty','','','/eric/','','','',1208269013),(6268,'64.40.118.237','','empty','','','/eric/','','','',1208269014),(6269,'64.40.118.237','','empty','','','/eric/world/2008/shikara-walla-1','','','',1208269018),(6270,'64.40.118.237','','empty','','','/eric/world/2008/shikara-walla-1','','','',1208269018),(6271,'64.40.118.237','','empty','','','/eric/nature/2008/cracked-earth','','','',1208269026),(6272,'64.40.118.237','','empty','','','/eric/nature/2008/cracked-earth','','','',1208269026),(6273,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208269073),(6274,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208269125),(6275,'67.129.219.136','','empty','','','/eric/nature/2008/cracked-earth','','Internet Explorer','5.5',1208269768),(6276,'67.195.37.92','','en-us','','','/eric/feed','','Yahoo! Slurp','',1208270008),(6277,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208270432),(6278,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208270432),(6279,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208271845),(6280,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208271845),(6281,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208272146),(6282,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208272737),(6283,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208273282),(6284,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208273282),(6285,'74.52.236.210','','empty','','','/eric/nature/2008/cracked-earth','','','',1208273284),(6286,'74.52.236.210','','empty','','','/eric/xmlrpc.php','','','',1208273284),(6287,'74.52.236.210','','empty','','','/eric/nature/2008/cracked-earth','','','',1208273341),(6288,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208273348),(6289,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208274302),(6290,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208274593),(6291,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208274593),(6292,'204.15.20.228','','empty','','','/eric/feed','','','',1208274957),(6293,'91.121.69.5','','empty','','','/eric/feed/','','','',1208275312),(6294,'72.30.226.156','','empty','','','/eric/','','Yahoo! Slurp','',1208275692),(6295,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208276095),(6296,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208276108),(6297,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208276108),(6298,'170.224.8.122','','empty','','','/eric/?feed=rss2','','Crawler/Search Engine','',1208276654),(6299,'84.38.160.60','','pl','eden.org','http://grandviewphotographyaz.com/blog/?cat=8','/eric/portfolio','Windows ME','Firefox','1.5.0.12',1208276677),(6300,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208276970),(6301,'87.123.124.214','','de-de','eden.org','http://grandviewphotographyaz.com/blog/?p=90','/eric/packages','Mac OS X','Safari','525.13',1208277289),(6302,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208277354),(6303,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208277388),(6304,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208277388),(6305,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208277564),(6306,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208277904),(6307,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1208278180),(6308,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208278741),(6309,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208278742),(6310,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208278777),(6311,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208279711),(6312,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208280097),(6313,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208280097),(6314,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208280574),(6315,'204.15.20.229','','empty','','','/eric/feed','','','',1208280917),(6316,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208280969),(6317,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208281489),(6318,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208281489),(6319,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208281507),(6320,'91.121.69.5','','empty','','','/eric/feed/','','','',1208282465),(6321,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208282845),(6322,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208282845),(6323,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208282991),(6324,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208283307),(6325,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208284181),(6326,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208284181),(6327,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208284198),(6328,'140.198.135.78','','en-us','google.com','http://www.google.com/search?hl=en&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=grandview+photography&spell=1','/eric/','Windows XP','Internet Explorer','6.0',1208284240),(6329,'140.198.135.78','','en-us','google.com','http://www.google.com/search?hl=en&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=grandview+photography&spell=1','/eric/','Windows XP','Internet Explorer','6.0',1208284241),(6330,'140.198.135.78','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1208284246),(6331,'140.198.135.78','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/bridal-gaze','Windows XP','Internet Explorer','6.0',1208284254),(6332,'140.198.135.78','','en-us','google.com','http://www.google.com/search?hl=en&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=grandview+photography&spell=1','/eric/','Windows XP','Internet Explorer','6.0',1208284259),(6333,'140.198.135.78','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','6.0',1208284259),(6334,'72.223.44.186','','en-us','grandviewphotographyaz.com','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208284551),(6335,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208284555),(6336,'72.223.44.186','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Internet Explorer','7.0',1208284558),(6337,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208284581),(6338,'72.204.231.154','','en-us','search.yahoo.com','http://search.yahoo.com/search?p=grand+view+photography&fr=yfp-t-501-s&toggle=1&cop=mss&ei=UTF-8','/eric/','Windows XP','Firefox','2.0.0.13',1208284687),(6339,'72.204.231.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208284692),(6340,'72.204.231.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/weddings/2008/bridal-gaze','Windows XP','Firefox','2.0.0.13',1208284723),(6341,'72.204.231.154','','en-us','search.yahoo.com','http://search.yahoo.com/search?p=grand+view+photography&fr=yfp-t-501-s&toggle=1&cop=mss&ei=UTF-8','/eric/','Windows XP','Firefox','2.0.0.13',1208284773),(6342,'72.204.231.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/','Windows XP','Firefox','2.0.0.13',1208284774),(6343,'72.204.231.154','','en-us','eden.org','http://grandviewphotographyaz.com/','/eric/packages','Windows XP','Firefox','2.0.0.13',1208284798),(6344,'72.204.231.154','','en-us','eden.org','http://grandviewphotographyaz.com/packages','/eric/portfolio','Windows XP','Firefox','2.0.0.13',1208284852),(6345,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208285104),(6346,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208285399),(6347,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208285547),(6348,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208285547),(6349,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208286604),(6350,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208286915),(6351,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208286917),(6352,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208286917),(6353,'204.15.20.231','','empty','','','/eric/feed','','','',1208287049),(6354,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208288183),(6355,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208288256),(6356,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208288256),(6357,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208288716),(6358,'74.6.17.87','','empty','','','/eric/','','Yahoo! Slurp','',1208288803),(6359,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208289016),(6360,'74.6.18.238','','empty','','','/eric/nature/2008/cracked-earth','','Yahoo! Slurp','',1208289076),(6361,'38.99.107.139','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208289564),(6362,'38.99.107.139','','empty','','','/eric/feed','','Crawler/Search Engine','',1208289564),(6363,'91.121.69.5','','empty','','','/eric/feed/','','','',1208289690),(6364,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208290231),(6365,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208290517),(6366,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208290825),(6367,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208291121),(6368,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208291121),(6369,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208291784),(6370,'209.196.145.242','','empty','eden.org','http://grandviewphotographyaz.com/feed','/eric/feed','','Mozilla','',1208292237),(6371,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208292314),(6372,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208292668),(6373,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208292668),(6374,'204.15.20.228','','empty','','','/eric/feed','','','',1208292763),(6375,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208293232),(6376,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208294024),(6377,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208294024),(6378,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208294121),(6379,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208294442),(6380,'64.78.155.100','','empty','','','/eric/feed','','','',1208294765),(6381,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208295324),(6382,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208295324),(6383,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208295917),(6384,'74.6.31.216','','empty','','','/eric/portraits/2008/asher/trackback','','Yahoo! Slurp','',1208296544),(6385,'74.6.31.216','','empty','','','/eric/portraits/2008/asher','','Yahoo! Slurp','',1208296545),(6386,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208296573),(6387,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208296573),(6388,'91.121.69.5','','empty','','','/eric/feed/','','','',1208296885),(6389,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208297452),(6390,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208297717),(6391,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208297840),(6392,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208297841),(6393,'204.15.20.230','','empty','','','/eric/feed','','','',1208298738),(6394,'38.99.107.140','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208299011),(6395,'38.99.107.140','','empty','','','/eric/feed','','Crawler/Search Engine','',1208299011),(6396,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208299294),(6397,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208299519),(6398,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208299933),(6399,'38.99.107.142','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208300276),(6400,'38.99.107.142','','empty','','','/eric/feed','','Crawler/Search Engine','',1208300276),(6401,'130.13.174.168','','en-us','','','/eric/feed','Windows XP','Firefox','2.0.0.13',1208300432),(6402,'72.177.114.97','','en-us','','','/eric/blog/?feed=rss2','','','',1208301320),(6403,'38.99.107.141','','empty','','','/eric/feed','','Crawler/Search Engine','',1208301786),(6404,'38.99.107.141','','empty','','','/eric/blog/?feed=rss2','','Crawler/Search Engine','',1208301786),(6405,'130.13.174.168','','en-us','','','/eric/','Mac OS X','Safari','525.13',1208301849),(6406,'195.189.143.39','','empty','','','/eric/feed','Linux','Opera','7.50',1208301891);
/*!40000 ALTER TABLE `wp_ss_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_submited_form_data`
--
DROP TABLE IF EXISTS `wp_submited_form_data`;
CREATE TABLE `wp_submited_form_data` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`log_id` bigint(20) unsigned NOT NULL default '0',
`form_id` bigint(20) unsigned NOT NULL default '0',
`value` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `log_id` (`log_id`,`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_submited_form_data`
--
LOCK TABLES `wp_submited_form_data` WRITE;
/*!40000 ALTER TABLE `wp_submited_form_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_submited_form_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) NOT NULL default '0',
`term_taxonomy_id` bigint(20) NOT NULL default '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,2),(2,1),(2,2),(3,2),(4,1),(4,2),(5,1),(5,2),(6,2),(7,1),(7,2),(9,1),(10,7),(11,1),(12,1),(13,1),(14,1),(20,1),(24,1),(25,1),(26,3),(26,9),(27,1),(28,4),(29,8),(29,9),(30,6),(31,4),(32,3),(32,9),(33,7),(33,10),(33,16),(34,3),(35,7),(36,4),(37,8),(38,8),(38,17),(38,18),(38,19),(39,1),(40,1),(41,1),(42,6),(43,1),(44,1),(45,8),(46,1),(47,1),(48,7),(49,1),(50,1),(51,3),(52,1),(53,1),(54,4),(55,1),(56,1),(57,3),(58,1),(59,1),(60,8),(61,1),(62,1),(63,4);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) NOT NULL auto_increment,
`term_id` bigint(20) NOT NULL default '0',
`taxonomy` varchar(32) NOT NULL default '',
`description` longtext NOT NULL,
`parent` bigint(20) NOT NULL default '0',
`count` bigint(20) NOT NULL default '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'link_category','',0,7),(3,3,'category','',0,2),(4,4,'category','',0,2),(6,6,'category','',0,1),(7,7,'category','',0,4),(8,8,'category','',0,4),(9,9,'post_tag','',0,2),(10,10,'post_tag','',0,1),(11,11,'post_tag','',0,0),(12,12,'post_tag','',0,0),(13,13,'post_tag','',0,0),(14,14,'post_tag','',0,0),(15,15,'post_tag','',0,0),(16,16,'post_tag','',0,1),(17,17,'post_tag','',0,0),(18,18,'post_tag','',0,0),(19,19,'post_tag','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) NOT NULL auto_increment,
`name` varchar(55) NOT NULL default '',
`slug` varchar(200) NOT NULL default '',
`term_group` bigint(10) NOT NULL default '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0),(3,'World','world',0),(4,'Weddings','weddings',0),(9,'india','india',0),(6,'Adventure','adventure',0),(7,'Portraits','portraits',0),(8,'Nature','nature',0),(10,'jaime','jaime',0),(11,'','11',0),(12,'','12',0),(13,'','13',0),(14,'','14',0),(15,'','15',0),(16,'','16',0),(17,'yellowstone','yellowstone',0),(18,'national park','national-park',0),(19,'sunset','sunset',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) NOT NULL auto_increment,
`user_id` bigint(20) NOT NULL default '0',
`meta_key` varchar(255) default NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'rich_editing','true'),(3,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(4,2,'first_name','Eric'),(5,2,'last_name','Taylor'),(6,2,'nickname','eric'),(7,2,'rich_editing','true'),(8,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(9,2,'wp_user_level','10'),(10,1,'wp_autosave_draft_ids','a:3:{i:-1205699045;i:12;i:-1205699808;i:13;i:-1205702732;i:14;}'),(11,2,'wp_autosave_draft_ids','a:5:{i:-1205731871;i:19;i:-1205731915;i:20;i:-1205732770;i:24;i:-1205801846;i:26;i:-1206922622;i:39;}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL auto_increment,
`user_login` varchar(60) NOT NULL default '',
`user_pass` varchar(64) NOT NULL default '',
`user_nicename` varchar(50) NOT NULL default '',
`user_email` varchar(100) NOT NULL default '',
`user_url` varchar(100) NOT NULL default '',
`user_registered` datetime NOT NULL default '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL default '',
`user_status` int(11) NOT NULL default '0',
`display_name` varchar(250) NOT NULL default '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','fdfbfecbcfd1597d3f6da459a05d2980','admin','eric@eden.org','','2008-03-15 02:10:15','',0,'admin'),(2,'eric','1e0ad2ec7e8c3cc595a9ec2e3762b117','eric','eric@eden.org','http://','2008-03-15 03:11:11','',0,'Eric Taylor');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_variation_associations`
--
DROP TABLE IF EXISTS `wp_variation_associations`;
CREATE TABLE `wp_variation_associations` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`type` varchar(64) NOT NULL default '',
`name` varchar(128) NOT NULL default '',
`associated_id` bigint(20) unsigned NOT NULL default '0',
`variation_id` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `associated_id` (`associated_id`),
KEY `variation_id` (`variation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_variation_associations`
--
LOCK TABLES `wp_variation_associations` WRITE;
/*!40000 ALTER TABLE `wp_variation_associations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_variation_associations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_variation_priceandstock`
--
DROP TABLE IF EXISTS `wp_variation_priceandstock`;
CREATE TABLE `wp_variation_priceandstock` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`product_id` bigint(20) unsigned NOT NULL default '0',
`variation_id_1` bigint(20) unsigned NOT NULL default '0',
`variation_id_2` bigint(20) unsigned NOT NULL default '0',
`stock` bigint(20) unsigned NOT NULL default '0',
`price` varchar(32) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `product_id` (`product_id`),
KEY `variation_id_1` (`variation_id_1`,`variation_id_2`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_variation_priceandstock`
--
LOCK TABLES `wp_variation_priceandstock` WRITE;
/*!40000 ALTER TABLE `wp_variation_priceandstock` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_variation_priceandstock` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_variation_values`
--
DROP TABLE IF EXISTS `wp_variation_values`;
CREATE TABLE `wp_variation_values` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`name` varchar(128) NOT NULL default '',
`variation_id` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `variation_id` (`variation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_variation_values`
--
LOCK TABLES `wp_variation_values` WRITE;
/*!40000 ALTER TABLE `wp_variation_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_variation_values` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_variation_values_associations`
--
DROP TABLE IF EXISTS `wp_variation_values_associations`;
CREATE TABLE `wp_variation_values_associations` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`product_id` bigint(20) unsigned NOT NULL default '0',
`value_id` bigint(20) unsigned NOT NULL default '0',
`quantity` int(11) NOT NULL default '0',
`price` varchar(32) NOT NULL default '',
`visible` char(1) NOT NULL default '',
`variation_id` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `product_id` (`product_id`,`value_id`,`variation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `wp_variation_values_associations`
--
LOCK TABLES `wp_variation_values_associations` WRITE;
/*!40000 ALTER TABLE `wp_variation_values_associations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_variation_values_associations` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 */;